/* ─────────────────── Fonts ─────────────────── */
@font-face { font-family: 'DM Sans';        src: url('/ui/fonts/DMSans-Regular.woff') format('woff'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'DM Sans';        src: url('/ui/fonts/DMSans-Medium.woff')  format('woff'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'DM Sans';        src: url('/ui/fonts/DMSans-Bold.woff')    format('woff'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Instrument Serif'; src: url('/ui/fonts/InstrumentSerif-Regular.woff') format('woff'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Instrument Serif'; src: url('/ui/fonts/InstrumentSerif-Italic.woff')  format('woff'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'JetBrains Mono'; src: url('/ui/fonts/JetBrainsMono-Regular.woff') format('woff'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'JetBrains Mono'; src: url('/ui/fonts/JetBrainsMono-Medium.woff')  format('woff'); font-weight: 500; font-style: normal; font-display: swap; }

/* ─────────────────── Tokens (mirror reduzido de /ui/styles/01-tokens.css) ─────────────────── */
/* IMPORTANTE: este bloco DEVE ser sincronizado com bottop-ui/src/styles/01-tokens.css.
   Em particular: --bg-primary (#010715) e --text-secondary (#5F6B7D) precisam casar
   com o app shell para evitar "saltinho" visual ao entrar no /ui/. */
:root {
  --bg: #010715;
  --bg-elev: #0F1623;
  --surface: rgba(20, 27, 37, 0.55);
  --surface-soft: rgba(255, 255, 255, 0.025);
  --surface-soft-hover: rgba(255, 255, 255, 0.045);
  --hairline: rgba(240, 242, 245, 0.07);
  --hairline-strong: rgba(240, 242, 245, 0.12);
  --text: #EAF2FF;
  --text-muted: #5F6B7D;
  --text-faded: #6B7382;
  --text-disabled: #4A5563;

  --green: #43BA57;
  --green-light: #81C784;
  --red: #EE3F4C;
  --red-light: #FF7A84;
  --yellow: #EC971A;
  --ai: #00C2FF;
  --ai-light: #6EDFFF;
  --blue: #1786CF;

  --font-display: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-editorial: 'Instrument Serif', 'Georgia', serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', ui-monospace, monospace;

  --container: min(1180px, 92vw);
  --section-gap: clamp(72px, 9vw, 128px);
  --eyebrow-tracking: 0.18em;
}

/* ─────────────────── Reset / base ─────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  margin: 0;
  font-family: var(--font-display);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  font-size: 16px;
  /* Background flat — gradients radiais foram removidos: derrubavam o tom
     terminal/Bloomberg em favor de SaaS-glow generico. Coerencia com
     /ui/ shell (#010715 flat). */
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: rgba(76, 175, 80, 0.32); color: #FCFDFF; }

/* ─────────────────── Reusable atoms ─────────────────── */
.container { width: var(--container); margin-inline: auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: var(--eyebrow-tracking); text-transform: uppercase;
  color: var(--text-muted);
}
.eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.16);
}
.eyebrow--ai::before { background: var(--ai); box-shadow: 0 0 0 4px rgba(0, 194, 255, 0.16); }
.eyebrow--yellow::before { background: var(--yellow); box-shadow: 0 0 0 4px rgba(255, 177, 23, 0.16); }
.eyebrow--neutral::before { background: var(--text-faded); box-shadow: 0 0 0 4px rgba(138, 148, 166, 0.16); }

.h1, .h2, .h3 { font-weight: 700; letter-spacing: -0.02em; line-height: 1.05; margin: 0; }
.h1 { font-size: clamp(2.4rem, 5.4vw, 4.4rem); }
.h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
.h3 { font-size: clamp(1.15rem, 1.5vw, 1.35rem); letter-spacing: -0.005em; }
.editorial {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.lead {
  color: var(--text-muted); font-size: clamp(1rem, 1.25vw, 1.12rem);
  max-width: 60ch;
}
.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; letter-spacing: -0.01em; }

/* CTA buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  letter-spacing: 0.04em; text-transform: uppercase;
  cursor: pointer; transition: transform 120ms ease, box-shadow 200ms ease, background 160ms ease, border-color 160ms ease;
  border: 1px solid transparent; white-space: nowrap;
}
.btn--primary {
  /* Gradient diagonal alinhado ao app shell (auth/05-auth.css). */
  background: linear-gradient(135deg, #66D469 0%, #43BA57 50%, #3D8B40 100%);
  color: #04190B;
  box-shadow: 0 6px 12px rgba(76, 175, 80, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 8px 16px rgba(76, 175, 80, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.24); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--hairline-strong);
}
.btn--ghost:hover { background: var(--surface-soft-hover); border-color: rgba(240, 242, 245, 0.22); }
.btn--small { padding: 10px 14px; font-size: 12px; letter-spacing: 0.06em; }

/* Card */
.card {
  position: relative;
  padding: 22px 22px 24px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.022) 0%, rgba(0, 0, 0, 0.06) 100%),
    var(--bg-elev);
  border: 1px solid var(--hairline);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025), 0 18px 38px rgba(0, 0, 0, 0.32);
}
.card__bar {
  position: absolute; inset: 0 auto 0 0; width: 3px;
  background: linear-gradient(180deg, currentColor 0%, transparent 90%);
  opacity: 0.85; border-top-left-radius: 14px; border-bottom-left-radius: 14px;
}
.card[data-tone="long"] { color: var(--green); }
.card[data-tone="ai"]   { color: var(--ai); }
.card[data-tone="yellow"]   { color: var(--yellow); }
.card[data-tone="neutral"]  { color: var(--text-faded); }

