/* ─────────────────────────────────────────
   KWANTONE BRAND SYSTEM — style.css
   Cold Fusion Palette · Antonio · Barlow · JetBrains Mono
───────────────────────────────────────── */

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

/* ── TOKENS ── */
:root {
  --void:     #060912;
  --deep:     #0C1428;
  --panel:    #0F2040;
  --cobalt:   #0369A1;
  --pulse:    #38BDF8;
  --amber:    #F59E0B;
  --white:    #FAFAFA;
  --muted:    #98C8D8;
  --body-c:   #C8D8E8;
  --border:   rgba(56,189,248,0.15);
  --border-s: rgba(56,189,248,0.08);
  --green:    #22C55E;
  --red:      #EF4444;
  --gold:     #F0A500;

  --font-h:   'Antonio', sans-serif;
  --font-b:   'Barlow', sans-serif;
  --font-bc:  'Barlow Condensed', sans-serif;
  --font-m:   'JetBrains Mono', monospace;

  --radius:   10px;
  --radius-l: 16px;
  --shadow:   0 8px 40px rgba(3,105,161,0.18);
  --shadow-s: 0 4px 20px rgba(3,105,161,0.12);
  --trans:    0.22s ease;

  --max:      1160px;
  --gutter:   clamp(20px, 4vw, 48px);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--void);
  color: var(--body-c);
  font-family: var(--font-b);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── GRID BACKGROUND ── */
.grid-bg {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(3,105,161,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(3,105,161,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
}

/* ── LAYOUT ── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 1;
}

.section { padding: clamp(60px, 8vw, 100px) 0; }
.section-sm { padding: clamp(40px, 5vw, 60px) 0; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 { font-family: var(--font-h); font-weight: 700; color: var(--white); letter-spacing: 0.04em; line-height: 1.05; }

h1 { font-size: clamp(44px, 7vw, 86px); }
h2 { font-size: clamp(34px, 5vw, 58px); }
h3 { font-size: clamp(22px, 3vw, 30px); }
h4 { font-size: clamp(16px, 2vw, 20px); }

.eyebrow {
  font-family: var(--font-bc);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pulse);
  margin-bottom: 10px;
  display: block;
}

p { font-size: 16px; line-height: 1.72; color: var(--body-c); }

.lead { font-size: clamp(17px, 2vw, 20px); color: var(--muted); line-height: 1.7; }

.mono { font-family: var(--font-m); font-weight: 500; }

strong, b { font-weight: 600; color: var(--white); }

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(6,9,18,0.90);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-s);
  transition: background var(--trans), border-color var(--trans);
}

.nav.scrolled {
  background: rgba(6,9,18,0.97);
  border-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}

/* Wordmark */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
  transition: opacity var(--trans);
}

.nav-logo:hover .nav-logo-img { opacity: 0.85; }

/* Fallback text logo (hidden when image loads) */
.nav-k1 {
  width: 36px; height: 36px;
  background: var(--cobalt);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-m);
  font-weight: 600;
  font-size: 13px;
  color: var(--white);
  letter-spacing: -0.5px;
  flex-shrink: 0;
  transition: background var(--trans);
}

.nav-logo:hover .nav-k1 { background: var(--pulse); }

.nav-wordmark {
  font-family: var(--font-h);
  font-size: 20px;
  letter-spacing: 0.1em;
  color: var(--white);
}

.nav-wordmark span { color: var(--pulse); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  font-family: var(--font-bc);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 6px;
  transition: color var(--trans), background var(--trans);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(56,189,248,0.08);
}

.nav-cta {
  background: var(--cobalt) !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: 8px !important;
  font-family: var(--font-bc) !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  transition: background var(--trans), transform var(--trans) !important;
}

.nav-cta:hover {
  background: var(--pulse) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--trans), opacity var(--trans);
}

.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  background: var(--deep);
  border-top: 1px solid var(--border);
  padding: 16px var(--gutter) 24px;
}

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

.nav-mobile a {
  display: block;
  font-family: var(--font-bc);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-s);
  transition: color var(--trans);
}

