/* ============================================================
   SULLY'S ACADEMY, SITE DESIGN SYSTEM (2026-09-23)
   Designed light from the ground up. White ground, neutral inks, one blue for
   fills and a deeper blue for text, soft hairlines, shadows that read as lift
   rather than glow. Bebas Neue for headlines (the brand), Hanken Grotesk for
   text, Martian Mono for small labels (both self-hosted in /fonts).

   Used by: trial.html (the homepage), trial-short.html, 404.html, the legal
   pages, and as the base layer under the member guides and free tools.
   ============================================================ */

:root {
  --ink: #141414;
  --ink-2: #4f4f4f;
  --ink-3: #6b6b6b;
  --line: #e6e6e6;
  --line-2: #d6d6d6;
  --ground: #ffffff;
  --band: #f5f5f5;
  --inset: #efefef;

  --blue: #38B6FF;
  --blue-hover: #1FA9F7;
  --blue-deep: #0A73B5;
  --blue-display: #1F8FD6;
  --blue-tint: #EAF6FF;
  --blue-line: #B9E2FF;
  --on-blue: #0b0e14;

  --green: #008236;
  --green-tint: #EEF9F1;
  --green-line: #BFE8CC;
  --red: #b91c1c;
  --red-tint: #FDF2F2;
  --red-line: #F5C6C6;
  --purple: #6D28D9;
  --gold: #D8A520;

  --shadow-1: 0 1px 2px rgba(20,20,20,.05), 0 10px 28px -18px rgba(20,20,20,.22);
  --shadow-2: 0 2px 4px rgba(20,20,20,.05), 0 28px 60px -26px rgba(20,20,20,.30);
  --shadow-float: 0 4px 10px rgba(20,20,20,.06), 0 24px 48px -20px rgba(20,20,20,.28);

  --r-s: 10px;
  --r: 14px;
  --r-l: 22px;
  --r-pill: 999px;

  --font-display: 'Bebas Neue', 'Arial Narrow', Impact, sans-serif;
  --font: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --mono: 'Martian Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --wrap: 1160px;
  --gutter: 24px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--ground);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--blue-tint); color: var(--ink); }
