:root {
  /* surfaces */
  --bg:        #0D0F12;
  --panel:     #171B21;
  --panel-2:   #101318;
  --panel-3:   #05070A;

  /* rules, in ascending contrast */
  --line:      #232830;
  --line-2:    #2A3038;
  --line-3:    #3A414B;
  --line-4:    #6E7681;
  --hairline:  #171B21;
  --edge:      #262B33;

  /* ink */
  --ink:       #E9E7E2;
  --muted:     #8A929C;

  /* accents */
  --accent:    #7B5CFF;
  --accent-lt: #9B85FF;
  --accent-btn:#8F76FF;
  --accent-hov:#A692FF;
  --green:     #3DD68C;
  --warn:      #D98A6A;

  /* paper */
  --paper:     #F3F0E7;
  --paper-ink: #14171C;
  --paper-mut: #6C7381;
  --paper-rule:#C9C4BA;
  --foil:      #5B3EE8;

  /* type */
  --mono:    'Martian Mono', ui-monospace, monospace;
  --sans:    'Instrument Sans', system-ui, sans-serif;
  --serif:   'Instrument Serif', Georgia, 'Times New Roman', serif;
  --display: Archivo, system-ui, sans-serif;
  --sf:      -apple-system, 'SF Pro Text', 'Helvetica Neue', system-ui, sans-serif;

  /* rhythm */
  --gutter: clamp(20px, 5vw, 72px);
  --rail-w: 96px;
}

/* ---------- light theme (dormant) --------------------------------------- */

:root[data-theme="light"] {
  --bg:        #F4F2EC;
  --panel:     #EAE7DD;
  --panel-2:   #EFECE3;

  --line:      #DAD5C9;
  --line-2:    #CEC8B9;
  --line-3:    #B6AF9F;
  --line-4:    #8A8373;
  --hairline:  #E2DED2;
  --edge:      #D3CDBF;

  --ink:       #14171C;
  --muted:     #6B6760;

  --accent:    #5B3EE8;
  --accent-lt: #4B31C9;
  --accent-btn:#5B3EE8;
  --accent-hov:#4A2FD4;
  --green:     #147A4B;
  --warn:      #A8552F;
}

:root[data-theme="light"] .doc            { border: 1px solid var(--line-2); box-shadow: 0 18px 44px rgba(20,23,28,.16); }
:root[data-theme="light"] .phone          { box-shadow: 0 30px 60px rgba(20,23,28,.3), 0 2px 8px rgba(20,23,28,.22); }
:root[data-theme="light"] .group::before  { opacity: .05; }
:root[data-theme="light"] .tl__bar        { background: rgba(91,62,232,.12); }
:root[data-theme="light"] .tl__bar--before{ background: rgba(20,23,28,.05); }
:root[data-theme="light"] .pick:has(input:checked) { background: rgba(91,62,232,.06); }
:root[data-theme="light"] .compare__divider { box-shadow: 0 0 14px rgba(91,62,232,.35); }
:root[data-theme="light"] .compare__handle  { box-shadow: 0 0 0 6px rgba(91,62,232,.14); }
:root[data-theme="light"] .item           { box-shadow: 0 1px 2px rgba(16,20,24,.07), 0 6px 16px rgba(16,20,24,.06); }

/* ---------- theme switch (dormant) -------------------------------------- */

.theme {
  position: fixed;
  top: 16px;
  right: clamp(14px, 2.4vw, 26px);
  z-index: 70;
  display: flex; align-items: center; gap: 9px;
  padding: 8px 12px 8px 10px;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono); font-size: 9px; letter-spacing: .16em;
  cursor: pointer;
  transition: border-color .18s ease, color .18s ease;
}
.theme:hover { border-color: var(--line-4); color: var(--ink); }
.theme__sw {
  position: relative; flex: none;
  width: 24px; height: 13px;
  border: 1px solid var(--line-3);
  border-radius: 999px;
  transition: background .2s ease, border-color .2s ease;
}
.theme__sw i {
  position: absolute; top: 2px; left: 2px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--line-4);
  transition: left .2s ease, background .2s ease;
}
.theme[aria-pressed="true"] .theme__sw   { background: var(--accent); border-color: var(--accent); }
.theme[aria-pressed="true"] .theme__sw i { left: 13px; background: var(--bg); }
.theme__txt { white-space: nowrap; }

@media (max-width: 479px) { .theme__txt { display: none; } }

html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
* { box-sizing: border-box; }
body, .panel, .notify, .rail, .doc, .theme, .group, .field, .ghost, .q, .pick, .step {
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}
::selection { background: var(--accent); color: var(--bg); }
:focus-visible { outline: 2px solid var(--accent-lt); outline-offset: 3px; }
input::placeholder { color: var(--muted); }
a { color: var(--accent-lt); text-decoration: none; }
a:hover { color: var(--ink); }

/* ---------- display type ------------------------------------------------ */

[data-display] {
  font-family: var(--display);
  font-stretch: 125%;
  text-transform: uppercase;
  margin: 0;
}
[data-display="hero"]  { font-size: clamp(34px, calc(10px + 4vw), 70px); line-height: .9; letter-spacing: -.035em; font-weight: 800; }
[data-display="sec"]   { font-size: 50px;  line-height: .96;  letter-spacing: -.03em;  font-weight: 800; }
[data-display="band"]  { font-size: 40px;  line-height: 1;    letter-spacing: -.025em; font-weight: 700; }
[data-display="data"]  { font-size: 62px;  line-height: .92;  letter-spacing: -.04em;  font-weight: 800; }
[data-display="cta"]   { font-size: 76px;  line-height: .9;   letter-spacing: -.035em; font-weight: 800; }
[data-display="price"] { font-size: 62px;  line-height: .9;   letter-spacing: -.035em; font-weight: 800; }
[data-display="name"]  { font-size: 38px;  line-height: 1;    letter-spacing: -.025em; font-weight: 700; }
[data-display="sub"]   { font-size: 30px;  line-height: 1.05; letter-spacing: -.02em;  font-weight: 700; }

