/* ============================================================
   SOCIAL PATTER
   Editorial dark. Warm ink, paper cream, one blue.
   ============================================================ */

:root {
  /* Surfaces */
  --ink:        #0C0C0D;
  --ink-2:      #131315;
  --ink-3:      #1A1A1D;
  --paper:      #EFEBE3;
  --paper-2:    #E3DED4;

  /* Type */
  --on-ink:     #F4F5F9;
  --on-ink-dim: #E4E7EF;
  --on-paper:     #17171A;
  --on-paper-dim: #5E5B55;

  /* Accent */
  --blue:       #0B63F6;
  --blue-deep:  #0A55D2;
  --blue-soft:  #6FA3FF;
  --navy:       #000075;
  --btn-lite:   #2F74FF;
  --btn-lite-h: #4A88FF;
  --grad-a: linear-gradient(165deg, #0B1552 0%, #060B33 55%, #02041A 100%);
  --grad-b: linear-gradient(165deg, #000000 0%, #03061F 48%, #0B1552 100%);
  --display: "Unbounded", "Segoe UI", system-ui, sans-serif;
  --body: "Poppins", "Segoe UI", system-ui, sans-serif;

  /* Lines */
  --hair:       rgba(226, 232, 255, 0.20);
  --hair-soft:  rgba(226, 232, 255, 0.11);
  --hair-ink:   rgba(23, 23, 26, 0.16);

  /* Metrics */
  --gutter: clamp(20px, 5vw, 64px);
  --wrap:   1320px;
  --bar:    76px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--bar) + 24px);
  background: #02041A;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: #02041A;
  color: var(--on-ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
p   { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--blue); color: #fff; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: fixed; top: 14px; left: 14px; z-index: 200;
  padding: 10px 16px; background: var(--paper); color: var(--ink);
  font-weight: 600; font-size: 14px; border-radius: 2px;
  transform: translateY(-200%);
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 2px solid var(--blue-soft);
  outline-offset: 3px;
}

/* ---------- Film grain ------------------------------------- */
.grain {
  position: fixed; inset: -50%; z-index: 300;
  pointer-events: none; opacity: 0.30;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)' opacity='0.42'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  will-change: transform;
  animation: grain 7s steps(6) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0) }
  17% { transform: translate(-3%, 2%) }
  33% { transform: translate(2%, -3%) }
  50% { transform: translate(-2%, -2%) }
  67% { transform: translate(3%, 1%) }
  83% { transform: translate(-1%, 3%) }
}

/* ---------- Layout primitives ------------------------------ */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.bg-a { background: var(--grad-a); }
.bg-b { background: var(--grad-b); }

.section {
  position: relative;
  padding-block: clamp(80px, 11vw, 168px);
}

.display {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.03em;
  font-size: clamp(30px, 4.2vw, 62px);
}
.display em {
  font-style: normal;
  color: var(--blue-soft);
}
.invert .display em { color: var(--navy); }

h2.display { font-size: clamp(26px, 3.3vw, 46px); }
h3.display { font-size: clamp(20px, 1.9vw, 26px); line-height: 1.2; }

.label {
  display: inline-flex; align-items: center; gap: 9px;
  margin: 0 0 22px;
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--on-ink-dim);
}
.invert .label { color: var(--on-paper-dim); }
.label .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(11, 99, 246, 0.18);
}

.lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--on-ink);
}
.invert .lead { color: var(--on-paper); }

/* Section rule: 01 / The gap ------------------------------- */
.rule {
  display: flex; align-items: baseline; gap: 16px;
  padding-bottom: 16px;
  margin-bottom: clamp(40px, 5vw, 72px);
  border-bottom: 1px solid var(--hair);
}
.invert .rule { border-bottom-color: var(--hair-ink); }
.rule-num {
  font-family: var(--display);
  font-size: 16px; font-weight: 500; color: var(--blue-soft);
}
.invert .rule-num { color: var(--navy); }
.rule-title {
  font-family: var(--display);
  font-size: 16px; font-weight: 500;
  letter-spacing: 0.02em; text-transform: none;
  color: var(--on-ink-dim);
}
.invert .rule-title { color: var(--on-paper-dim); }

