/* Self-hosted variable fonts. Latin subset only, which is all this site needs.
   Keeps the critical path on one origin: no DNS + TLS to fonts.googleapis.com
   and fonts.gstatic.com before first paint, and no visitor IPs sent to Google. */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/inter-latin.65850a37.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("/assets/spacegrotesk-latin.25ea4a78.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ==========================================================================
   LRPT - Luke Robinson Personal Training
   Light, warm, high-converting. Off-white canvas, LRPT blue as the accent.
   ========================================================================== */

:root {
  --paper: #f7f5f1;
  --paper-2: #efece6;
  --surface: #ffffff;
  --ink: #0d1b2a;
  --ink-2: #2c3e4f;
  --body: #4a5b6a;
  --dim: #7a8794;
  --blue: #2059c9;
  --blue-2: #3b82f6;
  --blue-soft: #e8f0fe;
  --blue-ink: #10336f;
  --good: #1a7f4b;
  --line: rgba(13, 27, 42, 0.1);
  --line-2: rgba(13, 27, 42, 0.06);
  --shadow: 0 1px 2px rgba(13, 27, 42, .05), 0 12px 32px rgba(13, 27, 42, .07);
  --shadow-lg: 0 2px 4px rgba(13, 27, 42, .05), 0 24px 60px rgba(13, 27, 42, .12);
  --display: "Space Grotesk", system-ui, -apple-system, sans-serif;
  --text: "Inter", system-ui, -apple-system, sans-serif;
  --wrap: 1140px;
  --r: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--paper);
  color: var(--body);
  font-family: var(--text);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--display); color: var(--ink); line-height: 1.12; letter-spacing: -0.02em; font-weight: 700; }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); letter-spacing: -0.01em; }
p { margin: 0 0 1.05em; }
strong { color: var(--ink); font-weight: 600; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 760px; }
section { padding: clamp(64px, 9vw, 118px) 0; }
.sec-tight { padding: clamp(46px, 6vw, 74px) 0; }
.bg-white { background: var(--surface); }
.bg-paper2 { background: var(--paper-2); }
.center { text-align: center; }

/* ---------- eyebrow / kicker ---------- */
.kicker {
  display: inline-block; font-family: var(--text); font-size: 12.5px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--blue);
  background: var(--blue-soft); border-radius: 100px; padding: 7px 16px; margin-bottom: 20px;
}
.lede { font-size: clamp(1.06rem, 1.7vw, 1.24rem); color: var(--ink-2); max-width: 62ch; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--text); font-weight: 700; font-size: 1rem; letter-spacing: .01em;
  color: #fff; background: var(--blue); border: 2px solid var(--blue);
  border-radius: 100px; padding: 15px 30px; cursor: pointer; text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
  box-shadow: 0 8px 22px rgba(32, 89, 201, .26);
}
.btn:hover { background: var(--blue-ink); border-color: var(--blue-ink); transform: translateY(-2px); text-decoration: none; box-shadow: 0 12px 30px rgba(32, 89, 201, .34); }
.btn-ghost { background: transparent; color: var(--blue); border-color: rgba(32,89,201,.35); box-shadow: none; }
.btn-ghost:hover { background: var(--blue-soft); color: var(--blue-ink); border-color: var(--blue); transform: translateY(-2px); box-shadow: none; }
.btn-lg { font-size: 1.06rem; padding: 17px 36px; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-row.center { justify-content: center; }
.btn-note { font-size: 14px; color: var(--dim); margin-top: 14px; }

/* ---------- header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 60; background: rgba(247,245,241,.86);
  backdrop-filter: saturate(150%) blur(12px); border-bottom: 1px solid var(--line-2);
}
.head-in { display: flex; align-items: center; gap: 20px; height: 74px; }
.brand { display: flex; align-items: center; gap: 10px; margin-right: auto; }
.brand img { height: 42px; width: auto; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { color: var(--ink-2); font-size: 15px; font-weight: 600; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--blue); text-decoration: none; }
.nav-cta { padding: 11px 22px; font-size: 15px; }
.burger { display: none; background: none; border: 1px solid var(--line); border-radius: 10px; padding: 9px 11px; cursor: pointer; }
.burger span { display: block; width: 20px; height: 2px; background: var(--ink); margin: 4px 0; border-radius: 2px; }
@media (max-width: 900px) {
  .nav { position: fixed; inset: 74px 0 auto; background: var(--surface); flex-direction: column; align-items: stretch; gap: 0; padding: 10px 20px 22px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); transform: translateY(-120%); transition: transform .25s ease; }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 13px 2px; border-bottom: 1px solid var(--line-2); font-size: 16px; }
  .nav .btn { margin-top: 14px; }
  .burger { display: block; }
}

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(74px, 11vw, 150px) 0 clamp(60px, 8vw, 104px);
  isolation: isolate;
}
/* Every direct child of the hero must sit above the ::after scrim, not just
   the centred column: other pages put content straight into .wrap. */
/* NOTE specificity: the generic `section > .wrap { z-index: 1 }` in the visual
   system below is (0,1,1) and would otherwise beat a plain `.hero > *` (0,1,0),
   dropping hero content onto the same layer as the ::after scrim so the scrim
   paints over the headline. `.hero > .wrap` is (0,2,0) and wins. Do not
   simplify this back to a bare universal selector. */
.hero > *, .hero > .wrap { position: relative; z-index: 2; }
.hero > .blobs { z-index: 0; }
.hero-in { max-width: 900px; margin: 0 auto; text-align: center; }
.hero h1 { margin-bottom: 22px; }
.hero h1 .hl { color: var(--blue); }
/* centring belongs to the centred hero only, not to the split ones */
.hero-in .lede { margin: 0 auto 30px; }
.hero-in .btn-row { justify-content: center; }

/* split hero: copy on the left, form or panel on the right */
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .92fr);
  gap: clamp(28px, 4vw, 56px); align-items: start;
}
.hero-grid .lede { margin-bottom: 0; }
.hero-grid:has(.about-shot) { grid-template-columns: minmax(0, 1fr) minmax(0, .55fr); }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
/* Portrait shot beside the stat stack. The photo is 4:5, so it is never
   force-cropped to a letterbox; height stays auto and the HTML width/height
   attributes keep the layout from shifting while it loads. */
.hero-proof {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 54px); align-items: center;
  margin-top: clamp(44px, 6vw, 76px);
}
.hero-shot { position: relative; margin: 0; }
.hero-shot img {
  width: 100%; height: auto; border-radius: 24px; box-shadow: var(--shadow-lg);
}
.hero-shot figcaption {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(255,255,255,.9); backdrop-filter: blur(10px);
  border: 1px solid var(--line-2); border-radius: 100px;
  padding: 8px 16px; font-size: 13px; font-weight: 600; color: var(--ink-2);
}
.hero-proof .stats { grid-template-columns: 1fr; margin-top: 0; }
@media (max-width: 820px) {
  .hero-proof { grid-template-columns: 1fr; }
  .hero-shot img { max-width: 460px; margin: 0 auto; }
}