@media (max-width: 1439px) { [data-display="cta"]{font-size:70px}
  [data-display="price"]{font-size:58px} [data-display="data"]{font-size:58px}
}
@media (max-width: 1279px) { [data-display="sec"]{font-size:44px}
  [data-display="cta"]{font-size:58px} [data-display="price"]{font-size:54px}
  [data-display="data"]{font-size:54px} [data-display="band"]{font-size:36px}
}
@media (max-width: 1023px) { [data-display="sec"]{font-size:40px}
  [data-display="cta"]{font-size:46px} [data-display="price"]{font-size:48px}
  [data-display="data"]{font-size:50px} [data-display="band"]{font-size:32px}
  [data-display="name"]{font-size:34px} [data-display="sub"]{font-size:26px}
}
@media (max-width: 767px) {
  [data-display]{font-stretch:100%; letter-spacing:-.02em} [data-display="sec"]{font-size:34px}
  [data-display="cta"]{font-size:34px} [data-display="price"]{font-size:44px}
  [data-display="data"]{font-size:46px} [data-display="band"]{font-size:30px}
  [data-display="name"]{font-size:30px} [data-display="sub"]{font-size:23px}
}
@media (max-width: 479px) { [data-display="sec"]{font-size:28px}
  [data-display="cta"]{font-size:26px} [data-display="price"]{font-size:40px}
  [data-display="data"]{font-size:42px} [data-display="band"]{font-size:26px}
  [data-display="name"]{font-size:26px} [data-display="sub"]{font-size:21px}
}
@media (max-width: 900px) { [data-display="hero"] { font-size: clamp(34px, 7.6vw, 68px); } }
@media (max-width: 359px) { [data-display="sec"]{font-size:25px}
  [data-display="cta"]{font-size:22px} [data-display="price"]{font-size:36px}
  [data-display="data"]{font-size:36px} [data-display="band"]{font-size:23px}
}

/* ---------- shared primitives ------------------------------------------- */

.num { font-variant-numeric: tabular-nums; }

.mono-9 { font-family: var(--mono); font-size: 9px; letter-spacing: .18em; color: var(--muted); }

.body-17 { font-size: 17px; line-height: 1.6; margin: 0; color: var(--ink); text-wrap: pretty; }
.body-17.is-muted { color: var(--muted); }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 var(--gutter); }

.page { padding-left: var(--rail-w); font-family: var(--sans); position: relative; z-index: 1; }

/* ---------- ambient gradient blobs -------------------------------------- */

.glow { position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }

.glow__blob {
  position: absolute; top: 0; left: 0;
  width: clamp(420px, 54vw, 820px);
  aspect-ratio: 1.35 / 1;
  opacity: 0;
  filter: blur(30px);
  will-change: transform, opacity;
}

.glow__blob--1 {
  width: clamp(440px, 57vw, 880px); aspect-ratio: 1.58 / 1;
  border-radius: 74% 26% 41% 59% / 40% 66% 34% 60%;
  background: linear-gradient(124deg, rgba(123,92,255,.40) 6%, rgba(88,124,255,.10) 58%, rgba(88,124,255,0) 88%);
}
.glow__blob--2 {
  width: clamp(380px, 46vw, 700px); aspect-ratio: 1.06 / 1;
  border-radius: 33% 67% 71% 29% / 63% 32% 68% 37%;
  background: linear-gradient(206deg, rgba(123,92,255,.30) 10%, rgba(28,168,120,.20) 55%, rgba(28,168,120,0) 92%);
}
.glow__blob--3 {
  width: clamp(470px, 60vw, 900px); aspect-ratio: 1.72 / 1;
  border-radius: 58% 42% 22% 78% / 31% 70% 30% 69%;
  background: linear-gradient(152deg, rgba(150,110,255,.36) 4%, rgba(123,92,255,.12) 52%, rgba(123,92,255,0) 86%);
}
.glow__blob--4 {
  width: clamp(400px, 50vw, 760px); aspect-ratio: 1.18 / 1;
  border-radius: 25% 75% 62% 38% / 70% 39% 61% 30%;
  background: linear-gradient(28deg, rgba(214,138,86,.26) 8%, rgba(123,92,255,.26) 56%, rgba(123,92,255,0) 90%);
}
.glow__blob--5 {
  width: clamp(450px, 56vw, 850px); aspect-ratio: 1.44 / 1;
  border-radius: 66% 34% 49% 51% / 36% 61% 39% 64%;
  background: linear-gradient(296deg, rgba(123,92,255,.38) 6%, rgba(88,124,255,.12) 54%, rgba(88,124,255,0) 88%);
}
.glow__blob--6 {
  width: clamp(390px, 48vw, 730px); aspect-ratio: 1.28 / 1;
  border-radius: 44% 56% 28% 72% / 68% 37% 63% 32%;
  background: linear-gradient(72deg, rgba(123,92,255,.30) 10%, rgba(28,168,120,.16) 58%, rgba(28,168,120,0) 92%);
}
.glow__blob--7 {
  width: clamp(430px, 53vw, 800px); aspect-ratio: 1.64 / 1;
  border-radius: 69% 31% 34% 66% / 27% 72% 28% 73%;
  background: linear-gradient(216deg, rgba(150,110,255,.34) 8%, rgba(123,92,255,.12) 56%, rgba(123,92,255,0) 90%);
}
.glow__blob--8 {
  width: clamp(410px, 51vw, 780px); aspect-ratio: 1.22 / 1;
  border-radius: 29% 71% 66% 34% / 72% 28% 72% 28%;
  background: linear-gradient(44deg, rgba(214,138,86,.22) 8%, rgba(123,92,255,.28) 54%, rgba(123,92,255,0) 90%);
}
.glow__blob--9 {
  width: clamp(400px, 49vw, 750px); aspect-ratio: 1.40 / 1;
  border-radius: 52% 48% 25% 75% / 65% 34% 66% 35%;
  background: linear-gradient(340deg, rgba(123,92,255,.34) 6%, rgba(88,124,255,.12) 55%, rgba(88,124,255,0) 89%);
}

:root[data-theme="light"] .glow { opacity: .42; }

:root:not([data-theme="light"]) .panel,
:root:not([data-theme="light"]) .notify { background: rgba(14, 14, 14, .70); }
:root:not([data-theme="light"]) .footer { background: rgba(10, 10, 10, .70); }

:root[data-theme="light"] .panel,
:root[data-theme="light"] .notify { background: rgba(255, 255, 255, .70); }
:root[data-theme="light"] .footer { background: rgba(255, 255, 255, .55); }

:root:not([data-theme="light"]) .day__bar { background: rgba(255, 255, 255, .09); }
:root:not([data-theme="light"]) .field    { background: rgba(255, 255, 255, .05); }
:root[data-theme="light"] .day__bar { background: rgba(20, 23, 28, .10); }
:root[data-theme="light"] .field    { background: rgba(20, 23, 28, .04); }

@media (max-width: 767px) {
  .glow .glow__blob { width: clamp(300px, 92vw, 480px); filter: blur(26px); }
}

.panel {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: clamp(20px, 3vw, 34px);
}

/* ---------- left rail (telemetry) --------------------------------------- */

