@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Archivo:ital,wght@0,400;0,500;0,600;0,700&family=JetBrains+Mono:wght@400;600&display=swap');

:root {
  --gold: #F6C305;
  --gold-bright: #FEEA50;
  --gold-2: #F0D93F;
  --gold-deep: #A57E10;
  --chrome-100: #F0F0EF;
  --chrome-300: #D6D6D5;
  --chrome-500: #B1B0AF;
  --chrome-700: #6F6E6B;
  --card-black: #111214;
  --bg: #0A0A0B;
  --bg-2: #121214;
  --line: rgba(246, 195, 5, .16);
  --line-soft: rgba(255, 255, 255, .07);
  --ftitle: 'Inter', system-ui, sans-serif;
  --fbody: 'Archivo', system-ui, sans-serif;
  --fmono: 'JetBrains Mono', monospace;
  --grad-gold: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 42%, var(--gold-deep) 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--chrome-100);
  font-family: var(--fbody);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(900px 600px at 75% -8%, rgba(246, 195, 5, .10), transparent 60%),
    radial-gradient(700px 500px at -5% 100%, rgba(246, 195, 5, .06), transparent 60%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Text helpers */
.white { color: var(--chrome-100); }

.goldtext {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.kicker {
  font-family: var(--fmono);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 16px;
}

h2.sec {
  font-family: var(--ftitle);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -.02em;
}

.lead {
  font-size: 18px;
  color: var(--chrome-300);
  max-width: 56ch;
  margin-top: 14px;
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(10, 10, 11, .88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}

.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(246, 195, 5, .25));
}

.nav-brand span {
  font-family: var(--ftitle);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-family: var(--fmono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--chrome-500);
  text-decoration: none;
  transition: color .18s;
}

.nav-links a:hover { color: var(--gold); }

.nav-cta { padding: 10px 20px !important; font-size: 14px !important; }

@media (max-width: 780px) {
  .nav-links li:not(:last-child) { display: none; }
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  position: relative;
}

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

.hero-content { text-align: left; }

.hero h1 {
  font-family: var(--ftitle);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -.03em;
}

.hero .tagline {
  margin-top: 20px;
  font-size: clamp(16px, 2vw, 19px);
  color: var(--chrome-300);
  max-width: 48ch;
  line-height: 1.65;
}

.hero-cta {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero .logo {
  width: min(90%, 420px);
  filter: drop-shadow(0 0 60px rgba(246, 195, 5, .28));
  animation: floaty 6s ease-in-out infinite;
}

@keyframes floaty { 50% { transform: translateY(-10px); } }

.trust-bar {
  display: flex;
  gap: 36px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
}

.trust-item { display: flex; flex-direction: column; gap: 4px; }

.trust-val {
  font-family: var(--ftitle);
  font-weight: 700;
  font-size: 28px;
  color: var(--chrome-100);
}

.trust-label {
  font-family: var(--fmono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--chrome-700);
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content { text-align: center; }
  .hero .tagline { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .trust-bar { justify-content: center; }
  .hero-visual { order: -1; }
  .hero .logo { width: min(70vw, 280px); }
}

/* Sections */
section.block {
  padding: 88px 0;
  position: relative;
}

section.block-alt { background: rgba(18, 18, 20, .5); }

.section-head {
  margin-bottom: 48px;
  max-width: 640px;
}

.eyebrow {
  font-family: var(--fmono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .012));
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 28px;
  position: relative;
}

.card.gold-edge { border-color: var(--line); }

.card-icon {
  font-size: 28px;
  margin-bottom: 14px;
  line-height: 1;
}

.card h3 {
  font-family: var(--ftitle);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}

.card p { color: var(--chrome-300); font-size: 15px; }

.grid { display: grid; gap: 20px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 780px) {
  .g2, .g3 { grid-template-columns: 1fr; }
}

/* Steps */
.steps .step {
  padding: 28px;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .03), transparent);
}

.step-num {
  font-family: var(--fmono);
  font-size: 13px;
  letter-spacing: .14em;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.step h3 {
  font-family: var(--ftitle);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 10px;
}

.step p { color: var(--chrome-300); font-size: 15px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--ftitle);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  transition: .18s ease-out;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  text-decoration: none;
}

.btn-sm {
  font-size: 12px;
  padding: 8px 16px;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

.btn-primary {
  background: var(--grad-gold);
  color: #1a1400;
  box-shadow: 0 6px 22px rgba(246, 195, 5, .28);
}

.btn-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  clip-path: none;
  border-radius: 10px;
}

.btn-ghost:hover { background: rgba(246, 195, 5, .10); }

/* Stats */
.statcard {
  background: linear-gradient(180deg, #16161a, #0d0d0f);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.statcard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--grad-gold);
}

.statcard .k {
  font-family: var(--fmono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--chrome-500);
}

.statcard .v {
  font-family: var(--ftitle);
  font-weight: 700;
  font-size: 42px;
  line-height: 1;
  margin-top: 8px;
}

.statcard .d {
  font-size: 12px;
  color: var(--gold);
  margin-top: 8px;
  font-family: var(--fmono);
}

/* Table */
.table-card { padding: 0; overflow: hidden; }

.tablemock {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.tablemock th {
  font-family: var(--fmono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--chrome-700);
  text-align: left;
  padding: 14px 18px;
  background: var(--bg-2);
}

.tablemock td {
  padding: 16px 18px;
  border-top: 1px solid var(--line-soft);
  color: var(--chrome-300);
}

.tablemock tr:hover td { background: rgba(246, 195, 5, .04); }
.tablemock .gold { color: var(--gold); font-family: var(--fmono); font-weight: 600; }
.tablemock strong { color: var(--chrome-100); font-weight: 600; }

.badge {
  display: inline-block;
  font-family: var(--fmono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}

.badge.live {
  background: rgba(246, 195, 5, .16);
  color: var(--gold);
  border: 1px solid var(--line);
}

@media (max-width: 780px) {
  .tablemock .btn-sm { display: none; }
  .tablemock th:last-child,
  .tablemock td:last-child { display: none; }
}

/* CTA */
.cta-band {
  padding: 80px 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(246, 195, 5, .08), transparent 70%),
    var(--card-black);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line-soft);
  text-align: center;
}

.cta-band h2 { margin-bottom: 14px; }

.cta-band p {
  color: var(--chrome-300);
  margin-bottom: 28px;
  max-width: 44ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-band .hero-cta { justify-content: center; }

.cta-note {
  margin-top: 20px !important;
  margin-bottom: 0 !important;
  font-family: var(--fmono);
  font-size: 11px !important;
  letter-spacing: .08em;
  color: var(--chrome-700) !important;
}

/* Footer */
footer {
  padding: 56px 0 48px;
  border-top: 1px solid var(--line-soft);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.footer-brand .lg {
  font-family: var(--ftitle);
  font-weight: 700;
  font-size: 28px;
}

.footer-brand p {
  color: var(--chrome-700);
  font-family: var(--fmono);
  font-size: 12px;
  margin-top: 8px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-family: var(--fmono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--chrome-500);
  text-decoration: none;
  transition: color .18s;
}

.footer-links a:hover { color: var(--gold); }

footer .legal {
  font-size: 11px;
  line-height: 1.7;
  color: var(--chrome-700);
  text-align: center;
}