.nav-mobile a:hover { color: var(--white); }
.nav-mobile a.nav-cta {
  margin-top: 12px;
  background: var(--cobalt);
  color: var(--white);
  text-align: center;
  padding: 14px;
  border-radius: 8px;
  border: none;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-bc);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 8px;
  transition: all var(--trans);
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--cobalt);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--pulse);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(56,189,248,0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--pulse);
  border: 1.5px solid var(--pulse);
}

.btn-secondary:hover {
  background: rgba(56,189,248,0.08);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--amber);
  color: #0A0A0A;
}

.btn-gold:hover {
  background: #F0A500;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,158,11,0.3);
}

.btn-lg {
  font-size: 16px;
  padding: 18px 36px;
}

.btn-sm {
  font-size: 12px;
  padding: 10px 18px;
}

/* ── CARDS ── */
.card {
  background: var(--deep);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: 28px;
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
}

.card:hover {
  border-color: rgba(56,189,248,0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-s);
}

.card-featured {
  border-color: var(--cobalt);
  background: linear-gradient(145deg, #0D1A2E, #0F2040);
  position: relative;
}

.card-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cobalt), var(--pulse));
  border-radius: var(--radius-l) var(--radius-l) 0 0;
}

/* ── STAT BOXES ── */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
}

.stat-box {
  background: var(--deep);
  border: 1px solid var(--border);
  border-top: 3px solid var(--cobalt);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 20px 16px;
  text-align: center;
}

.stat-n {
  font-family: var(--font-m);
  font-weight: 600;
  font-size: clamp(26px, 4vw, 36px);
  color: var(--pulse);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-n.amber { color: var(--amber); }
.stat-n.green { color: var(--green); }
.stat-n.white { color: var(--white); }

.stat-label {
  font-family: var(--font-bc);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.stat-instrument {
  font-family: var(--font-m);
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

/* ── CALLOUTS ── */
.callout {
  border-left: 4px solid var(--cobalt);
  background: rgba(3,105,161,0.08);
  padding: 18px 22px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
}

.callout-amber {
  border-left-color: var(--amber);
  background: rgba(245,158,11,0.07);
}

.callout-green {
  border-left-color: var(--green);
  background: rgba(34,197,94,0.07);
}

/* ── FEATURE LIST ── */
.feature-list { padding: 0; }

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border-s);
  font-size: 15px;
  color: var(--body-c);
  line-height: 1.5;
}

.feature-list li:last-child { border-bottom: none; }

.feature-list .fi {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 1px;
}

.fi-check { background: rgba(34,197,94,0.15); color: var(--green); }
.fi-star  { background: rgba(245,158,11,0.15); color: var(--amber); }
.fi-lock  { background: rgba(150,170,190,0.1); color: var(--muted); }

.feature-list .fm { color: var(--muted); }

.feat-tag {
  font-family: var(--font-m);
  font-size: 9px;
  padding: 2px 8px;
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 3px;
  align-self: flex-start;
}

.tag-new    { background: rgba(34,197,94,0.12); color: var(--green); border: 1px solid rgba(34,197,94,0.2); }
.tag-elite  { background: rgba(245,158,11,0.12); color: var(--amber); border: 1px solid rgba(245,158,11,0.2); }

/* ── TABLES ── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  margin: 20px 0;
}

.data-table thead th {
  background: var(--deep);
  color: var(--white);
  padding: 11px 14px;
  text-align: left;
  font-family: var(--font-bc);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.data-table thead th.th-blue { background: var(--cobalt); }
.data-table thead th:first-child { border-radius: 6px 0 0 0; }
.data-table thead th:last-child  { border-radius: 0 6px 0 0; }

.data-table tbody tr td {
  padding: 9px 14px;
  border-bottom: 1px solid var(--border-s);
  color: var(--body-c);
}

.data-table tbody tr:nth-child(even) td { background: rgba(3,105,161,0.04); }
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table .t-mono { font-family: var(--font-m); font-size: 13px; }
.data-table .t-blue { color: var(--pulse); font-weight: 600; }
.data-table .t-gold { color: var(--amber); font-weight: 600; }
.data-table .t-muted { color: var(--muted); }
.data-table .t-green { color: var(--green); font-weight: 600; }

/* ── GUARANTEE BOX ── */
.guarantee-box {
  background: linear-gradient(135deg, rgba(3,105,161,0.12), rgba(56,189,248,0.06));
  border: 1px solid rgba(56,189,248,0.25);
  border-left: 5px solid var(--pulse);
  border-radius: 0 var(--radius-l) var(--radius-l) 0;
  padding: 26px 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.guarantee-icon { font-size: 32px; flex-shrink: 0; line-height: 1; margin-top: 2px; }

.guarantee-body h4 {
  font-family: var(--font-h);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--pulse);
  margin-bottom: 8px;
}

.guarantee-body p { font-size: 15px; color: var(--muted); }

/* ── DARK INFO BOX ── */
.dark-box {
  background: var(--deep);
  border: 1px solid var(--border);
  border-top: 3px solid var(--cobalt);
  border-radius: 0 0 var(--radius-l) var(--radius-l);
  padding: 24px 28px;
}

.dark-box h4 {
  font-family: var(--font-h);
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 8px;
}

.dark-box p { font-size: 14px; color: var(--muted); }

/* ── TWO COLUMN ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

/* ── BADGE / TAGS ── */
.badge {
  display: inline-block;
  font-family: var(--font-bc);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.badge-blue   { background: rgba(3,105,161,0.2); color: var(--pulse); border: 1px solid rgba(56,189,248,0.3); }
.badge-amber  { background: rgba(245,158,11,0.15); color: var(--amber); border: 1px solid rgba(245,158,11,0.3); }
.badge-green  { background: rgba(34,197,94,0.12); color: var(--green); border: 1px solid rgba(34,197,94,0.25); }
.badge-red    { background: rgba(239,68,68,0.1); color: #F87171; border: 1px solid rgba(239,68,68,0.2); }

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

/* ── FOOTER ── */
.footer {
  background: var(--deep);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-tagline {
  font-family: var(--font-bc);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cobalt);
  margin-bottom: 12px;
}

.footer-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }

.footer-col h5 {
  font-family: var(--font-bc);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pulse);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--muted);
  padding: 5px 0;
  transition: color var(--trans);
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--border-s);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal {
  font-size: 12px;
  color: var(--muted);
  opacity: 0.6;
  line-height: 1.6;
  max-width: 700px;
}