.rail {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--rail-w);
  overflow: hidden;
  border-right: 1px solid var(--hairline);
  background: var(--bg);
  z-index: 50;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0 22px;
}
.rail__body { position: relative; flex: 1; width: 100%; display: flex; justify-content: center; padding: 8px 0 26px; }
.rail__track { position: relative; width: 52px; height: 100%; display: flex; flex-direction: column; }
.rail__line { position: absolute; inset: 0 auto 0 0; width: 1px; background: var(--line); }
.rail__fill { position: absolute; top: 0; left: 0; width: 1px; height: 0%; background: var(--accent); transition: height .12s linear; }
.rail__cell { flex: 1 1 0; position: relative; overflow: hidden; min-height: 0; }
.rail__tick { position: absolute; top: 0; left: 0; width: 7px; height: 1px; background: var(--line-3); }
.rail__tick--end { top: auto; bottom: 0; }
.rail__label {
  position: absolute; left: 14px; top: 8px;
  writing-mode: vertical-rl;
  font-family: var(--mono); font-size: 9px; letter-spacing: .18em;
  white-space: nowrap; color: var(--muted);
  transition: color .45s ease;
}
.rail__label.is-active { color: var(--ink); }
.rail__contact { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-bottom: 18px; }
.rail__link {
  display: grid; place-items: center;
  width: 30px; height: 30px;
  border: 1px solid var(--line);
  color: var(--muted);
  transition: color .18s ease, border-color .18s ease;
}
.rail__link:hover { color: var(--ink); border-color: var(--line-4); }
.rail__link svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }

.rail__readout { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.rail__num { font-family: var(--mono); font-size: 20px; font-weight: 500; color: var(--ink); font-variant-numeric: tabular-nums; }

/* ---------- hero -------------------------------------------------------- */

.ruler {
  height: 26px;
  border-bottom: 1px solid var(--line);
  background-image:
    repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 12px),
    repeating-linear-gradient(90deg, var(--line-3) 0 1px, transparent 1px 60px);
  background-position: bottom;
  background-size: 100% 6px, 100% 12px;
  background-repeat: repeat-x;
}

.hero { padding: clamp(56px, 8vw, 104px) 0 clamp(52px, 5.6vw, 80px); }

.tag { display: flex; align-items: center; gap: 12px; margin-bottom: clamp(28px, 4vw, 44px); }
.tag__dot { width: 6px; height: 6px; flex: none; border-radius: 50%; background: var(--accent); }
.tag__text { font-family: var(--mono); font-size: 11px; letter-spacing: .2em; color: var(--muted); font-variant-numeric: tabular-nums; }

.hero__title { display: flex; flex-direction: column; color: var(--ink); margin-bottom: clamp(24px, 3vw, 38px); }
.hero__title span { white-space: nowrap; }

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 69fr) minmax(0, 31fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: stretch;
}
.hero__grid > .hero__col:first-child { display: flex; flex-direction: column; }
.hero__col { min-width: 0; }
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: clamp(36px, 6vw, 56px); }
  .cta-group { margin-top: 0; }
  .compare { max-height: 340px; }
}

.lede { font-size: 17px; line-height: 1.6; color: var(--ink); max-width: 54ch; margin: 0; text-wrap: pretty; }

.cta-group {
  display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
  margin-top: auto;
  padding-top: clamp(32px, 4.5vw, 46px);
}

.btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--accent-btn); color: var(--bg);
  font-weight: 600; font-size: 16px;
  padding: 17px 26px; min-height: 52px;
  transition: background .2s ease, transform .2s ease;
}
.btn:hover { background: var(--accent-hov); color: var(--bg); transform: translateY(-1px); }
.btn__arrow { font-family: var(--mono); font-size: 11px; }

.support { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; color: var(--muted); font-variant-numeric: tabular-nums; }

/* ---------- compare widget ---------------------------------------------- */

.compare {
  --split: 20%;            
  position: relative;
  border: 1px solid var(--edge);
  background: var(--panel);
  overflow: hidden;
  touch-action: pan-y;
  user-select: none;
}
.compare.is-dragging { cursor: ew-resize; }

/* ---------- the device -------------------------------------------------- */

.phone-stage {
  position: relative;
  isolation: isolate;
  z-index: 1;
  padding: clamp(18px, 2.4vw, 26px) 0;
  display: flex;
  justify-content: center;
}

.phone {
  width: 282px;
  max-width: 100%;
  border-radius: 52px;
  padding: 2px;
  background: linear-gradient(155deg, #5E6875 0%, #232A33 20%, #0A0D11 48%, #2B323B 76%, #5C6773 100%);
  box-shadow: 0 34px 70px rgba(0,0,0,.55), 0 2px 8px rgba(0,0,0,.6);
}
.phone__body { border-radius: 50px; padding: 8px; background: var(--panel-3); }
.phone__screen {
  --ph-bg:       #F7F6FB;
  --ph-card:     #FFFFFF;
  --ph-ink:      #16161D;
  --ph-mut:      #8E8C9A;
  --ph-lav:      #CFC7F7;
  --ph-lav-soft: #E6E1FB;
  --ph-yel:      #FCE9A8;
  --ph-dark:     #15151C;
  --ph-coral:    #FF7A70;

  position: relative;
  border-radius: 42px;
  overflow: hidden;
  background: var(--ph-bg);
  height: 566px;
  display: flex;
  flex-direction: column;
}
.phone__island {
  position: absolute; top: 9px; left: 50%;
  transform: translateX(-50%);
  width: 84px; height: 26px;
  border-radius: 14px;
  background: #05070A;
  z-index: 4;
  display: flex; align-items: center; justify-content: flex-end;
  padding-right: 9px;
}
.phone__cam {
  width: 8px; height: 8px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #33405C 0%, #0B1220 55%, #05070A 100%);
  box-shadow: inset 0 0 0 .5px rgba(120,150,220,.35);
}
.phone__glare {
  position: absolute; inset: 0; z-index: 5; pointer-events: none;
  background: linear-gradient(148deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,.04) 16%, transparent 38%);
}

