/* ==========================================================================
   Syvex site stylesheet. One file for every page.
   Tokens match the brand: red #e0301e, ink #05060a, paper #e8e6e0.
   ========================================================================== */
:root {
  --red: #e0301e; --red-lite: #ff6a4d; --red-deep: #8a1808;
  --ink: #05060a; --ink-2: #0b0c12; --ink-3: #11131c;
  --paper: #e8e6e0; --mute: #9a988f; --line: #23242c; --line-hot: rgba(224, 48, 30, .35);
  --wrap: 84rem; --gutter: 6vw;
  --ease: cubic-bezier(.16, .84, .28, 1);
  --display: 'Archivo Black', 'Arial Black', sans-serif;
  --body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --nav-h: 76px;
}
* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { background: var(--ink); color: var(--paper); font-family: var(--body); line-height: 1.5; overflow-x: hidden; }
body::before { content: ''; position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .035;
  background-image: repeating-linear-gradient(45deg, #fff 0, #fff 1px, transparent 1px, transparent 6px),
    repeating-linear-gradient(-45deg, #fff 0, #fff 1px, transparent 1px, transparent 6px); }
::selection { background: var(--red); color: #fff; }
img, video { max-width: 100%; display: block; }
a { color: var(--red-lite); }
button { font: inherit; }
main { position: relative; z-index: 1; }

/* ---------- type ---------- */
.display { font-family: var(--display); line-height: .98; letter-spacing: -.02em; font-weight: 400; }
h1.display { font-size: clamp(2.4rem, 6.4vw, 5.2rem); max-width: 14ch; }
h2.display { font-size: clamp(1.8rem, 4.2vw, 3.2rem); max-width: 20ch; }
h3.display { font-size: clamp(1.3rem, 2.4vw, 1.9rem); }
.grad { background: linear-gradient(95deg, var(--red-lite), var(--red) 60%, var(--red-deep)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.eyebrow { font-size: .68rem; letter-spacing: .38em; text-transform: uppercase; color: var(--red-lite); font-weight: 600; margin-bottom: 1.1rem; }
.lede { font-size: clamp(1.02rem, 1.4vw, 1.2rem); line-height: 1.6; color: #c9c7bf; max-width: 38rem; margin-top: 1.4rem; }
.lede b { color: var(--paper); }
.mute { color: var(--mute); }
.num { font-family: var(--display); font-variant-numeric: tabular-nums; line-height: 1; }
.hollow { color: transparent; -webkit-text-stroke: 1px rgba(224, 48, 30, .7); }
.prose p { color: #c2c0b8; line-height: 1.7; font-size: 1.02rem; max-width: 62ch; }
.prose p + p { margin-top: 1rem; }
.prose h2 { font-family: var(--display); font-size: clamp(1.3rem, 2.4vw, 1.9rem); margin: 2.4rem 0 .8rem; }
.prose ul { color: #c2c0b8; padding-left: 1.2rem; line-height: 1.7; }

/* ---------- layout ---------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.narrow { max-width: 58rem; }
.band { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; }
.band-tight { padding: clamp(3rem, 6vw, 5rem) 0; }
.band-ink2 { background: var(--ink-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.band-hot { background: radial-gradient(70% 60% at 50% 0%, rgba(224, 48, 30, .16), transparent 70%), var(--ink-2); border-top: 1px solid var(--line-hot); }
.g2, .g3, .g4 { display: grid; gap: 1.6rem; }
.g2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.g3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.g4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.split { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 3rem; align-items: center; }
.split.rev > :first-child { order: 2; }
.center { text-align: center; }
.center .lede, .center h2.display, .center h1.display { margin-left: auto; margin-right: auto; }
.mt1 { margin-top: 1rem; } .mt2 { margin-top: 2rem; } .mt3 { margin-top: 3rem; } .mt4 { margin-top: 4rem; }

/* ---------- reveal on scroll ---------- */
.rv { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .9s var(--ease); }
.rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .08s; } .rv-d2 { transition-delay: .16s; } .rv-d3 { transition-delay: .24s; } .rv-d4 { transition-delay: .32s; }
.ln { display: block; overflow: hidden; }
.ln > span { display: block; transform: translateY(110%); transition: transform 1s var(--ease); }
.in .ln > span { transform: none; }
.in .ln:nth-child(2) > span { transition-delay: .1s; } .in .ln:nth-child(3) > span { transition-delay: .2s; }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .55rem; background: var(--red); color: #fff;
  padding: 1rem 1.7rem; font-weight: 700; font-size: .95rem; letter-spacing: .01em; text-decoration: none; border: 1px solid var(--red);
  border-radius: 4px; cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: 0 8px 30px rgba(224, 48, 30, .28); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(224, 48, 30, .45); }
.btn-ghost { background: transparent; color: var(--paper); border-color: rgba(232, 230, 224, .28); box-shadow: none; }
.btn-ghost:hover { border-color: var(--red-lite); color: var(--red-lite); box-shadow: none; }
.btn-sm { padding: .62rem 1rem; font-size: .8rem; }
.btn-lg { padding: 1.15rem 2.1rem; font-size: 1.05rem; }
.btn-wide { width: 100%; }
.btn[disabled] { opacity: .6; cursor: wait; transform: none; }
.ctas { display: flex; gap: .9rem; flex-wrap: wrap; margin-top: 2.2rem; }
.textlink { color: var(--red-lite); text-decoration: none; font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; border-bottom: 1px solid var(--line-hot); padding-bottom: .15rem; }
.textlink:hover { color: #fff; border-color: var(--red); }

/* ---------- progress + nav ---------- */
.sx-prog { position: fixed; top: 0; left: 0; height: 2px; width: 100%; z-index: 90; transform-origin: 0 50%; transform: scaleX(0);
  background: linear-gradient(90deg, var(--red), #ff8a5c); box-shadow: 0 0 18px rgba(224, 48, 30, .8); }
.sx-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 80; transition: background .3s ease, backdrop-filter .3s ease, border-color .3s;
  background: linear-gradient(180deg, rgba(5, 6, 10, .92), rgba(5, 6, 10, 0)); border-bottom: 1px solid transparent; }
.sx-nav.stuck { background: rgba(5, 6, 10, .88); backdrop-filter: blur(14px); border-color: var(--line); }
.sx-nav-in { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); height: var(--nav-h); display: flex; align-items: center; gap: 1.6rem; }
.sx-brand img { height: 42px; width: auto; }
.sx-links { display: flex; align-items: center; gap: 1.4rem; margin-left: 1rem; }
.sx-link { color: var(--paper); text-decoration: none; font-size: .84rem; font-weight: 500; background: none; border: 0; cursor: pointer; padding: .4rem 0; display: inline-flex; align-items: center; gap: .35rem; }
.sx-link:hover { color: var(--red-lite); }
.sx-drop { position: relative; }
.sx-drop-btn i { width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); }
.sx-drop-menu { position: absolute; top: calc(100% + .6rem); left: -1rem; min-width: 21rem; background: rgba(11, 12, 18, .98); border: 1px solid var(--line); border-radius: 10px; padding: .6rem;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .6); opacity: 0; transform: translateY(8px); pointer-events: none; transition: opacity .2s, transform .25s var(--ease); }
.sx-drop:hover .sx-drop-menu, .sx-drop:focus-within .sx-drop-menu, .sx-drop.open .sx-drop-menu { opacity: 1; transform: none; pointer-events: auto; }
.sx-drop-menu a { display: block; text-decoration: none; padding: .7rem .8rem; border-radius: 6px; color: var(--paper); }
.sx-drop-menu a:hover { background: rgba(224, 48, 30, .12); }
.sx-drop-menu b { display: block; font-size: .9rem; }
.sx-drop-menu span { display: block; font-size: .74rem; color: var(--mute); margin-top: .15rem; }
.sx-nav-cta { margin-left: auto; display: flex; align-items: center; gap: .7rem; }
.sx-phone, .sx-mail { color: var(--paper); text-decoration: none; font-size: .82rem; font-weight: 600; }
.sx-mail { color: var(--mute); font-weight: 500; }
.sx-phone:hover, .sx-mail:hover { color: var(--red-lite); }
.sx-nav-soc { display: flex; gap: .4rem; margin-right: .3rem; }
.sx-nav-soc a { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; color: var(--ink); background: var(--paper); transition: background .2s, color .2s; }
.sx-nav-soc a:hover { background: var(--red); color: #fff; }
.sx-nav-soc svg { width: 19px; height: 19px; fill: currentColor; }
.sx-menu-soc { display: flex; align-items: center; gap: .8rem; justify-content: center; }
.sx-menu-soc .follow { font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; color: var(--red-lite); font-weight: 700; }
.sx-menu-soc a { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; color: var(--ink); background: var(--paper); }
.sx-menu-soc svg { width: 22px; height: 22px; fill: currentColor; }
.sx-burger { display: none; width: 44px; height: 44px; background: none; border: 1px solid var(--line); border-radius: 6px; cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.sx-burger span { width: 20px; height: 2px; background: var(--paper); transition: transform .25s, opacity .2s; }
.sx-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sx-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.sx-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.sx-menu { position: fixed; inset: var(--nav-h) 0 0 0; background: rgba(5, 6, 10, .97); backdrop-filter: blur(16px); z-index: 79; overflow: auto; }
.sx-menu[hidden] { display: none; }
.sx-menu-in { padding: 1.6rem var(--gutter) 3rem; display: flex; flex-direction: column; gap: 1.8rem; }
.sx-menu-stages a, .sx-menu-cols a { display: block; text-decoration: none; color: var(--paper); }
.sx-menu-stages a { padding: .9rem 1rem; border: 1px solid var(--line); border-radius: 8px; margin-top: .6rem; }
.sx-menu-stages a b { display: block; font-family: var(--display); font-size: 1.05rem; }
.sx-menu-stages a span { color: var(--mute); font-size: .8rem; }
.sx-menu-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.sx-menu-cols a { padding: .45rem 0; font-size: 1rem; border-bottom: 1px solid var(--line); }
.sx-menu-ctas { display: flex; flex-direction: column; gap: .7rem; }
.sx-menu-phone { color: var(--paper); text-align: center; text-decoration: none; font-weight: 600; padding: .6rem; }
@media (max-width: 1080px) {
  .sx-links, .sx-phone, .sx-nav-soc { display: none; }
  .sx-burger { display: flex; }
}
@media (max-width: 480px) { .sx-nav-cta .btn { display: none; } }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding: calc(var(--nav-h) + 3rem) 0 4rem; overflow: hidden; isolation: isolate; }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img, .hero-media video { width: 100%; height: 100%; object-fit: cover; }
.hero-media video { position: absolute; inset: 0; }
.hero-glow { background: radial-gradient(55% 60% at 72% 28%, rgba(224, 48, 30, .26), transparent 70%), radial-gradient(40% 40% at 18% 85%, rgba(224, 48, 30, .12), transparent 70%), var(--ink); }
.portrait { width: 100%; height: auto; }
.hero-veil { position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(5, 6, 10, .94) 0%, rgba(5, 6, 10, .78) 42%, rgba(5, 6, 10, .3) 75%, rgba(5, 6, 10, .55) 100%),
    linear-gradient(0deg, var(--ink) 0%, transparent 28%); }
.hero-grain { position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .08; mix-blend-mode: overlay;
  background-image: repeating-linear-gradient(45deg, #fff 0, #fff 1px, transparent 1px, transparent 6px), repeating-linear-gradient(-45deg, #fff 0, #fff 1px, transparent 1px, transparent 6px); }
.hero .wrap { width: 100%; }
.hero-tags { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: 1.6rem; }
.hero-tags span { font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--mute); border: 1px solid var(--line); padding: .4rem .7rem; border-radius: 999px; }
.hero-cue { position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); font-size: .58rem; letter-spacing: .3em; text-transform: uppercase; color: var(--mute); text-align: center; }
.hero-cue i { display: block; width: 1px; height: 34px; margin: .5rem auto 0; background: linear-gradient(var(--red), transparent); animation: cue 1.6s ease-in-out infinite; }
@keyframes cue { 0%, 100% { transform: scaleY(.4); transform-origin: top; } 50% { transform: scaleY(1); } }
@media (max-width: 900px) {
  .hero-veil { background: linear-gradient(180deg, rgba(5, 6, 10, .55) 0%, rgba(5, 6, 10, .7) 40%, rgba(5, 6, 10, .55) 72%, var(--ink) 100%); }
  .hero-media video { display: none; }
}

/* ---------- proof strip ---------- */
.proof { display: grid; grid-template-columns: repeat(4, auto); gap: 1.4rem 2.4rem; align-items: end; margin-top: 2.4rem;
  border-top: 1px solid var(--line-hot); border-bottom: 1px solid rgba(224, 48, 30, .12); padding: 1.3rem 0 1.1rem; max-width: 48rem; }
.proof b { display: block; font-family: var(--display); font-size: clamp(1.25rem, 2.3vw, 1.9rem); line-height: 1; font-variant-numeric: tabular-nums; }
.proof span { display: block; margin-top: .45rem; font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; color: var(--mute); line-height: 1.4; max-width: 11rem; }
.proof .hot b { color: var(--red-lite); text-shadow: 0 0 28px rgba(224, 48, 30, .55); }
.proof-note { margin-top: .9rem; font-size: .7rem; line-height: 1.55; color: var(--mute); max-width: 36rem; }

/* ---------- marquee belt ---------- */
.belt { position: relative; z-index: 2; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--ink-2); padding: 1rem 0; overflow: hidden; }
.belt + .belt { border-top: 0; }
.belt-row { display: flex; width: max-content; will-change: transform; }
.belt i { font-style: normal; display: inline-flex; align-items: center; gap: 1.6rem; padding-right: 1.6rem; font-family: var(--display);
  font-size: clamp(1rem, 2.2vw, 1.8rem); letter-spacing: -.01em; color: transparent; -webkit-text-stroke: 1px rgba(232, 230, 224, .32); white-space: nowrap; }
.belt i::after { content: '◆'; font-size: .5em; color: var(--red); -webkit-text-stroke: 0; }
.belt .on { color: var(--paper); -webkit-text-stroke: 0; }

/* ---------- stage picker ---------- */
.stages { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; margin-top: 2.6rem; }
.stage { position: relative; display: block; text-decoration: none; color: var(--paper); padding: 2rem 1.8rem 1.8rem; border: 1px solid var(--line); border-radius: 14px;
  background: linear-gradient(160deg, rgba(17, 19, 28, .98), rgba(8, 9, 14, .98)); overflow: hidden; transition: transform .25s var(--ease), border-color .25s; min-height: 17rem; }
.stage::before { content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity .3s;
  background: radial-gradient(260px 260px at var(--mx, 50%) var(--my, 50%), rgba(224, 48, 30, .28), transparent 70%); }
.stage:hover { transform: translateY(-4px); border-color: var(--line-hot); }
.stage:hover::before { opacity: 1; }
.stage .n { font-family: var(--display); font-size: 2.6rem; color: transparent; -webkit-text-stroke: 1px rgba(224, 48, 30, .65); line-height: 1; }
.stage h3 { font-family: var(--display); font-size: 1.25rem; margin: 1rem 0 .6rem; line-height: 1.1; }
.stage p { color: var(--mute); font-size: .92rem; line-height: 1.55; }
.stage .go { position: absolute; right: 1.4rem; bottom: 1.3rem; color: var(--red-lite); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; }
.stage.cur { border-color: var(--red); }
.stage.cur::after { content: 'You are here'; position: absolute; top: 1rem; right: 1rem; font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; background: var(--red); color: #fff; padding: .3rem .55rem; border-radius: 3px; }

/* ---------- cards ---------- */
.card { background: rgba(11, 12, 18, .85); border: 1px solid var(--line); border-radius: 12px; padding: 1.7rem 1.7rem 1.8rem; }
.card h3 { font-family: var(--display); font-size: 1.15rem; line-height: 1.15; }
.card p { color: var(--mute); font-size: .94rem; line-height: 1.6; margin-top: .7rem; }
.card .n { font-family: var(--display); font-size: 2.2rem; color: transparent; -webkit-text-stroke: 1px rgba(224, 48, 30, .6); line-height: 1; margin-bottom: 1rem; }
.card-hot { border-color: var(--line-hot); box-shadow: 0 20px 60px rgba(224, 48, 30, .08); background: linear-gradient(150deg, rgba(224, 48, 30, .12), rgba(8, 9, 14, .98)); }
.chip { display: inline-block; font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: var(--red-lite); border: 1px solid var(--line-hot); border-radius: 3px; padding: .3rem .55rem; }

/* ---------- packages ---------- */
.pkgs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.4rem; margin-top: 2.4rem; align-items: stretch; }
.pkgs.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.pkg { position: relative; display: flex; flex-direction: column; background: linear-gradient(160deg, rgba(17, 19, 28, .98), rgba(8, 9, 14, .98)); border: 1px solid var(--line); border-radius: 16px; padding: 1.9rem 1.7rem 1.7rem; transition: transform .25s var(--ease), border-color .25s, box-shadow .3s; }
.pkg:hover { transform: translateY(-4px); border-color: var(--line-hot); }
.pkg.rec { border-color: var(--red); box-shadow: 0 0 0 1px var(--red), 0 30px 80px rgba(224, 48, 30, .18); transform: translateY(-6px); }
.pkg-badge { position: absolute; top: -.75rem; left: 1.4rem; background: var(--red); color: #fff; font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 700; padding: .4rem .7rem; border-radius: 3px; opacity: 0; transition: opacity .2s; }
.pkg.rec .pkg-badge { opacity: 1; }
.pkg-name { font-family: var(--display); font-size: 1.25rem; line-height: 1.1; }
.pkg-for { color: var(--mute); font-size: .84rem; margin-top: .45rem; min-height: 2.6em; }
.pkg-price { margin-top: 1.3rem; display: flex; align-items: baseline; gap: .5rem; flex-wrap: wrap; }
.pkg-price b { font-family: var(--display); font-size: 2rem; line-height: 1; font-variant-numeric: tabular-nums; }
.pkg-price span { color: var(--mute); font-size: .78rem; }
.pkg-price + .pkg-price { margin-top: .5rem; }
.pkg-price + .pkg-price b { font-size: 1.4rem; }
.pkg-save { display: inline-block; margin-top: .9rem; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--red-lite); background: rgba(224, 48, 30, .12); border: 1px solid var(--line-hot); padding: .35rem .6rem; border-radius: 3px; }
.pkg ul { list-style: none; padding: 0; margin: 1.4rem 0 1.6rem; display: grid; gap: .55rem; }
.pkg li { position: relative; padding-left: 1.4rem; font-size: .9rem; color: #c9c7bf; line-height: 1.45; }
.pkg li::before { content: ''; position: absolute; left: 0; top: .5em; width: .55rem; height: .55rem; border-radius: 50%; background: var(--red); box-shadow: 0 0 10px rgba(224, 48, 30, .7); }
.pkg li.free { color: var(--paper); font-weight: 600; }
.pkg .btn { margin-top: auto; }
.pkg-note { margin-top: 1.4rem; font-size: .74rem; color: var(--mute); line-height: 1.55; max-width: 48rem; }

/* ---------- budget dial ---------- */
.dial { background: linear-gradient(160deg, rgba(17, 19, 28, .98), rgba(8, 9, 14, .98)); border: 1px solid var(--line-hot); border-radius: 18px; padding: 2rem; box-shadow: 0 30px 80px rgba(224, 48, 30, .1); }
.dial-row { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: 2rem; align-items: start; }
.dial label.big { display: block; font-family: var(--display); font-size: 1.05rem; margin-bottom: .8rem; }
.dial-out { font-family: var(--display); font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--red-lite); line-height: 1; font-variant-numeric: tabular-nums; text-shadow: 0 0 30px rgba(224, 48, 30, .5); }
.dial-out small { font-family: var(--body); font-size: .8rem; color: var(--mute); text-shadow: none; margin-left: .4rem; }
input[type="range"].dial-range { width: 100%; margin: 1.2rem 0 .6rem; appearance: none; height: 6px; border-radius: 999px; background: linear-gradient(90deg, var(--red) var(--pct, 30%), var(--line) var(--pct, 30%)); outline: none; }
input[type="range"].dial-range::-webkit-slider-thumb { appearance: none; width: 26px; height: 26px; border-radius: 50%; background: var(--paper); border: 4px solid var(--red); box-shadow: 0 0 0 6px rgba(224, 48, 30, .18); cursor: grab; }
input[type="range"].dial-range::-moz-range-thumb { width: 26px; height: 26px; border-radius: 50%; background: var(--paper); border: 4px solid var(--red); cursor: grab; }
.dial-scale { position: relative; height: 1.1rem; font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: var(--mute); }
.dial-scale span { position: absolute; top: 0; transform: translateX(-50%); }
.dial-scale span:first-child { transform: none; }
.dial-scale span:last-child { transform: translateX(-100%); }
.switch { display: inline-flex; align-items: center; gap: .8rem; margin-top: 1.4rem; cursor: pointer; font-size: .92rem; }
.switch input { appearance: none; width: 46px; height: 26px; border-radius: 999px; background: var(--line); position: relative; transition: background .2s; cursor: pointer; }
.switch input::after { content: ''; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: var(--paper); transition: transform .2s; }
.switch input:checked { background: var(--red); }
.switch input:checked::after { transform: translateX(20px); }
.dial-result { border: 1px solid var(--line); border-radius: 12px; padding: 1.4rem; background: rgba(5, 6, 10, .6); min-height: 100%; }
.dial-result .eyebrow { margin-bottom: .6rem; }
.dial-result h3 { font-family: var(--display); font-size: 1.35rem; line-height: 1.1; }
.dial-result .price { margin-top: .8rem; font-family: var(--display); font-size: 1.5rem; color: var(--red-lite); }
.dial-result .price small { font-family: var(--body); font-size: .78rem; color: var(--mute); }
.dial-result p { color: #c9c7bf; font-size: .9rem; line-height: 1.55; margin-top: .8rem; }
.dial-result .btn { margin-top: 1.2rem; }
@media (max-width: 800px) { .dial-row { grid-template-columns: 1fr; } .dial { padding: 1.4rem; } }

/* ---------- video block ---------- */
.vid { position: relative; border-radius: 14px; overflow: hidden; background: #0b0c12; border: 1px solid var(--line); aspect-ratio: 16 / 9; }
.vid.tall { aspect-ratio: 9 / 16; max-width: 22rem; margin-inline: auto; }
.vid video, .vid img { width: 100%; height: 100%; object-fit: cover; }
.vid-play { position: absolute; inset: 0; width: 100%; border: 0; cursor: pointer; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .8rem; color: var(--paper);
  font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; background: radial-gradient(60% 60% at 50% 45%, rgba(224, 48, 30, .28), transparent 70%), linear-gradient(180deg, rgba(5, 6, 10, .15), rgba(5, 6, 10, .55)); transition: background .25s; }
.vid-play:hover { background: radial-gradient(65% 65% at 50% 45%, rgba(224, 48, 30, .44), transparent 72%), linear-gradient(180deg, rgba(5, 6, 10, .1), rgba(5, 6, 10, .5)); }
.vid-play[hidden] { display: none; }
.vid-play .tri { width: 3.4rem; height: 3.4rem; border-radius: 50%; background: var(--red); display: grid; place-items: center; box-shadow: 0 10px 30px rgba(224, 48, 30, .5); }
.vid-play .tri svg { width: 1.1rem; height: 1.1rem; margin-left: .18rem; fill: #fff; }
.vid-cap { margin-top: .9rem; font-size: .8rem; color: var(--mute); line-height: 1.5; }
.vid-cap b { color: var(--paper); }
/* Slots for videos Jake has not filmed yet render nothing until data-src is set. */
.vid-slot:not([data-src]) { display: none; }

/* ---------- quotes / reviews ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.4rem; margin-top: 2.6rem; }
.quote { background: rgba(11, 12, 18, .9); border: 1px solid var(--line); border-radius: 12px; padding: 1.5rem 1.6rem; }
.quote .stars { color: var(--red-lite); letter-spacing: .18em; font-size: .8rem; margin-bottom: .7rem; }
.quote p { font-size: .95rem; line-height: 1.65; color: #c2c0b8; }
.quote .who { margin-top: .9rem; font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--mute); line-height: 1.6; }
.quote .who b { color: var(--red-lite); }
.gbadge { display: inline-flex; align-items: center; gap: .6rem; border: 1px solid var(--line); border-radius: 999px; padding: .5rem .9rem; font-size: .8rem; color: var(--paper); }
.gbadge .stars { color: #f5b301; letter-spacing: .1em; }

/* ---------- steps / how it works ---------- */
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.2rem; margin-top: 2.6rem; counter-reset: step; }
.step { position: relative; padding: 1.6rem 1.4rem 1.5rem; border: 1px solid var(--line); border-radius: 12px; background: rgba(11, 12, 18, .8); }
.step::before { counter-increment: step; content: '0' counter(step); font-family: var(--display); font-size: 2rem; color: transparent; -webkit-text-stroke: 1px rgba(224, 48, 30, .6); line-height: 1; display: block; margin-bottom: 1rem; }
.step h3 { font-family: var(--display); font-size: 1.05rem; line-height: 1.15; }
.step p { color: var(--mute); font-size: .9rem; line-height: 1.55; margin-top: .6rem; }
.step .t { position: absolute; top: 1.4rem; right: 1.3rem; font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--red-lite); }

/* ---------- compare table ---------- */
.compare { width: 100%; border-collapse: collapse; margin-top: 2.4rem; font-size: .92rem; }
.compare th, .compare td { text-align: left; padding: .95rem 1rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.compare th { font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: var(--mute); font-weight: 600; }
.compare td:first-child { color: var(--mute); width: 24%; }
.compare td.us { color: var(--paper); }
.compare td.us::before { content: '✓  '; color: var(--red-lite); font-weight: 700; }
.compare td.them { color: #8d8b83; }
.compare-wrap { overflow-x: auto; }

/* ---------- FAQ ---------- */
.faq { margin-top: 2.2rem; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 1.2rem 2.4rem 1.2rem 0; font-family: var(--display); font-size: 1.02rem; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: .2rem; top: 1rem; color: var(--red-lite); font-family: var(--body); font-size: 1.4rem; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: #c2c0b8; line-height: 1.65; padding: 0 0 1.3rem; max-width: 62ch; font-size: .96rem; }

/* ---------- forms ---------- */
.form { display: grid; gap: 1rem; }
.form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { display: block; font-size: .78rem; font-weight: 600; letter-spacing: .04em; margin-bottom: .4rem; color: var(--paper); }
.field label .req { color: var(--red-lite); }
.field input, .field select, .field textarea { width: 100%; background: #0b0c12; border: 1px solid var(--line); border-radius: 6px; color: var(--paper); font: inherit; font-size: .95rem; padding: .85rem .9rem; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: rgba(224, 48, 30, .6); box-shadow: 0 0 0 3px rgba(224, 48, 30, .15); }
.field textarea { min-height: 7rem; resize: vertical; }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--mute) 50%), linear-gradient(135deg, var(--mute) 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }
.hp-wrap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-msg { font-size: .88rem; color: var(--red-lite); min-height: 1.2em; }
.form-note { font-size: .78rem; color: var(--mute); line-height: 1.5; }
.form-panel { background: linear-gradient(160deg, rgba(17, 19, 28, .98), rgba(8, 9, 14, .98)); border: 1px solid var(--line-hot); border-radius: 16px; padding: 2rem; box-shadow: 0 30px 80px rgba(224, 48, 30, .1); }
.form-panel h2 { font-family: var(--display); font-size: 1.5rem; margin-bottom: .4rem; }
.form-panel .form { margin-top: 1.4rem; }
@media (max-width: 620px) { .form .row2 { grid-template-columns: 1fr; } .form-panel { padding: 1.4rem; } }

/* ---------- chapters rail ---------- */
.chapters { display: grid; grid-template-columns: 14rem minmax(0, 1fr); gap: 3rem; align-items: start; }
.rail { position: sticky; top: calc(var(--nav-h) + 2rem); display: grid; gap: .5rem; }
.rail a { text-decoration: none; color: var(--mute); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; padding: .5rem 0 .5rem 1rem; border-left: 2px solid var(--line); transition: color .2s, border-color .2s; }
.rail a.on, .rail a:hover { color: var(--paper); border-color: var(--red); }
.chapter { padding: 2.6rem 0; border-bottom: 1px solid var(--line); scroll-margin-top: calc(var(--nav-h) + 1rem); }
.chapter:first-child { padding-top: 0; }
.chapter .no { font-family: var(--display); font-size: 3.2rem; color: transparent; -webkit-text-stroke: 1px rgba(224, 48, 30, .6); line-height: 1; }
.chapter h2 { font-family: var(--display); font-size: clamp(1.5rem, 3vw, 2.3rem); margin: .8rem 0 1rem; line-height: 1.05; max-width: 20ch; }
@media (max-width: 900px) { .chapters { grid-template-columns: 1fr; } .rail { display: none; } }

/* ---------- misc blocks ---------- */
.ticks { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .8rem 2rem; margin-top: 1.6rem; }
.ticks li { list-style: none; position: relative; padding-left: 1.6rem; color: #c9c7bf; line-height: 1.5; font-size: .95rem; }
.ticks li::before { content: '✓'; position: absolute; left: 0; color: var(--red-lite); font-weight: 700; }
.ticks li b { color: var(--paper); }
.callout { border: 1px solid var(--line-hot); border-radius: 14px; padding: 1.6rem 1.8rem; background: linear-gradient(150deg, rgba(224, 48, 30, .16), rgba(8, 9, 14, .98)); display: flex; gap: 1.4rem; align-items: center; flex-wrap: wrap; }
.callout h3 { font-family: var(--display); font-size: 1.2rem; }
.callout p { color: #c9c7bf; font-size: .92rem; margin-top: .3rem; }
.callout .btn { margin-left: auto; }
.pill-row { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 1.4rem; }
.pill-row span { font-size: .72rem; color: var(--paper); border: 1px solid var(--line); padding: .45rem .8rem; border-radius: 999px; }
.stat-big { font-family: var(--display); font-size: clamp(3rem, 9vw, 7rem); line-height: .95; letter-spacing: -.02em; }
.stat-big small { display: block; font-family: var(--body); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--mute); margin-top: .8rem; }
.portrait { border-radius: 16px; border: 1px solid var(--line); box-shadow: 0 30px 80px rgba(0, 0, 0, .6); }
.cta-panel { text-align: center; border: 1px solid var(--line-hot); border-radius: 18px; padding: clamp(2.4rem, 6vw, 4rem) 2rem; background: radial-gradient(60% 80% at 50% 0%, rgba(224, 48, 30, .2), transparent 70%), rgba(5, 6, 10, .6); }
.cta-panel .ctas { justify-content: center; }
.cta-panel h2.display { margin-inline: auto; }
.list-plain { list-style: none; padding: 0; }
.finebar { font-size: .72rem; color: var(--mute); text-align: center; margin-top: 1.4rem; }

/* ---------- cta with arrow ---------- */
.cta-wrap { position: relative; display: inline-flex; flex-direction: column; align-items: center; gap: .55rem; margin-top: 2.2rem; }
.cta-sub { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--mute); }
.cta-arrow { position: absolute; right: -78px; top: -54px; width: 64px; height: 64px; color: var(--red-lite); pointer-events: none; animation: nudge 2.2s ease-in-out infinite; }
@keyframes nudge { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 50% { transform: translate(-7px, 7px) rotate(-6deg); } }
@media (max-width: 820px) { .cta-arrow { right: -14px; top: -62px; } }

/* ---------- footer ---------- */
.sx-footer { position: relative; z-index: 1; border-top: 1px solid var(--line); padding: 4rem 0 2.4rem; background: var(--ink); }
.sx-foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.4rem; }
.sx-foot-brand img { height: 36px; width: auto; }
.sx-foot-brand p { color: var(--mute); font-size: .86rem; line-height: 1.6; margin-top: 1rem; max-width: 30rem; }
.sx-socials { display: flex; gap: 1.1rem; margin-top: 1.4rem; align-items: center; }
.sx-socials .follow { font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; color: var(--red-lite); font-weight: 700; margin-right: .3rem; }
.sx-socials a { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; color: var(--ink); background: var(--paper); transition: background .2s, transform .15s; }
.sx-socials a:hover { background: var(--red); color: #fff; transform: translateY(-2px); }
.sx-socials svg { width: 24px; height: 24px; fill: currentColor; }
.sx-foot-h { font-size: .64rem; letter-spacing: .28em; text-transform: uppercase; color: var(--red-lite); font-weight: 700; margin-bottom: .9rem; }
.sx-foot-grid a { display: block; color: var(--paper); text-decoration: none; font-size: .86rem; padding: .3rem 0; }
.sx-foot-grid a:hover { color: var(--red-lite); }
.sx-foot-bottom { margin-top: 3rem; padding-top: 1.4rem; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .74rem; color: var(--mute); }
.sx-foot-bottom a { color: var(--mute); text-decoration: none; }
.sx-foot-bottom a:hover { color: var(--red-lite); }

/* ---------- legacy pages (old inner content in the new shell) ---------- */
body.legacy main { padding-top: max(9rem, calc(var(--nav-h) + 3.5rem)); }
body.legacy .back { display: inline-block; margin-bottom: 1.2rem; }

/* ---------- responsive ---------- */
@media (max-width: 1080px) { .g4, .pkgs.four { grid-template-columns: repeat(2, minmax(0, 1fr)); } .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 900px) {
  .g3, .stages, .pkgs, .quotes { grid-template-columns: 1fr; }
  .split, .split.rev { grid-template-columns: 1fr; }
  .split.rev > :first-child { order: 0; }
  .proof { grid-template-columns: repeat(2, 1fr); }
  .proof span { max-width: none; }
  .sx-foot-grid { grid-template-columns: 1fr 1fr; }
  .stage { min-height: 0; }
  .pkg.rec { transform: none; }
}
@media (max-width: 620px) {
  .g2, .g4, .pkgs.four, .steps, .ticks, .sx-foot-grid { grid-template-columns: 1fr; }
  .hero { padding-top: calc(var(--nav-h) + 2rem); }
  .callout .btn { margin-left: 0; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv, .ln > span { opacity: 1; transform: none; transition: none; }
  .belt-row { transform: none !important; }
  .hero-cue i { animation: none; }
  .btn, .stage, .pkg { transition: none; }
}