/* ---------- Buttons ---------------------------------------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px;
  font-family: var(--body);
  font-size: 16px; font-weight: 600; letter-spacing: 0;
  border: 1px solid var(--btn-lite);
  border-radius: 2px;
  color: #fff;
  background: var(--btn-lite);
  cursor: pointer;
  transition: background .4s var(--ease), color .4s var(--ease),
              border-color .4s var(--ease), transform .4s var(--ease);
}
.btn-arrow { transition: transform .45s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(5px); }

.btn:hover { background: var(--btn-lite-h); border-color: var(--btn-lite-h); }
.btn-primary, .btn-ghost { background: var(--btn-lite); border-color: var(--btn-lite); color: #fff; }
.btn-primary:hover, .btn-ghost:hover { background: var(--btn-lite-h); border-color: var(--btn-lite-h); }

.btn-sm { padding: 10px 20px; font-size: 15px; }

.btn-lg {
  padding: 19px 34px;
  font-size: 18px;
}

/* on the light section: deep navy fill, white lettering */
.invert .btn, .invert .btn-primary, .invert .btn-ghost { background: var(--navy); border-color: var(--navy); color: #fff; }
.invert .btn:hover { background: #0A0AA0; border-color: #0A0AA0; }

/* ---------- Masthead --------------------------------------- */
.masthead {
  position: fixed; top: 0; left: 0; right: 0; z-index: 150;
  height: var(--bar);
  transition: background .5s var(--ease), border-color .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.masthead.is-stuck {
  background: rgba(3, 6, 31, 0.86);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--hair-soft);
}
.masthead-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: var(--bar);
  max-width: var(--wrap); margin: 0 auto;
  padding-inline: var(--gutter);
}

.brand { display: inline-flex; align-items: center; gap: 4px; }
.brand-mark {
  width: 34px; height: 34px; object-fit: contain;
  transition: transform .5s var(--ease);
}
.brand:hover .brand-mark { transform: rotate(-6deg) scale(1.04); }
.brand-word {
  width: 124px; height: auto; object-fit: contain; object-position: left center;
}

.nav { display: flex; gap: 34px; }
.nav a {
  position: relative;
  font-size: 16px; color: var(--on-ink-dim);
  transition: color .3s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease);
}
.nav a:hover { color: var(--on-ink); }
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.masthead-actions { display: flex; align-items: center; gap: 12px; }

.menu-toggle {
  display: none;
  width: 42px; height: 38px;
  flex-direction: column; justify-content: center; align-items: center; gap: 6px;
  background: none; border: 1px solid var(--hair); border-radius: 2px;
  cursor: pointer;
}
.menu-toggle span {
  display: block; width: 17px; height: 1.5px; background: var(--on-ink);
  transition: transform .4s var(--ease), opacity .3s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child  { transform: translateY(-3.75px) rotate(-45deg); }

.mobile-nav {
  display: flex; flex-direction: column;
  padding: 10px var(--gutter) 30px;
  background: rgba(3,6,31,.98);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hair-soft);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a {
  display: flex; align-items: baseline; gap: 14px;
  padding: 17px 0;
  font-size: 18px;
  border-bottom: 1px solid var(--hair-soft);
}
.mobile-nav a i {
  font-style: normal; font-family: var(--display);
  font-size: 13px; color: var(--blue-soft);
}
.mobile-nav .mobile-cta {
  justify-content: center;
  margin-top: 22px; padding: 16px;
  background: var(--btn-lite); color: #fff;
  border: 0; border-radius: 2px; font-size: 17px; font-weight: 600;
}

/* ---------- Hero -------------------------------------------- */
.hero { padding-top: calc(var(--bar) + clamp(56px, 9vw, 120px)); }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 88px);
  align-items: end;
  padding-bottom: clamp(48px, 6vw, 88px);
}

.hero-lede .display { font-size: clamp(30px, 4.6vw, 70px); }