.ic { display: block; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.ic--signal { width: 17px; height: 11px; fill: currentColor; stroke: none; }
.ic--wifi { width: 16px; height: 11px; stroke-width: 1.5; }
.ic--chev { width: 10px; height: 10px; stroke-width: 1.8; }

.status {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 20px 2px;
  font-family: var(--sf); font-size: 11.5px; font-weight: 600; letter-spacing: -.2px;
  color: var(--ph-ink);
}
.status__time { padding-left: 4px; }
.status__icons { display: flex; align-items: center; gap: 5px; }
.battery {
  position: relative;
  width: 23px; height: 11.5px;
  border: 1px solid rgba(22,22,29,.32);
  border-radius: 3.5px; padding: 1.5px; display: flex;
}
.battery::after {
  content: ''; position: absolute; right: -3px; top: 50%;
  transform: translateY(-50%);
  width: 1.6px; height: 4px; border-radius: 0 1px 1px 0;
  background: rgba(22,22,29,.32);
}
.battery i { background: var(--ph-ink); border-radius: 1.8px; }

.ribbon { position: absolute; top: 0; left: 0; width: 100%; height: 132px; z-index: 1; }
.ribbon__band { fill: none; stroke: var(--ph-lav-soft); stroke-width: 22; stroke-linecap: round; opacity: .85; }

.app {
  position: relative; z-index: 2;
  flex: 1; min-height: 0; overflow: hidden;
  display: flex; flex-direction: column; gap: 13px;
  padding: 14px 15px 0;
}

.app__bar { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.brand {
  display: flex; align-items: center; gap: 6px;
  background: var(--ph-card);
  border-radius: 9px;
  padding: 4px 9px 4px 4px;
  color: var(--ph-mut);
}
.brand__mark {
  width: 19px; height: 19px; border-radius: 50%;
  background: var(--ph-dark);
  position: relative;
}
.brand__mark::after {
  content: ''; position: absolute; inset: 5.5px;
  border-radius: 50%;
  border: 1.6px solid #FFFFFF;
  border-right-color: transparent; border-bottom-color: transparent;
  transform: rotate(35deg);
}
.brand__name { font-family: var(--sf); font-size: 11.5px; font-weight: 600; letter-spacing: -.1px; color: var(--ph-ink); }
.app__avatar {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(145deg, #C9C2F5, #9E93EC);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sf); font-size: 10px; font-weight: 700; color: #FFFFFF;
}

.app__hello { display: flex; flex-direction: column; gap: 3px; }
.app__hi { font-family: var(--sf); font-size: 23px; font-weight: 600; letter-spacing: -.7px; color: var(--ph-ink); line-height: 1.1; }
.app__sub { font-family: var(--sf); font-size: 11px; color: var(--ph-mut); }

.bento { display: grid; grid-template-columns: 1.1fr 1fr; gap: 7px; }
.tile {
  position: relative;
  border-radius: 10px;
  padding: 10px;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.tile--lav { grid-row: span 2; background: var(--ph-lav); justify-content: space-between; min-height: 132px; }
.tile--yel { background: var(--ph-yel); gap: 8px; }
.tile--dark { background: var(--ph-dark); gap: 8px; }
.tile__chip {
  width: 26px; height: 26px; border-radius: 7px;
  background: rgba(255,255,255,.55);
  display: flex; align-items: center; justify-content: center;
  color: var(--ph-ink);
}
.tile__chip .ic { width: 14px; height: 14px; stroke-width: 1.5; }
.tile--lav .tile__chip .ic { fill: none; }
.tile--dark .tile__chip { background: rgba(255,255,255,.14); color: #FFFFFF; }
.tile__foot { display: flex; flex-direction: column; gap: 1px; }
.tile__name { font-family: var(--sf); font-size: 11.5px; font-weight: 600; letter-spacing: -.2px; color: var(--ph-ink); }
.tile--dark .tile__name { color: #FFFFFF; }
.tile__price { font-family: var(--sf); font-size: 19px; font-weight: 700; letter-spacing: -.6px; color: var(--ph-ink); line-height: 1.15; }
.tile__note { font-family: var(--sf); font-size: 8.5px; color: rgba(22,22,29,.52); }
.tile__badge {
  position: absolute; top: 8px; right: 8px;
  background: var(--ph-coral); color: #FFFFFF;
  border-radius: 5px; padding: 2px 7px;
  font-family: var(--sf); font-size: 8.5px; font-weight: 700; letter-spacing: -.1px;
}

.app__section { display: flex; align-items: baseline; justify-content: space-between; padding: 0 2px; }
.app__section-title { font-family: var(--sf); font-size: 13px; font-weight: 700; letter-spacing: -.3px; color: var(--ph-ink); }
.app__section-link { font-family: var(--sf); font-size: 10.5px; font-weight: 500; color: var(--ph-mut); }

.watchlist { display: flex; flex-direction: column; gap: 7px; }
.item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px;
  background: var(--ph-card);
  border-radius: 10px;
}
.item__thumb {
  flex: 0 0 30px; height: 30px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ph-ink);
}
.item__thumb .ic { width: 15px; height: 15px; stroke-width: 1.5; }
.item__thumb--a { background: var(--ph-lav-soft); }
.item__thumb--b { background: var(--ph-yel); }
.item__thumb--c { background: #E4E7EC; }
.item__text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.item__name { font-family: var(--sf); font-size: 11.5px; font-weight: 600; letter-spacing: -.1px; color: var(--ph-ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.item__meta { font-family: var(--sf); font-size: 9.5px; color: var(--ph-mut); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.item__meta--up { color: #1B8A5A; }
.item__more { flex: none; font-family: var(--sf); font-size: 9px; letter-spacing: .5px; color: #C3C1CD; }

.dockbar {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 7px;
  padding: 10px 15px 6px;
}
.dockbar__pill {
  flex: 1;
  background: var(--ph-card);
  border-radius: 10px;
  padding: 11px 14px;
  font-family: var(--sf); font-size: 11.5px; color: var(--ph-mut);
}
.dockbar__add {
  flex: none; width: 36px; height: 36px; border-radius: 50%;
  background: var(--ph-lav);
  display: flex; align-items: center; justify-content: center;
  color: var(--ph-ink);
}
.dockbar__add .ic { width: 15px; height: 15px; stroke-width: 2; }

.homebar { position: relative; z-index: 2; display: flex; justify-content: center; padding-bottom: 8px; }
.homebar span { width: 100px; height: 4px; border-radius: 999px; background: var(--ph-ink); opacity: .8; }

/* ---------- the ticket that never shipped ------------------------------- */

.spec {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: var(--panel-2);
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--split)) 0 0);
}
.spec__inner {
  padding: clamp(18px, 2.2vw, 24px) clamp(15px, 1.5vw, 19px) 40px;
  display: flex; flex-direction: column; gap: 13px;
  height: 100%;
}
.spec__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  border-bottom: 1px solid var(--line-2);
  padding-bottom: 13px;
}
.spec__key { font-family: var(--mono); font-size: 9px; letter-spacing: .14em; color: var(--ink); }
.spec__status {
  font-family: var(--mono); font-size: 7.5px; letter-spacing: .18em; color: var(--muted);
  border: 1px solid var(--line-3);
  padding: 4px 8px;
  white-space: nowrap;
}
.spec__story { font-size: 14px; line-height: 1.55; margin: 0; color: var(--muted); }
.spec__criteria { display: flex; flex-direction: column; gap: 9px; border-top: 1px solid var(--line-2); padding-top: 15px; }
.spec__crit {
  display: flex; gap: 7px; align-items: flex-start;
  font-family: var(--mono); font-size: 8.5px; line-height: 1.65; letter-spacing: .04em; color: var(--muted);
}
.spec__crit i { flex: none; width: 7px; height: 7px; margin-top: 4px; border: 1px solid var(--line-4); }
.spec__foot { margin-top: auto; display: flex; align-items: center; gap: 9px; }
.spec__foot .mono-9 { letter-spacing: .14em; }
.spec__rule { width: 22px; height: 1px; background: var(--line-4); }
.spec__age {
  display: flex; justify-content: space-between; gap: 12px;
  border-top: 1px solid var(--line-2);
  padding-top: 13px;
  font-family: var(--mono); font-size: 9px; letter-spacing: .14em; color: var(--muted);
}
.spec__days { color: var(--warn); }

/* ---------- compare chrome ---------------------------------------------- */

.compare__divider {
  position: absolute; top: 0; bottom: 0;
  left: var(--split);
  width: 1px;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(123,92,255,.5);
  pointer-events: none;
  z-index: 7;
}
.compare__handle {
  position: absolute; top: 50%;
  left: var(--split);
  width: 48px; height: 48px;
  margin: -24px 0 0 -24px;
  border-radius: 50%;
  background: var(--accent-btn);
  display: flex; align-items: center; justify-content: center;
  cursor: ew-resize; z-index: 8;
  touch-action: none;
  box-shadow: 0 0 0 6px rgba(123,92,255,.16);
}
.compare__handle span { font-family: var(--mono); font-size: 11px; color: var(--bg); letter-spacing: .04em; }

.hero__grid > .hero__col:last-child { position: relative; }

/* ---------- sectors ----------------------------------------------------- */

.sector { position: relative; }

.sector__body {
  padding-top: clamp(56px, 6.2vw, 88px);
  padding-bottom: clamp(52px, 5.8vw, 82px);
}

/* ---------- stats ------------------------------------------------------- */

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(205px, 100%), 1fr));
  grid-template-rows: auto 1fr auto;
  column-gap: clamp(24px, 3vw, 44px);
  row-gap: 14px;
}
.stat {
  grid-row: span 3;
  display: grid;
  grid-template-rows: subgrid;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  min-width: 0;
}
.stat__fig { align-self: end; color: var(--ink); font-variant-numeric: tabular-nums; }
.stat__stack { display: flex; flex-direction: column; }
.stat__copy { font-size: 15px; line-height: 1.55; margin: 0; color: var(--muted); }
.stat__src { font-family: var(--mono); font-size: 9px; line-height: 1.7; letter-spacing: .12em; color: var(--muted); }

/* ---------- two-column split -------------------------------------------- */

.split {
  margin-top: clamp(60px, 7.5vw, 104px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.split h3 { color: var(--ink); }
.split__body { display: flex; flex-direction: column; gap: 24px; max-width: 64ch; min-width: 0; }
.split__lead { max-width: 58ch; min-width: 0; }
.split--flush { margin-top: 0; }

/* ---------- before / after timeline ------------------------------------- */

.tl { margin-top: clamp(56px, 7vw, 96px); display: flex; flex-direction: column; gap: 34px; }
.tl__row { display: flex; gap: clamp(12px, 3vw, 32px); align-items: baseline; flex-wrap: wrap; }
.tl__key { flex: 0 0 84px; font-family: var(--mono); font-size: 10px; letter-spacing: .18em; color: var(--muted); }
.tl__key--now { color: var(--accent-lt); }
.tl__track { flex: 1 1 240px; min-width: 0; }
.tl__rail { position: relative; height: 26px; border-bottom: 1px solid var(--line-2); }
.tl__rail--grid {
  background-image: repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 8.33%);
  background-position: bottom;
  background-size: 100% 9px;
  background-repeat: repeat-x;
}
.tl__bar {
  position: absolute; left: 0; bottom: 0;
  height: 26px; width: 0;
  background: rgba(123,92,255,.16);
  border-right: 2px solid var(--accent);
  transition: width .15s linear;
}
.tl__bar--before { background: rgba(138,146,156,.10); border-right: 2px solid var(--line-4); }
.tl__legend {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: baseline; gap: 12px; margin-top: 9px;
  font-family: var(--mono); font-size: 9px; letter-spacing: .12em;
  color: var(--muted); font-variant-numeric: tabular-nums;
}
.tl__mid { text-align: center; transition: color .6s ease .5s; }
.tl__mid.is-in { color: var(--accent-lt); }
.tl__now { color: var(--accent-lt); }

/* ---------- program blocks ---------------------------------------------- */

.groups { margin-top: clamp(44px, 5.5vw, 72px); display: flex; flex-direction: column; gap: clamp(20px, 2.6vw, 32px); }

.group {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  padding: clamp(20px, 3vw, 34px);
}
.group::before {                       
  content: attr(data-n);
  position: absolute; top: -30px; right: -12px;
  font-family: var(--display); font-stretch: 125%; font-weight: 800;
  font-size: 160px; line-height: 1;
  color: var(--ink); opacity: .022;
  pointer-events: none;
}
.group__head { position: relative; display: flex; align-items: baseline; gap: clamp(12px, 2vw, 22px); flex-wrap: wrap; }
.group__no { flex: none; font-family: var(--mono); font-size: 10px; letter-spacing: .2em; color: var(--accent-lt); font-variant-numeric: tabular-nums; }
.group__head h4 { color: var(--ink); }
.group__count { margin-left: auto; font-family: var(--mono); font-size: 9px; letter-spacing: .14em; color: var(--muted); font-variant-numeric: tabular-nums; }
.group__note { position: relative; margin: 16px 0 0; font-size: 16px; line-height: 1.6; color: var(--muted); max-width: 52ch; }

.steps { position: relative; margin-top: clamp(18px, 2.4vw, 26px); }
.step { display: flex; gap: clamp(12px, 3vw, 40px); flex-wrap: wrap; padding: clamp(16px, 2vw, 24px) 0; border-top: 1px solid var(--line); }
.step:last-child { padding-bottom: 0; }
.step__no { flex: 0 0 44px; font-family: var(--mono); font-size: 11px; letter-spacing: .1em; color: var(--muted); font-variant-numeric: tabular-nums; }
.step__name { flex: 0 0 190px; font-family: var(--mono); font-size: 11px; letter-spacing: .14em; color: var(--ink); }
.step__body { flex: 1 1 300px; min-width: 0; display: flex; flex-direction: column; gap: 12px; }
.step__copy { font-size: 16px; line-height: 1.6; margin: 0; color: var(--muted); max-width: 56ch; }

.outcome { margin: 0; font-size: 15px; line-height: 1.55; color: var(--green); }
.outcome__label { font-weight: 600; }

.pull { padding: clamp(44px, 5.5vw, 74px) 0; display: flex; justify-content: center; }
.pull--left { padding: clamp(56px, 7vw, 96px) 0 0; display: block; }
.pull__text {
  color: var(--ink);
  text-transform: none; font-stretch: 100%;
  font-family: var(--sans); font-weight: 500;
  letter-spacing: -.01em; line-height: 1.3;
  max-width: 24ch;
}
.pull__text--accent { text-align: center; color: var(--accent-lt); max-width: 22ch; }

/* ---------- schedule ---------------------------------------------------- */

.minor-head { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; margin-bottom: clamp(26px, 3vw, 38px); }
.minor-head--tight { margin-bottom: clamp(24px, 3vw, 34px); }
.minor-head--bare .minor-head__rule { display: none; }
.minor-head__title { font-family: var(--mono); font-size: 11px; letter-spacing: .2em; color: var(--ink); }
.minor-head__title--accent { color: var(--accent-lt); }
.minor-head__rule { flex: 1; min-width: 40px; height: 1px; background: var(--line); }
.minor-head__meta { font-family: var(--mono); font-size: 9px; letter-spacing: .14em; color: var(--muted); }

.schedule { margin-top: clamp(56px, 7vw, 96px); }
.schedule__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(460px, 100%), 1fr)); gap: clamp(28px, 4vw, 56px); }
.day { min-width: 0; }
.day__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.day__no { font-family: var(--mono); font-size: 10px; letter-spacing: .18em; color: var(--ink); }
.day__marks {
  position: relative;
  height: 12px;
  margin-top: 7px;
  font-family: var(--mono); font-size: 9px; letter-spacing: .1em;
  color: var(--muted); font-variant-numeric: tabular-nums;
}
.day__span { position: absolute; top: 0; display: flex; justify-content: space-between; }
.day__span i { font-style: normal; white-space: nowrap; }
@media (max-width: 1279px) { .day__marks { font-size: 8px; letter-spacing: .05em; } }
@media (max-width: 479px)  { .day__marks { font-size: 7px; letter-spacing: 0; } }
@media (max-width: 359px)  {
  .panel, .notify { padding: 15px; }
  .day__marks { height: 22px; }
  .day__span { flex-direction: column; align-items: stretch; line-height: 1.25; }
  .day__span i:last-child { text-align: right; }
}
.day__label { margin-top: 6px; font-family: var(--mono); font-size: 9px; letter-spacing: .14em; color: var(--muted); }
.day__bar { position: relative; height: 14px; background: var(--panel-2); overflow: hidden; }
.day__bar span { position: absolute; top: 0; bottom: 0; background: var(--accent); }
.schedule__note { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 26px 0 0; max-width: 48ch; }

/* ---------- takeaways --------------------------------------------------- */

.takeaway { margin-top: clamp(60px, 7.5vw, 104px); }
.takeaway__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(215px, 100%), 1fr)); gap: clamp(24px, 3vw, 44px); }
.take { border-top: 1px solid var(--line); padding-top: 16px; min-width: 0; }
.take__title { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; color: var(--accent-lt); margin-bottom: 10px; }
.take__copy { font-size: 15px; line-height: 1.55; margin: 0; color: var(--muted); }

