/* =====================================================================
   ChartProof — "Verified Terminal" design system
   Near-black precision aesthetic · single signal-green accent · mono data
   ===================================================================== */

:root {
  /* surfaces */
  --bg:          #0a0b0d;
  --bg-2:        #0d0f12;
  --panel:       #111316;
  --panel-2:     #15181c;
  --elev:        #1a1e23;

  /* ink */
  --text:        #e9edf1;
  --text-2:      #aeb6bf;
  --muted:       #79828d;
  --faint:       #4c545d;

  /* accent — signal green */
  --accent:      #00e08a;
  --accent-dim:  #07b873;
  --accent-glow: rgba(0, 224, 138, 0.18);
  --red:         #ff5470;
  --red-dim:     rgba(255, 84, 112, 0.14);

  /* lines */
  --line:        rgba(255, 255, 255, 0.08);
  --line-2:      rgba(255, 255, 255, 0.12);
  --hair:        rgba(255, 255, 255, 0.05);

  /* type */
  --display: 'Inter Tight', system-ui, sans-serif;
  --body:    'Inter', system-ui, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, monospace;

  --shadow:   0 24px 70px -24px rgba(0, 0, 0, 0.8);
  --shadow-a: 0 18px 50px -18px var(--accent-glow);

  --r-sm: 10px;
  --r:    16px;
  --r-lg: 22px;
  --maxw: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: min(var(--maxw), calc(100% - 40px)); margin-inline: auto; }
.narrow { --maxw: 860px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--accent); color: #04140d; padding: 10px 16px; border-radius: 0 0 8px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* faint terminal grid behind everything */
.grid-texture {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background-image:
    linear-gradient(var(--hair) 1px, transparent 1px),
    linear-gradient(90deg, var(--hair) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 0%, transparent 75%);
          mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 0%, transparent 75%);
  opacity: 0.6;
}

/* ============================ TYPOGRAPHY ============================ */
h1, h2, h3 { font-family: var(--display); font-weight: 700; letter-spacing: -0.035em; line-height: 1.02; }

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
.section-head h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); }
.accent-text { color: var(--accent); }

.eyebrow {
  display: inline-block; font-family: var(--mono); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 18px;
}

.lead, .section-head p {
  color: var(--text-2); font-size: clamp(1.02rem, 1.6vw, 1.18rem); line-height: 1.65; font-weight: 450;
}

/* ============================ BUTTONS ============================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 52px; padding: 0 26px; border-radius: 999px;
  font-family: var(--body); font-weight: 600; font-size: 0.96rem; letter-spacing: -0.01em;
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn-sm { height: 42px; padding: 0 18px; font-size: 0.9rem; }
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--accent); color: #04140d;
  box-shadow: 0 0 0 0 var(--accent-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -10px var(--accent-glow), 0 0 0 1px var(--accent-dim); }

.btn-ghost {
  background: transparent; color: var(--text); border-color: var(--line-2);
}
.btn-ghost:hover { background: rgba(255,255,255,0.04); border-color: var(--accent-dim); color: #fff; transform: translateY(-2px); }

.full { width: 100%; }

/* ============================ HEADER ============================ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.header.scrolled { border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; }

.logo { display: inline-flex; align-items: center; gap: 11px; font-family: var(--display); font-weight: 700; font-size: 1.18rem; letter-spacing: -0.04em; }
.logo-mark {
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(150deg, var(--accent), var(--accent-dim));
  color: #04140d; box-shadow: 0 6px 18px -6px var(--accent-glow);
}
.logo-type { color: var(--text); }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links > a { font-size: 0.94rem; color: var(--text-2); font-weight: 500; transition: color .18s ease; }
.nav-links > a:hover { color: var(--text); }
.nav-cta { color: #04140d; }
.nav-cta:hover { color: #04140d; }

.menu-btn { display: none; flex-direction: column; gap: 5px; width: 40px; height: 40px; align-items: center; justify-content: center; background: none; border: 1px solid var(--line); border-radius: 10px; cursor: pointer; }
.menu-btn span { width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================ HERO ============================ */
.hero {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
  padding: clamp(48px, 9vh, 110px) 0 64px;
}
.hero-copy { max-width: 600px; }

.badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 0.74rem; font-weight: 500; letter-spacing: 0.04em;
  color: var(--text-2); padding: 7px 14px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--panel);
  margin-bottom: 26px;
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-glow); animation: pulse 2.4s ease-in-out infinite; }

h1 { margin-bottom: 22px; }
.hero-copy .lead { margin-bottom: 32px; max-width: 540px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }

.hero-trust { font-family: var(--mono); font-size: 0.78rem; color: var(--muted); line-height: 1.9; }
.hero-trust .check { color: var(--accent); font-weight: 700; }
.hero-trust .sep { color: var(--faint); margin: 0 6px; }

/* ---- terminal panel ---- */
.terminal {
  border: 1px solid var(--line-2); border-radius: var(--r-lg); overflow: hidden;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  box-shadow: var(--shadow), 0 0 80px -50px var(--accent-glow);
}
.terminal-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.terminal-bar .dot { width: 11px; height: 11px; border-radius: 50%; }
.dot.r { background: #ff5f57; } .dot.y { background: #febc2e; } .dot.g { background: #28c840; }
.terminal-title { font-family: var(--mono); font-size: 0.74rem; color: var(--muted); margin-left: 8px; }
.terminal-live { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; color: var(--accent); }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: pulse 1.6s ease-in-out infinite; }

.terminal-body { position: relative; padding: 18px 16px 8px; }
.chart { width: 100%; height: 220px; display: block; }
.grid-lines line { stroke: var(--hair); stroke-width: 1; }
.candles .up rect   { fill: var(--accent); }
.candles .up line   { stroke: var(--accent); stroke-width: 1.4; }
.candles .down rect { fill: var(--red); }
.candles .down line { stroke: var(--red); stroke-width: 1.4; }
.candles rect { rx: 1.5; opacity: 0.92; }

.signal-pulse { fill: var(--accent); opacity: 0.18; animation: ring 2.6s ease-out infinite; transform-origin: center; }
.signal-core  { fill: var(--accent); stroke: var(--bg); stroke-width: 2; }

.signal-tag {
  position: absolute; left: 26%; top: 52%;
  display: flex; flex-direction: column; gap: 1px;
  padding: 7px 11px; border-radius: 9px; transform: translate(-50%, 14px);
  background: var(--elev); border: 1px solid var(--accent-dim);
  box-shadow: 0 10px 24px -12px var(--accent-glow);
}
.signal-tag-label { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.12em; color: var(--accent); font-weight: 600; }
.signal-tag-px { font-family: var(--mono); font-size: 0.82rem; font-weight: 600; color: var(--text); }

.terminal-foot {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line); background: var(--bg-2);
}
.tf-stat { padding: 16px; text-align: center; border-right: 1px solid var(--line); }
.tf-stat:last-child { border-right: 0; }
.tf-num { display: block; font-family: var(--mono); font-size: 1.3rem; font-weight: 700; letter-spacing: -0.02em; }
.tf-lbl { font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.up-num { color: var(--accent); }
.down-num { color: var(--red); }

/* ============================ MARQUEE ============================ */
.marquee {
  overflow: hidden; border-block: 1px solid var(--line);
  background: var(--bg-2); padding: 14px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track { display: inline-flex; align-items: center; gap: 40px; white-space: nowrap; animation: scroll 32s linear infinite; }
.marquee-track span { font-family: var(--mono); font-size: 0.84rem; color: var(--text-2); letter-spacing: 0.04em; }
.marquee-track .m-up { color: var(--accent); }
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ============================ SECTIONS ============================ */
.section { padding: clamp(72px, 11vh, 132px) 0; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head h2 { margin-bottom: 18px; }
.section-head p { max-width: 600px; }

/* ---- features ---- */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature {
  padding: 30px 26px; border: 1px solid var(--line); border-radius: var(--r);
  background: var(--panel); transition: border-color .25s ease, transform .25s ease, background .25s ease;
}
.feature:hover { border-color: var(--line-2); background: var(--panel-2); transform: translateY(-4px); }
.feature-ic {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px;
  background: var(--accent-glow); color: var(--accent); margin-bottom: 20px;
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
}
.feature h3 { font-size: 1.18rem; margin-bottom: 10px; }
.feature p { color: var(--text-2); font-size: 0.95rem; line-height: 1.6; }

/* ============================ PROOF ============================ */
.proof-section {
  background: var(--bg-2); border-block: 1px solid var(--line);
  position: relative;
}
.proof-grid {
  display: grid; gap: 18px;
  grid-template-columns: 1.4fr 1fr;
  grid-template-areas: "equity stats" "log log";
}
.panel {
  border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--panel); padding: 26px;
}
.panel.equity { grid-area: equity; }
.panel.stats  { grid-area: stats; }
.panel.log    { grid-area: log; }

.panel-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.panel-eyebrow { display: block; font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.panel-title { display: block; font-family: var(--display); font-size: 1.5rem; font-weight: 700; letter-spacing: -0.03em; color: var(--accent); }
.muted-inline { color: var(--muted); font-size: 0.82rem; font-weight: 400; font-family: var(--body); letter-spacing: 0; }

.pill {
  font-family: var(--mono); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.04em;
  padding: 5px 11px; border-radius: 999px; border: 1px solid var(--line);
  color: var(--text-2); white-space: nowrap; flex-shrink: 0;
}
.pill-up { color: var(--accent); border-color: var(--accent-dim); background: var(--accent-glow); }

.equity-chart { width: 100%; height: 200px; display: block; margin-bottom: 14px; }
.eq-line { stroke: var(--accent); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 1400; stroke-dashoffset: 1400; }
.reveal.in .eq-line { animation: draw 2s ease-out forwards .2s; }
.panel-note { font-size: 0.74rem; color: var(--faint); line-height: 1.5; }

.stat-rows { display: flex; flex-direction: column; }
.stat-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--hair); }
.stat-row:last-child { border-bottom: 0; }
.sr-lbl { color: var(--text-2); font-size: 0.92rem; }
.sr-val { font-family: var(--mono); font-size: 1.05rem; font-weight: 600; color: var(--text); }
.mono-static { font-family: var(--mono); }

.trade-log { width: 100%; border-collapse: collapse; }
.trade-log th {
  text-align: left; font-family: var(--mono); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted); padding: 0 0 12px; border-bottom: 1px solid var(--line);
}
.trade-log td { padding: 13px 0; border-bottom: 1px solid var(--hair); font-size: 0.92rem; }
.trade-log tr:last-child td { border-bottom: 0; }
.trade-log .mono { font-family: var(--mono); color: var(--text-2); }
.ta-r { text-align: right; font-family: var(--mono); font-weight: 600; }
.side { font-family: var(--mono); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.06em; padding: 3px 8px; border-radius: 6px; }
.side.long  { color: var(--accent); background: var(--accent-glow); }
.side.short { color: var(--red); background: var(--red-dim); }

