@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&display=swap");

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f7f9fc;
  color: #07111f;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

:root {
  --blue: #087cf0;
  --deep: #06111f;
  --green: #28c76f;
  --muted: #687789;
  --border: #dfe6ef;
}

.container {
  width: min(1180px, 92%);
  margin: auto;
}

.nav {
  height: 76px;
  background: #06111f;
  color: white;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid #18304a;
}

.navin {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 1px;
}

.brand i {
  color: var(--blue);
  font-style: normal;
}

.links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.links a {
  color: #d8e2ee;
  text-decoration: none;
  font-size: 14px;
}

.client {
  border: 1px solid #39516a;
  border-radius: 8px;
  padding: 11px 16px;
}

.hero {
  background: linear-gradient(120deg, #06111f 0%, #0a1d32 62%, #092b4b 100%);
  color: #fff;
  padding: 90px 0 80px;
  overflow: hidden;
}

.heroGrid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.eyebrow {
  color: #4da3ff;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1.5px;
}

.hero h1 {
  font-size: clamp(46px, 6vw, 72px);
  line-height: 0.98;
  margin: 17px 0;
}

.hero h1 span {
  color: #2f8df5;
}

.hero p {
  color: #b8c6d5;
  line-height: 1.7;
  max-width: 580px;
  font-size: 17px;
}

.buttons {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  padding: 15px 23px;
  border-radius: 9px;
  text-decoration: none;
  font-weight: 800;
  display: inline-block;
}

.primary {
  background: var(--blue);
  color: #fff;
}

.secondary {
  border: 1px solid #476078;
  color: #fff;
}

.heroVisual {
  transform: perspective(1000px) rotateY(-3deg);
}

.dashboardShot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid #263c52;
  box-shadow: 0 30px 80px #0008;
}

.terminal {
  background: #091521;
  border: 1px solid #263c52;
  border-radius: 16px;
  box-shadow: 0 30px 80px #0008;
  padding: 18px;
  transform: perspective(1000px) rotateY(-3deg);
}

.terminalTop {
  display: flex;
  justify-content: space-between;
  color: #8fa0b2;
  font-size: 12px;
  margin-bottom: 14px;
}

.status {
  color: #54dd88;
}

.chart {
  height: 250px;
  background: linear-gradient(180deg, #0b1c2b, #07121d);
  border: 1px solid #20384d;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.gridline {
  position: absolute;
  left: 0;
  right: 0;
  border-top: 1px solid #183247;
}

.g1 {
  top: 25%;
}

.g2 {
  top: 50%;
}

.g3 {
  top: 75%;
}

.line {
  position: absolute;
  left: 3%;
  right: 3%;
  top: 15%;
  height: 72%;
  background: linear-gradient(
    135deg,
    transparent 0 10%,
    #1584f5 11% 12%,
    transparent 13% 19%,
    #1584f5 20% 21%,
    transparent 22% 31%,
    #1584f5 32% 33%,
    transparent 34% 43%,
    #1584f5 44% 45%,
    transparent 46% 53%,
    #1584f5 54% 55%,
    transparent 56% 67%,
    #1584f5 68% 69%,
    transparent 70% 76%,
    #2ed77b 77% 78%,
    transparent 79%
  );
  filter: drop-shadow(0 0 7px #087cf0);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.metric {
  background: #0d1d2b;
  border: 1px solid #1d3449;
  border-radius: 9px;
  padding: 12px;
}

.metric small {
  display: block;
  color: #8092a4;
}

.metric b {
  font-size: 18px;
}

.green {
  color: var(--green);
}

.section {
  padding: 80px 0;
}

.center {
  text-align: center;
}

.section h2 {
  font-size: 38px;
  margin: 8px 0 12px;
}

.sub {
  color: var(--muted);
  max-width: 650px;
  margin: auto;
  line-height: 1.7;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 27px;
  box-shadow: 0 10px 30px #0b1b2b08;
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: #e8f3ff;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.card h3 {
  margin-bottom: 8px;
}

.card p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

.darkSection {
  background: #06111f;
  color: #fff;
}

.dashboard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.setup-copy {
  color: #aebdca;
  line-height: 1.7;
}

.steps {
  margin-top: 28px;
}

.step {
  display: flex;
  gap: 15px;
  margin: 22px 0;
}

.num {
  min-width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #123454;
  color: #58a9ff;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.step p {
  color: #aebdca;
  margin: 4px 0;
  line-height: 1.6;
}

.priceGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 38px;
}

.priceCard {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 30px;
  position: relative;
  cursor: pointer;
}

.priceCard.selected {
  border-color: var(--blue);
}

.tag {
  position: absolute;
  right: 18px;
  top: 18px;
  background: #e8f3ff;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  padding: 6px 9px;
  border-radius: 20px;
}

.price {
  font-size: 48px;
  font-weight: 900;
  margin: 12px 0;
}

.priceCard ul {
  list-style: none;
  padding: 0;
  color: #566575;
  line-height: 2;
}

.buy {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--blue);
  color: white;
  padding: 15px;
  border: none;
  border-radius: 9px;
  text-decoration: none;
  font-weight: 900;
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
}

.payOverlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: #06111fcc;
  display: grid;
  place-items: center;
  padding: 18px;
}

.payOverlay[hidden] {
  display: none;
}

.payModal {
  width: min(520px, 100%);
  max-height: min(720px, 92vh);
  overflow: auto;
  background: #fff;
  border-radius: 18px;
  padding: 24px 22px 18px;
  position: relative;
  box-shadow: 0 30px 80px #0006;
}

.payClose {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 8px;
  background: #eef3f8;
  color: #07111f;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.payHead .eyebrow {
  margin-bottom: 4px;
}

.payHead h3 {
  margin: 0 0 8px;
  font-size: 26px;
}

.paySub {
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 14px;
  font-size: 14px;
  padding-right: 28px;
}

.payList {
  display: grid;
  gap: 10px;
}

.payItem {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  background: #f8fbff;
}

.payMeta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.payCoin {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.6px;
  padding: 5px 9px;
  border-radius: 20px;
}

.payCoin.btc {
  background: #fff4e5;
  color: #c47b12;
}

.payCoin.trc {
  background: #e8fff3;
  color: #14924b;
}

.payCoin.bep {
  background: #e8f3ff;
  color: var(--blue);
}

.payMeta small {
  color: var(--muted);
}

.payRow {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
}

.payAddr {
  display: block;
  font-size: 12px;
  line-height: 1.45;
  word-break: break-all;
  color: #07111f;
  margin: 0;
}

.copyBtn {
  width: auto;
  min-width: 72px;
  border: 1px solid #c9d7e6;
  background: #fff;
  color: var(--blue);
  font-weight: 800;
  padding: 9px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
}

.copyBtn.copied {
  background: #e8fff3;
  border-color: #28c76f;
  color: #14924b;
}

.payNote {
  font-size: 12px;
  color: #8995a2;
  line-height: 1.5;
  margin: 14px 0 0;
}

.payProof {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.payProofTitle {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #07111f;
  margin-bottom: 6px;
}

.payProofSub {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

.contactList {
  display: grid;
  gap: 8px;
}

.contactItem {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  background: #f8fbff;
  color: inherit;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.contactItem:hover {
  border-color: #c5d6e8;
  background: #f2f7fd;
}

a.contactItem {
  cursor: pointer;
}

.contactIcon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.contactItem.whatsapp .contactIcon {
  background: #e8fff3;
  color: #14924b;
}

.contactItem.email .contactIcon {
  background: #e8f3ff;
  color: var(--blue);
}

.contactText {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.contactText b {
  font-size: 14px;
  color: #07111f;
}

.contactText small {
  font-size: 12px;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contactAction {
  font-size: 12px;
  font-weight: 800;
  color: var(--blue);
}

.featureModal {
  width: min(440px, 100%);
}

.featureList {
  display: grid;
  gap: 10px;
}

.featureItem {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  align-items: start;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px;
  background: #f8fbff;
}

.featureIcon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #e8f3ff;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.featureItem b {
  display: block;
  margin-bottom: 4px;
}

.featureItem p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.faq {
  max-width: 850px;
  margin: 35px auto;
}

.q {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  margin: 10px 0;
  padding: 18px;
  cursor: pointer;
}

.q b {
  display: flex;
  justify-content: space-between;
}

.answer {
  display: none;
  color: var(--muted);
  line-height: 1.6;
  padding-top: 12px;
}

.q.open .answer {
  display: block;
}

.footer {
  background: #040b13;
  color: #9caaba;
  padding: 45px 0;
}

.footerGrid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer a {
  color: #9caaba;
  text-decoration: none;
}

.risk {
  font-size: 12px;
  line-height: 1.6;
  max-width: 700px;
}

@media (max-width: 800px) {
  .links {
    display: none;
  }

  .heroGrid,
  .dashboard {
    grid-template-columns: 1fr;
  }

  .features,
  .priceGrid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 55px;
  }

  .heroVisual,
  .terminal {
    transform: none;
  }

  .footerGrid {
    display: block;
  }

  .footerGrid > div {
    margin-bottom: 20px;
  }

  .payRow {
    grid-template-columns: 1fr;
  }

  .copyBtn {
    width: 100%;
  }
}
