/* BlueFlow — blueflow.trade
   The app's tokens, on the web. Dark by default: the ground is a cold
   near-black navy so the blue brand reads as light rather than as an overlay. */

:root {
  --bg: #05080f;
  --bg-elevated: #080d16;
  --surface: #0c121d;
  --surface-raised: #111927;
  --border: #1a2334;
  --border-strong: #26344b;
  --border-faint: #121a28;

  --text: #edf2fa;
  --text-2: #98a8c0;
  --text-3: #5d6e88;
  --text-4: #3f4e63;

  --brand: #2e7bff;
  --brand-bright: #4ca8ff;
  --cyan: #63dbff;
  --brand-deep: #1b4fcc;
  --brand-faint: rgba(46, 123, 255, 0.1);
  --brand-edge: rgba(76, 168, 255, 0.28);

  --bull: #22d08a;
  --bear: #ff5c74;
  --warn: #f2b03c;

  --shell: min(1160px, 100% - 48px);
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --display: 'Inter Tight', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: ui-monospace, 'SF Mono', SFMono-Regular, Menlo, monospace;

  color-scheme: dark;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-bright); text-decoration: none; }
a:hover { color: var(--cyan); }

:focus-visible {
  outline: 2px solid var(--brand-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Type ─────────────────────────────────────────────────────────────── */

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
}

h1 { font-size: clamp(2.5rem, 6.1vw, 4.05rem); }
h2 { font-size: clamp(2rem, 4.6vw, 3rem); }
h3 { font-size: 1.25rem; letter-spacing: -0.02em; line-height: 1.25; }

p { margin: 0; }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
  margin: 0 0 18px;
}
.eyebrow b { color: var(--brand-bright); font-weight: 700; }

.lede { font-size: clamp(1.05rem, 1.9vw, 1.3rem); color: var(--text-2); line-height: 1.55; }
.muted { color: var(--text-2); }
.small { font-size: 0.9rem; color: var(--text-3); }

.grad {
  background: linear-gradient(100deg, #fff 8%, var(--brand-bright) 52%, var(--cyan) 92%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ── Shell ────────────────────────────────────────────────────────────── */

.shell { width: var(--shell); margin-inline: auto; }
section { position: relative; padding: clamp(72px, 11vw, 132px) 0; }
.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 18px; }

.rule {
  height: 1px;
  border: 0;
  margin: 0;
  background: linear-gradient(90deg, transparent, var(--border) 22%, var(--border) 78%, transparent);
}

/* ── Header ───────────────────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}
.site-header.is-stuck {
  background: rgba(5, 8, 15, 0.78);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom-color: var(--border-faint);
}
.site-header .shell {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 68px;
}

.wordmark { display: flex; align-items: center; gap: 10px; color: var(--text); }
.wordmark img { width: 26px; height: 26px; }
.wordmark span {
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav { display: flex; gap: 26px; margin-left: auto; }
.nav a { color: var(--text-2); font-size: 0.93rem; font-weight: 500; }
.nav a:hover { color: var(--text); }
@media (max-width: 860px) { .nav { display: none; } }

/* ── Buttons ──────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 50px;
  padding: 0 26px;
  border-radius: 999px;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.btn-primary {
  background: linear-gradient(180deg, var(--brand-bright), var(--brand));
  color: #04070d;
  box-shadow: 0 10px 34px -12px rgba(46, 123, 255, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.32);
}
.btn-primary:hover {
  color: #04070d;
  transform: translateY(-2px);
  box-shadow: 0 16px 44px -12px rgba(46, 123, 255, 0.95), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--border-strong);
  color: var(--text);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.06); border-color: var(--brand-edge); color: var(--text); }
.btn-sm { height: 40px; padding: 0 18px; font-size: 0.9rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.header-cta { display: inline-flex; }
@media (max-width: 520px) { .header-cta { display: none; } }

/* ── Ambient light ────────────────────────────────────────────────────── */

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.glow-a {
  width: 760px; height: 760px;
  top: -320px; left: 50%;
  transform: translateX(-58%);
  background: radial-gradient(circle, rgba(46, 123, 255, 0.3), transparent 66%);
}
.glow-b {
  width: 520px; height: 520px;
  top: 220px; right: -180px;
  background: radial-gradient(circle, rgba(99, 219, 255, 0.14), transparent 68%);
}

.grid-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 20%, transparent 76%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 20%, transparent 76%);
}

/* ── Hero ─────────────────────────────────────────────────────────────── */