:focus-visible { outline: 2px solid var(--blue-deep); outline-offset: 3px; border-radius: 4px; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-narrow { max-width: 760px; }

/* ---------- type ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue-deep);
}
.eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--blue); border-radius: 2px; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }

.h1, .h2, .h3-display {
  font-family: var(--font-display); font-weight: 400; letter-spacing: .012em; line-height: .92; color: var(--ink);
  text-transform: uppercase;
}
.h1 { font-size: clamp(52px, 6.6vw, 86px); }
.h2 { font-size: clamp(40px, 5vw, 66px); }
.h3-display { font-size: clamp(30px, 3.4vw, 44px); }
.accent { color: var(--blue-display); }

.lead { font-size: 18px; line-height: 1.6; color: var(--ink-2); }
.lead strong { color: var(--ink); font-weight: 600; }
.small { font-size: 14px; color: var(--ink-3); }
.mono { font-family: var(--mono); font-size: 12px; letter-spacing: .04em; }

/* ---------- buttons ---------- */
/* Buttons never move on hover: colour and a shine sweep only. */
.btn {
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: var(--r-pill);
  font-weight: 600; font-size: 15.5px; line-height: 1; letter-spacing: .005em;
  background: linear-gradient(180deg, #52C3FF 0%, var(--blue) 100%); color: var(--on-blue);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.45), 0 1px 2px rgba(20,20,20,.08), 0 10px 24px -14px rgba(10,115,181,.65);
  transition: box-shadow .18s var(--ease);
  white-space: nowrap;
}
.btn::after {
  content: ''; position: absolute; top: -20%; bottom: -20%; left: -70%; width: 45%; z-index: 1;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.5) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-18deg); opacity: 0; pointer-events: none;
}
.btn:hover { background: linear-gradient(180deg, #3FBBFF 0%, var(--blue-hover) 100%); box-shadow: inset 0 1px 0 rgba(255,255,255,.4), 0 1px 2px rgba(20,20,20,.08), 0 14px 28px -14px rgba(10,115,181,.75); }
.btn:hover::after { opacity: 1; animation: shine .75s var(--ease) forwards; }
@keyframes shine { from { left: -70%; } to { left: 130%; } }
.btn.lg { padding: 18px 34px; font-size: 17px; }
.btn.block { width: 100%; }
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px; border-radius: var(--r-pill);
  font-weight: 600; font-size: 15.5px; line-height: 1;
  background: var(--ground); color: var(--ink); border: 1px solid var(--line-2);
  transition: border-color .18s var(--ease), background .18s var(--ease);
  white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--ink); background: #fafafa; }
.btn-text { font-weight: 600; color: var(--blue-deep); text-decoration: underline; text-underline-offset: 3px; }

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: var(--r-pill);
  background: var(--blue-tint); color: var(--blue-deep);
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 500;
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.pill.green { background: var(--green-tint); color: var(--green); }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 500;
  background: rgba(255,255,255,.94); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s var(--ease);
}
.nav.scrolled { box-shadow: 0 6px 24px -18px rgba(20,20,20,.25); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.nav-logo svg { height: 30px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 14.5px; font-weight: 500; color: var(--ink-2); transition: color .15s; }
.nav-links a:hover { color: var(--ink); }
.nav .btn { padding: 12px 20px; font-size: 14.5px; }

/* ---------- announcement bar ---------- */
.announce { background: var(--ink); color: #fff; font-size: 13.5px; }
.announce-inner { display: flex; align-items: center; justify-content: center; gap: 18px; min-height: 40px; padding-top: 8px; padding-bottom: 8px; text-align: center; }
.announce-msg { color: rgba(255,255,255,.82); }
.announce-msg b { color: #fff; font-weight: 700; }
.announce-msg .short { display: none; }
.announce a { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--blue); white-space: nowrap; }
.announce a:hover { text-decoration: underline; }

/* ---------- sections ---------- */
.section { padding: clamp(72px, 9vw, 112px) 0; }
.section.band { background: var(--band); }
.section-head { max-width: 680px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head .h2 { margin: 16px 0 18px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- hero ---------- */
.hero { padding: clamp(48px, 7vw, 96px) 0 clamp(40px, 5vw, 64px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero-copy .h1 { margin: 22px 0 22px; }
.hero-copy .lead { max-width: 560px; }
.hero-price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 14px; margin: 26px 0 18px; font-family: var(--mono); font-size: 13px; color: var(--ink-3); letter-spacing: .02em; }
.hero-price .now { font-size: 15px; font-weight: 700; color: var(--ink); }
.hero-price .save { color: var(--green); font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-guarantee { display: flex; align-items: flex-start; gap: 9px; margin-top: 16px; font-size: 14px; color: var(--ink-3); max-width: 520px; }
.hero-guarantee svg { flex-shrink: 0; margin-top: 2px; color: var(--green); }
.stars { color: var(--gold); letter-spacing: .06em; font-size: 13px; }

/* the product visual */
.hero-visual { position: relative; padding: 28px 0 44px 28px; }
.hero-visual::before {
  content: ''; position: absolute; inset: 0 -24px 0 0; z-index: 0;
  background: var(--band); border-radius: var(--r-l);
}
.window { position: relative; z-index: 1; background: var(--ground); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-2); overflow: hidden; }
.window-bar { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-bottom: 1px solid var(--line); background: #fafafa; }
.window-bar .dots { display: flex; gap: 6px; }
.window-bar .dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--line-2); }
.window-bar .url { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-family: var(--mono); font-size: 11px; color: var(--ink-3); background: var(--ground); border: 1px solid var(--line); border-radius: 6px; padding: 5px 10px; text-align: center; }
.feed { display: grid; grid-template-columns: 50px 138px 1fr; height: 330px; font-size: 11.5px; }
.feed-rail { background: var(--band); border-right: 1px solid var(--line); display: flex; flex-direction: column; align-items: center; padding: 12px 0; gap: 10px; }
.feed-rail .srv { width: 32px; height: 32px; border-radius: 10px; background: var(--blue); color: var(--on-blue); font-weight: 700; font-size: 11px; display: grid; place-items: center; }
.feed-rail .ic { width: 32px; height: 32px; border-radius: 50%; background: var(--ground); border: 1px solid var(--line); color: var(--ink-3); display: grid; place-items: center; }
.feed-rail .ic svg { width: 15px; height: 15px; }
.feed-chan { background: #fafafa; border-right: 1px solid var(--line); display: flex; flex-direction: column; }
.feed-chan-head { display: flex; align-items: center; justify-content: space-between; padding: 12px 12px 10px; border-bottom: 1px solid var(--line); }
.feed-chan-head b { font-size: 11.5px; font-weight: 700; color: var(--ink); }
.feed-chan-head .live { font-family: var(--mono); font-size: 8.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--green); background: var(--green-tint); border-radius: 999px; padding: 3px 7px; }
.feed-group { padding: 10px 12px 4px; font-family: var(--mono); font-size: 8.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.feed-ch { display: flex; align-items: center; gap: 6px; margin: 1px 6px; padding: 5px 8px; border-radius: 6px; color: var(--ink-2); font-size: 11px; }
.feed-ch .h { color: var(--ink-3); font-weight: 600; }
.feed-ch.active { background: var(--blue-tint); color: var(--ink); font-weight: 600; }
.feed-ch.active .h { color: var(--blue-deep); }
.feed-ch .n { margin-left: auto; background: var(--blue); color: var(--on-blue); font-size: 9px; font-weight: 700; padding: 1px 6px; border-radius: 999px; }
.feed-chat { display: flex; flex-direction: column; min-width: 0; }
.feed-chat-head { display: flex; align-items: center; gap: 6px; padding: 12px 14px 10px; border-bottom: 1px solid var(--line); font-weight: 700; font-size: 11.5px; }
.feed-chat-head .h { color: var(--blue-deep); }
.feed-msgs { padding: 12px 14px; display: flex; flex-direction: column; gap: 11px; overflow: hidden; }
.msg { display: flex; gap: 9px; align-items: flex-start; }
.msg .av { width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center; font-size: 10px; font-weight: 700; color: var(--on-blue); background: var(--blue); }
.msg .av.m { background: #E9DEFF; color: var(--purple); }
.msg .name { font-size: 10.5px; font-weight: 700; color: var(--blue-deep); margin-bottom: 2px; }
.msg .name.m { color: var(--ink-2); }
.msg .text { font-size: 11px; color: var(--ink-2); line-height: 1.5; }
.trade { margin-top: 6px; background: var(--blue-tint); border: 1px solid var(--blue-line); border-radius: 8px; padding: 8px 10px; }
.trade .pair { font-family: var(--mono); font-size: 10px; font-weight: 700; color: var(--blue-deep); letter-spacing: .06em; margin-bottom: 5px; }
.trade .row { display: flex; gap: 14px; }
.trade .k { font-family: var(--mono); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); }
.trade .v { font-family: var(--mono); font-size: 10.5px; color: var(--ink); }
.trade .v.up { color: var(--green); } .trade .v.dn { color: var(--red); }
.result { display: inline-flex; align-items: center; gap: 6px; margin-top: 6px; font-family: var(--mono); font-size: 9.5px; color: var(--green); background: var(--green-tint); border: 1px solid var(--green-line); border-radius: 6px; padding: 3px 8px; }

.float { position: absolute; z-index: 2; background: var(--ground); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-float); padding: 12px 16px; }
.float .k { font-family: var(--mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 4px; }
.float .v { font-family: var(--font-display); font-size: 30px; line-height: 1; color: var(--blue-display); }
.float .s { font-size: 11px; color: var(--ink-3); margin-top: 3px; }
.float.tr { top: 0; right: -10px; }
.float.bl { bottom: 8px; left: -6px; }
.float.bl .v { color: var(--ink); }
.float .brand { font-family: var(--mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: var(--purple); background: #F3EDFF; border-radius: 6px; padding: 3px 7px; display: inline-block; margin-bottom: 8px; }
.float .ok { font-size: 11px; color: var(--green); font-weight: 600; margin-top: 3px; }
.float.live { top: -14px; left: 40px; padding: 8px 12px; display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: var(--ink); border-radius: 999px; }
.float.live .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(0,130,54,.4); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(0,130,54,.35); } 70% { box-shadow: 0 0 0 9px rgba(0,130,54,0); } 100% { box-shadow: 0 0 0 0 rgba(0,130,54,0); } }

/* ---------- the receipts (a statement, not a stat bar) ---------- */
.receipts { padding: 0 0 clamp(8px, 2vw, 16px); }
.receipt { max-width: 900px; margin: -20px auto 0; position: relative; z-index: 2; background: var(--ground); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-2); padding: 22px 30px 16px; }
.receipt-head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px 16px; padding-bottom: 14px; border-bottom: 1px dashed var(--line-2); }
.receipt-link { font-family: var(--mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; font-weight: 600; color: var(--blue-deep); }
.receipt-link:hover { text-decoration: underline; }
.receipt-row { display: grid; grid-template-columns: auto 1fr auto; grid-template-areas: "label dots value" "note note value"; align-items: baseline; column-gap: 14px; padding: 14px 0; border-bottom: 1px dashed var(--line); }
.receipt-row:last-of-type { border-bottom: 0; }
.receipt-row .label { grid-area: label; font-size: 15.5px; font-weight: 600; color: var(--ink); }
.receipt-row .dots { grid-area: dots; height: 0; border-bottom: 2px dotted var(--line-2); transform: translateY(-4px); }
.receipt-row .value { grid-area: value; align-self: center; font-family: var(--font-display); font-size: clamp(30px, 3vw, 40px); line-height: 1; color: var(--ink); text-align: right; white-space: nowrap; }
.receipt-row .receipt-note { grid-area: note; font-family: var(--mono); font-size: 10.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); margin-top: 5px; }
.receipt-row .receipt-note.ok { color: var(--green); }
.receipt-foot { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 6px 12px; padding-top: 12px; border-top: 1px dashed var(--line-2); font-family: var(--mono); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); }

/* ---------- cards ---------- */
.card { background: var(--ground); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-1); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.feature { padding: 28px 26px 30px; }
.feature .icon { width: 44px; height: 44px; border-radius: 12px; background: var(--blue-tint); color: var(--blue-deep); display: grid; place-items: center; margin-bottom: 20px; }
.feature .icon svg { width: 22px; height: 22px; }
.feature h3 { font-size: 18px; font-weight: 600; letter-spacing: -.01em; margin-bottom: 8px; }
.feature p { font-size: 15px; color: var(--ink-2); }

/* ---------- proof ---------- */
.proof-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(32px, 5vw, 64px); align-items: start; }
.note { background: var(--ground); border: 1px solid var(--line); border-left: 3px solid var(--blue); border-radius: var(--r-s); padding: 18px 20px; margin-top: 26px; }
.note .k { font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--blue-deep); margin-bottom: 8px; }
.note p { font-size: 14.5px; color: var(--ink-2); }
.wd { display: flex; flex-direction: column; gap: 14px; }
.wd-card { display: block; width: 100%; text-align: left; background: var(--ground); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-1); overflow: hidden; transition: box-shadow .2s var(--ease), border-color .2s var(--ease); }
.wd-card:hover { box-shadow: var(--shadow-2); border-color: var(--line-2); }
.wd-head { display: flex; align-items: center; justify-content: space-between; padding: 12px 18px; background: #fafafa; border-bottom: 1px solid var(--line); }
.wd-head .brand { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: var(--purple); }
.wd-head .tag { font-family: var(--mono); font-size: 9.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); border: 1px solid var(--line-2); border-radius: 6px; padding: 4px 8px; }
.wd-body { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; padding: 18px; }
.wd-body .k { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--purple); margin-bottom: 6px; }
.wd-body .amt { font-family: var(--font-display); font-size: 42px; line-height: 1; color: var(--ink); }
.wd-body .meta { text-align: right; font-size: 13px; color: var(--ink-3); }
.wd-body .meta b { display: block; color: var(--green); font-weight: 600; margin-top: 3px; }
.wd-body .view { font-size: 12px; color: var(--blue-deep); font-weight: 600; margin-top: 6px; }