.proof-disclaimer { margin-top: 26px; text-align: center; font-size: 0.8rem; color: var(--muted); max-width: 760px; margin-inline: auto; line-height: 1.6; }

/* ============================ STEPS ============================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: s; }
.step { position: relative; padding: 30px 26px 28px; border: 1px solid var(--line); border-radius: var(--r); background: var(--panel); }
.step-no { font-family: var(--mono); font-size: 0.86rem; font-weight: 700; color: var(--accent); letter-spacing: 0.05em; }
.step h3 { font-size: 1.22rem; margin: 14px 0 8px; }
.step p { color: var(--text-2); font-size: 0.95rem; }
.step::after { content: ""; position: absolute; left: 26px; bottom: 0; width: 28px; height: 2px; background: var(--accent); opacity: .4; }

/* ============================ PRICING ============================ */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.price-card {
  position: relative; display: flex; flex-direction: column;
  padding: 32px 28px; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--panel);
  transition: border-color .25s ease, transform .25s ease;
}
.price-card:hover { border-color: var(--line-2); transform: translateY(-4px); }
.price-card.featured {
  border-color: var(--accent-dim); background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 7%, var(--panel)), var(--panel));
  box-shadow: 0 0 60px -30px var(--accent-glow);
}
.pc-badge {
  position: absolute; top: -11px; left: 28px;
  font-family: var(--mono); font-size: 0.64rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--accent); color: #04140d; padding: 5px 12px; border-radius: 999px;
}
.pc-head { margin-bottom: 22px; }
.pc-head h3 { font-size: 1.35rem; margin-bottom: 6px; }
.pc-desc { color: var(--muted); font-size: 0.9rem; }
.pc-price { font-family: var(--display); font-size: 3rem; font-weight: 700; letter-spacing: -0.04em; line-height: 1; margin-bottom: 24px; display: flex; align-items: flex-start; gap: 2px; }
.pc-cur { font-size: 1.4rem; margin-top: 6px; color: var(--text-2); }
.pc-per { font-family: var(--mono); font-size: 0.72rem; font-weight: 400; color: var(--muted); margin: 6px 0 0 8px; align-self: flex-end; }
.pc-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; flex: 1; }
.pc-list li { position: relative; padding-left: 26px; color: var(--text-2); font-size: 0.94rem; line-height: 1.45; }
.pc-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 700; }
.pricing-note { margin-top: 24px; text-align: center; font-size: 0.8rem; color: var(--muted); }