.hero { padding: clamp(36px, 5vw, 60px) 0 clamp(56px, 7vw, 88px); overflow: hidden; }
.hero .shell { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy .btn-row, .hero-copy .badge, .hero-copy .hero-note { justify-content: center; }
  .hero-copy .lede { margin-inline: auto; }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 15px 7px 11px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(46, 123, 255, 0.07);
  font-size: 0.83rem;
  color: var(--text-2);
  margin-bottom: 26px;
}
.badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.hero h1 { margin-bottom: 22px; }
.hero .lede { max-width: 52ch; margin-bottom: 30px; }
.hero-note { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 22px; font-size: 0.86rem; color: var(--text-3); }
.hero-note span { display: inline-flex; align-items: center; gap: 7px; }
.hero-note svg { width: 14px; height: 14px; color: var(--bull); flex: none; }

/* ── Phone ────────────────────────────────────────────────────────────── */

.phone {
  position: relative;
  width: min(272px, 74vw);
  margin-inline: auto;
  border-radius: 46px;
  padding: 10px;
  background: linear-gradient(165deg, #2b364b, #0b1018 42%, #070b12);
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.08) inset,
    0 60px 120px -40px rgba(0, 0, 0, 0.95),
    0 0 90px -30px rgba(46, 123, 255, 0.55);
}
.phone::after {
  content: '';
  position: absolute;
  left: 50%; top: 18px;
  transform: translateX(-50%);
  width: 88px; height: 24px;
  border-radius: 999px;
  background: #05080f;
  z-index: 2;
}
.phone img { border-radius: 38px; width: 100%; }
.phone-float { animation: float 9s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@media (prefers-reduced-motion: reduce) { .phone-float { animation: none; } }

/* ── Logos strip ──────────────────────────────────────────────────────── */

.strip { padding: 30px 0 10px; }
.strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 30px;
  color: var(--text-4);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.strip-inner span:not(.sep) { color: var(--text-3); }
.sep { color: var(--text-4); opacity: 0.5; }

/* ── Cards ────────────────────────────────────────────────────────────── */

.cards { display: grid; gap: 20px; }
.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 900px) { .cols-3 { grid-template-columns: 1fr; } .cols-2 { grid-template-columns: 1fr; } }

.card {
  position: relative;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)) ,
    var(--surface);
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--text-2); font-size: 0.98rem; }

.icon {
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  margin-bottom: 20px;
  background: linear-gradient(160deg, rgba(76, 168, 255, 0.22), rgba(46, 123, 255, 0.06));
  border: 1px solid var(--brand-edge);
  color: var(--brand-bright);
}
.icon svg { width: 21px; height: 21px; }

/* Numbered steps */
.step .num {
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--brand-bright);
  margin-bottom: 16px;
}

/* ── Split feature ────────────────────────────────────────────────────── */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
}
.split.reverse .split-media { order: -1; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
}
.split h2 { margin-bottom: 20px; }

.tick-list { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 14px; }
.tick-list li { display: flex; gap: 13px; align-items: flex-start; color: var(--text-2); font-size: 1rem; }
.tick-list svg { width: 19px; height: 19px; flex: none; margin-top: 3px; color: var(--brand-bright); }
.tick-list b { color: var(--text); font-weight: 600; }

/* ── Read card (the mock analysis) ────────────────────────────────────── */

.read-card {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--bg-elevated);
  overflow: hidden;
  box-shadow: 0 40px 90px -50px rgba(0, 0, 0, 0.9);
}
.read-head {
  padding: 22px 24px;
  border-bottom: 1px solid var(--border-faint);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.read-head .pair { font-family: var(--display); font-weight: 800; font-size: 1.35rem; letter-spacing: -0.02em; }
.read-head .tf { font-size: 0.8rem; color: var(--text-3); letter-spacing: 0.12em; text-transform: uppercase; }
.verdict {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  color: var(--bull);
  background: rgba(34, 208, 138, 0.12);
  border: 1px solid rgba(34, 208, 138, 0.26);
}
.read-body { padding: 24px; display: grid; gap: 22px; }
.read-body .quote { font-size: 1.02rem; line-height: 1.55; color: var(--text); }
.meter-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 10px;
}
.meter { height: 6px; border-radius: 999px; background: rgba(255, 255, 255, 0.07); overflow: hidden; }
.meter i {
  display: block;
  height: 100%;
  width: 77%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--bull));
}
.read-rows { display: grid; gap: 1px; background: var(--border-faint); border-radius: var(--r-sm); overflow: hidden; }
.read-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 16px;
  background: var(--surface);
  font-size: 0.93rem;
}
.read-row span { color: var(--text-3); }
.read-row b { font-weight: 600; color: var(--text); font-family: var(--mono); font-size: 0.88rem; }
.read-row b.bull { color: var(--bull); }
.read-row b.bear { color: var(--bear); }
.read-foot {
  padding: 14px 24px 20px;
  font-size: 0.78rem;
  color: var(--text-4);
  border-top: 1px solid var(--border-faint);
}

