:root {
  --ink: #0b0b0f;
  --ink-2: #0f0e10;
  --ink-3: #1a191c;
  --paper: #f5f5f7;
  --paper-2: #eeeee8;
  --white: #ffffff;
  --text: #1d1d1f;
  --muted: #6e6e73;
  --muted-2: #86868b;
  --gold: #f79e1b;
  --gold-deep: #e08a0a;
  --gold-soft: #fff4dd;
  --fuego: #d93a1f;
  --line: rgba(29, 29, 31, 0.08);
  --line-strong: rgba(29, 29, 31, 0.14);
  --shadow: 0 30px 80px rgba(15, 14, 16, 0.18);
  --radius: 28px;
  --nav-h: 72px;
  --max: 1180px;
  --sans: "DM Sans", system-ui, sans-serif;
  --display: "General Sans", "DM Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--paper);
  line-height: 1.5;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--ink);
  color: #fff;
  padding: 8px 12px;
  z-index: 100;
}

.skip:focus {
  left: 8px;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.wrap-wide {
  width: min(1280px, calc(100% - 40px));
  margin-inline: auto;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 0;
}

.logo-mark {
  width: 42px;
  height: 32px;
  flex-shrink: 0;
}

.logo-word {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
  color: var(--text);
}

.logo-word.on-dark {
  color: #fff;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(245, 245, 247, 0.82);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(245, 245, 247, 0.94);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text);
  margin: 5px auto;
  transition: 0.2s;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

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

.btn-primary:hover {
  background: #2a292c;
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}

.btn-gold:hover {
  background: var(--gold-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}

.btn-ghost.on-dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-lg {
  min-height: 56px;
  padding: 0 28px;
  font-size: 1rem;
}

/* Hero */
.hero {
  padding: 48px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--gold);
}

h1,
.h1 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.98;
  font-size: clamp(2.8rem, 6.4vw, 5.4rem);
}

.lede {
  margin-top: 22px;
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.micro {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--muted-2);
}

/* Phone */
.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-glow {
  position: absolute;
  inset: 10% 12%;
  background: radial-gradient(circle, rgba(247, 158, 27, 0.28), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.phone {
  width: 320px;
  background: var(--ink);
  border-radius: 42px;
  padding: 12px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}

.phone-notch {
  width: 108px;
  height: 22px;
  background: #000;
  border-radius: 0 0 16px 16px;
  margin: 0 auto 8px;
}

.phone-screen {
  background: #f5f5f7;
  border-radius: 32px;
  min-height: 560px;
  padding: 18px 16px 22px;
  color: var(--text);
}

.phone-status {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 14px;
}

.phone-hello {
  font-size: 13px;
  color: var(--muted);
}

.phone-name {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.wallets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 16px 0;
}

.wallet {
  background: #fff;
  border-radius: 16px;
  padding: 12px;
}

.wallet span {
  display: block;
  font-size: 11px;
  color: var(--muted);
}

.wallet strong {
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.wallet.usd {
  background: var(--ink);
  color: #fff;
}

.wallet.usd span {
  color: rgba(255, 255, 255, 0.62);
}

.actions-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 14px;
}

.action {
  background: #fff;
  border-radius: 14px;
  padding: 10px 4px;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
}

.action i {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin: 0 auto 6px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold-deep);
  font-style: normal;
  font-size: 13px;
}

.launch-card {
  background: linear-gradient(160deg, #1d1d1f, #3a2a12);
  color: #fff;
  border-radius: 18px;
  padding: 14px;
}

.launch-card small {
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.launch-card h4 {
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: -0.04em;
  margin: 4px 0 2px;
}

.launch-card p {
  font-size: 12px;
  opacity: 0.72;
}

.tx {
  margin-top: 12px;
  background: #fff;
  border-radius: 16px;
  padding: 8px 12px;
}

.tx-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 12px;
  border-bottom: 1px solid var(--line);
}

.tx-row:last-child {
  border-bottom: 0;
}

.tx-row span {
  color: var(--muted);
}

/* Trust */
.trust {
  padding: 18px 0 64px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.trust-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 16px;
}

.trust-item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.trust-item p {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Sections */
section {
  padding: 88px 0;
}

.section-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 12px;
}

h2,
.h2 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.04em;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.section-lead {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 38rem;
}

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

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  min-height: 220px;
}

.card.gold {
  background: linear-gradient(180deg, #fff8ea, #fff);
}

.icon-blob {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--gold-soft);
  color: var(--gold-deep);
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.card h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.card p {
  color: var(--muted);
  font-size: 0.98rem;
}

.card a.more {
  display: inline-block;
  margin-top: 16px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--fuego);
}

/* Dual products */
.dual {
  background: #fff;
}

.dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 36px;
}

.dual-card {
  border-radius: 32px;
  padding: 36px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dual-card.usd {
  background: var(--ink);
  color: #fff;
}

.dual-card.ves {
  background: var(--gold-soft);
}

.dual-card h3 {
  font-family: var(--display);
  font-size: 2.1rem;
  letter-spacing: -0.04em;
  margin: 8px 0 10px;
}

.dual-card p {
  opacity: 0.78;
  max-width: 28rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.chip.light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold);
}

.chip.dark {
  background: rgba(15, 14, 16, 0.08);
  color: var(--ink);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
  counter-reset: step;
}

.step {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  counter-increment: step;
}

.step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--display);
  font-weight: 600;
  color: var(--gold);
  font-size: 1.4rem;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.step p {
  color: var(--muted);
  font-size: 0.95rem;
}