/* ---------- trader ---------- */
.trader-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
.trader-photo { position: relative; max-width: 440px; }
.trader-photo img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--r-l); border: 1px solid var(--line); box-shadow: var(--shadow-2); }
.trader-photo .float { position: absolute; left: -18px; bottom: 28px; }
.trader-photo .float .v { color: var(--ink); font-size: 34px; }
.trader-copy .h2 { margin: 16px 0 20px; }
.trader-copy p + p { margin-top: 14px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 28px; }
.chip { font-family: var(--mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-2); background: var(--band); border: 1px solid var(--line); border-radius: 999px; padding: 7px 12px; }

/* ---------- reviews: one swipeable rail, fixed height ---------- */
.review { padding: 24px 24px 22px; display: flex; flex-direction: column; gap: 12px; }
.review .stars { font-size: 14px; }
.review p { font-size: 15px; color: var(--ink); line-height: 1.6; }
.review .who { margin-top: auto; font-family: var(--mono); font-size: 11.5px; color: var(--ink-3); letter-spacing: .02em; }
.review.chat .chat-head { display: flex; align-items: center; gap: 10px; }
.review.chat .av { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; font-size: 11.5px; font-weight: 700; color: var(--purple); background: #E9DEFF; }
.review.chat .name { font-size: 13px; font-weight: 700; color: var(--ink); }
.review.chat .tag { margin-left: auto; font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); border: 1px solid var(--line); border-radius: 999px; padding: 3px 8px; white-space: nowrap; }
.review.chat p { color: var(--ink-2); }
.rail-wrap { position: relative; }
.rail { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 40px) / 3); gap: 20px; overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; padding: 4px 0 12px; }
.rail::-webkit-scrollbar { display: none; }
.rail > * { scroll-snap-align: start; }
.rail:focus-visible { outline-offset: 6px; }
.rail-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 10px; }
.rail-btn { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-2); background: var(--ground); color: var(--ink); font-size: 18px; display: grid; place-items: center; transition: border-color .15s var(--ease), background .15s var(--ease); }
.rail-btn:hover { border-color: var(--ink); }
.rail-btn:disabled { opacity: .35; cursor: default; }
.rail-progress { width: 160px; height: 3px; border-radius: 3px; background: var(--line-2); overflow: hidden; }
.rail-progress i { display: block; height: 100%; width: 25%; background: var(--ink); border-radius: 3px; transition: width .2s var(--ease); }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
.step { padding: 28px 26px 30px; position: relative; }
.step .num { width: 38px; height: 38px; border-radius: 50%; background: var(--ink); color: #fff; font-family: var(--font-display); font-size: 19px; display: grid; place-items: center; margin-bottom: 20px; }
.step h3 { font-size: 19px; font-weight: 600; margin-bottom: 8px; letter-spacing: -.01em; }
.step p { font-size: 15px; color: var(--ink-2); }

/* ---------- pricing ---------- */
.plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 880px; margin: 0 auto; }
.plan { padding: 30px 28px 28px; position: relative; display: flex; flex-direction: column; }
.plan.best { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-tint), var(--shadow-2); }
.plan .badge { position: absolute; top: -13px; left: 28px; background: var(--blue); color: var(--on-blue); font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; padding: 6px 11px; border-radius: 999px; }
.plan .name { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 14px; }
.plan .price { display: flex; align-items: baseline; gap: 6px; }
.plan .price .cur { font-family: var(--font-display); font-size: 28px; color: var(--ink-3); }
.plan .price .amt { font-family: var(--font-display); font-size: 68px; line-height: .9; color: var(--ink); }
.plan .price .per { font-size: 15px; color: var(--ink-3); }
.plan .sub { margin-top: 12px; font-size: 14px; color: var(--ink-2); min-height: 44px; }
.plan .sub b { color: var(--green); font-weight: 600; }
.plan ul { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-top: 18px; flex: 1; }
.plan li { display: flex; gap: 9px; align-items: flex-start; font-size: 14.5px; color: var(--ink-2); line-height: 1.45; }
.plan li svg { flex-shrink: 0; width: 18px; height: 18px; color: var(--green); margin-top: 2px; }
.plan li b { color: var(--ink); font-weight: 600; }
.plan .btn, .plan .btn-ghost { margin-top: 22px; width: 100%; }
.plan .fine { margin-top: 12px; font-size: 12.5px; color: var(--ink-3); text-align: center; }
.plan .fine.urgent { color: var(--red); font-weight: 600; }
.included { max-width: 880px; margin: 26px auto 0; padding: 18px 24px; }
.included p { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--ink-2); }
.included p svg { flex-shrink: 0; width: 18px; height: 18px; color: var(--green); margin-top: 3px; }
.guarantee { display: flex; align-items: flex-start; gap: 12px; max-width: 880px; margin: 18px auto 0; padding: 16px 20px; border-radius: var(--r-s); background: var(--ground); border: 1px solid var(--line); font-size: 14px; color: var(--ink-2); }
.guarantee svg { flex-shrink: 0; color: var(--green); margin-top: 1px; }
.guarantee b { color: var(--ink); font-weight: 600; }