/* ── Not-a-signal block ───────────────────────────────────────────────── */

.honest {
  border: 1px solid var(--border-strong);
  border-radius: var(--r-xl);
  padding: clamp(32px, 5vw, 56px);
  background:
    radial-gradient(ellipse at top left, rgba(242, 176, 60, 0.06), transparent 55%),
    var(--surface);
}
.honest-list { list-style: none; margin: 32px 0 0; padding: 0; display: grid; gap: 18px; }
.honest-list li { display: flex; gap: 14px; align-items: flex-start; color: var(--text-2); }
.honest-list svg { width: 20px; height: 20px; flex: none; margin-top: 3px; color: var(--warn); }
.honest-list b { color: var(--text); font-weight: 600; }

/* ── Pricing ──────────────────────────────────────────────────────────── */

.plans { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; align-items: stretch; }
@media (max-width: 800px) { .plans { grid-template-columns: 1fr; } }

.plan {
  position: relative;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  background: var(--surface);
  display: flex;
  flex-direction: column;
}
.plan.pro {
  border-color: var(--brand-edge);
  background:
    radial-gradient(ellipse at top, rgba(46, 123, 255, 0.16), transparent 62%),
    var(--surface-raised);
  box-shadow: 0 40px 100px -50px rgba(46, 123, 255, 0.7);
}
.plan-name { font-family: var(--display); font-weight: 800; font-size: 1.1rem; letter-spacing: -0.01em; }
.plan-tag {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-bright);
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid var(--brand-edge);
  background: rgba(46, 123, 255, 0.1);
}
.plan-price { display: flex; align-items: baseline; gap: 8px; margin: 22px 0 6px; }
.plan-price strong { font-family: var(--display); font-size: 3rem; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.plan-price span { color: var(--text-3); font-size: 0.95rem; }
.plan ul { list-style: none; margin: 26px 0 30px; padding: 0; display: grid; gap: 13px; }
.plan li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.96rem; color: var(--text-2); }
.plan li svg { width: 18px; height: 18px; flex: none; margin-top: 3px; color: var(--brand-bright); }
.plan .btn { margin-top: auto; width: 100%; }
.plan-note { margin-top: 14px; font-size: 0.78rem; color: var(--text-4); text-align: center; }

/* ── FAQ ──────────────────────────────────────────────────────────────── */

.faq { display: grid; gap: 12px; max-width: 820px; margin-inline: auto; }
details {
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--surface);
  transition: border-color 0.25s ease;
}
details[open] { border-color: var(--border-strong); }
summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '';
  width: 10px; height: 10px;
  border-right: 2px solid var(--text-3);
  border-bottom: 2px solid var(--text-3);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  flex: none;
  margin-top: -4px;
}
details[open] summary::after { transform: rotate(-135deg); margin-top: 4px; }
details p { padding: 0 24px 22px; color: var(--text-2); font-size: 0.98rem; }
details p + p { padding-top: 0; margin-top: -8px; }

/* ── CTA band ─────────────────────────────────────────────────────────── */

.cta-band {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--brand-edge);
  border-radius: var(--r-xl);
  padding: clamp(44px, 7vw, 84px) clamp(28px, 5vw, 64px);
  text-align: center;
  background:
    radial-gradient(ellipse at 50% -30%, rgba(46, 123, 255, 0.35), transparent 62%),
    linear-gradient(180deg, var(--surface-raised), var(--bg-elevated));
}
.cta-band h2 { margin-bottom: 18px; }
.cta-band .lede { max-width: 52ch; margin: 0 auto 32px; }
.cta-band .btn-row { justify-content: center; }

/* ── Footer ───────────────────────────────────────────────────────────── */