.hero-side { padding-bottom: 6px; }
.hero-copy {
  max-width: 44ch;
  font-size: 18px;
  color: var(--on-ink-dim);
  margin-bottom: 30px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-facts {
  display: flex; flex-wrap: wrap; gap: 10px 24px;
  margin: 30px 0 0; padding: 0; list-style: none;
}
.hero-facts li {
  display: flex; align-items: center; gap: 8px;
  font-size: 16px; letter-spacing: 0;
  color: var(--on-ink-dim);
}
.hero-facts li::before {
  content: ""; width: 5px; height: 5px;
  background: var(--blue); border-radius: 50%;
}

/* ---------- Ticker ------------------------------------------ */
.ticker {
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.ticker-track {
  display: flex; align-items: center; gap: 22px;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.ticker-track span {
  font-family: var(--display);
  font-size: clamp(15px, 1.5vw, 20px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--on-ink);
  white-space: nowrap;
}
.ticker-track .tick { display: inline-flex; flex: none; width: 24px; height: 24px; color: var(--blue-soft); }
.ticker-track .tick svg { width: 100%; height: 100%; }
@keyframes marquee { to { transform: translateX(-33.333%); } }

/* ---------- Video plate ------------------------------------- */
.plate { margin: clamp(56px, 7vw, 104px) 0 0; }

.plate-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  max-height: 600px;
  margin-inline: auto;
  background:
    linear-gradient(180deg, rgba(11,99,246,.10), transparent 46%),
    radial-gradient(120% 150% at 50% 0%, #22222A 0%, #101013 58%);
  border: 1px solid rgba(234, 231, 224, 0.2);
  border-radius: 3px;
  overflow: hidden;
  display: grid; place-items: center;
  box-shadow: 0 60px 120px -60px rgba(0,0,0,.9);
}
.plate-frame::after {
  content: ""; position: absolute; inset: 14px; z-index: 2;
  border: 1px solid var(--hair-soft);
  transition: opacity .5s var(--ease);
  pointer-events: none;
}

/* the whole frame is the play target before it starts */
.plate-frame:not(.is-playing) { cursor: pointer; }

.plate-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  background: #0A0A0C;
}

.plate-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(42% 56% at 50% 50%, rgba(6,6,8,.5), transparent 74%),
    linear-gradient(180deg, rgba(6,6,8,.2), rgba(6,6,8,.04) 42%, rgba(6,6,8,.42));
  transition: opacity .5s var(--ease);
  pointer-events: none;
}

/* once it is playing the frame is just the video and its native controls */
.plate-frame.is-playing .plate-scrim,
.plate-frame.is-playing .plate-play,
.plate-frame.is-playing .plate-slug { opacity: 0; pointer-events: none; }
.plate-frame.is-playing::after { opacity: 0; }

.plate-play {
  position: relative; z-index: 3;
  transition: opacity .4s var(--ease);
  display: grid; place-items: center;
  width: clamp(88px, 10vw, 128px); aspect-ratio: 1;
  background: none; border: 0; cursor: pointer;
  color: var(--on-ink);
}
.plate-play-ring {
  position: absolute; inset: 0;
  border: 1px solid rgba(234,231,224,.55); border-radius: 50%;
  background: rgba(234,231,224,.04);
  backdrop-filter: blur(2px);
  transition: transform .6s var(--ease), border-color .6s var(--ease), background .6s var(--ease);
}
.plate-play-label {
  position: relative;
  font-family: var(--display);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  transition: color .4s var(--ease);
}
.plate-play:hover .plate-play-ring {
  transform: scale(1.09);
  background: var(--blue);
  border-color: var(--blue);
}
.plate-play:hover .plate-play-label { color: #fff; }

.plate-slug {
  position: absolute; left: 26px; bottom: 24px; z-index: 3;
  transition: opacity .4s var(--ease);
  display: flex; flex-direction: column; gap: 2px;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--on-ink-dim);
}

.plate figcaption {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 12px;
  margin-top: 16px;
  font-size: 16px; color: var(--on-ink-dim);
}
.plate .fig {
  font-family: var(--display);
  font-size: 14px; color: var(--blue-soft);
}

.plate-video::cue {
  background: rgba(8, 8, 10, .82);
  color: #EAE7E0;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: .82em;
  line-height: 1.4;
}

/* ---------- Two column ------------------------------------- */
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 88px);
  align-items: start;
}
.col-body { max-width: 52ch; color: var(--on-ink-dim); }
.col-body .lead { color: var(--on-ink); margin-bottom: 1.1em; }
.invert .col-body { color: var(--on-paper-dim); }

.problem .quote { max-width: 12ch; }

/* ---------- Inverted (paper) section ------------------------ */
.invert {
  --blue: #000075;
  background: var(--paper);
  color: var(--on-paper);
}
.invert::before,
.invert::after {
  content: ""; position: absolute; left: 0; right: 0; height: 1px;
  background: rgba(23,23,26,.1);
}
.invert::before { top: 0; }
.invert::after  { bottom: 0; }

/* ---------- Ledger ------------------------------------------ */
.ledger {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: clamp(48px, 6vw, 88px) 0 0;
  padding: 0; list-style: none;
  border-top: 1px solid var(--hair-ink);
}
.ledger li {
  padding: 28px 26px 34px 0;
  border-right: 1px solid var(--hair-ink);
}
.ledger li:last-child { border-right: 0; padding-right: 0; }
.ledger li:not(:first-child) { padding-left: 26px; }

.ledger-num {
  display: block; margin-bottom: 18px;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(28px, 2.6vw, 40px); line-height: 1;
  color: rgba(0,0,117,.22);
}
.ledger h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 17px; font-weight: 600; letter-spacing: -0.02em;
}
.ledger p { font-size: 16px; line-height: 1.6; color: var(--on-paper-dim); }

.ledger-final .ledger-num { color: var(--navy); }
.ledger-final h3 { color: var(--navy); }

/* ---------- Pricing ----------------------------------------- */
.pricing {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(48px, 6vw, 80px);
  background: var(--hair-ink);
  border: 1px solid var(--hair-ink);
}
.price-card {
  background: var(--paper);
  padding: clamp(28px, 3.4vw, 46px);
}
.price-card .label { margin-bottom: 16px; }
.price-card h3 { margin: 0 0 14px; }
.price-card p { font-size: 16px; color: var(--on-paper-dim); max-width: 42ch; }

