/* LIOR MGMT — shared styles
   Black / white / black, with soft fades between the bands. */

:root {
  --ink: #08080A;
  --bone: #F4F4F2;
  --fg: #F4F4F2;
  --bg: #08080A;
  --mu: #9C9CA4;
  --fa: #7E7E86;
  --line: rgba(255,255,255,.12);
  --line2: rgba(255,255,255,.3);
  --pad: clamp(4.5rem, 9vw, 8.5rem);
  --pad-lo: clamp(1rem, 2vw, 2rem);
  --fade-h: clamp(7rem, 15vw, 13rem);
  --ease: cubic-bezier(.2,.7,.2,1);
  --display: 'Jost', 'Futura', system-ui, sans-serif;
  --body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --err: #C25B4E;
}
.light {
  --fg: #08080A; --bg: #F4F4F2; --mu: #4E4E55; --fa: #6B6B72;
  --line: rgba(8,8,10,.14); --line2: rgba(8,8,10,.4);
  background: var(--bg); color: var(--fg);
}
.dark { background: var(--ink); color: var(--bone); }

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(5.5rem + env(safe-area-inset-top, 0px)); }
html, body { overflow-x: clip; }
main { overflow-x: clip; }
body { margin: 0; background: var(--ink); color: var(--bone); font: 300 1rem/1.65 var(--body); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; padding: 0; cursor: pointer; }
h1, h2, h3, h4, p, ul, figure { margin: 0; padding: 0; }
ul { list-style: none; }
::selection { background: var(--bone); color: var(--ink); }
.light ::selection { background: var(--ink); color: var(--bone); }
:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; }
body.locked { overflow: hidden; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.sr-only:focus { position: fixed; z-index: 100; top: 1rem; left: 1rem; width: auto; height: auto; clip: auto; }
.hidden { display: none !important; }
.wrap { width: 100%; max-width: 80rem; margin-inline: auto; padding-inline: clamp(1.5rem, 4vw, 2.5rem); }

@view-transition { navigation: auto; }
::view-transition-old(root), ::view-transition-new(root) { animation-duration: .4s; }

.fg { color: var(--fg); } .mu { color: var(--mu); } .fa { color: var(--fa); }
.tnum { font-variant-numeric: tabular-nums; }

/* Type */
.display { font-family: var(--display); letter-spacing: -.035em; font-weight: 500; line-height: 1.03; }
.h2 { font-family: var(--display); font-weight: 500; letter-spacing: -.035em; line-height: 1.03; font-size: clamp(2.4rem, 5vw, 4.4rem); }
.h3 { font-family: var(--display); font-weight: 400; letter-spacing: -.025em; line-height: 1.1; font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.lede { color: var(--mu); font-size: clamp(1.05rem, 1.5vw, 1.25rem); line-height: 1.6; max-width: 36rem; }
.label { color: var(--fa); font-size: .9rem; }

/* Sections */
.sec { position: relative; padding-block: var(--pad); }
.sec.pt-lo { padding-top: var(--pad-lo); }
.sec.pb-lo { padding-bottom: var(--pad-lo); }
.sec.dark + .sec.dark { border-top: 1px solid rgba(255,255,255,.1); }

/* Fades between the black and white bands */
.fade { height: var(--fade-h); pointer-events: none; }
.fade-dl { background: linear-gradient(to bottom, #08080A 0.0%, #0B0B0D 7.1%, #151517 14.3%, #242425 21.4%, #373738 28.6%, #4D4D4E 35.7%, #656565 42.9%, #7E7E7E 50.0%, #979797 57.1%, #AFAFAE 64.3%, #C5C5C4 71.4%, #D8D8D7 78.6%, #E7E7E5 85.7%, #F1F1EF 92.9%, #F4F4F2 100.0%); }
.fade-ld { background: linear-gradient(to bottom, #F4F4F2 0.0%, #F1F1EF 7.1%, #E7E7E5 14.3%, #D8D8D7 21.4%, #C5C5C4 28.6%, #AFAFAE 35.7%, #979797 42.9%, #7E7E7E 50.0%, #656565 57.1%, #4D4D4E 64.3%, #373738 71.4%, #242425 78.6%, #151517 85.7%, #0B0B0D 92.9%, #08080A 100.0%); }

/* ---------- Header ---------- */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 50; padding-top: env(safe-area-inset-top, 0px); transition: background .4s ease; view-transition-name: site-header; color: var(--bone); }
.site-header.scrolled { background: rgba(8,8,10,.84); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 5rem; border-bottom: 1px solid transparent; transition: border-color .4s ease; }
.site-header.scrolled .nav-inner { border-color: rgba(255,255,255,.1); }
.brand { display: flex; align-items: center; gap: .9rem; }
.brand img { height: 2rem; width: auto; transition: opacity .25s; }
.brand:hover img { opacity: .7; }
.brand-word { font: 500 1.05rem/1 var(--display); letter-spacing: .18em; text-transform: uppercase; }
.brand-word i { font-style: normal; color: var(--mu); transition: color .25s; }
.brand:hover .brand-word i { color: var(--bone); }
.nav { display: none; align-items: center; gap: 2.25rem; font-size: .9rem; }
.nav a { color: #8B8B93; padding-bottom: .25rem; background-image: linear-gradient(currentColor, currentColor); background-size: 0% 1px; background-position: 0 100%; background-repeat: no-repeat; transition: background-size .35s var(--ease), color .25s; }
.nav a:hover, .nav a.active, .nav a[aria-current="page"] { color: var(--bone); background-size: 100% 1px; }
.site-header .nav-cta { display: none; }
.menu-btn { padding: .5rem; margin-right: -.5rem; }
.menu-btn svg { width: 1.5rem; height: 1.5rem; }
.mobile-menu { overflow: hidden; max-height: 0; opacity: 0; background: #08080A; border-bottom: 1px solid rgba(255,255,255,.1); transition: max-height .4s var(--ease), opacity .3s ease; }
.mobile-menu ul { padding: 2rem clamp(1.5rem, 4vw, 2.5rem) 2.25rem; display: flex; flex-direction: column; gap: 1.4rem; }
.mobile-menu a.m-link { font: 400 1.7rem/1.2 var(--display); letter-spacing: -.02em; }
@media (min-width: 768px) {
  .nav, .site-header .nav-cta { display: flex; }
  .menu-btn, .mobile-menu { display: none; }
}

/* ---------- Buttons ---------- */
.btn { position: relative; overflow: hidden; isolation: isolate; display: inline-flex; align-items: center; justify-content: center; gap: .65rem; font-weight: 500; font-size: .92rem; padding: 1rem 1.75rem; border: 1px solid var(--fg); cursor: pointer; text-align: center; transition: color .45s var(--ease); }
.btn::before { content: ''; position: absolute; inset: -1px; z-index: -1; transform: translateY(101%); transition: transform .5s var(--ease); }
.btn:hover::before { transform: none; }
.btn-solid { background: var(--fg); color: var(--bg); }
.btn-solid::before { background: var(--bg); }
.btn-solid:hover { color: var(--fg); }
.btn-ghost { color: var(--fg); border-color: var(--line2); }
.btn-ghost::before { background: var(--fg); }
.btn-ghost:hover { color: var(--bg); border-color: var(--fg); }
.btn-sm { padding: .65rem 1.2rem; font-size: .85rem; }
.btn:disabled { opacity: .5; pointer-events: none; }
.site-header .btn-solid { --fg: #F4F4F2; --bg: #08080A; }

.lnk { background-image: linear-gradient(currentColor, currentColor); background-size: 0% 1px; background-position: 0 100%; background-repeat: no-repeat; padding-bottom: .15rem; transition: background-size .35s var(--ease); }
.lnk:hover { background-size: 100% 1px; }
.more { justify-self: start; display: inline-block; margin-top: 2rem; font-size: .95rem; color: var(--fg); background-size: 100% 1px; transition: opacity .25s; }
.more:hover { opacity: .65; }

/* Segmented toggle */
.seg { display: inline-flex; border: 1px solid var(--line2); padding: 4px; }
.seg button { font-size: .8rem; font-weight: 500; padding: .55rem 1rem; color: var(--mu); transition: background .3s, color .3s; }
.seg button.on { background: var(--fg); color: var(--bg); }

/* Fields */
.field { width: 100%; background: transparent; border: 0; border-bottom: 1px solid var(--line2); border-radius: 0; padding: .7rem 0; font-weight: 300; transition: border-color .25s; }
.field::placeholder { color: var(--fa); }
.field:focus { outline: none; border-bottom-color: var(--fg); }
.field.invalid { border-bottom-color: var(--err); }
select.field { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%); background-position: calc(100% - 12px) 55%, calc(100% - 7px) 55%; background-size: 5px 5px; background-repeat: no-repeat; }
select.field option { background: #0E0E11; color: #F4F4F2; }
textarea.field { resize: vertical; }
.flabel { display: block; font-size: .85rem; color: var(--fa); margin-bottom: .35rem; }
.err { color: var(--err); font-size: .8rem; margin-top: .5rem; }
.light .err { color: #A8443A; }

/* ---------- Hero ---------- */
.hero { padding-top: calc(8.5rem + env(safe-area-inset-top, 0px)); }
.hero-grid { display: grid; gap: 3.5rem; align-items: center; }
.h1 { font-family: var(--display); font-weight: 500; letter-spacing: -.04em; line-height: .95; font-size: clamp(3rem, 7.4vw, 6.6rem); }
.hero .h1 { font-size: clamp(2.9rem, 5.3vw, 4.9rem); }
.hero .h1 .ln > span { white-space: nowrap; }
.ln { display: block; overflow: hidden; padding-bottom: .14em; margin-bottom: -.14em; }
.ln > span { display: block; transform: translateY(112%); animation: lnIn 1.1s var(--ease) forwards; animation-delay: var(--d, 0ms); }
@keyframes lnIn { to { transform: none; } }
.hero .lede { margin-top: 2.25rem; }
.channel-form { margin-top: 2.5rem; max-width: 34rem; }
.channel-form .row { display: flex; flex-direction: column; gap: 1.1rem; }
.channel-form .note { color: var(--fa); font-size: .8rem; margin-top: 1rem; }
@media (min-width: 640px) { .channel-form .row { flex-direction: row; align-items: flex-end; } .channel-form .btn { flex-shrink: 0; } }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 5fr 7fr; gap: 4rem; } }

.stage { position: relative; }
.stage .thumb-fan { display: none; }
@media (min-width: 1024px) {
  .stage { padding-top: 19%; }
  .stage .thumb-fan { display: block; position: absolute; top: 0; width: 46%; aspect-ratio: 16/9; border: 1px solid var(--line2); border-radius: 12px; overflow: hidden; box-shadow: 0 18px 50px rgba(0,0,0,.5); }
  .stage .thumb-fan img { width: 100%; height: 100%; object-fit: cover; }
  .stage .fan-a { left: 0; transform: rotate(-5deg); }
  .stage .fan-b { right: 0; transform: rotate(4deg); }
  .stage .player { width: 92%; margin-left: 4%; position: relative; z-index: 2; }
}

/* ---------- Player ---------- */
.player { position: relative; aspect-ratio: 16/9; background: #000; border: 1px solid rgba(255,255,255,.35); border-radius: 14px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.6); color: #F4F4F2; }
.player video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: #000; }
.pl-line { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: rgba(255,255,255,.2); z-index: 2; pointer-events: none; }
.pl-line i { position: absolute; inset: 0; background: #F4F4F2; transform-origin: 0 50%; transform: scaleX(var(--p, 0)); }
.pl-center { position: absolute; inset: 0; z-index: 3; display: grid; place-items: center; background: rgba(0,0,0,.28); opacity: 0; pointer-events: none; transition: opacity .3s; cursor: pointer; }
.player.is-paused .pl-center { opacity: 1; pointer-events: auto; }
.pl-round { width: 4.25rem; height: 4.25rem; border-radius: 99px; border: 1px solid #F4F4F2; display: grid; place-items: center; background: rgba(8,8,10,.35); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); transition: transform .3s var(--ease); }
.pl-center:hover .pl-round { transform: scale(1.06); }
.pl-round svg { width: 1.5rem; height: 1.5rem; fill: #F4F4F2; margin-left: .2rem; }
.player.is-ended .pl-round svg.i-play { display: none; }
.pl-round svg.i-replay { display: none; margin-left: 0; }
.player.is-ended .pl-round svg.i-replay { display: block; }
.pl-sound { position: absolute; z-index: 4; top: .9rem; left: .9rem; display: none; align-items: center; gap: .55rem; padding: .55rem .9rem .55rem .75rem; font-size: .8rem; font-weight: 500; background: rgba(8,8,10,.72); border: 1px solid rgba(255,255,255,.35); border-radius: 99px; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); transition: background .25s, color .25s; }
.pl-sound:hover { background: #F4F4F2; color: #08080A; }
.pl-sound svg { width: 1.1rem; height: 1.1rem; fill: currentColor; }
.player.is-muted.is-playing .pl-sound { display: inline-flex; }
.pl-bar { position: absolute; z-index: 4; left: 0; right: 0; bottom: 3px; display: flex; align-items: center; gap: .7rem; padding: 1.6rem .9rem .7rem; background: linear-gradient(transparent, rgba(0,0,0,.78)); opacity: 0; transition: opacity .25s; }
.player:hover .pl-bar, .player:focus-within .pl-bar, .player.ui .pl-bar, .player.is-paused .pl-bar { opacity: 1; }
.pl-btn { width: 2.1rem; height: 2.1rem; display: grid; place-items: center; border-radius: 99px; flex-shrink: 0; transition: background .2s; }
.pl-btn:hover { background: rgba(255,255,255,.16); }
.pl-btn svg { width: 1.15rem; height: 1.15rem; fill: #F4F4F2; }
.pl-btn .i-pause, .player.is-playing .pl-btn .i-play-s { display: none; }
.player.is-playing .pl-btn .i-pause { display: block; }
.pl-btn .i-sound-on { display: none; }
.player:not(.is-muted) .pl-btn .i-sound-on { display: block; }
.player:not(.is-muted) .pl-btn .i-sound-off { display: none; }
.pl-time { font-size: .75rem; font-variant-numeric: tabular-nums; color: rgba(244,244,242,.85); white-space: nowrap; }
.pl-scrub { -webkit-appearance: none; appearance: none; flex: 1; min-width: 0; height: 18px; background: transparent; cursor: pointer; }
.pl-scrub::-webkit-slider-runnable-track { height: 3px; background: linear-gradient(to right, #F4F4F2 var(--p, 0%), rgba(255,255,255,.28) var(--p, 0%)); }
.pl-scrub::-moz-range-track { height: 3px; background: rgba(255,255,255,.28); }
.pl-scrub::-moz-range-progress { height: 3px; background: #F4F4F2; }
.pl-scrub::-webkit-slider-thumb { -webkit-appearance: none; width: 13px; height: 13px; margin-top: -5px; border-radius: 99px; background: #F4F4F2; border: 0; }
.pl-scrub::-moz-range-thumb { width: 13px; height: 13px; border-radius: 99px; background: #F4F4F2; border: 0; }

/* ---------- YouTube focus ---------- */
.split-head { display: grid; gap: 2.5rem; }
.split-head .copy { display: grid; gap: 1.5rem; color: var(--mu); font-size: 1.1rem; line-height: 1.65; max-width: 30rem; }
.split-head .copy .fg { color: var(--fg); }
@media (min-width: 768px) { .split-head { grid-template-columns: 7fr 4fr; gap: 4rem; } .split-head .copy { padding-top: 5.5rem; } }
.tree { margin-top: clamp(3.5rem, 7vw, 6rem); }
.tree-root { position: relative; border: 1px solid var(--line2); border-radius: 14px; background: var(--bg); padding: clamp(1.5rem, 3vw, 2.25rem); display: flex; gap: 1.5rem; align-items: flex-start; }
.plat-mono { flex-shrink: 0; display: grid; place-items: center; width: 3.25rem; height: 3.25rem; border: 1px solid var(--line2); border-radius: 10px; font: 500 1.25rem/1 var(--display); background: var(--fg); color: var(--bg); }
.plat-mono.sm { width: 2.5rem; height: 2.5rem; font-size: 1.05rem; margin-bottom: 1.25rem; background: none; color: var(--fg); }
.tree-root-top { display: flex; align-items: center; gap: .9rem; flex-wrap: wrap; }
.tree-root-top h3 { font: 400 clamp(1.5rem, 2.6vw, 2rem)/1.15 var(--display); letter-spacing: -.025em; }
.plat-tag { font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; color: var(--fa); border: 1px solid var(--line2); border-radius: 99px; padding: .3rem .7rem; }
.tree-root-copy p { color: var(--mu); margin-top: .6rem; max-width: 34rem; }
.tree-root::after { content: ''; position: absolute; left: 50%; top: 100%; width: 2px; height: 2.5rem; background: var(--line2); transform: translateX(-50%); }
.tree-branches { position: relative; margin-top: 2.5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.tree-branches::before { content: ''; position: absolute; top: -2.5rem; left: calc((100% - 3rem) / 6); right: calc((100% - 3rem) / 6); height: 2px; background: var(--line2); }
.tree-node { position: relative; border: 1px solid var(--line2); border-radius: 14px; background: var(--bg); padding: clamp(1.25rem, 2.4vw, 1.75rem); }
.tree-node::before { content: ''; position: absolute; left: 50%; top: -2.5rem; width: 2px; height: 2.5rem; background: var(--line2); }
.tree-node h4 { font: 400 1.25rem/1.2 var(--display); letter-spacing: -.015em; margin-bottom: .5rem; }
.tree-node p { color: var(--mu); font-size: .95rem; }
@media (max-width: 639px) {
  .tree-root::after { display: none; }
  .tree-branches { grid-template-columns: 1fr; gap: 0; margin-top: 2.5rem; }
  .tree-branches::before { left: 1.25rem; right: auto; top: -1.25rem; bottom: 1.75rem; height: auto; width: 1px; }
  .tree-node { border: 0; background: none; padding: 0 0 2rem 3.5rem; border-radius: 0; }
  .tree-node:last-child { padding-bottom: 0; }
  .tree-node::before { display: none; }
  .tree-node .plat-mono.sm { position: absolute; left: 0; top: 0; margin-bottom: 0; }
}

/* Rows list (YouTube page) */
.rows { border-top: 1px solid var(--line2); }
.rows .row-i { display: grid; gap: .5rem 3rem; padding: 1.75rem 0; border-bottom: 1px solid var(--line2); }
.rows .row-i b { font: 500 clamp(1.5rem, 3vw, 2.2rem)/1.15 var(--display); letter-spacing: -.025em; }
.rows .row-i p { color: var(--mu); max-width: 30rem; }
@media (min-width: 768px) { .rows .row-i { grid-template-columns: 5fr 6fr; align-items: baseline; } }

/* ---------- Accordions ---------- */
.acc { border-top: 1px solid var(--line); }
.acc-group > .acc:last-child { border-bottom: 1px solid var(--line); }
.acc-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 2rem; text-align: left; padding: 1.75rem 0; }
.acc-btn .t { display: block; font: 400 clamp(1.15rem, 2vw, 1.4rem)/1.3 var(--display); letter-spacing: -.01em; color: var(--fg); }
.acc-icon { flex-shrink: 0; font-size: 1.75rem; line-height: 1; color: var(--mu); transition: transform .35s var(--ease); }
.acc-btn[aria-expanded="true"] .acc-icon { transform: rotate(45deg); }
.acc-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .5s var(--ease); }
.acc-panel > div { min-height: 0; overflow: hidden; visibility: hidden; transition: visibility 0s .5s; }
.acc-btn[aria-expanded="true"] + .acc-panel { grid-template-rows: 1fr; }
.acc-btn[aria-expanded="true"] + .acc-panel > div { visibility: visible; transition-delay: 0s; }
.faq-a { color: var(--mu); max-width: 34rem; padding-bottom: 1.75rem; }

.svc-layout { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .svc-layout { grid-template-columns: 4fr 8fr; gap: 4rem; } .svc-side { position: sticky; top: 8rem; align-self: start; } }
.svc-side p { color: var(--mu); margin-top: 1.75rem; max-width: 20rem; }
.svc-acc .acc-btn { padding: 2rem 0; }
.svc-acc .acc-btn .t { font-size: clamp(1.5rem, 3vw, 2.4rem); letter-spacing: -.03em; line-height: 1.15; }
.svc-acc .acc-btn .s { display: block; margin-top: .5rem; color: var(--mu); font-size: 1rem; }
.svc-body { display: grid; gap: 1.5rem 3rem; padding-bottom: 2.5rem; }
.svc-body p { color: var(--mu); max-width: 28rem; }
@media (min-width: 768px) { .svc-body { grid-template-columns: 1fr 1fr; } }
.ticks { display: grid; gap: .8rem; color: var(--mu); font-size: .95rem; }
.ticks li { display: flex; gap: 1rem; }
.ticks li::before { content: ''; flex: none; width: .9rem; height: 1px; margin-top: .85em; background: var(--line2); }

/* ---------- Process ---------- */
.process { position: relative; display: grid; gap: 3rem; margin-top: clamp(3rem, 6vw, 5rem); }
.pstep { position: relative; }
.pstep .n { display: grid; place-items: center; width: 2.5rem; height: 2.5rem; border: 1px solid var(--line2); border-radius: 99px; font: 400 1rem/1 var(--display); margin-bottom: 1.5rem; background: var(--bg); position: relative; z-index: 1; }
.pstep h3 { font: 400 clamp(1.5rem, 2.4vw, 1.9rem)/1.15 var(--display); letter-spacing: -.025em; margin-bottom: .9rem; }
.pstep p { color: var(--mu); }
@media (min-width: 768px) {
  .process { grid-template-columns: repeat(4, 1fr); gap: 2.5rem; }
  .process::before { content: ''; position: absolute; left: 1.25rem; right: 0; top: 1.25rem; height: 1px; background: var(--line2); }
}
@media (max-width: 767px) {
  .process { gap: 0; }
  .pstep { padding: 0 0 2.5rem 3.75rem; }
  .pstep .n { position: absolute; left: 0; top: 0; margin: 0; }
  .pstep::before { content: ''; position: absolute; left: 1.25rem; top: 2.5rem; bottom: 0; width: 1px; background: var(--line2); }
  .pstep:last-child::before { display: none; }
}

/* ---------- Plan builder ---------- */
.plan-grid { display: grid; gap: 3.5rem; align-items: start; }
.plan-grid .lede { margin-top: 2rem; }
.plan-grid .chan { margin-top: 2.5rem; max-width: 28rem; }
@media (min-width: 1024px) { .plan-grid { grid-template-columns: 5fr 6fr; gap: 6rem; } .plan-grid > div:first-child { position: sticky; top: 8rem; } }
.slider { margin-bottom: 2.5rem; }
.slider .top { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin-bottom: 1rem; }
.slider label { color: var(--mu); }
.slider output { font: 400 1.9rem/1 var(--display); }
input[type=range].rng { -webkit-appearance: none; appearance: none; width: 100%; height: 1px; background: var(--line2); }
input[type=range].rng::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 16px; height: 16px; border-radius: 99px; background: var(--fg); cursor: pointer; border: 4px solid var(--bg); box-shadow: 0 0 0 1px var(--fg); transition: box-shadow .2s; }
input[type=range].rng:hover::-webkit-slider-thumb { box-shadow: 0 0 0 6px var(--line); }
input[type=range].rng::-moz-range-thumb { width: 12px; height: 12px; border-radius: 99px; background: var(--fg); cursor: pointer; border: 3px solid var(--bg); }
.plan-out { padding-top: 2.5rem; border-top: 1px solid var(--line2); }
.plan-out .head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; }
.plan-out .tier-name { font: 400 clamp(1.9rem, 3.4vw, 2.5rem)/1.1 var(--display); letter-spacing: -.025em; margin-top: .35rem; }
.plan-out .total { font: 300 clamp(2.6rem, 5vw, 3.4rem)/1 var(--display); margin-top: .35rem; text-align: right; }
.plan-out .r { text-align: right; }
#pl-chart { display: grid; grid-template-columns: repeat(12, 1fr); gap: 6px; align-items: end; height: 8rem; margin-top: 2rem; border-bottom: 1px solid var(--line2); }
#pl-chart > div { height: 100%; display: flex; align-items: flex-end; }
.plan-bar { width: 100%; height: 0; background: var(--line2); transition: height .7s var(--ease); }
.plan-bar.last { background: var(--fg); }
.plan-axis { display: grid; grid-template-columns: repeat(12, 1fr); gap: 6px; margin-top: .5rem; color: var(--fa); font-size: .65rem; text-align: center; }
.plan-note { color: var(--mu); font-size: .95rem; margin-top: 1.5rem; }
.plan-out .btn { width: 100%; margin-top: 2rem; }
.fine { color: var(--fa); font-size: .8rem; margin-top: 1rem; }

/* ---------- Pricing ---------- */
.price-head { display: flex; flex-direction: column; gap: 2rem; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.price-head p { color: var(--mu); margin-top: 1.25rem; }
@media (min-width: 1024px) { .price-head { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.tiers { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 768px) { .tiers { grid-template-columns: repeat(3, 1fr); } }
.tier { background: var(--bg); padding: clamp(1.75rem, 3vw, 2.5rem); display: flex; flex-direction: column; transition: box-shadow .3s; }
.tier.rec { --fg: #08080A; --bg: #F4F4F2; --mu: #4E4E55; --fa: #6B6B72; --line: rgba(8,8,10,.15); --line2: rgba(8,8,10,.42); color: var(--fg); }
.tier.is-match { box-shadow: inset 0 0 0 1px var(--fg); }
.tier .top { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.tier h3 { font: 400 1.6rem/1.2 var(--display); letter-spacing: -.02em; }
.tier .badge { font-size: .8rem; font-weight: 500; }
.tier .for { color: var(--fa); font-size: .9rem; margin-top: .6rem; }
.tier .amt { margin: 2rem 0; padding-bottom: 2rem; border-bottom: 1px solid var(--line); }
.tier .price { font: 300 1.9rem/1 var(--display); }
.tier .per { color: var(--fa); font-size: .9rem; }
.tier .ticks { flex: 1; align-content: start; }
.tier .btn { margin-top: 2.25rem; }
.tier.rec .btn-solid { --fg: #08080A; --bg: #F4F4F2; }
.guarantees { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-top: 0; }
@media (min-width: 768px) { .guarantees { grid-template-columns: repeat(4, 1fr); } }
.guarantees div { background: var(--ink); padding: 1.6rem 1.25rem; text-align: center; }
.guarantees b { display: block; font-weight: 500; font-size: .95rem; }
.guarantees span { display: block; margin-top: .35rem; color: var(--fa); font-size: .8rem; }
.expert { position: relative; overflow: hidden; margin-top: clamp(4rem, 8vw, 7rem); border-radius: 1.75rem; padding: clamp(2rem, 5vw, 3.5rem); display: grid; gap: 2.5rem; }
.expert .mark-bg { position: absolute; right: -2rem; bottom: -3.5rem; height: 22rem; width: auto; opacity: .05; filter: invert(1); pointer-events: none; display: none; }
.expert .inner { position: relative; max-width: 40rem; }
.expert .inner p { color: var(--mu); margin-top: 1.5rem; font-size: 1.1rem; }
.expert .acts { position: relative; display: flex; flex-direction: column; gap: .75rem; }
@media (min-width: 768px) { .expert { grid-template-columns: 1fr auto; align-items: center; gap: 4rem; } .expert .mark-bg { display: block; } }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: 3.5rem; }
.contact-grid .lede { margin-top: 2rem; }
.contact-meta { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--line2); display: grid; gap: .6rem; color: var(--fa); font-size: .9rem; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 5fr 6fr; gap: 6rem; } }
.form-top { display: flex; align-items: center; gap: 1rem; margin-bottom: 2.5rem; }
.form-top .lab { color: var(--fa); font-size: .85rem; flex-shrink: 0; }
.form-top .bars { flex: 1; display: flex; gap: 6px; }
.seg-bar { flex: 1; height: 2px; background: var(--line2); transition: background .4s; }
.seg-bar.on { background: var(--fg); }
.step { display: grid; gap: 2rem; animation: stepin .6s var(--ease); }
@keyframes stepin { from { opacity: 0; transform: translateX(18px); } to { opacity: 1; transform: none; } }
.step .btn { width: 100%; }
.back { justify-self: start; color: var(--mu); font-size: .9rem; }
.count { color: var(--fa); font-size: .8rem; }
.between { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: .35rem; }
.between .flabel { margin: 0; }
.form-success { padding: 2.5rem 0; }
.form-success img { height: 3rem; width: auto; filter: invert(1); margin-bottom: 2rem; }
.form-success .display { font-size: 2rem; margin-bottom: .75rem; }
.form-success p { color: var(--mu); }

/* ---------- Page header + closing band ---------- */
.page-head { padding-top: calc(9.5rem + env(safe-area-inset-top, 0px)); padding-bottom: clamp(3rem, 6vw, 5rem); }
.page-head .h1 { font-size: clamp(3rem, 7vw, 6rem); }
.page-head .lede { margin-top: 2rem; }
.cta-band { display: grid; gap: 2.5rem; align-items: end; }
.cta-band .channel-form { margin-top: 0; }
@media (min-width: 900px) { .cta-band { grid-template-columns: 6fr 5fr; gap: 5rem; } }
.two-col { display: grid; gap: 3rem; }

/* ---------- Footer (unchanged look) ---------- */
.footer { position: relative; background: var(--ink); color: var(--bone); padding-top: 5rem; overflow: hidden; }
.footer.rule { border-top: 1px solid rgba(255,255,255,.1); }
.foot-top { display: flex; flex-direction: column; gap: 3rem; padding-bottom: 4rem; }
.foot-top img { height: 5rem; width: auto; }
.foot-top .tag { color: var(--fa); font-size: .9rem; margin-top: 1.75rem; max-width: 20rem; line-height: 1.65; }
.foot-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; font-size: .9rem; }
.foot-cols h4 { color: var(--fa); font: 500 .8rem/1 var(--display); letter-spacing: .2em; text-transform: uppercase; margin-bottom: 1.5rem; }
.foot-cols ul { display: grid; gap: .9rem; color: var(--mu); }
.foot-cols a:hover { color: var(--bone); }
.foot-bot { border-top: 1px solid rgba(255,255,255,.1); padding: 2rem 0 2.5rem; display: flex; flex-direction: column; gap: 2rem; font-size: .8rem; }
.foot-bot .legal-copy { display: grid; gap: .4rem; color: var(--fa); }
.foot-bot ul { display: flex; flex-wrap: wrap; gap: .75rem 2.5rem; color: var(--mu); }
.foot-bot .top { align-self: flex-start; font-weight: 500; color: var(--bone); display: inline-flex; gap: .5rem; }
.footer-word { font: 300 clamp(3.6rem, 19vw, 17rem)/.8 var(--display); white-space: nowrap; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.3); letter-spacing: -.05em; text-align: center; user-select: none; }
@media (min-width: 768px) {
  .foot-top { flex-direction: row; justify-content: space-between; align-items: flex-start; }
  .foot-cols { gap: 5rem; }
}
@media (min-width: 1024px) { .foot-bot { flex-direction: row; align-items: center; justify-content: space-between; } }

/* ---------- Scroll motion: things fly in as you reach them ---------- */
.js [data-fx] { opacity: 0; transition: opacity .9s var(--ease) var(--d, 0ms), transform 1.1s var(--ease) var(--d, 0ms), clip-path 1.1s var(--ease) var(--d, 0ms); will-change: transform, opacity; }
.js [data-fx="up"]    { transform: translateY(64px); }
.js [data-fx="left"]  { transform: translateX(-110px); }
.js [data-fx="right"] { transform: translateX(110px); }
@media (max-width: 767px) { .js [data-fx="left"] { transform: translateX(-36px); } .js [data-fx="right"] { transform: translateX(36px); } }
.js [data-fx="zoom"]  { transform: translateY(40px) scale(.9); transform-origin: 0 100%; }
.js [data-fx="rise"]  { transform: translateY(45%); }
.js [data-fx="wipe"]  { opacity: 1; transform: translateY(46px); clip-path: inset(0 0 100% 0); }
.js [data-fx].in { opacity: 1; transform: none; }
.js [data-fx="wipe"].in { clip-path: inset(-12% -4% -22% -4%); }
.js .expert[data-fx="zoom"] { transform-origin: 50% 100%; }
.js .process::before { transform: scaleX(0); transform-origin: 0 50%; transition: transform 1.6s var(--ease) .2s; }
.js .process.in::before { transform: none; }
@media (max-width: 767px) { .js .process::before { transform: none; } }

/* Hero: one orchestrated entrance */
@keyframes fanA { from { opacity: 0; transform: translateX(-140px) rotate(-16deg) scale(.9); } to { opacity: 1; transform: rotate(-5deg); } }
@keyframes fanB { from { opacity: 0; transform: translateX(140px) rotate(14deg) scale(.9); } to { opacity: 1; transform: rotate(4deg); } }
@keyframes stageRise { from { opacity: 0; transform: translateY(90px) scale(.94); } to { opacity: 1; transform: none; } }
@media (min-width: 1024px) {
  .stage .fan-a { animation: fanA 1.3s var(--ease) .55s both; translate: 0 var(--py, 0px); }
  .stage .fan-b { animation: fanB 1.3s var(--ease) .7s both; translate: 0 var(--py, 0px); }
}
.stage .player { animation: stageRise 1.2s var(--ease) .3s both; }

/* Legal + long-form text */
.prose { max-width: 46rem; }
.prose .updated { color: var(--fa); font-size: .9rem; margin-bottom: 1rem; }
.prose h2 { font: 500 clamp(1.4rem, 2.4vw, 1.8rem)/1.2 var(--display); letter-spacing: -.02em; margin-top: 3rem; }
.prose p, .prose .ticks { margin-top: 1rem; color: var(--mu); font-size: 1.02rem; line-height: 1.7; }
.prose .ticks { gap: .7rem; }
.prose a { color: var(--fg); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .ln > span { transform: none; }
  .js [data-fx], .js [data-fx="wipe"] { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .stage .fan-a, .stage .fan-b, .stage .player { animation: none !important; }
  .js .process::before { transform: none !important; }
}