/* ---------- the certificate --------------------------------------------- */

.cert {
  margin-top: clamp(36px, 4.5vw, 60px);
  display: grid;
  grid-template-columns: minmax(0, 1.62fr) minmax(min(215px, 100%), 1fr);
  gap: clamp(24px, 3.4vw, 48px);
  align-items: start;
}
@media (max-width: 900px) { .cert { grid-template-columns: 1fr; } }

.doc {
  background: #EFEBE0;
  box-shadow: 0 26px 60px rgba(0,0,0,.52), 0 1px 0 rgba(255,255,255,.05);
}

.doc__guilloche {
  height: 10px;
  background:
    repeating-radial-gradient(circle at 0 50%, transparent 0 4.2px, rgba(91,62,232,.55) 4.2px 4.9px, transparent 4.9px 9.4px),
    repeating-radial-gradient(circle at 9px 50%, transparent 0 4.2px, rgba(91,62,232,.3) 4.2px 4.9px, transparent 4.9px 9.4px),
    #EFEBE0;
}

.doc__body {
  position: relative;
  margin: 9px;
  border: 1px solid var(--paper-rule);
  outline: 1px solid rgba(91,62,232,.2);
  outline-offset: 4px;
  padding: clamp(20px, 2.4vw, 30px) clamp(20px, 3vw, 38px) clamp(16px, 1.8vw, 22px);
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 6px;
  overflow: hidden;
  background:
    repeating-linear-gradient(0deg, rgba(20,23,28,.022) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(20,23,28,.016) 0 1px, transparent 1px 4px),
    radial-gradient(120% 90% at 50% 0%, #FCFAF4, #F1EDE2);
}

.doc__corner { position: absolute; width: 15px; height: 15px; border: 1px solid var(--foil); opacity: .45; }
.doc__corner--tl { top: 7px; left: 7px; border-right: 0; border-bottom: 0; }
.doc__corner--tr { top: 7px; right: 7px; border-left: 0; border-bottom: 0; }
.doc__corner--bl { bottom: 7px; left: 7px; border-right: 0; border-top: 0; }
.doc__corner--br { bottom: 7px; right: 7px; border-left: 0; border-top: 0; }

.doc__watermark {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%) rotate(-9deg);
  font-family: var(--display); font-stretch: 125%; font-weight: 800; text-transform: uppercase;
  font-size: clamp(100px, 13vw, 160px); line-height: 1; letter-spacing: -.04em;
  color: var(--paper-ink); opacity: .035;
  white-space: nowrap; pointer-events: none;
}