.step time {
  display: block;
  margin-top: 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--fuego);
}

/* Credit band */
.band {
  background: var(--ink);
  color: #fff;
  border-radius: 40px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.band .section-kicker {
  color: var(--gold);
}

.band .section-lead {
  color: rgba(255, 255, 255, 0.68);
}

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 20px;
}

.stat b {
  display: block;
  font-family: var(--display);
  font-size: 1.8rem;
  letter-spacing: -0.04em;
}

.stat span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Security */
.security {
  background: var(--ink-2);
  color: #fff;
}

.security .section-lead,
.security .card p {
  color: rgba(255, 255, 255, 0.68);
}

.security .card {
  background: var(--ink-3);
  border-color: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.security .icon-blob {
  background: rgba(247, 158, 27, 0.16);
}

/* Roadmap */
.soon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.soon {
  border-radius: 24px;
  padding: 28px;
  background: #fff;
  border: 1px dashed var(--line-strong);
}

.soon .tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fuego);
}

.soon h3 {
  margin: 10px 0 8px;
  font-family: var(--display);
  letter-spacing: -0.03em;
}

.soon p {
  color: var(--muted);
}

/* FAQ */
.faq {
  background: #fff;
}

.faq-list {
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 600;
}

.faq-item button span {
  font-size: 1.4rem;
  line-height: 1;
  color: var(--gold-deep);
}

.faq-item .answer {
  display: none;
  padding: 0 0 22px;
  color: var(--muted);
  max-width: 46rem;
}

.faq-item.open .answer {
  display: block;
}

/* CTA */
.cta-final {
  padding: 40px 0 100px;
}

.cta-box {
  background: linear-gradient(135deg, #1d1d1f 0%, #2b2110 55%, #0b0b0f 100%);
  color: #fff;
  border-radius: 40px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.cta-box h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.cta-box p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 12px;
}

form {
  display: grid;
  gap: 12px;
}

label {
  font-size: 0.82rem;
  font-weight: 600;
}

input,
select {
  width: 100%;
  min-height: 50px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 0 14px;
}

input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.form-success {
  display: none;
  background: rgba(247, 158, 27, 0.12);
  border: 1px solid rgba(247, 158, 27, 0.35);
  border-radius: 18px;
  padding: 24px;
}

.form-success.show {
  display: block;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

/* Footer */
footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  padding: 56px 0 28px;
  font-size: 0.92rem;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

footer a:hover {
  color: #fff;
}

.foot-title {
  color: #fff;
  font-weight: 600;
  margin-bottom: 14px;
}

.foot-list {
  list-style: none;
  display: grid;
  gap: 8px;
}

.legal {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 22px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.48);
  display: grid;
  gap: 10px;
  max-width: 72rem;
}

/* Page hero */
.page-hero {
  padding: 48px 0 24px;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.breadcrumb {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.breadcrumb a:hover {
  color: var(--text);
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}

.table th,
.table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.table th {
  background: var(--paper);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.mobile-panel {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0;
  background: var(--paper);
  z-index: 40;
  padding: 24px;
}

.mobile-panel.open {
  display: block;
}

.mobile-panel a {
  display: block;
  padding: 14px 0;
  font-size: 1.2rem;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}

@media (max-width: 980px) {
  .nav-links,
  .nav-cta .btn-ghost {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .hero-grid,
  .split,
  .dual-grid,
  .band,
  .cta-box,
  .foot-grid,
  .feature-grid,
  .steps,
  .trust-grid,
  .soon-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 24px;
  }

  .phone {
    width: 280px;
  }

  .band,
  .cta-box,
  .dual-card {
    padding: 28px;
  }

  section {
    padding: 64px 0;
  }
}

@media (max-width: 640px) {
  .wrap,
  .wrap-wide,
  .nav-inner {
    width: calc(100% - 28px);
  }

  .hero-actions,
  .nav-cta {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .nav-cta .btn-gold {
    display: none;
  }
}