.price-accent { background: var(--paper-2); }
.price-accent h3 { color: var(--navy); }

/* ---------- Sticky process ---------------------------------- */
.sticky-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.25fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}
.sticky-head { position: sticky; top: calc(var(--bar) + 44px); }
.sticky-head p {
  margin: 22px 0 28px;
  color: var(--on-ink-dim);
  max-width: 30ch;
}

.steps { margin: 0; padding: 0; list-style: none; }
.steps li {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 20px;
  padding: clamp(26px, 3vw, 40px) 0;
  border-top: 1px solid var(--hair);
}
.steps li:last-child { border-bottom: 1px solid var(--hair); }
.step-num {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(22px, 2.1vw, 30px); line-height: 1;
  color: rgba(226,232,255,.4);
}
.steps h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600; letter-spacing: -0.02em;
}
.steps p { color: var(--on-ink-dim); max-width: 52ch; font-size: 16px; }
.steps li:hover .step-num { color: var(--blue-soft); transition: color .4s var(--ease); }

/* ---------- Compare table ----------------------------------- */
.compare-title { margin-bottom: clamp(36px, 4vw, 56px); }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.compare {
  width: 100%; min-width: 860px;
  border-collapse: collapse;
  text-align: left;
}
.compare th, .compare td {
  padding: 20px 22px;
  border-bottom: 1px solid var(--hair);
  font-size: 16px; font-weight: 400;
  vertical-align: top;
  color: var(--on-ink-dim);
}
.compare thead th {
  padding-top: 0;
  font-family: var(--display);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0; text-transform: none;
  color: var(--on-ink-dim);
  border-bottom: 1px solid var(--hair);
}
.compare tbody th {
  color: var(--on-ink);
  font-weight: 500;
  padding-left: 0;
  width: 22%;
}
.compare .col-us { color: var(--on-ink); }
.compare thead .col-us {
  color: var(--blue-soft);
  border-bottom: 1px solid var(--blue);
}
.compare tbody .col-us {
  background: rgba(47, 116, 255, 0.14);
  font-weight: 500;
}
.compare tbody tr:last-child td,
.compare tbody tr:last-child th { border-bottom: 0; }
.compare tbody tr:last-child .col-us { border-bottom: 1px solid var(--blue); }

/* ---------- Fit --------------------------------------------- */
.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 80px);
  margin-top: clamp(40px, 5vw, 68px);
  padding-top: clamp(32px, 4vw, 52px);
  border-top: 1px solid var(--hair);
}
.fit-head {
  display: flex; align-items: center; gap: 12px;
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: 16px; font-weight: 600; letter-spacing: -0.01em;
  color: var(--on-ink);
}
.fit-mark {
  width: 28px; height: 28px; flex: none;
  fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  overflow: visible;
}
.fit-mark--good { stroke: var(--blue-soft); }
.fit-mark--bad  { stroke: #C5C8D2; }
.fit-col ul { margin: 0; padding: 0; list-style: none; }
.fit-col li {
  display: flex; gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--hair-soft);
  font-size: 16px;
  color: var(--on-ink-dim);
}
.fit-col li::before {
  content: "+";
  flex: none; width: 16px;
  font-family: var(--display);
  font-size: 15px; line-height: 1.7;
  color: var(--blue-soft);
}
.fit-col--bad li::before { content: "\2013"; color: rgba(226,232,255,.4); }

/* ---------- FAQ --------------------------------------------- */
.faq-top { margin-bottom: clamp(36px, 4vw, 60px); }
.faq-top .lead { max-width: 46ch; color: var(--on-ink-dim); }

.faq-list { border-top: 1px solid var(--hair); }
.faq-list details { border-bottom: 1px solid var(--hair); }

.faq-list summary {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: clamp(22px, 2.6vw, 32px) 0;
  cursor: pointer; list-style: none;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.4; letter-spacing: -0.015em;
  color: var(--on-ink);
  transition: color .35s var(--ease);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--blue-soft); }

.chev {
  position: relative; flex: none;
  width: 34px; height: 34px;
  border: 1px solid var(--hair); border-radius: 50%;
  transition: background .4s var(--ease), border-color .4s var(--ease), transform .5s var(--ease);
}
.chev::before, .chev::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 12px; height: 1.5px; background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform .45s var(--ease), opacity .3s var(--ease);
}
.chev::after { transform: translate(-50%, -50%) rotate(90deg); }
details[open] .chev { background: var(--btn-lite); border-color: var(--btn-lite); color: #fff; }
details[open] .chev::after { opacity: 0; transform: translate(-50%,-50%) rotate(0deg); }

.faq-body {
  padding: 0 60px clamp(26px, 3vw, 36px) 0;
  max-width: 68ch;
  color: var(--on-ink-dim);
  font-size: 16px;
}
details[open] .faq-body { animation: faqIn .5s var(--ease); }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } }

/* ---------- Closer ------------------------------------------ */
.closer {
  position: relative;
  background: #000075;
  color: #fff;
  padding-block: clamp(90px, 13vw, 190px);
  overflow: hidden;
}
.closer::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(90% 120% at 50% 110%, rgba(0,0,0,.28), transparent 62%);
  pointer-events: none;
}
.closer-inner { position: relative; text-align: center; }
.closer .label { color: rgba(255,255,255,.7); }
.closer .label .dot { background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.22); }
.closer-title {
  font-size: clamp(28px, 4.4vw, 62px);
  margin-bottom: 26px;
}
.closer-title em { color: var(--blue-soft); }
.closer-copy {
  max-width: 50ch; margin: 0 auto 38px;
  font-size: 18px;
  color: rgba(255,255,255,.88);
}

.closer-meta {
  margin-top: 22px;
  font-size: 16px; letter-spacing: 0;
  color: rgba(255,255,255,.78);
}

/* ---------- Footer ------------------------------------------ */
.footer {
  background: var(--grad-a);
  padding-top: clamp(56px, 7vw, 96px);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 0.7fr);
  gap: clamp(32px, 5vw, 72px);
  padding-bottom: clamp(48px, 6vw, 80px);
}
.footer-brand img {
  width: 104px; height: auto; object-fit: contain;
  margin: 0 0 22px;
}
.footer-brand p {
  max-width: 36ch; font-size: 16px; color: var(--on-ink-dim);
}
.footer-col { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-col .label { margin-bottom: 4px; }
.footer-col a:not(.btn) {
  font-size: 14.5px; color: var(--on-ink-dim);
  transition: color .3s var(--ease);
  width: fit-content;
}
.footer-col a:not(.btn):hover { color: var(--on-ink); }

.footer-base {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  padding-block: 26px 30px;
  border-top: 1px solid var(--hair-soft);
  font-size: 14px; color: var(--on-ink-dim);
}
.footer-note { color: #E4E7EF; }

/* ---------- Reveal ------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .95s var(--ease), transform .95s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }

/* ---------- Responsive -------------------------------------- */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; align-items: start; gap: 34px; }
  .hero-side { padding-bottom: 0; }
  .sticky-grid { grid-template-columns: 1fr; }
  .sticky-head { position: static; }
  .ledger { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ledger li { border-bottom: 1px solid var(--hair-ink); }
  .ledger li:nth-child(2n) { border-right: 0; padding-right: 0; }
  .ledger li:nth-child(odd) { padding-left: 0; }
  .ledger li:nth-child(2n) { padding-left: 26px; }
}

@media (max-width: 860px) {
  :root { --bar: 66px; }
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .masthead-actions .btn-sm { display: none; }
  .masthead.is-open { background: rgba(3,6,31,.98); }
  .two-col { grid-template-columns: 1fr; gap: 24px; }
  .problem .quote { max-width: none; }
  .pricing { grid-template-columns: 1fr; }
  .fit-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-grid { grid-template-columns: 1fr; }
  .faq-body { padding-right: 0; }
}

@media (max-width: 620px) {
  /* let long display lines wrap naturally instead of on the authored breaks */
  .display br { display: none; }
  .hero-lede .display { font-size: clamp(26px, 7.4vw, 34px); }
  h2.display { font-size: clamp(23px, 6.4vw, 30px); }
  .closer-title { font-size: clamp(25px, 7vw, 32px); }
  .faq-list summary { font-size: 15px; gap: 16px; }
  .chev { width: 30px; height: 30px; }
  .table-scroll {
    mask-image: linear-gradient(90deg, #000 86%, transparent);
    -webkit-mask-image: linear-gradient(90deg, #000 86%, transparent);
  }
  .ledger { grid-template-columns: 1fr; }
  .ledger li,
  .ledger li:nth-child(2n) { padding: 24px 0 28px; border-right: 0; padding-left: 0; }
  .steps li { grid-template-columns: 48px minmax(0,1fr); gap: 14px; }
  .hero-cta .btn { flex: 1 1 100%; justify-content: center; }
  .plate-slug { left: 18px; bottom: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Scale pass: bigger type, more presence ---------- */
body { font-size: 18px; line-height: 1.7; }
.lead { font-size: clamp(19px, 1.7vw, 23px); line-height: 1.55; }
.display { font-size: clamp(34px, 5vw, 74px); line-height: 1.1; }
h2.display { font-size: clamp(30px, 4.4vw, 62px); }
h3.display { font-size: clamp(24px, 2.4vw, 34px); }
.hero-lede .display { font-size: clamp(38px, 5.8vw, 88px); line-height: 1.06; }
.closer-title { font-size: clamp(32px, 5.4vw, 78px); }
.label { font-size: 13.5px; }
.rule-num, .rule-title { font-size: 17px; }
.hero-copy { font-size: clamp(18px, 1.5vw, 21px); max-width: 46ch; color: var(--on-ink); }
.hero-facts { gap: 12px 26px; }
.hero-facts li { font-size: 17px; color: var(--on-ink); }
.hero-facts li::before { display: none; }
.chk { width: 22px; height: 22px; flex: none; fill: none; stroke: var(--blue-soft); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.btn { font-size: 17px; padding: 16px 30px; }
.btn-lg { font-size: 19px; padding: 20px 36px; }
.btn-sm { font-size: 16px; }
.nav a { font-size: 17px; }
.col-body { max-width: 56ch; font-size: 18px; }
.col-body p { color: var(--on-ink-dim); }
.col-body .lead { color: var(--on-ink); }
.invert .col-body p { color: var(--on-paper-dim); }
.invert .col-body .lead { color: var(--on-paper); }
.ledger h3 { font-size: 21px; }
.ledger p { font-size: 17px; }
.steps h3 { font-size: 21px; }
.steps p { font-size: 18px; }
.price-card p { font-size: 17px; }
.compare th, .compare td { font-size: 17px; padding: 22px 24px; }
.compare thead th { font-size: 14px; }
.fit-head { font-size: 16px; }
.fit-col li { font-size: 18px; padding: 17px 0; }
.faq-list summary { font-size: clamp(17px, 1.7vw, 22px); }
.faq-body { font-size: 18px; }
.faq-top .lead { max-width: 48ch; }
.closer-copy { font-size: clamp(18px, 1.6vw, 22px); }
.closer-meta { font-size: 17px; }
.footer-brand p { font-size: 18px; }
.plate figcaption { font-size: 17px; }

/* hand-drawn underline on the hero's key word */
.scribble { position: relative; display: inline-block; }
.scribble svg {
  position: absolute; left: -2%; bottom: -0.14em;
  width: 104%; height: 0.32em; overflow: visible;
  fill: none; stroke: var(--blue-soft); stroke-width: 5; stroke-linecap: round;
}
.scribble svg path {
  stroke-dasharray: 260; stroke-dashoffset: 260;
  animation: draw 1.1s var(--ease) .7s forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }

/* icons: draw themselves in when their block scrolls into view */
.ico-tile {
  display: grid; place-items: center;
  width: 68px; height: 68px; margin-bottom: 22px;
  border-radius: 16px;
  background: rgba(0, 0, 117, 0.08);
  color: var(--navy);
  transition: transform .5s var(--ease), background .4s var(--ease), color .4s var(--ease);
}
.ico-tile--sm { width: 56px; height: 56px; margin-bottom: 18px; border-radius: 14px; }
.ico { width: 36px; height: 36px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.ico-tile--sm .ico { width: 30px; height: 30px; }
.ledger li:hover .ico-tile,
.price-card:hover .ico-tile { transform: translateY(-5px) rotate(-4deg); background: var(--navy); color: #fff; }
.ledger-final .ico-tile { background: var(--navy); color: #fff; }
.steps .ico-tile { background: rgba(111, 163, 255, 0.14); color: var(--blue-soft); }
.steps li:hover .ico-tile { transform: translateY(-4px) rotate(-4deg); background: var(--btn-lite); color: #fff; }
.price-accent { background: rgba(0, 0, 117, 0.07); }

.js .ico *, .js .fit-mark .draw {
  stroke-dasharray: 100; stroke-dashoffset: 100;
  transition: stroke-dashoffset 1.3s var(--ease) .25s;
}
.js .fit-mark .draw + .draw { transition-delay: .9s; }
.js .is-visible .ico *, .js .is-visible .fit-mark .draw { stroke-dashoffset: 0; }

/* the ledger fills like a progress bar as it arrives */
.ledger { position: relative; }
.ledger::after {
  content: ""; position: absolute; left: 0; top: -1px;
  height: 3px; width: 100%; background: var(--navy);
  transform: scaleX(0); transform-origin: left;
  transition: transform 1.9s var(--ease) .1s;
}
.ledger.is-visible::after { transform: scaleX(1); }
.ledger li { transition: background .4s var(--ease); }
.ledger li:hover { background: rgba(0, 0, 117, 0.04); }

/* ---------- Blog ------------------------------------------- */
.post-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 20px;
  margin-top: clamp(28px, 3vw, 44px);
}
.post-card {
  position: relative; display: flex; flex-direction: column; gap: 14px;
  padding: clamp(24px, 2.6vw, 36px);
  border: 1px solid var(--hair); border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
  transition: transform .5s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}
a.post-card:hover { transform: translateY(-6px); border-color: var(--btn-lite); background: rgba(47, 116, 255, 0.09); }
.post-card h2, .post-card h3 {
  margin: 0; font-family: var(--display); font-weight: 600;
  font-size: clamp(19px, 1.7vw, 24px); line-height: 1.3; letter-spacing: -0.02em;
}
.post-card p { margin: 0; color: var(--on-ink-dim); }
.post-tag {
  width: fit-content; padding: 6px 12px; border-radius: 99px;
  font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  background: rgba(47, 116, 255, 0.2); color: var(--blue-soft);
}
.post-more { margin-top: auto; padding-top: 8px; font-weight: 600; color: var(--blue-soft); }
a.post-card:hover .btn-arrow { transform: translateX(6px); }
.post-card--soon { border-style: dashed; justify-content: center; opacity: .8; }
.post-card--soon .post-tag { background: rgba(255,255,255,.08); color: var(--on-ink-dim); }
.post-all { margin: 30px 0 0; font-weight: 600; font-size: 18px; }
.post-all a { color: var(--blue-soft); }

/* article pages */
.article-wrap { max-width: 820px; margin: 0 auto; padding-inline: var(--gutter); }
.article-head { padding-top: calc(var(--bar) + clamp(44px, 6vw, 90px)); padding-bottom: clamp(28px, 4vw, 48px); }
.article-head h1 { margin: 16px 0 0; }
.article-meta { margin-top: 22px; color: var(--on-ink-dim); font-size: 16px; }
.article-body { padding-bottom: clamp(56px, 8vw, 110px); }
.article-body p { font-size: 19px; line-height: 1.75; color: var(--on-ink); margin: 0 0 1.4em; }
.article-body h2 {
  margin: 2em 0 .7em; font-family: var(--display); font-weight: 600;
  font-size: clamp(22px, 2.6vw, 32px); line-height: 1.2; letter-spacing: -0.025em;
}
.article-body ul { margin: 0 0 1.6em; padding-left: 1.2em; }
.article-body li { font-size: 19px; line-height: 1.7; margin-bottom: .55em; color: var(--on-ink); }
.article-body a { color: var(--blue-soft); text-decoration: underline; text-underline-offset: 3px; }
.article-cta {
  margin: 2.2em 0 0; padding: clamp(26px, 3vw, 40px);
  border-radius: 4px; background: var(--navy); text-align: left;
}
.article-cta h2 { margin-top: 0; }
.article-cta p { color: rgba(255,255,255,.88); }
.blog-list { display: grid; gap: 20px; padding-bottom: clamp(56px, 8vw, 110px); }

/* schedule page */
.page-schedule { padding-top: calc(var(--bar) + clamp(44px, 6vw, 90px)); padding-bottom: clamp(56px, 8vw, 110px); }
.schedule-head { max-width: 780px; margin-bottom: clamp(28px, 4vw, 48px); }
.schedule-head .lead { margin-top: 20px; color: var(--on-ink-dim); }
.schedule-frame {
  background: #fff; border: 1px solid var(--hair); border-radius: 4px; overflow: hidden;
  box-shadow: 0 50px 100px -60px rgba(0,0,0,.9);
}
.schedule-frame iframe { display: block; width: 100%; min-height: 640px; border: 0; }

@media (max-width: 1080px) { .post-grid { grid-template-columns: 1fr 1fr; } .post-card--feature { grid-column: 1 / -1; } }
@media (max-width: 860px) { .post-grid { grid-template-columns: 1fr; } }
@media (max-width: 620px) {
  .hero-lede .display { font-size: clamp(32px, 9vw, 42px); }
  h2.display { font-size: clamp(27px, 7.6vw, 36px); }
  .closer-title { font-size: clamp(29px, 8vw, 38px); }
  .faq-list summary { font-size: 17px; }
  .btn-lg { width: 100%; justify-content: center; }
}

/* ---------- Reduced motion ---------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .grain { animation: none; }
  .ticker-track { animation: none; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .js .ico *, .js .fit-mark .draw { stroke-dashoffset: 0; }
  .scribble svg path { stroke-dashoffset: 0; animation: none; }
  .ledger::after { transform: scaleX(1); }
}

/* ---------- Print ------------------------------------------- */
@media print {
  .grain, .masthead, .ticker, .plate-frame { display: none; }
  body { background: #fff; color: #000; }
}

/* performance: static, cheap grain (no blend mode, no animation, viewport-sized) */
.grain { inset: 0; opacity: 0.07; mix-blend-mode: normal; animation: none; will-change: auto; }

/* header: always solid and darker than any section behind it, so the logo keeps its contrast */
.masthead { background: #01020E; border-bottom-color: rgba(226,232,255,.14); }
.masthead.is-stuck { background: #01020E; }
.masthead.is-open, .mobile-nav { background: #01020E; }
.footer-base, .footer-base span { color: #FFFFFF; }
.footer-note { color: #E4E7EF; }

/* footer call to action */
.footer-col .get-started {
  font-family: var(--display); font-size: 17px; font-weight: 600;
  letter-spacing: 0.04em; color: #FFFFFF; margin-bottom: 6px;
  display: flex; align-items: center; gap: 12px;
}
.down-arrows { display: inline-flex; width: 26px; height: 26px; color: var(--blue-soft); animation: nudge 1.6s ease-in-out infinite; }
.down-arrows svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
@keyframes nudge { 0%, 100% { transform: translateY(-2px); } 50% { transform: translateY(5px); } }
.gcal-wrap { zoom: 1.25; }
@media (prefers-reduced-motion: reduce) { .down-arrows { animation: none; } }

/* compare table: readable headers, yellow row titles, Social Patter in white */
.compare tbody th { color: #FFD966; font-weight: 600; font-size: 18px; }
.compare thead th { font-size: 18px; color: #FFFFFF; }
.compare thead .col-us { color: #FFFFFF; font-size: 20px; border-bottom: 2px solid #FFD966; }
.compare tbody .col-us { color: #FFFFFF; }

/* fit section: green for good, red for not, so the split reads at a glance */
.fit-mark { width: 32px; height: 32px; stroke-width: 2.4; }
.fit-mark--good { stroke: #3DDC84; }
.fit-mark--bad  { stroke: #FF5A5F; }
.fit-col .fit-head { color: #3DDC84; }
.fit-col--bad .fit-head { color: #FF6B70; }
.fit-col li::before { color: #3DDC84; }
.fit-col--bad li::before { color: #FF5A5F; }

/* headline accent words */
.hl-red  { color: #FF4D4F; }
.hl-blue { color: #7CB9FF; }
/* fit marks: white circle, colored mark */
.fit-mark .draw:first-child { stroke: #FFFFFF; }
.fit-mark--good .draw:last-child { stroke: #3DDC84; }
.fit-mark--bad  .draw:last-child { stroke: #FF4D4F; }

/* fit headings: Unbounded 17px */
.fit-col .fit-head { font-family: var(--display); font-size: 17px; }

/* next step section: darker gradient, bigger title, red blinking dot */
.closer { background: linear-gradient(170deg, #00004A 0%, #00002E 50%, #000000 100%); }
.closer .label {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(26px, 3vw, 42px);
  letter-spacing: 0.04em; color: #FFFFFF;
  gap: 16px; margin-bottom: 28px;
}
.closer .label .dot {
  width: 14px; height: 14px; background: #FF2E2E;
  box-shadow: 0 0 0 5px rgba(255, 46, 46, 0.25);
  animation: blink 1.1s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.15; } }
@media (prefers-reduced-motion: reduce) { .closer .label .dot { animation: none; } }

/* buttons: 9px corners */
.btn, .mobile-nav .mobile-cta, .menu-toggle { border-radius: 9px; }

/* header: Home link beside the booking button */
.nav-home { font-size: 17px; color: var(--on-ink-dim); transition: color .3s var(--ease); }
.nav-home:hover { color: #FFFFFF; }
@media (max-width: 860px) { .nav-home { display: none; } }

/* footer: shorter, SP symbol only, legal links */
.footer { padding-top: clamp(26px, 3vw, 40px); }
.footer-grid { grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); align-items: center; padding-bottom: clamp(20px, 2.4vw, 30px); gap: clamp(20px, 3vw, 48px); }
.footer-brand { display: flex; align-items: center; gap: 20px; }
.footer-brand img { width: 72px; height: 72px; margin: 0; flex: none; }
.footer-brand p { margin: 0; max-width: 40ch; }
.footer-col { gap: 8px; }
.footer-base { align-items: center; padding-block: 14px 16px; }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { color: #FFFFFF; font-size: 14px; transition: color .3s var(--ease); }
.footer-legal a:hover { color: var(--blue-soft); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr; } }

/* hero: zero-risk line, green checks, button under the video */
.hero-zero { margin: 0 0 26px; font-family: var(--display); font-weight: 600; font-size: clamp(18px, 1.7vw, 24px); color: #FFFFFF; letter-spacing: -0.01em; }
.hero-facts .chk { stroke: #3DDC84; }
.plate-cta { display: flex; justify-content: center; margin-top: clamp(28px, 3.4vw, 44px); }

/* section titles: all caps, always contrasting the background */
.rule-title { text-transform: uppercase; color: #FFFFFF; letter-spacing: 0.06em; }
.invert .rule-title { color: #2F74FF; }

/* See the model button under the video: slightly smaller */
.plate-cta .btn { font-size: 17px; padding: 15px 28px; }