.doc__head { position: relative; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.doc__brand { font-family: var(--mono); font-size: 9px; font-weight: 500; letter-spacing: .3em; color: var(--paper-ink); }
.doc__brandrule { width: 44px; height: 1px; background: var(--foil); }
.doc__kicker { font-family: var(--mono); font-size: 7.5px; letter-spacing: .24em; color: var(--paper-mut); }

.doc__type { position: relative; margin-top: clamp(6px, .9vw, 12px); font-family: var(--mono); font-size: 8px; letter-spacing: .3em; color: var(--foil); }
.doc__pre { position: relative; font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--paper-mut); }
.doc__name {
  position: relative;
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 38px); line-height: 1.05;
  letter-spacing: -.01em; color: var(--paper-ink);
}
.doc__copy {
  position: relative;
  font-family: var(--sans); font-size: 11.5px; line-height: 1.65;
  color: #5E6673; max-width: 72ch; margin: 2px 0 0; text-wrap: balance;
}
.doc__copy em { font-family: var(--serif); font-style: italic; font-size: 13px; color: var(--paper-ink); }

.doc__foot {
  position: relative;
  width: 100%;
  margin-top: clamp(14px, 1.8vw, 22px);
  border-top: 1px dashed var(--paper-rule);
  padding-top: clamp(12px, 1.6vw, 18px);
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: clamp(10px, 1.6vw, 20px);
}
.doc__verify { display: flex; align-items: center; gap: 8px; justify-self: start; text-align: left; }
.doc__qr { width: 36px; height: 36px; flex: none; }
.doc__qr path { fill: var(--paper-ink); }
.doc__codes { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.doc__codelabel { font-family: var(--mono); font-size: 6px; letter-spacing: .2em; color: #8A8F99; }
.doc__code { font-family: var(--mono); font-size: 8px; letter-spacing: .08em; color: var(--paper-ink); white-space: nowrap; }

.doc__sign { display: flex; flex-direction: column; align-items: center; min-width: 0; }
.doc__ink { width: clamp(120px, 13vw, 158px); height: auto; margin-bottom: -8px; }
.doc__ink path { fill: none; stroke: #1B2A4A; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.doc__signline { width: 100%; min-width: 120px; height: 1px; background: var(--paper-ink); }
.doc__signname { margin-top: 6px; font-family: var(--mono); font-size: 7.5px; letter-spacing: .14em; color: var(--paper-ink); }
.doc__signrole { margin-top: 3px; font-family: var(--mono); font-size: 6.5px; letter-spacing: .14em; color: var(--paper-mut); }

.doc__seal { width: clamp(56px, 6vw, 70px); height: auto; justify-self: end; }
.doc__sealring  { fill: none; stroke: var(--foil); stroke-width: 1; }
.doc__sealdash  { fill: none; stroke: var(--foil); stroke-width: .8; stroke-dasharray: 1 3.2; opacity: .85; }
.doc__sealtext  { font-family: var(--mono); font-size: 7.2px; letter-spacing: 1.45px; fill: var(--foil); }
.doc__sealbig   { font-family: var(--display); font-stretch: 125%; font-weight: 800; font-size: 21px; fill: var(--foil); }
.doc__sealsmall { font-family: var(--mono); font-size: 6px; letter-spacing: 1.6px; fill: var(--foil); }

.cert__doc-col { min-width: 0; }
.cert__meta { min-width: 0; }
.cert__eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: .2em; color: var(--accent-lt); margin-bottom: 14px; }
.cert__lede { font-size: 16px; line-height: 1.6; margin: 0 0 20px; color: var(--ink); max-width: 40ch; }

.specs { display: flex; flex-direction: column; }
.specs__row { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; border-top: 1px solid var(--line); padding: 11px 0; }
.specs__row--last { border-bottom: 1px solid var(--line); }
.specs__k { font-family: var(--mono); font-size: 9px; letter-spacing: .16em; color: var(--muted); }
.specs__v { font-family: var(--mono); font-size: 12px; color: var(--ink); }

/* ---------- fit / not fit ----------------------------------------------- */

.fit {
  margin-top: clamp(56px, 7vw, 96px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(18px, 2.4vw, 28px);
}
.fit__card { min-width: 0; border: 1px solid var(--line); padding: clamp(20px, 3vw, 34px); }
.fit__title { font-family: var(--mono); font-size: 11px; letter-spacing: .18em; color: var(--ink); margin-bottom: 22px; }
.fit__title--muted { color: var(--muted); }
.fit__list { display: flex; flex-direction: column; gap: 16px; }
.fit__line { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; line-height: 1.6; margin: 0; color: var(--muted); max-width: 52ch; }
.fit__mark { flex: none; width: 9px; height: 9px; margin-top: 8px; border: 1px solid var(--line-3); border-radius: 50%; }
.fit__mark--yes { border-color: var(--green); background: var(--green); }

/* ---------- host -------------------------------------------------------- */

.host {
  margin-top: clamp(56px, 7vw, 96px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
.host__id { min-width: 0; }
.host__bio { min-width: 0; display: flex; flex-direction: column; gap: 18px; }
.host__eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: .18em; color: var(--muted); margin-bottom: 22px; }
.host__name { color: var(--ink); }
.host__copy { max-width: 62ch; }

/* ---------- offer ------------------------------------------------------- */

.cta__title { display: flex; flex-direction: column; color: var(--ink); }
.cta__title span { white-space: nowrap; }
.cta__lede { max-width: 60ch; margin: clamp(26px, 3vw, 36px) 0 0; }

.offer { margin-top: clamp(52px, 6.5vw, 90px); }
.panel--offer { padding: clamp(24px, 3.4vw, 44px); }
.offer__seats { max-width: 520px; }
.seats { display: flex; gap: 5px; height: 30px; }
.seats span { flex: 1 1 0; min-width: 5px; border: 1px solid var(--line-2); }
.seats span.is-taken { background: var(--accent); border-color: var(--accent); }
.seats__meta { display: flex; justify-content: space-between; gap: 12px; margin-top: 11px; font-family: var(--mono); font-size: 9px; letter-spacing: .14em; font-variant-numeric: tabular-nums; }
.seats__taken { color: var(--accent-lt); }
.seats__left { color: var(--muted); }

.price { margin-top: clamp(30px, 4vw, 46px); display: flex; align-items: baseline; gap: clamp(14px, 2.4vw, 26px); flex-wrap: wrap; }
.price__from { font-family: var(--mono); font-size: clamp(14px, 1.8vw, 19px); color: var(--muted); text-decoration: line-through; text-decoration-thickness: 1px; }
.price__now { color: var(--ink); }
.price__terms { font-size: 15px; line-height: 1.6; color: var(--muted); }

.cta-group--final { margin-top: clamp(30px, 4vw, 44px); }

/* ---------- faq --------------------------------------------------------- */

.faq-wrap { margin-top: clamp(56px, 7vw, 96px); }
.faq { border-top: 1px solid var(--line); }
.q {
  display: block; width: 100%; text-align: left;
  background: none; border: 0; border-bottom: 1px solid var(--line);
  padding: 11px 0; cursor: pointer;
  font-family: inherit; color: inherit;
}
.q__row { display: flex; justify-content: space-between; align-items: center; gap: 20px; min-height: 46px; }
.q__label { font-size: 16px; color: var(--ink); }
.q__sign {
  font-family: var(--mono); font-size: 13px; color: var(--muted); flex: none;
  transform: rotate(0deg);
  transition: transform .3s cubic-bezier(.2,.7,.2,1), color .3s ease;
}
.q__panel {
  display: grid; grid-template-rows: minmax(0, 0fr);
  opacity: 0; overflow: hidden; visibility: hidden;
  transition: grid-template-rows .38s cubic-bezier(.2,.7,.2,1), opacity .28s ease, visibility .38s;
}
.q__inner { min-height: 0; }
.q__copy { font-size: 15px; line-height: 1.6; margin: 14px 0 0; color: var(--muted); max-width: 58ch; }
.q[aria-expanded="true"] .q__sign { color: var(--accent-lt); transform: rotate(45deg); }
.q[aria-expanded="true"] .q__panel { grid-template-rows: minmax(0, 1fr); opacity: 1; visibility: visible; }

/* ---------- notify ------------------------------------------------------ */

.notify {
  margin-top: clamp(56px, 7vw, 96px);
  background: var(--panel);
  border: 1px solid var(--line);
  padding: clamp(20px, 3vw, 34px);
}
.notify__head { max-width: 64ch; }
.notify__eyebrow { font-family: var(--mono); font-size: 9px; letter-spacing: .18em; color: var(--muted); margin-bottom: 10px; }
.notify__copy { font-size: 15px; line-height: 1.6; margin: 0; color: var(--muted); }

.picks {
  margin: clamp(20px, 2.6vw, 30px) 0 0;
  padding: 0; border: 0;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 767px) { .picks { grid-template-columns: 1fr; } }
.picks__legend {
  padding: 0; margin-bottom: 14px;
  font-family: var(--mono); font-size: 9px; letter-spacing: .18em; color: var(--muted);
}
.pick {
  display: flex; gap: 13px; align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--line-2);
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease;
}
.pick:hover { border-color: var(--line-4); }
.pick:has(input:checked) { border-color: var(--accent); background: rgba(123,92,255,.07); }
.pick input { position: absolute; width: 1px; height: 1px; opacity: 0; margin: 0; }
.pick__box {
  position: relative; flex: none;
  width: 16px; height: 16px; margin-top: 3px;
  border: 1px solid var(--line-3);
  transition: border-color .18s ease, background .18s ease;
}
.pick input:checked + .pick__box { border-color: var(--accent); background: var(--accent); }
.pick input:checked + .pick__box::after {
  content: ''; position: absolute; left: 4.5px; top: 1px;
  width: 4px; height: 8px;
  border: solid var(--bg); border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.pick input:focus-visible + .pick__box { outline: 2px solid var(--accent-lt); outline-offset: 3px; }
.pick__text { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.pick__title { font-size: 16px; color: var(--ink); }
.pick__desc { font-size: 14px; line-height: 1.55; color: var(--muted); }

.notify__form { display: flex; gap: 8px; flex-wrap: wrap; max-width: 460px; margin-top: clamp(18px, 2.2vw, 26px); }
.field {
  flex: 1 1 170px; min-width: 0;
  background: var(--bg);
  border: 1px solid var(--line-2);
  color: var(--ink);
  font-family: var(--sans); font-size: 14px;
  padding: 14px; min-height: 46px;
  outline: none;
  transition: border-color .18s ease;
}
.field:focus { border-color: var(--muted); }
.ghost {
  flex: 0 0 auto;
  background: none; border: 1px solid var(--line-3); color: var(--ink);
  font-family: var(--sans); font-size: 14px;
  padding: 14px 18px; min-height: 46px;
  cursor: pointer;
  transition: border-color .18s ease;
}
.ghost:hover { border-color: var(--muted); }
.notify__msg {
  font-family: var(--mono); font-size: 9px; letter-spacing: .14em;
  margin-top: 10px; color: var(--muted);
  opacity: 0; transition: opacity .25s ease;
}
.notify__msg.is-shown { opacity: 1; }
.notify__msg.is-ok { color: var(--green); }

/* ---------- footer ------------------------------------------------------ */

.footer {
  border-top: 1px solid var(--line);
  background: var(--panel-2);
  padding: clamp(36px, 4.5vw, 56px) 0;
}
.footer__row {
  display: flex; gap: 12px 16px; flex-wrap: wrap; justify-content: space-between;
  font-family: var(--mono); font-size: 9px; letter-spacing: .14em; color: var(--muted);
}
.offer__body {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: clamp(30px, 4vw, 68px);
}
@media (max-width: 1023px) { .offer__body { grid-template-columns: 1fr; gap: clamp(28px, 4vw, 40px); } }
.offer__main { min-width: 0; }
.offer__side { display: flex; flex-direction: column; justify-content: space-between; gap: clamp(26px, 3vw, 38px); min-width: 0; }

.pay { margin-top: 0; }
.pay__methods { list-style: none; margin: 0 0 14px; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.pay__chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 13px;
  border: 1px solid var(--line-2);
  font-family: var(--mono); font-size: 9px; letter-spacing: .16em; color: var(--muted);
}
.pay__note { display: flex; align-items: flex-start; gap: 9px; margin: 0; font-size: 14px; line-height: 1.6; color: var(--muted); max-width: 56ch; }
.pay__chip svg, .pay__note svg {
  width: 14px; height: 14px; flex: none;
  fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round;
}
.pay__note svg { margin-top: 4px; }

.offer__talk {
  margin: clamp(26px, 3.2vw, 38px) 0 0;
  padding-top: clamp(20px, 2.4vw, 28px);
  border-top: 1px solid var(--line);
  font-size: 15px; line-height: 1.6; color: var(--muted); max-width: 60ch;
}
.offer__talk a { color: var(--accent-lt); border-bottom: 1px solid rgba(155,133,255,.35); white-space: nowrap; }
.offer__talk a:hover { color: var(--ink); border-bottom-color: var(--line-4); }

.footer__links { display: flex; gap: 16px; }
.footer__links a { color: var(--muted); }
.footer__links a:hover { color: var(--ink); }

/* ---------- responsive + motion ----------------------------------------- */

@media (max-width: 1023px) {
  .rail { display: none; }
  .page { padding-left: 0; }
}
@media (max-width: 767px) {
  .group__count { margin-left: 0; flex-basis: 100%; }
  .group::before { font-size: 110px; top: -18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