.site-footer { border-top: 1px solid var(--border-faint); padding: 64px 0 48px; background: var(--bg-elevated); }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 40px;
}
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer-grid h4 {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-grid a { color: var(--text-2); font-size: 0.93rem; }
.footer-grid a:hover { color: var(--text); }
.footer-about p { color: var(--text-3); font-size: 0.9rem; margin-top: 16px; max-width: 34ch; }
.footer-legal {
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid var(--border-faint);
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  justify-content: space-between;
  color: var(--text-4);
  font-size: 0.8rem;
}
.risk {
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid var(--border-faint);
  border-radius: var(--r);
  color: var(--text-4);
  font-size: 0.78rem;
  line-height: 1.6;
  background: rgba(255, 255, 255, 0.012);
}

/* ── Legal documents ──────────────────────────────────────────────────── */

.doc-hero { padding: clamp(56px, 8vw, 92px) 0 40px; position: relative; overflow: hidden; }
.doc-hero .shell { position: relative; z-index: 1; }
.doc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 24px;
  font-size: 0.84rem;
  color: var(--text-3);
}
.doc-meta b { color: var(--text-2); font-weight: 600; }

.doc-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
  padding-bottom: 110px;
}
@media (max-width: 940px) { .doc-layout { grid-template-columns: 1fr; gap: 30px; } }

.toc { position: sticky; top: 92px; max-height: calc(100vh - 130px); overflow-y: auto; }
@media (max-width: 940px) {
  .toc { position: static; max-height: none; border: 1px solid var(--border); border-radius: var(--r); padding: 18px; background: var(--surface); }
}
.toc h4 {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 700;
  margin-bottom: 14px;
}
.toc ol { list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; counter-reset: none; }
.toc a {
  color: var(--text-3);
  font-size: 0.85rem;
  line-height: 1.35;
  display: block;
  padding: 3px 0 3px 12px;
  border-left: 2px solid var(--border);
}
.toc a:hover { color: var(--text); border-left-color: var(--brand); }
.toc a.active { color: var(--brand-bright); border-left-color: var(--brand-bright); }

.doc { max-width: 76ch; }
.doc .summary-box {
  border: 1px solid var(--border);
  border-left: 3px solid var(--brand);
  border-radius: var(--r);
  padding: 22px 24px;
  background: var(--surface);
  color: var(--text-2);
  margin-bottom: 48px;
}
.doc section { padding: 0; margin-bottom: 42px; scroll-margin-top: 96px; }
.doc h2 {
  font-size: 1.3rem;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
  line-height: 1.3;
}
.doc p { color: var(--text-2); font-size: 1rem; line-height: 1.72; margin-bottom: 14px; }
.doc ul { margin: 6px 0 16px; padding-left: 0; list-style: none; display: grid; gap: 10px; }
.doc li { position: relative; padding-left: 22px; color: var(--text-2); line-height: 1.65; }
.doc li::before {
  content: '';
  position: absolute;
  left: 4px; top: 11px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--brand);
}
.doc section.emphasis {
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  padding: 30px;
  background:
    radial-gradient(ellipse at top left, rgba(242, 176, 60, 0.05), transparent 60%),
    var(--surface);
}
.doc section.emphasis h2 { color: var(--text); }
.doc section.emphasis p { color: var(--text); }

.doc-draft {
  border: 1px solid rgba(242, 176, 60, 0.3);
  background: rgba(242, 176, 60, 0.07);
  color: var(--warn);
  border-radius: var(--r);
  padding: 16px 20px;
  font-size: 0.9rem;
  margin-bottom: 30px;
}

/* ── Support ──────────────────────────────────────────────────────────── */

.contact-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 760px) { .contact-card { grid-template-columns: 1fr; } }
.contact-card .card { display: flex; flex-direction: column; }
.contact-card .card .btn { margin-top: 20px; align-self: flex-start; }

.steps-ol { counter-reset: s; list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.steps-ol li {
  counter-increment: s;
  position: relative;
  padding-left: 46px;
  color: var(--text-2);
  line-height: 1.6;
}
.steps-ol li::before {
  content: counter(s);
  position: absolute;
  left: 0; top: -1px;
  width: 28px; height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--brand-edge);
  background: rgba(46, 123, 255, 0.1);
  color: var(--brand-bright);
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 800;
}
.steps-ol b { color: var(--text); font-weight: 600; }

/* ── Reveal ───────────────────────────────────────────────────────────── */

.reveal { opacity: 0; transform: translateY(22px); }
.reveal.in { opacity: 1; transform: none; transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ── 404 ──────────────────────────────────────────────────────────────── */
.center-page { min-height: 62vh; display: grid; place-items: center; text-align: center; }