/* ─────────────────── Header / nav ─────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 30;
  backdrop-filter: blur(18px) saturate(1.3);
  background: linear-gradient(180deg, rgba(6, 8, 16, 0.85), rgba(6, 8, 16, 0.6));
  border-bottom: 1px solid var(--hairline);
}
.site-header__row {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: -0.01em;
}
.brand__mark {
  width: 30px; height: 30px; border-radius: 8px;
  display: grid; place-items: center;
  overflow: hidden;
  background: rgba(76, 175, 80, 0.12);
  border: 1px solid rgba(129, 199, 132, 0.24);
  box-shadow: 0 8px 22px rgba(76, 175, 80, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.brand__mark img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.nav { display: flex; gap: 26px; align-items: center; }
.nav a {
  font-size: 13px; color: var(--text-muted); font-weight: 500;
  transition: color 160ms ease;
}
.nav a:hover { color: var(--text); }
.header-cta { display: inline-flex; align-items: center; gap: 10px; }
@media (max-width: 860px) {
  .nav { display: none; }
}

/* ─────────────────── Hero ─────────────────── */
.hero {
  padding-block: clamp(64px, 10vw, 120px) clamp(48px, 7vw, 96px);
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.hero__copy h1 { margin-bottom: 22px; }
.hero__copy h1 small {
  display: block; font-size: 0.42em; font-weight: 700;
  letter-spacing: var(--eyebrow-tracking); text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 18px;
}
.hero__copy h1 .editorial { color: #DCE7F2; display: block; }
.hero__sub { color: var(--text-muted); font-size: clamp(1rem, 1.25vw, 1.12rem); margin: 18px 0 32px; max-width: 56ch; }
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__risk {
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(247, 82, 95, 0.10);
  border: 1px solid rgba(247, 82, 95, 0.40);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  line-height: 1.4;
  max-width: 100%;
  flex-wrap: wrap;
}
.hero__risk-icon {
  color: var(--red);
  font-weight: 700;
}
.hero__risk-label {
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: var(--eyebrow-tracking);
  text-transform: uppercase;
  font-size: 11px;
  color: var(--red);
}
.hero__risk-text {
  color: var(--text-muted);
}
.hero__risk a {
  color: var(--text);
  text-decoration: underline;
}

.hero__trust {
  margin-top: 36px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px; padding-top: 20px; border-top: 1px solid var(--hairline);
}
.hero__trust-item {
  display: flex; flex-direction: column; gap: 4px; min-width: 0;
}
.hero__trust-label {
  font-family: var(--font-mono); font-size: 9px; font-weight: 700;
  letter-spacing: var(--eyebrow-tracking); text-transform: uppercase; color: var(--text-faded);
}
.hero__trust-value {
  font-family: var(--font-mono); font-variant-numeric: tabular-nums;
  font-size: 15px; font-weight: 700; color: var(--text);
}
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .hero__trust { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
/* Mobile: encolher hero pra deixar o terminal mockup acima da fold em iPhone.
   H1 default cai em 2.4rem (clamp min) que ocupa muita altura em viewport
   estreito; trust block com gap+padding também rouba espaço. */
@media (max-width: 760px) {
  .hero {
    padding-block: clamp(36px, 9vw, 56px) clamp(28px, 6vw, 48px);
    gap: 24px;
  }
  .h1 { font-size: clamp(1.75rem, 7vw, 2.2rem); }
  .hero__copy h1 { margin-bottom: 14px; }
  .hero__copy h1 small { margin-bottom: 12px; }
  .hero__sub { margin: 14px 0 22px; }
  .hero__trust { margin-top: 22px; gap: 12px; padding-top: 14px; }
  .hero__trust-value { font-size: 14px; }
  .hero__risk {
    border-radius: 14px;
    align-items: flex-start;
    padding: 10px 12px;
  }
  .hero__risk-label { letter-spacing: 0.12em; }
}

/* Hero mockup — recreates the trading panel without imagery */
.terminal {
  position: relative;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(20, 27, 37, 0.7), rgba(8, 11, 17, 0.92)),
    rgba(8, 11, 17, 0.96);
  border: 1px solid var(--hairline-strong);
  box-shadow:
    0 38px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 0 60px rgba(0, 194, 255, 0.05);
  overflow: hidden;
}
.terminal__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--hairline);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent);
}
.terminal__chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(76, 175, 80, 0.12); border: 1px solid rgba(76, 175, 80, 0.32);
  color: var(--green-light); font-family: var(--font-mono);
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
}
.terminal__chip::before {
  content: ''; width: 6px; height: 6px; border-radius: 999px;
  background: var(--green); box-shadow: 0 0 8px var(--green);
  animation: pulse 1.6s ease-in-out infinite;
}
.terminal__pair { font-family: var(--font-editorial); font-style: italic; font-weight: 400; font-size: 18px; }
.terminal__pair small { font-family: var(--font-mono); font-style: normal; font-size: 9px; font-weight: 700; letter-spacing: 0.16em; color: var(--text-muted); margin-left: 8px; text-transform: uppercase; }
.terminal__price-row {
  padding: 18px 18px 12px;
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  border-bottom: 1px solid var(--hairline);
}
.terminal__price {
  font-family: var(--font-mono); font-variant-numeric: tabular-nums;
  font-size: clamp(1.7rem, 2.6vw, 2.4rem); font-weight: 800; letter-spacing: -0.02em;
  line-height: 1;
}
.terminal__chg {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--font-mono); font-variant-numeric: tabular-nums;
  font-size: 12px; font-weight: 700;
  padding: 4px 10px; border-radius: 999px;
}
.terminal__chg--up   { color: var(--green-light); background: rgba(76, 175, 80, 0.12); border: 1px solid rgba(76, 175, 80, 0.28); }
.terminal__chg--down { color: var(--red-light);   background: rgba(247, 82, 95, 0.12); border: 1px solid rgba(247, 82, 95, 0.28); }
.terminal__chg--neutral { color: var(--text-muted); background: rgba(255, 255, 255, 0.035); border: 1px solid var(--hairline-strong); }
.terminal__banner {
  display: flex; align-items: center; gap: 14px; padding: 12px 18px;
  border-bottom: 1px solid var(--hairline);
  background: linear-gradient(90deg, rgba(247, 82, 95, 0.1), rgba(247, 82, 95, 0.0) 60%);
}
.terminal__banner-glyph {
  width: 10px; height: 10px; border-radius: 999px; background: var(--red);
  box-shadow: 0 0 0 4px rgba(247, 82, 95, 0.16);
}
.terminal__banner-headline {
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--red-light);
}
.terminal__banner-sub {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  color: var(--text-muted);
}
.terminal__banner-sub .tp { color: var(--green-light); font-weight: 700; }
.terminal__banner-sub .sl { color: var(--red-light); font-weight: 700; }
.terminal__chart {
  position: relative;
  height: 170px;
  background:
    linear-gradient(transparent 49%, var(--hairline) 49%, var(--hairline) 50%, transparent 50%),
    linear-gradient(90deg, transparent 19.6%, var(--hairline) 19.7%, transparent 19.8%),
    linear-gradient(90deg, transparent 39.6%, var(--hairline) 39.7%, transparent 39.8%),
    linear-gradient(90deg, transparent 59.6%, var(--hairline) 59.7%, transparent 59.8%),
    linear-gradient(90deg, transparent 79.6%, var(--hairline) 79.7%, transparent 79.8%);
  background-size: 100% 14.28%, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
}
.terminal__chart svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.terminal__chart-tag {
  position: absolute; right: 14px; top: 12px;
  font-family: var(--font-mono); font-variant-numeric: tabular-nums;
  font-size: 10px; font-weight: 700; color: var(--text-muted);
  letter-spacing: 0.04em;
}
.terminal__rail {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--hairline);
}
.terminal__tab {
  padding: 14px 10px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
  border-right: 1px solid var(--hairline);
  background: transparent; border-top: none; border-bottom: none; border-left: none;
  cursor: default; color: inherit; text-align: left;
  position: relative;
}
.terminal__tab:last-child { border-right: none; }
.terminal__tab--active::after {
  content: ''; position: absolute; left: 12px; right: 12px; bottom: 0; height: 2px;
  background: var(--green);
}
.terminal__tab-eyebrow {
  font-family: var(--font-mono); font-size: 8px; font-weight: 700;
  letter-spacing: var(--eyebrow-tracking); text-transform: uppercase; color: var(--text-faded);
}
.terminal__tab-label {
  font-family: var(--font-editorial); font-style: italic; font-weight: 400;
  font-size: 16px; color: var(--text);
}
.terminal__tab--active .terminal__tab-eyebrow { color: var(--green-light); }