.footer-copy {
  font-family: var(--font-m);
  font-size: 12px;
  color: var(--muted);
  opacity: 0.5;
  white-space: nowrap;
}

/* ── LEGAL PAGES ── */
.legal-page { padding-top: 120px; }

.legal-header {
  padding: clamp(60px, 8vw, 100px) 0 clamp(40px, 5vw, 60px);
  border-bottom: 1px solid var(--border);
  margin-bottom: clamp(40px, 5vw, 60px);
}

.legal-content { max-width: 820px; }

.legal-content h2 {
  font-size: clamp(20px, 2.5vw, 26px);
  margin-top: 40px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-s);
}

.legal-content h3 {
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 10px;
}

.legal-content p {
  font-size: 15px;
  margin-bottom: 14px;
  color: var(--muted);
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content ul li {
  font-size: 15px;
  color: var(--muted);
  padding: 4px 0;
}

.legal-content strong { color: var(--white); }

.legal-cftc {
  background: rgba(245,158,11,0.05);
  border: 1px solid rgba(245,158,11,0.2);
  border-left: 4px solid var(--amber);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  margin: 24px 0;
  font-family: var(--font-b);
  font-size: 13px;
  color: rgba(245,158,11,0.8);
  line-height: 1.65;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 10px rgba(245,158,11,0.4); }
  50%       { box-shadow: 0 0 28px rgba(245,158,11,0.8), 0 0 8px rgba(245,158,11,0.4); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(3,105,161,0); }
  50%       { box-shadow: 0 0 0 8px rgba(3,105,161,0.12); }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.55s ease forwards;
}