/* animated blur blobs (ported to vanilla CSS, GPU friendly, no JS) */
/* The mask feathers the container's own edge, so a blob that runs past the
   boundary fades out instead of getting sliced into a hard-edged wedge. */
.blobs {
  position: absolute; inset: -16% -8%; z-index: 0; pointer-events: none; overflow: hidden;
  -webkit-mask-image: radial-gradient(118% 96% at 50% 45%, #000 46%, rgba(0,0,0,0) 100%);
          mask-image: radial-gradient(118% 96% at 50% 45%, #000 46%, rgba(0,0,0,0) 100%);
}
.blob {
  position: absolute; display: block; border-radius: 50%;
  filter: blur(var(--blur-amount, 90px));
  will-change: transform;
}
.blob.b1 {
  width: clamp(360px, 42vw, 620px); aspect-ratio: 1;
  background: radial-gradient(circle at 30% 30%, #b9d2ff, #6f9ff0 72%);
  top: 2%; left: -14%; opacity: .34; animation: drift1 26s ease-in-out infinite alternate;
}
.blob.b2 {
  width: clamp(300px, 36vw, 520px); aspect-ratio: 1;
  background: radial-gradient(circle at 60% 40%, #cbdcff, #7fa9f2 74%);
  top: 12%; right: -12%; opacity: .3; animation: drift2 32s ease-in-out infinite alternate;
}
.blob.b3 {
  width: clamp(220px, 26vw, 380px); aspect-ratio: 1;
  background: radial-gradient(circle at 50% 50%, #e2ecff, #a9c6f7 70%);
  bottom: -4%; left: 42%; opacity: .28; animation: drift3 21s ease-in-out infinite alternate;
}

@keyframes drift1 {
  0%   { transform: translate(0,0) rotate(0deg) scale(1); }
  50%  { transform: translate(9vw, 5vh) rotate(120deg) scale(1.12); }
  100% { transform: translate(-4vw, 9vh) rotate(220deg) scale(.95); }
}
@keyframes drift2 {
  0%   { transform: translate(0,0) rotate(0deg) scale(1); }
  50%  { transform: translate(-11vw, 7vh) rotate(-140deg) scale(1.15); }
  100% { transform: translate(3vw, -5vh) rotate(-240deg) scale(1); }
}
@keyframes drift3 {
  0%   { transform: translate(0,0) rotate(0deg) scale(1); }
  50%  { transform: translate(-8vw, -8vh) rotate(160deg) scale(1.2); }
  100% { transform: translate(7vw, -3vh) rotate(300deg) scale(.9); }
}
/* Keep the headline readable without flattening the colour: a soft disc sits
   behind the copy, the edges stay clear so the blobs actually show, and the
   bottom fades into the paper so the next section joins seamlessly. */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(52% 42% at 50% 42%, rgba(247,245,241,.9) 0%, rgba(247,245,241,.5) 60%, rgba(247,245,241,0) 84%),
    linear-gradient(to bottom, rgba(247,245,241,0) 55%, rgba(247,245,241,.9) 86%, var(--paper) 100%);
}

.trust { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 30px; justify-content: center; }
.trust li { list-style: none; display: flex; align-items: center; gap: 8px; font-size: 14.5px; color: var(--ink-2); font-weight: 500; }
.trust svg { width: 17px; height: 17px; color: var(--good); flex: none; }

/* headline followed straight by body copy needs breathing room */
h2 + p, h3 + p, h2 + .lede { margin-top: 16px; }

/* coach credibility card */
.coach-card {
  display: flex; align-items: center; gap: 16px; margin-bottom: 22px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: 18px 20px; box-shadow: var(--shadow);
}
.coach-card img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; flex: none; }
.coach-card strong { display: block; font-family: var(--display); font-size: 1.1rem; color: var(--ink); }
.coach-card span { display: block; font-size: 14.5px; color: var(--body); margin-top: 3px; }

/* stat row */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: clamp(38px, 5vw, 56px); position: relative; z-index: 2; }
@media (max-width: 640px) { .stats { grid-template-columns: 1fr; } }
.stat {
  position: relative; overflow: hidden;
  background: rgba(255,255,255,.8); backdrop-filter: blur(10px);
  border: 1px solid var(--line); border-radius: var(--r); padding: 22px 24px;
  box-shadow: 0 1px 2px rgba(13,27,42,.04);
}
/* accent rail, kept off the 3-across variant so it stays light */
.hero-proof .stat::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(to bottom, var(--blue), var(--blue-2));
}
.hero-proof .stat { padding-left: 28px; }
.stat b { display: block; font-family: var(--display); font-size: clamp(2rem, 3.4vw, 2.6rem); color: var(--blue); line-height: 1; margin-bottom: 6px; }
/* direct child only: the counter <span> lives inside <b> and must inherit its size */
.stat > span { display: block; font-size: 14.5px; color: var(--ink-2); }

/* marquee */
.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); padding: 16px 0; }
.marquee-track { display: flex; gap: 46px; width: max-content; animation: marq 26s linear infinite; }
.marquee span { font-family: var(--display); font-size: 15px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--dim); white-space: nowrap; display: flex; align-items: center; gap: 46px; }
.marquee span::after { content: "\2022"; color: var(--blue); }
@keyframes marq { to { transform: translateX(-50%); } }

/* ---------- cards / grids ---------- */
.grid { display: grid; gap: 22px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 940px) { .g3, .g4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .g2, .g3, .g4 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: 26px; box-shadow: var(--shadow); transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card h3 { margin-bottom: 8px; }
.card p:last-child { margin-bottom: 0; }
.card .num { font-family: var(--display); font-size: 13px; font-weight: 700; color: var(--blue); letter-spacing: .1em; display: block; margin-bottom: 10px; }
.icon-badge { width: 44px; height: 44px; border-radius: 12px; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; margin-bottom: 14px; }
.icon-badge svg { width: 22px; height: 22px; }

/* ---------- section heading ---------- */
.sec-head { max-width: 720px; margin-bottom: 46px; }
.sec-head.center { margin-left: auto; margin-right: auto; }
.sec-head h2 { margin-bottom: 14px; }
.sec-head p { color: var(--ink-2); font-size: 1.06rem; margin-bottom: 0; }

/* ---------- checklist ---------- */
.checks { list-style: none; display: grid; gap: 13px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; }
.checks svg { width: 21px; height: 21px; color: var(--blue); flex: none; margin-top: 2px; }
.crosses svg { color: #c0392b; }

/* ---------- quote ---------- */
.quote { background: var(--blue-soft); border-left: 4px solid var(--blue); border-radius: 0 var(--r) var(--r) 0; padding: 26px 28px; }
.quote p { font-size: 1.1rem; color: var(--ink); font-style: italic; }
.quote cite { display: block; font-style: normal; font-size: 14px; color: var(--dim); font-weight: 600; }

/* ---------- FAQ ---------- */
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; margin-bottom: 12px; overflow: hidden; }
.faq summary { padding: 20px 24px; cursor: pointer; font-weight: 700; color: var(--ink); font-family: var(--display); font-size: 1.06rem; list-style: none; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--blue); font-weight: 400; line-height: 1; flex: none; }
.faq details[open] summary::after { content: "\2013"; }
.faq .faq-body { padding: 0 24px 22px; }
.faq .faq-body p:last-child { margin-bottom: 0; }