/* ============================ FAQ ============================ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-list details {
  border: 1px solid var(--line); border-radius: var(--r); background: var(--panel);
  overflow: hidden; transition: border-color .2s ease;
}
.faq-list details[open] { border-color: var(--line-2); }
.faq-list summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; cursor: pointer; list-style: none;
  font-family: var(--display); font-weight: 600; font-size: 1.06rem; color: var(--text);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-icon { position: relative; flex-shrink: 0; width: 16px; height: 16px; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--accent); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.faq-icon::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq-icon::after  { left: 7px; top: 0; width: 2px; height: 16px; }
.faq-list details[open] .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-list details p { padding: 0 24px 22px; color: var(--text-2); font-size: 0.96rem; line-height: 1.65; }

/* ============================ CONTACT ============================ */
.contact-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  padding: clamp(32px, 5vw, 56px);
  border: 1px solid var(--line-2); border-radius: var(--r-lg);
  background: linear-gradient(150deg, var(--panel-2), var(--panel));
  box-shadow: var(--shadow);
}
.contact-left h2 { margin: 16px 0 16px; }
.contact-left p { color: var(--text-2); margin-bottom: 26px; }
.contact-perks { display: flex; flex-direction: column; gap: 12px; }
.contact-perks li { color: var(--text-2); font-size: 0.95rem; }
.contact-perks .check { color: var(--accent); font-weight: 700; margin-right: 8px; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
input, textarea {
  width: 100%; font: inherit; font-size: 0.96rem; color: var(--text);
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: 13px 15px; outline: none; transition: border-color .2s ease, box-shadow .2s ease;
}
input { height: 50px; }
textarea { min-height: 110px; resize: vertical; line-height: 1.5; }
input:focus, textarea:focus { border-color: var(--accent-dim); box-shadow: 0 0 0 3px var(--accent-glow); }
input::placeholder, textarea::placeholder { color: var(--faint); }
.form-msg { font-size: 0.86rem; color: var(--accent); min-height: 1em; }
.form-msg.error { color: var(--red); }

/* ============================ FOOTER ============================ */
.footer { border-top: 1px solid var(--line); background: var(--bg-2); padding: 48px 0 30px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-bottom: 30px; border-bottom: 1px solid var(--line); }
.footer-brand p { color: var(--muted); font-size: 0.88rem; margin-top: 10px; }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-links a { color: var(--text-2); font-size: 0.92rem; transition: color .18s ease; }
.footer-links a:hover { color: var(--accent); }
.footer-legal { padding-top: 24px; }
.footer-legal p { color: var(--faint); font-size: 0.78rem; line-height: 1.6; max-width: 820px; }

/* ============================ REVEAL ANIM ============================ */
.reveal { opacity: 1 !important; transform: none !important; visibility: visible !important; transition: none !important; }
.reveal.in { opacity: 1 !important; transform: none !important; visibility: visible !important; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .eq-line { stroke-dashoffset: 0; }
  .marquee-track, .badge-dot, .live-dot, .signal-pulse { animation: none !important; }
}

/* ============================ KEYFRAMES ============================ */
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
@keyframes ring  { 0% { r: 6; opacity: .5; } 100% { r: 22; opacity: 0; } }
@keyframes scroll { to { transform: translateX(-50%); } }
@keyframes draw  { to { stroke-dashoffset: 0; } }

/* ============================ RESPONSIVE ============================ */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding-top: 36px; }
  .hero-copy { max-width: 100%; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: 1fr; grid-template-areas: "equity" "stats" "log"; }
  .contact-card { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 760px) {
  .menu-btn { display: flex; }
  .nav-links {
    position: absolute; top: 70px; left: 20px; right: 20px;
    flex-direction: column; align-items: stretch; gap: 6px;
    padding: 14px; border-radius: var(--r);
    background: var(--panel-2); border: 1px solid var(--line-2);
    box-shadow: var(--shadow);
    opacity: 0; transform: translateY(-10px); pointer-events: none; transition: opacity .2s ease, transform .2s ease;
  }
  .nav-links.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links > a { padding: 12px 14px; border-radius: var(--r-sm); }
  .nav-links > a:hover { background: rgba(255,255,255,0.04); }
  .nav-cta { justify-content: center; margin-top: 4px; }

  .steps, .pricing-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .price-card.featured { order: -1; }
  .section-head { margin-bottom: 40px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  .container { width: calc(100% - 28px); }
  .hero-trust .sep { display: none; }
  .hero-trust { display: flex; flex-direction: column; gap: 2px; }
}


/* FINAL FIX: force all reveal sections visible even if script fails */
.reveal, .reveal.in {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
  transition: none !important;
}