.terminal__strip {
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 12px;
  padding: 14px 18px;
  border-top: 1px solid var(--hairline);
  background: rgba(255, 255, 255, 0.012);
}
.terminal__metric { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.terminal__metric-label {
  font-family: var(--font-mono); font-size: 9px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-faded);
}
.terminal__metric-value {
  font-family: var(--font-mono); font-variant-numeric: tabular-nums;
  font-size: 13px; font-weight: 700; color: var(--text);
}
.terminal__metric-value.up { color: var(--green-light); }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(0.85); }
}

/* ─────────────────── Section primitives ─────────────────── */
.section { padding-block: var(--section-gap); }
.section__head { display: flex; flex-direction: column; gap: 14px; max-width: 720px; margin-bottom: 48px; }
.section__title { letter-spacing: -0.02em; }
.section__title em { font-style: italic; font-family: var(--font-editorial); font-weight: 400; }
.section__sub { color: var(--text-muted); font-size: clamp(1rem, 1.2vw, 1.08rem); }

.divider {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--hairline-strong) 22%, var(--hairline-strong) 78%, transparent);
}

/* ─────────────────── Features grid ─────────────────── */
.features__grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 760px) {
  .features__grid { grid-template-columns: 1fr; }
}
.feature__head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.feature__glyph {
  width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center;
  font-family: var(--font-mono); font-weight: 700; font-size: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--hairline-strong);
  color: currentColor;
}
.feature__title { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.01em; }
.feature__title small {
  display: block; margin-top: 4px;
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  letter-spacing: var(--eyebrow-tracking); text-transform: uppercase; color: var(--text-faded);
}
.feature__desc { color: var(--text-muted); font-size: 0.96rem; line-height: 1.55; margin: 0 0 18px; }
.feature__bullets { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.feature__bullets li {
  position: relative; padding-left: 18px;
  font-size: 0.92rem; color: var(--text-muted); line-height: 1.5;
}
.feature__bullets li::before {
  content: '→';
  position: absolute; left: 0; top: 0;
  font-family: var(--font-mono); color: currentColor; opacity: 0.7;
}
.feature__metrics {
  margin-top: 18px; padding-top: 16px;
  border-top: 1px solid var(--hairline);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
}
.feature__metric { display: flex; flex-direction: column; gap: 2px; }
.feature__metric-label {
  font-family: var(--font-mono); font-size: 9px; font-weight: 700;
  letter-spacing: var(--eyebrow-tracking); text-transform: uppercase; color: var(--text-faded);
}
.feature__metric-value {
  font-family: var(--font-mono); font-variant-numeric: tabular-nums;
  font-size: 14px; font-weight: 700; color: var(--text);
}

/* ─────────────────── Steps ─────────────────── */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative;
  padding: 24px 22px 28px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.018);
  border: 1px solid var(--hairline);
}
.step__num {
  font-family: var(--font-editorial); font-style: italic; font-weight: 400;
  font-size: 64px; line-height: 1;
  color: var(--green);
  margin-bottom: 12px;
}
.step:nth-child(2) .step__num {
  color: var(--yellow);
}
.step:nth-child(3) .step__num {
  color: var(--blue);
}
.step__title { font-size: 1.08rem; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.step__desc { color: var(--text-muted); font-size: 0.94rem; line-height: 1.55; margin: 0; }

/* ─────────────────── Specs ─────────────────── */
.specs {
  display: grid; grid-template-columns: repeat(2, 1fr);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.022) 0%, rgba(0, 0, 0, 0.06) 100%),
    var(--bg-elev);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 760px) { .specs { grid-template-columns: 1fr; } }