/* ---------- faq ---------- */
.faq-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(32px, 5vw, 72px); align-items: start; }
.faq-side { position: sticky; top: 96px; }
.faq-side .h2 { margin: 16px 0 14px; }
.faq-cta { margin-top: 26px; padding: 22px; }
.faq-cta .btn { width: 100%; }
.faq-cta p { margin-top: 12px; font-size: 13px; color: var(--ink-3); text-align: center; }
.faq { display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--r-s); background: var(--ground); overflow: hidden; transition: border-color .2s var(--ease); }
.faq-item.open { border-color: var(--line-2); box-shadow: var(--shadow-1); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 20px; text-align: left; font-size: 16.5px; font-weight: 600; color: var(--ink); }
.faq-q .plus { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--ink-2); flex-shrink: 0; transition: transform .25s var(--ease), background .2s, color .2s; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); background: var(--ink); color: #fff; border-color: var(--ink); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s var(--ease); }
.faq-a > div { overflow: hidden; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a p { padding: 0 20px 20px; font-size: 15px; color: var(--ink-2); }

/* ---------- final cta ---------- */
.final { text-align: center; }
.final .h2 { margin: 16px auto 18px; max-width: 760px; }
.final .lead { max-width: 560px; margin: 0 auto 30px; }
.final .actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.final .small { margin-top: 16px; }

/* ---------- footer ---------- */
.footer { background: var(--band); border-top: 1px solid var(--line); padding: 56px 0 40px; }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px 40px; align-items: flex-start; }
.footer-brand p { margin-top: 12px; font-size: 14px; color: var(--ink-3); max-width: 360px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.footer-links a { font-size: 14px; color: var(--ink-2); }
.footer-links a:hover { color: var(--ink); }
.footer-disc { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 12.5px; line-height: 1.6; color: var(--ink-3); }
.footer-legal { margin-top: 14px; font-size: 12.5px; color: var(--ink-3); }

/* ---------- sticky mobile bar ---------- */
.sticky-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 400; display: none; align-items: center; justify-content: space-between; gap: 14px; padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); background: rgba(255,255,255,.96); backdrop-filter: blur(10px); border-top: 1px solid var(--line); box-shadow: 0 -10px 30px -18px rgba(20,20,20,.3); transform: translateY(110%); transition: transform .3s var(--ease); }
.sticky-bar.visible { transform: none; }
.sticky-bar .p { font-family: var(--font-display); font-size: 22px; line-height: 1; color: var(--ink); }
.sticky-bar .p small { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: .06em; color: var(--ink-3); margin-top: 4px; text-transform: none; }
.sticky-bar .btn { padding: 13px 18px; font-size: 14px; }