/* ---------- form ---------- */
.form-grid { display: grid; gap: 14px; }
.form-2 { grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .form-2 { grid-template-columns: 1fr; } }
label { display: block; font-size: 13.5px; font-weight: 700; color: var(--ink-2); margin-bottom: 6px; }
input, select, textarea {
  width: 100%; font-family: var(--text); font-size: 16px; color: var(--ink);
  background: var(--surface); border: 1.5px solid var(--line); border-radius: 11px; padding: 13px 15px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(32,89,201,.12); }
.hp { position: absolute !important; left: -9999px !important; opacity: 0 !important; height: 0 !important; width: 0 !important; }
.form-msg { margin-top: 14px; font-size: 15px; color: var(--good); font-weight: 600; min-height: 1.4em; }
.form-msg.err { color: #c0392b; }
.form-legal { font-size: 12.5px; color: var(--dim); margin-top: 12px; }

/* ---------- areas ---------- */
.area-card { display: flex; flex-direction: column; }
.area-card .dist { font-size: 13.5px; color: var(--blue); font-weight: 700; margin-bottom: 8px; }
.area-card .go { margin-top: auto; padding-top: 16px; font-weight: 700; font-size: 15px; }

/* ---------- blog ---------- */
.post-card { display: flex; flex-direction: column; height: 100%; }
.post-card .meta { font-size: 13px; color: var(--dim); margin-bottom: 10px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.post-card h3 { margin-bottom: 10px; }
.post-card .go { margin-top: auto; padding-top: 14px; font-weight: 700; color: var(--blue); font-size: 15px; }
.prose { max-width: 720px; }
.prose h2 { margin: 44px 0 16px; font-size: clamp(1.55rem, 3vw, 2.05rem); }
.prose h3 { margin: 32px 0 12px; }
.prose ul, .prose ol { margin: 0 0 1.2em 1.15em; display: grid; gap: 9px; }
.prose li { padding-left: 4px; }
.prose .quote { margin: 30px 0; }
.byline { display: flex; align-items: center; gap: 13px; font-size: 14.5px; color: var(--dim); margin-bottom: 34px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.byline img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.crumbs { font-size: 13.5px; color: var(--dim); margin-bottom: 18px; }
.crumbs a { color: var(--dim); }
.crumbs a:hover { color: var(--blue); }

/* ---------- proof: credentials + availability ----------
   Both render only when their build.py constants are filled in. */
.creds {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 14px;
  list-style: none; margin-top: 22px;
}
.creds li {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 600; color: var(--ink-2);
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 100px; padding: 8px 15px;
}
.creds svg { width: 15px; height: 15px; color: var(--good); flex: none; }
.availability {
  margin: 18px 0 0; font-size: 14.5px; color: #b3c1cf;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
}
.availability strong { color: #fff; font-weight: 700; }
.hero .availability { color: var(--ink-2); }
.hero .availability strong { color: var(--ink); }

/* ---------- blog index: category jump chips + blocks ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--ink-2);
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 100px; padding: 9px 16px;
  transition: border-color .18s ease, color .18s ease, transform .18s ease;
}
.chip b { font-size: 12px; font-weight: 700; color: var(--blue); background: var(--blue-soft); border-radius: 100px; padding: 2px 8px; }
.chip:hover { color: var(--blue); border-color: rgba(32,89,201,.35); transform: translateY(-2px); text-decoration: none; }
.cat-block + .cat-block { margin-top: clamp(46px, 6vw, 72px); }
.cat-head {
  font-size: clamp(1.35rem, 2.2vw, 1.7rem); margin-bottom: 22px;
  padding-bottom: 12px; border-bottom: 1px solid var(--line);
  scroll-margin-top: 96px;
}

/* ---------- cta band ---------- */
.cta-band { background: var(--ink); border-radius: 26px; padding: clamp(40px, 6vw, 68px); text-align: center; color: #cfd9e3; }
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: #b3c1cf; max-width: 56ch; margin-left: auto; margin-right: auto; font-size: 1.07rem; }
.cta-band .btn { background: var(--blue-2); border-color: var(--blue-2); }
.cta-band .btn:hover { background: #fff; border-color: #fff; color: var(--ink); }

/* ---------- scroll-lit statement band ----------
   A dark accent against the off-white page. Words light up in sequence as the
   block travels through the viewport: JS writes only --p (0 to 1) on the
   container and the per-word maths happens here, so a scroll frame costs one
   custom property write rather than one per word.                            */
.statement {
  background: var(--ink); color: #fff;
  padding: clamp(90px, 13vw, 170px) 0;
}
.statement .kicker { background: rgba(255,255,255,.1); color: #9fc0ff; margin-bottom: 28px; }
.sr {
  font-family: var(--display); font-weight: 700; letter-spacing: -0.02em;
  font-size: clamp(1.55rem, 3.3vw, 2.6rem); line-height: 1.28; margin: 0;
}
.sr .w {
  /* leading edge sweeps a few words ahead of the scroll position, so the
     highlight arrives as a soft gradient rather than a hard on/off line */
  opacity: clamp(0.16, calc((var(--p, 0) * (var(--n) + 7) - var(--i)) / 4.5), 1);
  transition: opacity .28s linear;
  display: inline-block;
}
.statement .sr .w { color: #fff; }
@supports not (opacity: clamp(0.16, 1, 1)) { .sr .w { opacity: 1; } }

/* ---------- footer ---------- */
footer { background: var(--ink); color: #91a2b3; padding: 66px 0 34px; }
footer h4 { color: #fff; font-size: 15px; margin-bottom: 15px; font-family: var(--text); letter-spacing: .04em; text-transform: uppercase; }
footer a { color: #b3c1cf; font-size: 15px; }
footer a:hover { color: #fff; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 34px; margin-bottom: 44px; }
@media (max-width: 820px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-grid ul { list-style: none; display: grid; gap: 10px; }
/* logo-light.png is a knockout version, so no white plate is needed here */
.foot-brand img { height: 54px; margin-bottom: 16px; }
.foot-bot { border-top: 1px solid rgba(255,255,255,.12); padding-top: 24px; font-size: 13.5px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* ---------- interaction polish ---------- */
/* header condenses once you leave the hero */
.site-head { transition: height .25s ease, box-shadow .25s ease, background .25s ease; }
.site-head.stuck { background: rgba(247,245,241,.94); box-shadow: 0 6px 24px rgba(13,27,42,.07); }
.site-head.stuck .head-in { height: 62px; }
.head-in { transition: height .25s ease; }

/* nav underline grows from the left */
.nav a:not(.btn) { position: relative; }
.nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -5px; height: 2px;
  background: var(--blue); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .24s cubic-bezier(.2,.7,.2,1);
}
.nav a:not(.btn):hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
@media (max-width: 900px) { .nav a:not(.btn)::after { display: none; } }

/* light sweep across the primary button */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,.28) 50%, transparent 65%);
  transform: translateX(-120%); transition: transform .6s ease;
}
.btn:hover::after { transform: translateX(120%); }
.btn-ghost::after { display: none; }

/* cards pick up the brand colour as you hover */
.card { transition: transform .22s cubic-bezier(.2,.7,.2,1), box-shadow .22s ease, border-color .22s ease; }
.card:hover { border-color: rgba(32,89,201,.3); }
.area-card .go, .post-card .go { transition: gap .2s ease; display: inline-flex; gap: 6px; }
.area-card:hover .go, .post-card:hover .go { gap: 12px; }

.hero-shot img { transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.hero-shot:hover img { transform: scale(1.02); }

/* FAQ answer slides open instead of snapping */
.faq summary::after { transition: transform .22s ease; }
.faq details[open] summary::after { content: "+"; transform: rotate(45deg); }
.faq details[open] .faq-body { animation: faqOpen .28s cubic-bezier(.2,.7,.2,1); }
@keyframes faqOpen { from { opacity: 0; transform: translateY(-6px); } }
.faq details { transition: border-color .2s ease, box-shadow .2s ease; }
.faq details[open] { border-color: rgba(32,89,201,.28); box-shadow: var(--shadow); }

/* ---------- reveal ---------- */
.rv { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); transition-delay: var(--d, 0ms); }
.rv.in { opacity: 1; transform: none; }
.rv-l { opacity: 0; transform: translateX(-28px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); transition-delay: var(--d, 0ms); }
.rv-l.in { opacity: 1; transform: none; }
.rv-scale { opacity: 0; transform: scale(.96); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); transition-delay: var(--d, 0ms); }
.rv-scale.in { opacity: 1; transform: none; }
/* hero entrance */
.hero-in > * { opacity: 0; transform: translateY(20px); animation: heroUp .8s cubic-bezier(.2,.7,.2,1) forwards; }
.hero-in > *:nth-child(1) { animation-delay: .05s; }
.hero-in > *:nth-child(2) { animation-delay: .16s; }
.hero-in > *:nth-child(3) { animation-delay: .27s; }
.hero-in > *:nth-child(4) { animation-delay: .38s; }
.hero-in > *:nth-child(5) { animation-delay: .49s; }
@keyframes heroUp { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .rv, .rv-l, .rv-scale, .hero-in > * { opacity: 1; transform: none; }
  .blob { display: none; }
  html { scroll-behavior: auto; }
}

/* ---------- sticky mobile CTA ---------- */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; background: var(--surface); border-top: 1px solid var(--line); padding: 11px 16px; display: none; box-shadow: 0 -6px 24px rgba(13,27,42,.1); }
.sticky-cta .btn { width: 100%; }
@media (max-width: 760px) { .sticky-cta { display: block; } body { padding-bottom: 76px; } }

/* ==========================================================================
   VISUAL SYSTEM
   The site was previously one repeated white rectangle. These give sections
   distinct shapes, depth and their own rhythm.
   ========================================================================== */

/* ---------- icons ---------- */
.ic { width: 22px; height: 22px; flex: none; }
.ic-sm { width: 15px; height: 15px; flex: none; }
.icon-tile {
  width: 46px; height: 46px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, var(--blue-soft), #dbe8ff);
  color: var(--blue); margin-bottom: 16px;
  box-shadow: inset 0 0 0 1px rgba(32,89,201,.1);
  transition: transform .28s cubic-bezier(.2,.7,.2,1), box-shadow .28s ease;
}
.card:hover .icon-tile, .bento-tile:hover .icon-tile {
  transform: translateY(-3px) rotate(-4deg);
  box-shadow: inset 0 0 0 1px rgba(32,89,201,.22), 0 8px 20px rgba(32,89,201,.18);
}
.icon-tile.dark { background: rgba(255,255,255,.1); color: #9fc0ff; box-shadow: inset 0 0 0 1px rgba(255,255,255,.14); }

/* ---------- decorative glow + texture ---------- */
.glow { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; z-index: 0; }
.glow.g-blue { background: radial-gradient(circle, rgba(59,130,246,.42), transparent 68%); }
.dotgrid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(13,27,42,.09) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(70% 60% at 50% 40%, #000, transparent 100%);
          mask-image: radial-gradient(70% 60% at 50% 40%, #000, transparent 100%);
}
/* Glows are large, absolutely positioned and deliberately hang past the edge,
   so their section has to clip them. Without this they extend the document
   width and mobile gets a horizontal scrollbar. */
section { position: relative; overflow: hidden; }
section > .wrap { position: relative; z-index: 1; }

/* ---------- bento: varied tile sizes instead of a uniform 3 across ---------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.bento-tile {
  position: relative; overflow: hidden;
  grid-column: span 2;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 20px; padding: 28px 26px;
  transition: transform .24s cubic-bezier(.2,.7,.2,1), box-shadow .24s ease, border-color .24s ease;
}
.bento-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(32,89,201,.28); }
.bento-tile h3 { margin-bottom: 8px; }
.bento-tile p { color: var(--body); margin-bottom: 0; font-size: 15.5px; }
/* explicit spans so every row totals 6 and no holes are left */
.bento-tile.w2 { grid-column: span 2; }
.bento-tile.w3 { grid-column: span 3; }
.bento-tile.w4 { grid-column: span 4; }
.bento-tile.w6 { grid-column: span 6; }
.bento-tile.feature { background: linear-gradient(160deg, #fff, #f2f6ff); }
.bento-tile.dark { background: var(--ink); border-color: transparent; color: #b3c1cf; }
.bento-tile.dark h3 { color: #fff; }
.bento-tile.dark p { color: #b3c1cf; }
@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-tile, .bento-tile.w2, .bento-tile.w3, .bento-tile.w4, .bento-tile.w6 { grid-column: span 2; }
}

/* ---------- timeline: a connected process, not four loose boxes ---------- */
.tl { position: relative; display: grid; gap: 0; }
.tl-step { position: relative; display: grid; grid-template-columns: 62px 1fr; gap: 22px; padding-bottom: 34px; }
.tl-step:last-child { padding-bottom: 0; }
.tl-rail { position: relative; display: flex; justify-content: center; }
.tl-num {
  position: relative; z-index: 2;
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 700; font-size: 15px;
  color: #fff; background: linear-gradient(160deg, var(--blue-2), var(--blue));
  box-shadow: 0 6px 18px rgba(32,89,201,.32);
}
/* the connecting line, drawn behind the numbers */
.tl-step:not(:last-child) .tl-rail::after {
  content: ""; position: absolute; top: 46px; bottom: -34px; width: 2px;
  background: linear-gradient(to bottom, rgba(32,89,201,.42), rgba(32,89,201,.12));
}
.tl-body { padding-top: 8px; }
.tl-body h3 { margin-bottom: 8px; }
.tl-body p { margin-bottom: 0; }
@media (max-width: 620px) { .tl-step { grid-template-columns: 46px 1fr; gap: 16px; } }

/* ---------- alternating feature rows ---------- */
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.frow + .frow { margin-top: clamp(56px, 8vw, 104px); }
.frow.flip .frow-media { order: -1; }
.frow-media { position: relative; }
@media (max-width: 860px) {
  .frow { grid-template-columns: 1fr; }
  .frow.flip .frow-media { order: 0; }
}

/* ---------- week strip graphic ---------- */
.wk { background: var(--surface); border: 1px solid var(--line); border-radius: 22px; padding: 26px 24px; box-shadow: var(--shadow); }
.wk-row { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; }
.wk-day {
  border-radius: 13px; padding: 14px 0 12px; text-align: center;
  background: var(--paper-2); border: 1px solid transparent;
  display: grid; gap: 9px; justify-items: center;
  animation: wkIn .5s cubic-bezier(.2,.7,.2,1) backwards; animation-delay: var(--d);
}
.wk-day.on { background: linear-gradient(160deg, var(--blue), var(--blue-2)); border-color: transparent; box-shadow: 0 6px 16px rgba(32,89,201,.28); }
.wk-let { font-family: var(--display); font-weight: 700; font-size: 13px; color: var(--dim); }
.wk-day.on .wk-let { color: #fff; }
.wk-dot { width: 22px; height: 22px; display: grid; place-items: center; color: #fff; }
.wk-cap { margin: 18px 0 0; font-size: 14px; color: var(--dim); text-align: center; }
@keyframes wkIn { from { opacity: 0; transform: translateY(10px); } }

/* ---------- progress shape graphic ---------- */
.pg { background: var(--surface); border: 1px solid var(--line); border-radius: 22px; padding: 24px; box-shadow: var(--shadow); }
.pg svg { width: 100%; height: auto; display: block; }
.pg-grid { stroke: rgba(13,27,42,.08); stroke-width: 1; }
.pg-ideal { stroke: rgba(13,27,42,.22); stroke-width: 2; stroke-dasharray: 6 7; fill: none; }
.pg-real { fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 620; stroke-dashoffset: 620; }
.in .pg-real, .pg.in .pg-real { animation: draw 1.7s cubic-bezier(.3,.7,.3,1) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.pg-key { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 16px; font-size: 13.5px; color: var(--dim); }
.pg-key span { display: inline-flex; align-items: center; gap: 8px; }
.k-dash { width: 20px; height: 0; border-top: 2px dashed rgba(13,27,42,.3); }
.k-line { width: 20px; height: 3px; border-radius: 3px; background: linear-gradient(90deg, #7aa9f7, #2059c9); }

/* ---------- pill list, replaces yet another card grid ---------- */
.pills { display: flex; flex-wrap: wrap; gap: 12px; }
.pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 100px;
  padding: 11px 20px; font-size: 15px; font-weight: 600; color: var(--ink-2);
}
.pill svg { color: var(--blue); }

@media (prefers-reduced-motion: reduce) {
  .wk-day { animation: none; }
  .pg-real { stroke-dashoffset: 0; animation: none; }
}

.step-tag { display: block; font-family: var(--text); font-size: 12px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--blue); margin-bottom: 6px; }

/* ---------- final motion polish ---------- */
/* animated gradient edge on the feature tile, so one element in the bento
   reads as the hero of that grid rather than everything being equal weight */
.bento-tile.feature::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(120deg, rgba(32,89,201,.45), rgba(59,130,246,.1) 40%, rgba(32,89,201,.4));
  background-size: 220% 220%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: edge 9s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes edge { to { background-position: 100% 100%; } }

/* icon tiles breathe gently so the grids are not completely static */
.bento-tile .icon-tile, .card .icon-tile { animation: floaty 6s ease-in-out infinite; }
.bento-tile:nth-child(2n) .icon-tile { animation-delay: -2s; }
.bento-tile:nth-child(3n) .icon-tile { animation-delay: -4s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }

/* timeline nodes pop as their row reveals */
.tl-step.rv.in .tl-num { animation: pop .45s cubic-bezier(.2,1.4,.4,1) backwards; animation-delay: var(--d, 0ms); }
@keyframes pop { from { transform: scale(.4); opacity: 0; } }

/* week strip cells lift on hover of the whole card */
.wk:hover .wk-day.on { transform: translateY(-3px); }
.wk-day.on { transition: transform .26s cubic-bezier(.2,.7,.2,1); }
.wk:hover .wk-day.on:nth-child(3) { transition-delay: .05s; }
.wk:hover .wk-day.on:nth-child(5) { transition-delay: .1s; }

@media (prefers-reduced-motion: reduce) {
  .bento-tile.feature::before, .bento-tile .icon-tile, .card .icon-tile,
  .tl-step.rv.in .tl-num { animation: none; }
}

/* progress graphic: axis label + the illustrative disclaimer */
.pg-axis { font-family: var(--text); font-size: 9px; font-weight: 600; fill: var(--dim); letter-spacing: .08em; text-transform: uppercase; }
.pg-note { margin: 10px 0 0; font-size: 12px; color: var(--dim); }
.pg-ideal { stroke: rgba(13,27,42,.28); stroke-width: 2; stroke-dasharray: 6 6; fill: none; stroke-linecap: round; }

/* about hero portrait: was rendering ~480px wide and dominating the page */
.about-shot img {
  width: 100%; max-width: 300px; height: auto; margin-left: auto;
  border-radius: 20px; box-shadow: var(--shadow-lg);
}
@media (max-width: 900px) { .about-shot img { max-width: 240px; margin: 0 auto; } }

/* ==========================================================================
   ARTICLE READING EXPERIENCE
   1500 word posts were a single column of unbroken prose with one call to
   action right at the bottom. This adds wayfinding and earlier off-ramps.
   ========================================================================== */

/* two column article: prose plus a sticky booking card in the dead space */
.post-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: clamp(28px, 4vw, 56px); align-items: start; }
.post-layout > .prose { max-width: 720px; }
@media (max-width: 1020px) { .post-layout { grid-template-columns: 1fr; } .post-aside { display: none; } }

.post-aside { position: sticky; top: 100px; }
.aside-card { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 24px; box-shadow: var(--shadow); }
.aside-card h3 { margin-bottom: 8px; }
.aside-card p { font-size: 14.5px; color: var(--body); margin-bottom: 16px; }
.aside-card .btn { width: 100%; }
.aside-note { font-size: 12.5px; color: var(--dim); margin: 14px 0 0 !important; }

/* contents list */
.toc {
  background: var(--paper-2); border: 1px solid var(--line-2);
  border-radius: 16px; padding: 20px 24px; margin: 0 0 36px;
}
.toc-h { font-family: var(--display); font-weight: 700; font-size: 14px; letter-spacing: .04em;
  text-transform: uppercase; color: var(--ink); margin: 0 0 12px; }
.toc ol { margin: 0; padding-left: 20px; display: grid; gap: 7px; }
.toc li { color: var(--dim); font-size: 15px; }
.toc a { color: var(--ink-2); font-weight: 500; }
.toc a:hover { color: var(--blue); }
.prose h2 { scroll-margin-top: 96px; }

/* inline call to action, dropped a third of the way down the article */
.inline-cta {
  display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center;
  background: linear-gradient(150deg, #fff, #f1f6ff);
  border: 1px solid rgba(32,89,201,.22); border-radius: 20px;
  padding: 22px 24px; margin: 40px 0;
}
.inline-cta .icon-tile { margin-bottom: 0; }
.inline-cta strong { display: block; font-family: var(--display); font-size: 1.08rem; color: var(--ink); }
.inline-cta p { margin: 4px 0 0; font-size: 14.5px; color: var(--body); }
.inline-cta .btn { white-space: nowrap; }
@media (max-width: 720px) {
  .inline-cta { grid-template-columns: 1fr; text-align: left; }
  .inline-cta .btn { width: 100%; }
}

/* reading progress */
.readbar { position: fixed; top: 0; left: 0; height: 3px; z-index: 80;
  background: linear-gradient(90deg, var(--blue-2), var(--blue)); width: 0; transition: width .1s linear; }
@media (prefers-reduced-motion: reduce) { .readbar { display: none; } }

/* ---------- testimonials (renders only when TESTIMONIALS is populated) ---------- */
.quote-card {
  position: relative; margin: 0;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 20px; padding: 28px 26px; box-shadow: var(--shadow);
}
.quote-card .qmark { color: var(--blue); opacity: .5; margin-bottom: 14px; }
.quote-card blockquote { margin: 0 0 18px; font-size: 1.02rem; color: var(--ink-2); line-height: 1.6; }
.quote-card figcaption { display: grid; gap: 2px; }
.quote-card figcaption strong { font-family: var(--display); color: var(--ink); }
.quote-card figcaption span { font-size: 13.5px; color: var(--dim); }
.quote-card .q-result { color: var(--good); font-weight: 600; }

/* ==========================================================================
   DIRECT RESPONSE LANDING PAGES  (/online/<niche>/)
   Everything is scoped under .lp so this dark theme can never leak into the
   main off-white site. These pages carry no site navigation on purpose: the
   only actions are the opt in and the anchors that return to it.
   ========================================================================== */
.lp {
  --lp-bg: #070c14;
  --lp-bg-2: #0c1420;
  --lp-line: rgba(255,255,255,.1);
  --lp-text: #aebbc9;
  --lp-head: #ffffff;
  background: var(--lp-bg); color: var(--lp-text);
}
.lp h1, .lp h2, .lp h3 { color: var(--lp-head); }
.lp section { position: relative; overflow: hidden; padding: clamp(64px, 8vw, 110px) 0; }
.lp .wrap { position: relative; z-index: 1; }
.lp-lead { font-size: clamp(1.02rem, 1.6vw, 1.16rem); color: var(--lp-text); max-width: 62ch; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* header + sticky mobile bar */
.lp-head { border-bottom: 1px solid var(--lp-line); background: rgba(7,12,20,.9); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 60; }
.lp-head-in { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.lp-head img { height: 40px; width: auto; }
.lp-navcta { padding: 11px 22px; font-size: 14.5px; }
@media (max-width: 620px) { .lp-navcta { display: none; } }
.lp-sticky {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 70; display: none;
  text-align: center; padding: 16px; border-radius: 100px; font-weight: 700; color: #fff;
  background: linear-gradient(120deg, var(--blue-2), var(--blue));
  box-shadow: 0 10px 30px rgba(32,89,201,.45);
}
.lp-sticky:hover { text-decoration: none; color: #fff; }
@media (max-width: 720px) { .lp-sticky { display: block; } .lp { padding-bottom: 84px; } }

/* hero */
.lp-hero { padding-top: clamp(48px, 6vw, 80px); text-align: center; }
.lp-hero-in { max-width: 860px; margin: 0 auto; }
.lp-eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: #9fc0ff;
  background: rgba(59,130,246,.14); border: 1px solid rgba(59,130,246,.3);
  border-radius: 100px; padding: 8px 18px; margin-bottom: 24px;
}
.lp-hero h1 { font-size: clamp(2.3rem, 5.6vw, 4rem); line-height: 1.05; letter-spacing: -0.03em; }
.lp-sub { font-size: clamp(1.06rem, 2vw, 1.3rem); color: #c3cedb; margin: 20px auto 0; max-width: 60ch; }
.lp-hbul { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px; list-style: none; margin: 26px 0 0; }
.lp-hbul li { display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; color: #c3cedb; }
.lp-hbul svg { width: 16px; height: 16px; color: #4ade80; flex: none; }

/* opt in card */
.lp-card {
  max-width: 520px; margin: 34px auto 0; text-align: left;
  background: linear-gradient(160deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid var(--lp-line); border-radius: 22px; padding: 26px;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.lp-card-h { font-family: var(--display); font-weight: 700; color: #fff; font-size: 1.06rem; margin: 0 0 16px; }
.lp-fields { display: grid; gap: 10px; }
.lp-form input[type=text], .lp-form input[type=email], .lp-form input[type=tel] {
  width: 100%; font-family: var(--text); font-size: 16px; color: #fff;
  background: rgba(255,255,255,.06); border: 1px solid var(--lp-line);
  border-radius: 12px; padding: 15px 16px; transition: border-color .18s ease, background .18s ease;
}
.lp-form input::placeholder { color: #7d8b9b; }
.lp-form input:focus { outline: none; border-color: var(--blue-2); background: rgba(255,255,255,.1); }
.lp-submit { width: 100%; margin-top: 14px; background: linear-gradient(120deg, var(--blue-2), var(--blue)); border-color: transparent; }
.lp-submit:hover { background: #fff; color: var(--lp-bg); border-color: #fff; }
.lp-formnote { font-size: 12.5px; color: #7d8b9b; margin: 12px 0 0; }
.lp .form-msg { font-size: 14px; color: #4ade80; margin: 10px 0 0; }
.lp .form-msg.err { color: #f87171; }

/* the fork */
.lp-fork { background: var(--lp-bg-2); }
.fork-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 34px; }
@media (max-width: 760px) { .fork-grid { grid-template-columns: 1fr; } }
.fork-col { border-radius: 20px; padding: 26px; border: 1px solid var(--lp-line); }
.fork-col h3 { font-size: 1.15rem; margin-bottom: 16px; }
.fork-col ul { list-style: none; display: grid; gap: 12px; }
.fork-col.bad { background: rgba(248,113,113,.05); border-color: rgba(248,113,113,.22); }
/* the pseudo bullet is only for plain lists: .checks lists already carry an
   inline SVG tick or cross, and applying both gave a double marker */
.fork-col.bad > ul:not(.checks) > li { padding-left: 26px; position: relative; }
.fork-col.bad > ul:not(.checks) > li::before { content: "\2715"; position: absolute; left: 0; color: #f87171; font-size: 13px; top: 3px; }
.fork-col.good { background: rgba(74,222,128,.05); border-color: rgba(74,222,128,.24); }
.fork-col.good > ul:not(.checks) > li { padding-left: 26px; position: relative; }
.fork-col.good > ul:not(.checks) > li::before { content: "\2713"; position: absolute; left: 0; color: #4ade80; font-size: 13px; top: 3px; }
.lp-checks { list-style: none; display: grid; gap: 12px; }
.lp-checks li { display: grid; grid-template-columns: 20px 1fr; gap: 12px; align-items: start; }
.lp-checks svg { width: 18px; height: 18px; color: #4ade80; margin-top: 3px; }
.lp-checks.crosses svg { color: #f87171; }

/* problem */
.lp-problem .lp-prose p { margin-bottom: 1.05em; }
.lp-problem .lp-checks { margin-top: 26px; }

/* the LR12 phase ladder, the centrepiece */
.lp-method { background: var(--lp-bg-2); }
.lp-sec-head { max-width: 720px; margin: 0 auto clamp(34px, 5vw, 52px); text-align: center; }
.lp-sec-head .lp-lead { margin-left: auto; margin-right: auto; }
/* the old flat .ph ladder was replaced by the scroll roadmap further down */
.lp-mid { text-align: center; margin-top: 40px; }

/* what you get */
.lp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .lp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .lp-grid { grid-template-columns: 1fr; } }
.lp-tile {
  background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid var(--lp-line); border-radius: 20px; padding: 26px;
  transition: transform .24s cubic-bezier(.2,.7,.2,1), border-color .24s ease;
}
.lp-tile:hover { transform: translateY(-4px); border-color: rgba(59,130,246,.4); }
.lp-tile h3 { font-size: 1.1rem; margin-bottom: 8px; }
.lp-tile p { margin: 0; font-size: 15px; }

/* for who + price */
.lp-forwho { background: var(--lp-bg-2); }
.lp-price {
  margin: 34px 0 0; padding: 22px 26px; border-radius: 18px;
  background: rgba(59,130,246,.08); border: 1px solid rgba(59,130,246,.26);
  color: #c3cedb; font-size: 15.5px;
}

/* faqs */
.lp-faq { border: 1px solid var(--lp-line); border-radius: 14px; margin-bottom: 12px; overflow: hidden; background: rgba(255,255,255,.03); }
.lp-faq summary {
  padding: 20px 24px; cursor: pointer; font-weight: 700; color: #fff;
  font-family: var(--display); font-size: 1.04rem; list-style: none;
  display: flex; justify-content: space-between; gap: 16px; align-items: center;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after { content: "+"; font-size: 1.5rem; color: #9fc0ff; font-weight: 400; line-height: 1; flex: none; transition: transform .22s ease; }
.lp-faq[open] summary::after { transform: rotate(45deg); }
.lp-faq[open] { border-color: rgba(59,130,246,.35); }
.lp-faq-b { padding: 0 24px 22px; }
.lp-faq-b p { margin: 0; }

/* final + footer */
.lp-final { text-align: center; }
.lp-final h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
.lp-foot { border-top: 1px solid var(--lp-line); padding: 34px 0; font-size: 13.5px; color: #6f7d8d; }
.lp-foot .wrap { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.lp-foot a { color: #9fc0ff; }
.lp-foot p { margin: 0; }

/* thank you */
.lp-thanks .lp-card { max-width: 560px; }
.lp-thanks .btn { width: 100%; }
.lp-next { max-width: 620px; margin: clamp(44px, 6vw, 70px) auto 0; text-align: left; }
.lp-next h2 { font-size: 1.5rem; margin-bottom: 24px; text-align: center; }
.lp .tl-body h3 { color: #fff; }
.lp .tl-body p { color: var(--lp-text); }
.lp .tl-step:not(:last-child) .tl-rail::after { background: linear-gradient(to bottom, rgba(59,130,246,.5), rgba(59,130,246,.12)); }

/* ---------- LP: guarantee, why me, comparison, quotes ---------- */
.lp-gtee-flash {
  display: inline-flex; align-items: center; gap: 10px; margin: 22px auto 0;
  background: rgba(74,222,128,.09); border: 1px solid rgba(74,222,128,.3);
  border-radius: 100px; padding: 10px 20px; font-size: 14px; color: #b7f0c9;
  max-width: 100%; text-align: left;
}
.lp-gtee-flash svg { color: #4ade80; flex: none; }

.lp-guarantee { background: var(--lp-bg-2); }
.gtee {
  display: grid; grid-template-columns: auto 1fr; gap: 26px; align-items: start;
  background: linear-gradient(150deg, rgba(74,222,128,.09), rgba(74,222,128,.02));
  border: 1px solid rgba(74,222,128,.28); border-radius: 24px; padding: clamp(26px, 4vw, 40px);
}
.gtee-badge {
  width: 62px; height: 62px; border-radius: 18px; display: grid; place-items: center;
  background: rgba(74,222,128,.14); color: #4ade80; border: 1px solid rgba(74,222,128,.3);
}
.gtee-badge svg { width: 30px; height: 30px; }
.gtee h2 { font-size: clamp(1.4rem, 2.6vw, 1.95rem); line-height: 1.25; margin-bottom: 14px; }
.gtee p { margin: 0; font-size: 15.5px; }
@media (max-width: 620px) { .gtee { grid-template-columns: 1fr; gap: 18px; } }

.whyme { display: grid; grid-template-columns: 132px 1fr; gap: clamp(22px, 3vw, 38px); align-items: start; }
.whyme img { width: 132px; height: 132px; border-radius: 20px; object-fit: cover; border: 1px solid var(--lp-line); }
.whyme h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 16px; }
.whyme p { margin-bottom: 1em; }
.whyme p:last-child { margin-bottom: 0; }
@media (max-width: 620px) { .whyme { grid-template-columns: 1fr; } .whyme img { width: 96px; height: 96px; } }

.lp-compare { background: var(--lp-bg-2); }
.cmp-wrap { overflow-x: auto; border: 1px solid var(--lp-line); border-radius: 18px; }
.cmp { width: 100%; border-collapse: collapse; min-width: 620px; font-size: 14.5px; }
.cmp th, .cmp td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--lp-line); }
.cmp thead th { color: #fff; font-family: var(--display); font-size: 14px; background: rgba(255,255,255,.04); white-space: nowrap; }
.cmp thead th:last-child { color: #9fc0ff; }
.cmp tbody th { color: #c3cedb; font-weight: 600; }
.cmp td { color: #8b98a7; }
.cmp td.win { color: #fff; background: rgba(59,130,246,.09); font-weight: 600; }
.cmp tr:last-child th, .cmp tr:last-child td { border-bottom: 0; }

.lp-quote { margin: 0; background: rgba(255,255,255,.04); border: 1px solid var(--lp-line); border-radius: 20px; padding: 26px; }
.lp-quote blockquote { margin: 0 0 16px; color: #dbe4ee; font-size: 1rem; line-height: 1.6; }
.lp-quote figcaption strong { color: #fff; font-family: var(--display); display: block; }
.lp-quote figcaption span { color: #7d8b9b; font-size: 13.5px; }

/* ---------- LP: hero split + headline treatment ---------- */
.lp-hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px, 4vw, 60px); align-items: center; text-align: left; }
.lp-hero-copy .lp-eyebrow { margin-bottom: 20px; }
.lp-h1 { font-size: clamp(2.4rem, 5.2vw, 3.9rem); line-height: 1.03; letter-spacing: -0.035em; }
.lp-h1 .hl { background: linear-gradient(100deg, #7fb0ff, #2f6ef0); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lp-hero .lp-sub { margin-left: 0; margin-right: 0; }
.lp-hero .lp-hbul { justify-content: flex-start; }
.lp-hero .lp-gtee-flash { margin-left: 0; }
.lp-hero-art { position: relative; }
.art { width: 100%; height: auto; display: block; }
@media (max-width: 900px) {
  .lp-hero-grid { grid-template-columns: 1fr; text-align: center; }
  .lp-hero .lp-hbul { justify-content: center; }
  .lp-hero .lp-gtee-flash { margin-left: auto; margin-right: auto; }
  .lp-hero-art { max-width: 380px; margin: 0 auto; order: -1; }
}
.lp-card-sub { font-size: 14px; color: #93a1b2; margin: -8px 0 16px; }

/* niche artwork motion */
.a-orb { animation: aOrb 9s ease-in-out infinite alternate; transform-origin: center; }
@keyframes aOrb { to { transform: translate(-10px, 12px) scale(1.09); } }
.a-float { animation: aFloat 6s ease-in-out infinite alternate; }
@keyframes aFloat { to { transform: translateY(-10px); } }
.a-hand { transform-origin: 112px 108px; animation: aSpin 8s linear infinite; }
.a-hand2 { transform-origin: 112px 108px; animation: aSpin 26s linear infinite; }
@keyframes aSpin { to { transform: rotate(360deg); } }
.a-ring { stroke-dasharray: 327; stroke-dashoffset: 327; animation: aDraw 1.6s ease-out .2s forwards; }
@keyframes aDraw { to { stroke-dashoffset: 0; } }
.a-link, .a-tick { stroke-dasharray: 60; stroke-dashoffset: 60; animation: aDraw 1s ease-out .8s forwards; }
.a-slot { transform-origin: center; animation: aPop .6s cubic-bezier(.2,1.5,.4,1) .6s backwards; }
@keyframes aPop { from { transform: scale(.2); opacity: 0; } }
.a-arc { animation: aDrawLong 2.2s ease-out .3s forwards; }
@keyframes aDrawLong { to { stroke-dashoffset: 0; } }
.a-ball { animation: aBall 3.4s cubic-bezier(.3,.1,.3,1) 1s infinite; }
@keyframes aBall { 0% { transform: translate(0,0); opacity: 1; } 70% { transform: translate(224px,-78px); opacity: 1; } 100% { transform: translate(224px,-78px); opacity: 0; } }
.a-flag { animation: aFloat 4s ease-in-out infinite alternate; }

/* ---------- LP: 12 week roadmap, fills as you scroll ---------- */
.roadmap { position: relative; max-width: 880px; margin: 0 auto; padding-left: 64px; }
.rm-rail { position: absolute; left: 26px; top: 12px; bottom: 12px; width: 3px; background: rgba(255,255,255,.09); border-radius: 3px; }
.rm-fill { position: absolute; left: 0; top: 0; width: 100%; height: 0; border-radius: 3px;
  background: linear-gradient(to bottom, #7fb0ff, #2059c9); box-shadow: 0 0 16px rgba(59,130,246,.55); }
.phases { display: grid; gap: 16px; }
.ph { position: relative; opacity: .34; transform: translateY(10px);
  transition: opacity .45s ease, transform .45s cubic-bezier(.2,.7,.2,1); }
.ph.lit { opacity: 1; transform: none; }
.ph-dot {
  position: absolute; left: -64px; top: 22px; width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; z-index: 2;
  background: var(--lp-bg-2); border: 3px solid rgba(255,255,255,.12);
  font-family: var(--display); font-weight: 700; color: #7d8b9b; font-size: 15px;
  transition: border-color .4s ease, color .4s ease, background .4s ease, box-shadow .4s ease, transform .4s cubic-bezier(.2,1.4,.4,1);
}
.ph.lit .ph-dot { border-color: #3b82f6; color: #fff; background: linear-gradient(150deg, #3b82f6, #2059c9);
  box-shadow: 0 0 0 6px rgba(59,130,246,.14), 0 8px 22px rgba(32,89,201,.4); transform: scale(1.06); }
.ph-card { background: linear-gradient(120deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
  border: 1px solid var(--lp-line); border-radius: 18px; padding: 22px 26px;
  transition: border-color .4s ease, transform .3s cubic-bezier(.2,.7,.2,1); }
.ph.lit .ph-card { border-color: rgba(59,130,246,.34); }
.ph-card:hover { transform: translateX(6px); }
.ph-w { font-family: var(--display); font-weight: 700; font-size: 12.5px; letter-spacing: .14em;
  text-transform: uppercase; color: #7fb0ff; margin-bottom: 8px; }
.ph-card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.ph-card p { margin: 0; font-size: 15px; }
@media (max-width: 640px) {
  .roadmap { padding-left: 46px; }
  .rm-rail { left: 17px; }
  .ph-dot { left: -46px; width: 38px; height: 38px; font-size: 13px; border-width: 2px; }
  .ph-card { padding: 18px 20px; }
}

/* ---------- LP: funnel step bar + VSL ---------- */
.lp-steps-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 30px; }
.lp-steps-bar span { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600;
  color: #6f7d8d; background: rgba(255,255,255,.04); border: 1px solid var(--lp-line);
  border-radius: 100px; padding: 8px 16px; }
.lp-steps-bar .done { color: #4ade80; border-color: rgba(74,222,128,.3); background: rgba(74,222,128,.07); }
.lp-steps-bar .now { color: #fff; border-color: rgba(59,130,246,.45); background: rgba(59,130,246,.14); }
.vsl-wrap { max-width: 860px; margin: 34px auto 0; }
.vsl { position: relative; aspect-ratio: 16/9; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--lp-line); background: #05090f; box-shadow: 0 30px 70px rgba(0,0,0,.55); }
.vsl iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vsl-empty { display: grid; place-items: center; text-align: center; padding: 30px; }
.vsl-empty .vsl-h { font-family: var(--display); font-weight: 700; color: #fff; font-size: 1.2rem; margin-bottom: 10px; }
.vsl-empty p { margin: 0 auto; max-width: 46ch; font-size: 15px; }
.lp-thanks .lp-card { max-width: 620px; margin-top: 30px; }

@media (prefers-reduced-motion: reduce) {
  .a-orb, .a-float, .a-hand, .a-hand2, .a-ring, .a-link, .a-tick, .a-slot, .a-arc, .a-ball, .a-flag { animation: none; }
  .a-ring, .a-arc, .a-link, .a-tick { stroke-dashoffset: 0; }
  .ph { opacity: 1; transform: none; }
}