.spec {
  padding: 22px 26px;
  border-bottom: 1px solid var(--hairline);
  border-right: 1px solid var(--hairline);
  display: flex; flex-direction: column; gap: 6px;
}
.spec:nth-child(2n) { border-right: none; }
.specs > .spec:nth-last-child(-n+2) { border-bottom: none; }
@media (max-width: 760px) {
  .spec { border-right: none; }
  .specs > .spec:nth-last-child(-n+2) { border-bottom: 1px solid var(--hairline); }
  .specs > .spec:last-child { border-bottom: none; }
}
.spec__label {
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  letter-spacing: var(--eyebrow-tracking); text-transform: uppercase; color: var(--text-faded);
}
.spec__value {
  font-family: var(--font-mono); font-variant-numeric: tabular-nums;
  font-size: 18px; font-weight: 700; color: var(--text);
  letter-spacing: -0.01em;
}
.spec__detail { color: var(--text-muted); font-size: 0.9rem; line-height: 1.5; margin-top: 4px; }

/* ─────────────────── Pricing ─────────────────── */
.pricing {
  display: grid; gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 960px) { .pricing { grid-template-columns: 1fr; } }
.pricing__card {
  position: relative;
  display: flex; flex-direction: column; gap: 18px;
  padding: 28px 26px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--hairline);
}
.pricing__card--featured {
  background:
    radial-gradient(420px 220px at 80% 0%, rgba(0, 194, 255, 0.10), transparent 70%),
    rgba(255, 255, 255, 0.03);
  border-color: var(--hairline-strong);
  box-shadow: 0 0 0 1px rgba(0, 194, 255, 0.18) inset;
}
.pricing__head { display: flex; flex-direction: column; gap: 6px; }
.pricing__badge {
  align-self: flex-start;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  color: var(--text-faded); letter-spacing: 0.14em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px; border: 1px solid var(--hairline);
}
.pricing__badge--accent {
  color: var(--text); background: rgba(0, 194, 255, 0.10);
  border-color: rgba(0, 194, 255, 0.32);
}
.pricing__name { font-size: 1.05rem; font-weight: 700; margin: 0; }
.pricing__price { display: flex; align-items: baseline; gap: 6px; margin: 4px 0 0; }
.pricing__amount { font-size: 1.6rem; font-weight: 800; color: var(--text); }
.pricing__period { color: var(--text-muted); font-size: 0.9rem; }
.pricing__hint { color: var(--text-faded); font-size: 0.8rem; margin: 4px 0 0; }
.pricing__perks { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.pricing__perks li {
  color: var(--text-muted); font-size: 0.92rem; line-height: 1.45;
  padding-left: 18px; position: relative;
}
.pricing__perks li::before {
  content: '+'; position: absolute; left: 0; top: 0;
  color: rgba(76, 175, 80, 0.85); font-weight: 700;
}
.pricing__cta { align-self: stretch; text-align: center; }
.pricing__note {
  color: var(--text-faded);
  font-size: 0.82rem;
  line-height: 1.55;
  margin-top: 28px;
  padding: 16px 18px;
  border-radius: 10px;
  border: 1px solid var(--hairline);
  background: rgba(255, 255, 255, 0.015);
}

/* ─────────────────── FAQ ─────────────────── */
.faq {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
}
@media (max-width: 760px) { .faq { grid-template-columns: 1fr; } }
.faq__item {
  padding: 22px 24px; border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--hairline);
}
.faq__q {
  font-weight: 700; font-size: 1rem; margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.faq__q::before {
  content: 'Q.';
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  color: var(--text-faded); letter-spacing: 0.12em;
  padding: 2px 6px; border: 1px solid var(--hairline-strong); border-radius: 4px;
}
.faq__a { color: var(--text-muted); font-size: 0.94rem; line-height: 1.55; margin: 0; }

/* ─────────────────── Final CTA ─────────────────── */
.final {
  position: relative;
  padding: clamp(60px, 9vw, 110px) clamp(28px, 5vw, 64px);
  border-radius: 22px;
  text-align: center;
  background:
    radial-gradient(700px 360px at 20% 20%, rgba(0, 194, 255, 0.08), transparent 60%),
    radial-gradient(700px 360px at 80% 80%, rgba(76, 175, 80, 0.08), transparent 60%),
    linear-gradient(180deg, rgba(20, 27, 37, 0.55), rgba(8, 11, 17, 0.7));
  border: 1px solid var(--hairline-strong);
  overflow: hidden;
}
.final::before {
  content: ''; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 calc(100% / 12 - 1px), var(--hairline) calc(100% / 12 - 1px) calc(100% / 12)),
    repeating-linear-gradient(0deg,  transparent 0 calc(100% / 6 - 1px),  var(--hairline) calc(100% / 6 - 1px)  calc(100% / 6));
  opacity: 0.5;
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
          mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}
.final > * { position: relative; }
.final h2 { margin-bottom: 14px; }
.final p { color: var(--text-muted); margin: 0 auto 32px; max-width: 60ch; }
.final__ctas { display: inline-flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ─────────────────── Footer ─────────────────── */
.site-footer {
  margin-top: clamp(72px, 9vw, 120px);
  padding: 36px 0 56px;
  border-top: 1px solid var(--hairline);
  color: var(--text-faded); font-size: 0.85rem;
}
.site-footer__row {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.site-footer__brand { display: flex; flex-direction: column; gap: 8px; }
.site-footer__tagline { color: var(--text-faded); font-size: 12px; }
.site-footer__links { display: flex; gap: 22px; flex-wrap: wrap; }
.site-footer__links a { color: var(--text-muted); }
.site-footer__links a:hover { color: var(--text); }
.disclaimer {
  margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--hairline);
  line-height: 1.6;
}

/* ─────────────────── Reveal animation ─────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 600ms ease, transform 600ms ease; }
.hero > .reveal { opacity: 1; transform: none; transition: none; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