/* ---------- lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 9000; display: none; align-items: center; justify-content: center; padding: 24px; background: rgba(20,20,20,.86); backdrop-filter: blur(6px); }
.lightbox.open { display: flex; }
.lightbox img { max-width: min(900px, 100%); max-height: 88vh; border-radius: 12px; box-shadow: var(--shadow-2); background: #fff; }
.lightbox .x { position: absolute; top: 18px; right: 18px; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.14); color: #fff; font-size: 22px; display: grid; place-items: center; }

/* ---------- reveal ---------- */
.js .rv { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .rv.in { opacity: 1; transform: none; }
.js .rv.d1 { transition-delay: .08s; } .js .rv.d2 { transition-delay: .16s; } .js .rv.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .js .rv { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .float.live .dot { animation: none; }
  .btn:hover::after { animation: none; opacity: 0; }
}

/* ---------- legal pages ---------- */
.legal { padding: clamp(48px, 6vw, 80px) 0 clamp(64px, 8vw, 104px); }
.legal .h1 { font-size: clamp(44px, 6vw, 72px); margin: 14px 0 10px; }
.legal .meta { font-family: var(--mono); font-size: 11px; letter-spacing: .06em; color: var(--ink-3); margin-bottom: 40px; }
.legal-section { padding: 28px 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 64px 1fr; gap: 6px 16px; }
.legal-section .num { grid-row: 1 / 3; font-family: var(--font-display); font-size: 26px; color: var(--blue-display); line-height: 1; padding-top: 4px; }
.legal-section .title { grid-column: 2; font-size: 20px; font-weight: 600; margin-bottom: 6px; letter-spacing: -.01em; }
.legal-section .body { grid-column: 2; }
.legal-section p, .legal-section li { font-size: 15.5px; color: var(--ink-2); }
.legal-section p + p, .legal-section ul { margin-top: 12px; }
.legal-section ul { padding-left: 20px; }
.legal-section li + li { margin-top: 6px; }
.legal-section a { color: var(--blue-deep); text-decoration: underline; text-underline-offset: 2px; }
.legal-contact { margin-top: 40px; padding: 26px 28px; border: 1px solid var(--line); border-radius: var(--r); background: var(--band); }
.legal-contact .title { font-size: 20px; font-weight: 600; margin-bottom: 10px; letter-spacing: -.01em; }
.legal-contact p { font-size: 15.5px; color: var(--ink-2); }
.legal-contact p + p { margin-top: 12px; }
.legal-contact strong { color: var(--ink); }
.legal-contact a { color: var(--blue-deep); text-decoration: underline; text-underline-offset: 2px; }
.legal-contact .note { font-size: 13px; color: var(--ink-3); }
.policy-table { width: 100%; border-collapse: collapse; margin: 14px 0 4px; font-size: 14.5px; }
.policy-table th, .policy-table td { padding: 10px 12px; border: 1px solid var(--line); text-align: left; vertical-align: top; color: var(--ink-2); }
.policy-table th { background: var(--band); color: var(--ink); font-weight: 600; }
.callout { background: var(--blue-tint); border: 1px solid var(--blue-line); border-radius: var(--r-s); padding: 16px 18px; margin-bottom: 14px; font-size: 15px; color: var(--ink); }
.callout strong { font-weight: 600; }

/* ---------- 404 ---------- */
.nf { min-height: calc(100vh - 72px); display: grid; place-items: center; text-align: center; padding: 64px 0; }
.nf .h1 { margin: 18px 0 16px; }
.nf .actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 28px; }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-visual { width: 100%; max-width: 620px; margin: 8px auto 0; }
  .grid-3, .steps { grid-template-columns: repeat(2, 1fr); }
  .rail { grid-auto-columns: calc((100% - 20px) / 2); }
  .proof-grid, .trader-grid, .faq-grid { grid-template-columns: 1fr; }
  .faq-side { position: static; }
  .trader-photo { width: 100%; margin: 0 auto; }
}
@media (max-width: 768px) {
  :root { --gutter: 20px; }
  .nav-inner { height: 64px; }
  .nav-logo svg { height: 26px; }
  .nav-links { display: none; }
  .hero { padding-top: 36px; }
  .hero-copy .h1 { margin-top: 18px; }
  .lead { font-size: 16.5px; }
  .hero-visual { padding: 20px 0 36px 16px; }
  .hero-visual::before { inset: 0 -20px 0 0; }
  .feed { grid-template-columns: 44px 1fr; height: 300px; }
  .feed-chan { display: none; }
  .float.tr { right: 6px; top: -6px; padding: 10px 12px; }
  .float .v { font-size: 24px; }
  .float.bl { left: -4px; bottom: 4px; }
  .float.live { left: 20px; }
  .receipt { margin-top: -12px; padding: 18px 20px 12px; }
  .receipt-row { grid-template-columns: 1fr auto; grid-template-areas: "label value" "note value"; column-gap: 12px; }
  .receipt-row .dots { display: none; }
  .receipt-row .value { font-size: 28px; }
  .grid-3, .grid-2, .steps, .plans { grid-template-columns: 1fr; }
  .rail { grid-auto-columns: 84%; margin: 0 calc(-1 * var(--gutter)); padding-left: var(--gutter); padding-right: var(--gutter); scroll-padding-left: var(--gutter); }
  .trader-photo .float { left: 12px; }
  .sticky-bar { display: flex; }
  body.has-sticky { padding-bottom: 84px; }
  .footer-top { flex-direction: column; }
  .legal-section { grid-template-columns: 1fr; gap: 8px; }
  .legal-section .num { grid-row: auto; }
  .legal-section .title, .legal-section .body { grid-column: 1; }
}
@media (max-width: 520px) {
  .announce-inner { gap: 12px; font-size: 13px; min-height: 36px; padding-top: 7px; padding-bottom: 7px; }
  .announce-msg .long { display: none; }
  .announce-msg .short { display: inline; }
  .announce a .arr { display: none; }
  .nav-long { display: none; }
  .nav .btn { padding: 11px 16px; }
  .float.tr { display: none; }
}
@media (max-width: 400px) {
  .h1 { font-size: 50px; }
  .hero-actions .btn, .hero-actions .btn-ghost { width: 100%; }
}