.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }
.fade-up-4 { animation-delay: 0.4s; }
.fade-up-5 { animation-delay: 0.5s; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .three-col { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .two-col { grid-template-columns: 1fr; }
  .three-col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .guarantee-box { flex-direction: column; }
}

@media (max-width: 480px) {
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .btn-lg { font-size: 14px; padding: 15px 24px; }
}

/* ── PAGE SPECIFIC: NAV SPACER ── */
.nav-spacer { height: 66px; }

/* ── HERO GLOW ── */
.hero-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

/* ── PRICE DISPLAY ── */
.price-block { margin: 12px 0 6px; }
.price-amount {
  font-family: var(--font-m);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 52px);
  color: var(--amber);
  line-height: 1;
}
.price-period { font-size: 14px; color: var(--muted); margin-top: 4px; }
.price-saving { color: var(--green); font-weight: 600; }
.price-strike {
  font-family: var(--font-m);
  font-size: 18px;
  color: var(--muted);
  text-decoration: line-through;
  margin-right: 6px;
}

/* ── TESTIMONIAL CARDS ── */
.testimonial {
  background: var(--deep);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: 26px;
}

.testimonial-stars { color: var(--amber); font-size: 14px; margin-bottom: 12px; }
.testimonial-body { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testimonial-author { font-family: var(--font-m); font-size: 12px; color: var(--pulse); }
.testimonial-role { font-size: 12px; color: var(--muted); margin-top: 3px; }

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid var(--border-s);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-family: var(--font-b);
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color var(--trans);
}

.faq-question:hover { color: var(--pulse); }

.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(56,189,248,0.1);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: var(--pulse);
  flex-shrink: 0;
  transition: transform var(--trans), background var(--trans);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(56,189,248,0.2);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--trans);
}

.faq-answer.open {
  max-height: 500px;
  padding-bottom: 20px;
}

.faq-answer p { font-size: 15px; color: var(--muted); line-height: 1.75; }

/* ── FOUNDING MEMBER BANNER ── */
.founding-banner {
  background: linear-gradient(135deg, rgba(34,197,94,0.08), rgba(3,105,161,0.08));
  border: 1px solid rgba(34,197,94,0.2);
  border-left: 5px solid var(--green);
  border-radius: 0 var(--radius-l) var(--radius-l) 0;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.founding-price-display {
  text-align: center;
  flex-shrink: 0;
}

.founding-strike-price {
  font-family: var(--font-m);
  font-size: 16px;
  color: var(--muted);
  text-decoration: line-through;
  margin-bottom: 2px;
}

.founding-price {
  font-family: var(--font-m);
  font-weight: 600;
  font-size: 42px;
  color: var(--green);
  line-height: 1;
}

/* ── INDICATOR CARDS ── */
.indicator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.indicator-card {
  background: var(--deep);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: 22px;
  transition: border-color var(--trans), transform var(--trans);
}

.indicator-card:hover {
  border-color: rgba(3,105,161,0.4);
  transform: translateY(-3px);
}

.indicator-name {
  font-family: var(--font-m);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--pulse);
  margin-bottom: 5px;
}

.indicator-title {
  font-family: var(--font-b);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.indicator-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── JOURNEY STEPS ── */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--deep);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  overflow: hidden;
}

@media (max-width: 768px) {
  .journey-grid { grid-template-columns: 1fr 1fr; }
}

.journey-step {
  padding: 24px 20px;
  border-right: 1px solid var(--border-s);
  position: relative;
}

.journey-step:last-child { border-right: none; }
.journey-step::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}

.journey-step:nth-child(1)::after { background: var(--muted); }
.journey-step:nth-child(2)::after { background: var(--cobalt); }
.journey-step:nth-child(3)::after { background: var(--pulse); }
.journey-step:nth-child(4)::after { background: var(--amber); }

.journey-num {
  font-family: var(--font-m);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.journey-title {
  font-family: var(--font-h);
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 6px;
}

.journey-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── FOOTER UPDATES ── */
.footer-legal p {
  font-size: 11px !important;
  text-align: center !important;
  color: var(--muted);
  line-height: 1.7;
}
.footer-copy {
  text-align: center !important;
  font-size: 11px !important;
}
.footer-bottom {
  border-top: 1px solid var(--border-s);
  padding-top: 32px;
  margin-top: 40px;
}

/* ── CLICKABLE CARDS ── */
.card-link {
  transition: transform 0.22s ease, box-shadow 0.22s ease !important;
  color: inherit !important;
  display: flex !important;
  flex-direction: column !important;
}
.card-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(56,189,248,0.18) !important;
}
