/* ===================================================================
   STILLWAVE STUDIO — landing page
   Palette : #fcfcfc canvas / #000205 ink / #8392ff periwinkle / #cecece rule
   Type    : Poppins (500/600) system + Instrument Serif italic editorial
   =================================================================== */

@font-face {
  font-family: "ZT Formom";
  src: url("assets/ZT-Formom-Italic.otf") format("opentype");
  font-style: italic;
  font-weight: 400;
  font-display: block;
}

/* Avoid visible reflow while the custom italic font loads:
   hide content until ZT Formom is ready, then fade in. */
html.fonts-loading body { opacity: 0; }
body { transition: opacity .28s ease; }

:root {
  --ink: #000205;
  --ink-2: #1a1c22;
  --ink-3: #4a4d56;
  --canvas: #f5f5f3;
  --canvas-2: #ececea;
  --rule: #cecece;
  --rule-soft: #e2e2df;
  --accent: #8392ff;
  --accent-deep: #6770e6;
  --accent-soft: #ecedff;
  --maxw: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --sans: "Poppins", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: "ZT Formom", "Instrument Serif", "Times New Roman", serif;
  --mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--canvas);
  background-image:
    radial-gradient(circle at 25% 0%, rgba(131,146,255,0.06), transparent 55%),
    radial-gradient(circle at 80% 90%, rgba(131,146,255,0.05), transparent 50%);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
em { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.num { font-feature-settings: "tnum" 1, "lnum" 1; }

/* -------- Reusable section atoms -------- */
.section-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.eyebrow-num { color: var(--accent-deep); font-weight: 500; }
.eyebrow-on-dark { color: rgba(255,255,255,0.55); }
.eyebrow-on-dark .eyebrow-num { color: var(--accent); }
.eyebrow-on-accent { color: rgba(0,2,5,0.55); }
.eyebrow-on-accent .eyebrow-num { color: var(--ink); }

.section-h2 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(36px, 5.6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 28px;
  max-width: 18ch;
  text-wrap: balance;
}
.h2-on-dark { color: #fcfcfc; max-width: 22ch; }

.section-lede {
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.45;
  color: var(--ink-2);
  max-width: 58ch;
  margin: 0 0 56px;
  text-wrap: pretty;
}

.arrow-mark {
  font-family: var(--mono);
  color: var(--accent-deep);
  margin-right: 4px;
}
.strike-mark { color: var(--accent-deep); font-weight: 500; margin: 0 4px 0 12px; }

/* ===================================================================
   LIQUID GLASS BUTTONS
   =================================================================== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  padding: 16px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .35s ease, background-color .25s ease, color .25s ease;
  white-space: nowrap;
  isolation: isolate;
}
.btn-sm { padding: 12px 20px; font-size: 13.5px; }
.btn-lg { padding: 20px 30px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }
.btn-arrow { display: inline-block; transition: transform .25s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* light liquid glass */
.btn-glass {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.65) 100%);
  border: 1px solid rgba(255,255,255,0.9);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,1),
    inset 0 -1px 1.5px rgba(0,2,5,0.08),
    inset 1px 0 1px rgba(255,255,255,0.6),
    inset -1px 0 1px rgba(0,2,5,0.04),
    0 1px 1px rgba(0,2,5,0.04),
    0 12px 24px -10px rgba(0,2,5,0.18),
    0 28px 40px -24px rgba(0,2,5,0.18);
}
.btn-glass::before {
  content: "";
  position: absolute;
  inset: 1px 1px auto 1px;
  height: 45%;
  border-radius: 999px 999px 60% 60% / 999px 999px 100% 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0));
  pointer-events: none;
  z-index: -1;
}
.btn-glass:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,1),
    inset 0 -1px 1.5px rgba(0,2,5,0.08),
    0 1px 1px rgba(0,2,5,0.04),
    0 16px 28px -10px rgba(0,2,5,0.22),
    0 36px 50px -22px rgba(0,2,5,0.22);
}
.btn-glass:active { transform: translateY(0); }

/* ghost glass — outline only, transparent body */
.btn-glass-ghost {
  color: var(--ink);
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(0,2,5,0.18);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  backdrop-filter: blur(10px) saturate(140%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.55),
    0 6px 18px -10px rgba(0,2,5,0.12);
}
.btn-glass-ghost:hover {
  background: rgba(255,255,255,0.55);
  border-color: rgba(0,2,5,0.28);
}

/* dark glass for inverted/colored backgrounds */
.btn-glass-dark {
  color: #fcfcfc;
  background:
    linear-gradient(180deg, rgba(28,30,38,0.92) 0%, rgba(0,2,5,0.85) 100%);
  border: 1px solid rgba(255,255,255,0.18);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.25),
    inset 0 -1px 1.5px rgba(0,0,0,0.4),
    0 12px 24px -10px rgba(0,2,5,0.4),
    0 28px 40px -24px rgba(0,2,5,0.4);
}
.btn-glass-dark::before {
  content: "";
  position: absolute;
  inset: 1px 1px auto 1px;
  height: 45%;
  border-radius: 999px 999px 60% 60% / 999px 999px 100% 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0));
  pointer-events: none;
  z-index: -1;
}

/* ===================================================================
   HEADER — glass nav
   =================================================================== */
.site-header {
  position: sticky;
  top: 16px;
  z-index: 50;
  padding: 0 var(--gutter);
}
.header-inner {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 24px 36px;
  margin: 0 auto;
  max-width: var(--maxw);
  padding: 10px 14px 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.55);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,1),
    inset 0 -1px 1px rgba(0,2,5,0.05),
    0 1px 1px rgba(0,2,5,0.04),
    0 14px 30px -14px rgba(0,2,5,0.18),
    0 30px 50px -28px rgba(0,2,5,0.16);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 17px;
}
.brand-mark { width: 32px; height: 32px; }
.brand-word { color: var(--ink); }
.brand-word-light { color: var(--ink-3); font-weight: 400; }

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  font-size: 14px;
  color: var(--ink-2);
}
.site-nav a {
  position: relative;
  padding: 6px 2px;
  transition: color .2s ease;
}
.site-nav a:hover { color: var(--accent-deep); }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.site-nav a:hover::after { transform: scaleX(1); }

.header-inner > .btn { justify-self: end; }

@media (max-width: 820px) {
  .site-nav { display: none; }
  .site-header { top: 12px; }
  .header-inner { padding: 8px 10px 8px 16px; }
}

/* ===================================================================
   01 — HERO (centered)
   =================================================================== */
.hero {
  padding-top: clamp(52px, 9vw, 104px);
  padding-bottom: clamp(48px, 7.5vw, 92px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -10% -5% auto -5%;
  height: 80%;
  background:
    radial-gradient(50% 50% at 50% 0%, rgba(131,146,255,0.18), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero .container { position: relative; z-index: 2; }

.hero--centered { text-align: center; }
.hero--centered .hero-meta { margin-left: auto; margin-right: auto; }
.hero--centered .hero-h1 { margin-left: auto; margin-right: auto; }
.hero--centered .hero-sub { margin-left: auto; margin-right: auto; }
.hero--centered .hero-ctas { justify-content: center; }
.hero--centered .hero-trust { justify-content: center; }

.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-3);
  padding: 8px 14px 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.85);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,1),
    inset 0 -1px 1px rgba(0,2,5,0.05),
    0 8px 22px -12px rgba(0,2,5,0.18);
  margin-bottom: 36px;
}
.hero-meta .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(131,146,255,0.18);
  display: inline-block;
}
.hero-meta-sep { color: var(--rule); }
.hero-meta-status { color: var(--ink); }

.hero-h1 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(40px, 5.6vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 32px;
  max-width: 20ch;
  text-wrap: balance;
}

.hero-sub {
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 58ch;
  margin: 0 0 36px;
  text-wrap: pretty;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-3);
  font-family: var(--mono);
  letter-spacing: 0.02em;
}
.hero-trust .tick { color: var(--accent-deep); font-size: 8px; margin-right: 8px; vertical-align: 2px; }

/* ===================================================================
   02 — PROBLEM
   =================================================================== */
.problem {
  padding-top: clamp(80px, 10vw, 140px);
  padding-bottom: clamp(64px, 8vw, 120px);
}
.problem-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  margin-bottom: 48px;
}
@media (max-width: 880px) { .problem-grid { grid-template-columns: 1fr; } }
.problem-col p { margin: 0 0 22px; font-size: clamp(17px, 1.25vw, 20px); line-height: 1.55; color: var(--ink-2); max-width: 46ch; }
.problem-col .lede { color: var(--ink); font-size: clamp(20px, 1.5vw, 24px); line-height: 1.45; }
.problem-aside {
  border-radius: 18px;
  padding: 24px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.8);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,1),
    0 10px 28px -16px rgba(0,2,5,0.16);
  align-self: start;
}
.problem-tag {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: 14px;
}
.problem-list { list-style: none; margin: 0; padding: 0; }
.problem-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: baseline;
  padding: 14px 0;
  border-top: 1px solid var(--rule-soft);
  font-size: 14px;
  color: var(--ink-2);
}
.problem-list li:first-child { border-top: 0; padding-top: 0; }
.problem-list li:last-child { padding-bottom: 0; }
.problem-list li span:first-child {
  font-family: var(--mono); font-size: 11px; color: var(--accent-deep);
}
.problem-transition {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 16px 0 0;
  padding-top: 32px;
  border-top: 1px solid var(--rule-soft);
  max-width: 36ch;
}

/* ===================================================================
   03 — MANIFESTO (dark)
   =================================================================== */
.manifesto {
  padding-top: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(40px, 6vw, 80px);
}
.manifesto-panel {
  background: var(--ink);
  color: #fcfcfc;
  padding: clamp(56px, 8vw, 112px) clamp(28px, 5vw, 72px);
  position: relative;
  overflow: hidden;
  border-radius: 28px;
}
.manifesto-panel::before {
  content: "";
  position: absolute;
  inset: -10% -5% auto auto;
  width: 60vmax; height: 60vmax;
  background: radial-gradient(circle, rgba(131,146,255,0.22), transparent 60%);
  pointer-events: none;
}
.manifesto-body {
  max-width: 60ch;
  margin: 24px 0 64px;
}
.manifesto-body p {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
  color: rgba(252,252,252,0.78);
  margin: 0 0 22px;
  text-wrap: pretty;
}
.manifesto-body p:first-child { color: rgba(252,252,252,0.95); }
.manifesto-marks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 64px;
  max-width: 720px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 680px) {
  .manifesto-marks { grid-template-columns: 1fr; gap: 0; }
}
.mm-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: var(--mono);
  font-size: 13px;
}
.mm-key { color: #fcfcfc; letter-spacing: 0.04em; }
.mm-rule { flex: 1; height: 1px; background: rgba(255,255,255,0.18); }
.mm-val { color: var(--accent); letter-spacing: 0.04em; }

/* ===================================================================
   04 — OUTCOMES
   =================================================================== */
.outcomes {
  padding-top: clamp(96px, 12vw, 160px);
  padding-bottom: clamp(80px, 10vw, 140px);
}
.outcomes-list {
  list-style: none;
  margin: 0 0 56px;
  padding: 0;
  border-top: 1px solid var(--rule);
}
.outcome {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: clamp(20px, 4vw, 64px);
  align-items: baseline;
  padding: clamp(24px, 3vw, 36px) 0;
  border-bottom: 1px solid var(--rule);
  transition: background-color .3s ease;
}
.outcome:hover { background-color: rgba(131,146,255,0.04); }
@media (max-width: 680px) {
  .outcome { grid-template-columns: 1fr; gap: 8px; padding: 24px 0; }
}
.outcome-num {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--accent-deep);
  padding-top: 6px;
}
.outcome-body { max-width: 64ch; }
.outcome-body h3 {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}
.outcome-body p {
  margin: 0;
  color: var(--ink-2);
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.55;
  max-width: 56ch;
}
.outcomes-close {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  align-items: center;
}
.outcomes-close .strike-mark:first-child { margin-left: 0; }

/* ===================================================================
   PORTFOLIO
   =================================================================== */
.portfolio {
  padding-top: clamp(96px, 12vw, 160px);
  padding-bottom: clamp(80px, 10vw, 140px);
}
.portfolio-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  margin-bottom: 56px;
}
@media (max-width: 880px) { .portfolio-head { grid-template-columns: 1fr; } }
.portfolio-intro {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
  max-width: 50ch;
}
.portfolio-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.8vw, 24px);
}
@media (max-width: 980px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .portfolio-grid { grid-template-columns: 1fr; } }

.pf-card {
  border-radius: 20px;
  padding: 14px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.8);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,1),
    inset 0 -1px 1px rgba(0,2,5,0.04),
    0 12px 28px -16px rgba(0,2,5,0.18);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.pf-card:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,1),
    0 18px 36px -16px rgba(0,2,5,0.22);
}
.pf-card--link { padding: 0; cursor: pointer; }
.pf-card--link .pf-link {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 14px;
  height: 100%;
}
.pf-card--link { isolation: isolate; }
.pf-card--link .pf-frame { overflow: hidden; }
.pf-card--link .pf-thumb--img { transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.pf-card--link:hover .pf-thumb--img { transform: scale(1.04); }
.pf-tag--cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--accent-deep);
  font-weight: 500;
}
.pf-card--link:hover .pf-tag--cta span { transform: translateX(3px); }
.pf-tag--cta span { transition: transform .25s ease; display: inline-block; }

.pf-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  background: var(--canvas-2);
  border: 1px solid var(--rule-soft);
}
.pf-thumb {
  position: absolute; inset: 0;
}
.pf-thumb--img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.pf-thumb--01 {
  background:
    radial-gradient(50% 70% at 30% 50%, rgba(131,146,255,0.25), transparent 60%),
    linear-gradient(135deg, #f3ede4 0%, #e9e2d6 100%);
}
.pf-thumb--01::after {
  content: ""; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(0,2,5,0.04) 0 1px, transparent 1px 12px);
}
.pf-thumb--02 {
  background:
    radial-gradient(60% 80% at 80% 20%, rgba(131,146,255,0.35), transparent 60%),
    linear-gradient(180deg, #f4f4f8 0%, #e7e7ee 100%);
}
.pf-thumb--02::after {
  content: ""; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(0,2,5,0.04) 0 1px, transparent 1px 10px);
}
.pf-thumb--03 {
  background:
    radial-gradient(80% 70% at 50% 50%, #fcfcfc, transparent 60%),
    linear-gradient(135deg, #e8e6e0 0%, #d8d6cf 100%);
}
.pf-thumb--03::after {
  content: ""; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(0,2,5,0.05) 0 1px, transparent 1px 14px);
}
.pf-thumb--04 {
  background:
    radial-gradient(60% 60% at 70% 70%, rgba(131,146,255,0.22), transparent 60%),
    linear-gradient(180deg, #ede9e1 0%, #ddd7c9 100%);
}
.pf-thumb--04::after {
  content: ""; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(0,2,5,0.04) 0 1px, transparent 1px 11px);
}
.pf-thumb--05 {
  background:
    radial-gradient(70% 60% at 20% 80%, rgba(131,146,255,0.28), transparent 60%),
    linear-gradient(135deg, #efefef 0%, #e3e3e3 100%);
}
.pf-thumb--05::after {
  content: ""; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(0,2,5,0.05) 0 1px, transparent 1px 13px);
}
.pf-status {
  position: absolute;
  bottom: 12px; left: 12px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.9);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px -6px rgba(0,2,5,0.18);
}
.pf-status-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-deep);
  box-shadow: 0 0 0 3px rgba(131,146,255,0.22);
}

.pf-meta {
  padding: 0 6px 8px;
  display: flex; flex-direction: column; gap: 8px;
}
.pf-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--accent-deep);
}
.pf-title {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0;
}
.pf-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0;
}
.pf-tag {
  align-self: flex-start;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--rule);
  margin-top: 2px;
}

/* CTA card — the 6th slot */
.pf-card--cta {
  background:
    radial-gradient(60% 80% at 80% 20%, rgba(131,146,255,0.35), transparent 60%),
    linear-gradient(180deg, rgba(0,2,5,0.92), rgba(0,2,5,0.85));
  color: #fcfcfc;
  border-color: rgba(255,255,255,0.18);
  padding: clamp(20px, 2.4vw, 28px);
  justify-content: space-between;
  gap: 28px;
}
.pf-card--cta:hover { transform: translateY(-2px); }
.pf-cta-body { display: flex; flex-direction: column; gap: 12px; }
.pf-cta-eyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent); margin: 0;
}
.pf-cta-title {
  font-family: var(--sans); font-weight: 500;
  font-size: clamp(22px, 1.8vw, 26px);
  letter-spacing: -0.02em; line-height: 1.15;
  margin: 0; color: #fcfcfc;
}
.pf-cta-desc {
  margin: 0; font-size: 14px; line-height: 1.5;
  color: rgba(252,252,252,0.7);
}

/* ===================================================================
   05 — PROCESS
   =================================================================== */
.process {
  padding-top: clamp(96px, 12vw, 160px);
  padding-bottom: clamp(80px, 10vw, 140px);
}
.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 56px 0 40px;
}
@media (max-width: 980px) { .process-track { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process-track { grid-template-columns: 1fr; } }
.process-rule {
  position: absolute;
  top: 28px;
  left: 0; right: 0;
  height: 1px;
  background: var(--rule);
}
@media (max-width: 980px) { .process-rule { display: none; } }
.step {
  position: relative;
  padding-top: 56px;
}
.step::before {
  content: "";
  position: absolute;
  top: 22px; left: 0;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--canvas);
  border: 2px solid var(--accent-deep);
}
@media (max-width: 980px) { .step { padding-top: 8px; } .step::before { display: none; } }
.step-head {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em;
  color: var(--ink-3); margin-bottom: 16px;
}
.step-day { color: var(--ink); }
.step-tag { color: var(--accent-deep); }
.step-title {
  font-family: var(--sans); font-weight: 500;
  font-size: clamp(24px, 2.2vw, 30px);
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.step-body {
  font-size: 15px; line-height: 1.55; color: var(--ink-2); margin: 0;
}
.process-caption {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-3);
  letter-spacing: 0.02em;
  max-width: 60ch;
  margin: 0;
}
.process-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.process-foot .btn { flex-shrink: 0; }

/* ===================================================================
   06 — PRICING
   =================================================================== */
.pricing {
  padding-top: clamp(96px, 12vw, 160px);
  padding-bottom: clamp(80px, 10vw, 140px);
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 16px 0 56px;
}
@media (max-width: 980px) { .price-grid { grid-template-columns: 1fr; max-width: 480px; } }
.price-call {
  width: 100%;
  margin: 0;
}
.price-card {
  border-radius: 22px;
  padding: clamp(24px, 3vw, 36px);
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.85);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  backdrop-filter: blur(16px) saturate(160%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,1),
    inset 0 -1px 1px rgba(0,2,5,0.05),
    0 14px 36px -18px rgba(0,2,5,0.18);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.price-card--featured {
  background:
    radial-gradient(60% 60% at 80% 0%, rgba(131,146,255,0.22), transparent 60%),
    rgba(255,255,255,0.72);
  border-color: rgba(131,146,255,0.5);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,1),
    0 20px 60px -30px rgba(103,112,230,0.5);
  position: relative;
}
.price-head { display: flex; flex-direction: column; gap: 14px; }
.price-badge {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em;
  padding: 6px 12px; border-radius: 999px;
  background: var(--accent); color: #fff;
}
.price-badge--muted {
  background: transparent; color: var(--ink-3); border: 1px solid var(--rule);
}
.price-badge .badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #fff; box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}
.price-tier {
  font-family: var(--sans); font-weight: 500;
  font-size: clamp(28px, 2.4vw, 36px); letter-spacing: -0.02em;
  margin: 0;
}
.price-tier-sub {
  margin: 0; color: var(--ink-2);
  font-size: 15px; line-height: 1.5; max-width: 38ch;
}
.price-amount {
  display: flex; align-items: baseline; gap: 14px;
  padding: 12px 0 0;
  border-top: 1px solid var(--rule-soft);
}
.price-num {
  font-family: var(--sans); font-weight: 600;
  font-size: clamp(48px, 6vw, 80px);
  letter-spacing: -0.04em; line-height: 1;
}
.price-strike {
  font-family: var(--sans); font-size: 20px;
  color: var(--ink-3); text-decoration: line-through;
}
.price-includes {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 10px;
}
.price-includes li {
  padding-left: 22px; position: relative;
  font-size: 14px; color: var(--ink-2); line-height: 1.45;
}
.price-includes li::before {
  content: "";
  position: absolute; top: 9px; left: 0;
  width: 10px; height: 1px; background: var(--accent-deep);
}

.price-includes li.no-mark { padding-left: 0; }
.price-includes li.no-mark::before { content: none; }

.price-includes li.price-includes-from {
  padding-left: 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  text-align: center;
  padding-bottom: 12px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--rule);
}
.price-includes li.price-includes-from::before { content: none; }

.price-aux {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(24px, 3vw, 56px);
  padding-top: 40px;
  border-top: 1px solid var(--rule);
}
@media (max-width: 880px) { .price-aux { grid-template-columns: 1fr; gap: 32px; } }
.aux-label {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-3); margin: 0 0 16px;
}
.addon-list { list-style: none; margin: 0; padding: 0; }
.addon-list li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid var(--rule-soft);
  font-size: 15px;
}
.addon-list li:last-child { border-bottom: 0; }
.addon-price { color: var(--ink); font-weight: 500; }
.terms-body { margin: 0; color: var(--ink-2); font-size: 15px; line-height: 1.55; max-width: 36ch; }

/* ===================================================================
   07 — VERSUS
   =================================================================== */
.versus {
  padding-top: clamp(96px, 12vw, 160px);
  padding-bottom: clamp(96px, 12vw, 160px);
}
.versus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}
@media (max-width: 880px) { .versus-grid { grid-template-columns: 1fr; } }
.vs {
  padding: clamp(28px, 3vw, 40px);
  border-radius: 20px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.85);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,1),
    0 12px 28px -16px rgba(0,2,5,0.16);
}
.vs-head {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 24px;
}
.vs-mark {
  font-family: var(--mono); font-size: 13px; color: var(--ink-3);
}
.vs-target {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(26px, 2.6vw, 36px); letter-spacing: -0.01em;
  color: var(--ink);
}
.vs-body {
  margin: 0; color: var(--ink-2);
  font-size: clamp(15px, 1.15vw, 17px); line-height: 1.55;
}
.vs-body em { color: var(--ink); }

/* ===================================================================
   08 — FAQ
   =================================================================== */
.faq {
  padding-top: clamp(96px, 12vw, 160px);
  padding-bottom: clamp(96px, 12vw, 160px);
}
.faq-list {
  border-top: 1px solid var(--rule);
  margin-top: 56px;
}
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 4px 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 22px 4px;
  font-family: var(--sans);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.3;
}
.faq-toggle {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.85);
  -webkit-backdrop-filter: blur(8px) saturate(140%);
  backdrop-filter: blur(8px) saturate(140%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,1),
    0 4px 12px -6px rgba(0,2,5,0.16);
  position: relative; flex: 0 0 28px;
  transition: background-color .2s ease, border-color .2s ease;
}
.faq-toggle::before, .faq-toggle::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 10px; height: 1px; background: var(--ink);
  transform: translate(-50%, -50%);
  transition: opacity .2s ease;
}
.faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-toggle { background: var(--ink); border-color: var(--ink); }
.faq-item[open] .faq-toggle::before, .faq-item[open] .faq-toggle::after { background: #fcfcfc; }
.faq-item[open] .faq-toggle::after { opacity: 0; }
.faq-item p {
  margin: 0 4px 26px;
  max-width: 70ch;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.6;
  color: var(--ink-2);
}

/* ===================================================================
   09 — FINAL CTA
   =================================================================== */
.final-cta {
  padding-top: clamp(96px, 12vw, 160px);
  padding-bottom: clamp(96px, 12vw, 160px);
  background:
    radial-gradient(70% 80% at 50% 0%, rgba(255,255,255,0.45), transparent 60%),
    var(--accent);
  color: var(--ink);
  position: relative;
  overflow: hidden;
  text-align: left;
  border-radius: 28px;
  /* Align outer edges with the .header-inner pill — same maxw + gutter grid */
  width: min(var(--maxw), calc(100% - 2 * var(--gutter)));
  margin-left: auto;
  margin-right: auto;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: auto -10% -40% -10%;
  height: 60%;
  background: radial-gradient(60% 60% at 50% 50%, rgba(0,2,5,0.12), transparent 70%);
  filter: blur(20px);
}
.final-cta .container { position: relative; }
.final-h2 {
  font-family: var(--sans); font-weight: 600;
  font-size: clamp(40px, 6vw, 84px);
  letter-spacing: -0.03em; line-height: 1.02;
  margin: 0 0 24px;
  max-width: 16ch;
  text-wrap: balance;
}
.final-body {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.45;
  color: rgba(0,2,5,0.78);
  margin: 0 0 18px;
  max-width: 48ch;
}
.final-scarcity {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 13px;
  background: rgba(0,2,5,0.08);
  padding: 8px 14px; border-radius: 999px;
  margin: 0 0 40px;
}
.dot-dark { width: 8px; height: 8px; border-radius: 50%; background: var(--ink); display: inline-block; }
.final-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 20px 28px; margin-bottom: 56px; }
.final-or {
  margin: 0; font-size: 15px; color: rgba(0,2,5,0.7);
}
.final-or a { color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 1px; }
.final-counter {
  display: inline-flex; flex-direction: column; gap: 10px;
  padding: 18px 22px; border-radius: 14px;
  background: rgba(252,252,252,0.55);
  border: 1px solid rgba(0,2,5,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.fc-label {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(0,2,5,0.6);
}
.fc-row { display: inline-flex; align-items: center; gap: 6px; }
.fc-tick {
  width: 18px; height: 6px; border-radius: 2px; background: rgba(0,2,5,0.18);
}
.fc-tick--on { background: var(--ink); }
.fc-count {
  margin-left: 12px; font-family: var(--mono); font-size: 13px; color: var(--ink);
}

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer {
  background: var(--ink);
  color: rgba(252,252,252,0.78);
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(40px, 5vw, 64px);
  margin-top: clamp(48px, 6vw, 96px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr; align-items: flex-start; } }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-mark {
  width: 36px; height: 36px;
  filter: invert(1);
}
.footer-tag { margin: 0; font-size: 14px; color: rgba(252,252,252,0.78); }
.footer-tag em { color: #fcfcfc; }
.footer-nav {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px 14px;
  font-size: 14px;
  justify-self: center;
}
@media (max-width: 880px) { .footer-nav { justify-self: flex-start; } }
.footer-nav a:hover { color: var(--accent); }
.footer-sep { color: rgba(255,255,255,0.3); }

/* two-column link groups */
.footer-links {
  display: flex;
  gap: clamp(36px, 6vw, 80px);
  justify-self: center;
}
@media (max-width: 880px) { .footer-links { justify-self: flex-start; } }
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}
.footer-col-title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(252,252,252,0.4);
  margin-bottom: 2px;
}
.footer-col a { color: rgba(252,252,252,0.78); }
.footer-col a:hover { color: var(--accent); }
.footer-meta {
  display: flex; flex-direction: column; gap: 6px; font-size: 14px;
  text-align: right;
}
@media (max-width: 880px) { .footer-meta { text-align: left; } }
.footer-mail { color: #fcfcfc; }
.footer-mail:hover { color: var(--accent); }
.footer-copy { color: rgba(252,252,252,0.5); font-family: var(--mono); font-size: 12px; }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  justify-content: flex-end;
}
@media (max-width: 880px) { .footer-social { justify-content: flex-start; } }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 999px;
  color: rgba(252,252,252,0.62);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}
.footer-social a:hover {
  color: var(--ink);
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.footer-social svg { width: 17px; height: 17px; display: block; }

/* selection */
::selection { background: var(--accent); color: var(--ink); }

/* ===================================================================
   FADE UP — entrance reveal
   =================================================================== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
    will-change: opacity, transform;
  }
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Hero sequence — 100–150 ms between steps */
  .reveal[data-reveal-delay="1"] { transition-delay: 0.10s; }
  .reveal[data-reveal-delay="2"] { transition-delay: 0.25s; }
  .reveal[data-reveal-delay="3"] { transition-delay: 0.40s; }
  .reveal[data-reveal-delay="4"] { transition-delay: 0.55s; }
  .reveal[data-reveal-delay="5"] { transition-delay: 0.70s; }

  /* Card grid stagger — 100 ms increments */
  .reveal-stagger > .reveal:nth-child(1) { transition-delay: 0s; }
  .reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.10s; }
  .reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.20s; }
  .reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.30s; }
  .reveal-stagger > .reveal:nth-child(5) { transition-delay: 0.40s; }
  .reveal-stagger > .reveal:nth-child(6) { transition-delay: 0.50s; }
  .reveal-stagger > .reveal:nth-child(7) { transition-delay: 0.60s; }
  .reveal-stagger > .reveal:nth-child(8) { transition-delay: 0.70s; }
  .reveal-stagger > .reveal:nth-child(9) { transition-delay: 0.80s; }
}

/* ===================================================================
   RESPONSIVE POLISH — tablet & mobile
   Preserves the design at desktop; adapts spacing, type and stacks
   below 980px. Touch-friendly tap targets and animation perf included.
   =================================================================== */

/* Safety: no horizontal overflow on any viewport */
html, body { overflow-x: clip; }
img, svg, video { max-width: 100%; }

/* Tighter side gutters on small screens (the global --gutter already
   clamps to 20px at the bottom; push it further on tiny phones). */
@media (max-width: 420px) { :root { --gutter: 18px; } }
@media (max-width: 360px) { :root { --gutter: 14px; } }

/* ---------------- Header — glass pill scales down -------------- */
@media (max-width: 560px) {
  .site-header { top: 10px; }
  .header-inner { padding: 6px 8px 6px 12px; gap: 10px; }
  .brand { font-size: 15px; gap: 8px; letter-spacing: -0.02em; }
  .brand-mark { width: 26px; height: 26px; }
  .header-inner > .btn { padding: 9px 14px; font-size: 12.5px; }
  .header-inner > .btn .btn-arrow { display: none; }
}
@media (max-width: 360px) {
  .header-inner > .btn { padding: 8px 12px; font-size: 12px; }
  .brand-word-light { display: none; }
}

/* ---------------- Hero ----------------------------------------- */
@media (max-width: 640px) {
  .hero { padding-top: clamp(32px, 10vw, 64px); padding-bottom: clamp(40px, 9vw, 72px); }
  .hero-h1 { font-size: clamp(28px, 8.2vw, 42px) !important; letter-spacing: -0.02em; line-height: 1.06; }
  .hero-sub { font-size: 14.5px; line-height: 1.5; margin-bottom: 24px; max-width: 42ch; }
  .hero-meta { font-size: 10.5px; padding: 6px 12px; flex-wrap: wrap; justify-content: center; row-gap: 4px; margin-bottom: 24px; }
  .hero-meta-sep { display: none; }
  .hero-ctas { gap: 10px; margin-bottom: 24px; }
  .hero-ctas .btn { padding: 12px 20px; font-size: 13.5px; }
  .hero-trust { gap: 8px 18px; font-size: 11.5px; }
}
@media (max-width: 420px) {
  /* Keep CTAs compact and centered — not stretched edge-to-edge */
  .hero-ctas { flex-direction: column; align-items: center; width: auto; }
  .hero-ctas .btn { width: auto; padding: 11px 22px; font-size: 13px; }
  .hero-trust { justify-content: center; }
}

/* ---------------- Section paddings — phones -------------------- */
@media (max-width: 640px) {
  .problem, .outcomes, .portfolio, .process, .pricing, .versus, .faq {
    padding-top: clamp(56px, 14vw, 96px);
    padding-bottom: clamp(48px, 12vw, 80px);
  }
  .section-h2 { font-size: clamp(30px, 8.5vw, 48px); letter-spacing: -0.02em; }
  .section-lede { font-size: 16px; margin-bottom: 36px; }
}

/* ---------------- Problem -------------------------------------- */
@media (max-width: 560px) {
  .problem-aside { padding: 20px; border-radius: 14px; }
  .problem-list li { padding: 12px 0; grid-template-columns: 32px 1fr; }
}

/* ---------------- Manifesto ------------------------------------ */
@media (max-width: 560px) {
  .manifesto-panel { border-radius: 20px; padding: clamp(40px, 11vw, 64px) clamp(22px, 6vw, 36px); }
  .manifesto-body { margin: 20px 0 44px; }
  .manifesto-body p { font-size: 16px; }
  .mm-row { font-size: 12px; }
}

/* ---------------- Outcomes ------------------------------------- */
@media (max-width: 560px) {
  .outcome { padding: 22px 0; }
  .outcome-body h3 { font-size: 21px; }
  .outcome-body p { font-size: 15px; }
  .outcomes-close { font-size: 12px; gap: 4px 0; }
  .outcomes-close .strike-mark { margin: 0 4px 0 8px; }
}

/* ---------------- Portfolio ------------------------------------ */
@media (max-width: 600px) {
  .pf-card { padding: 10px; gap: 14px; }
  .pf-card--link .pf-link { padding: 10px; gap: 14px; }
  .pf-card--cta { padding: 24px; gap: 22px; }
  .pf-title { font-size: 18px; }
  .pf-desc { font-size: 13.5px; }
}

/* ---------------- Process -------------------------------------- */
@media (max-width: 980px) {
  .process-track { gap: 28px; row-gap: 32px; }
}
@media (max-width: 560px) {
  .process-track { gap: 24px; }
  .step-title { font-size: 22px; }
  .step-head { font-size: 11px; }
  .process-foot { gap: 20px; padding-top: 28px; }
  .process-foot .btn { width: 100%; justify-content: center; }
}

/* ---------------- Pricing -------------------------------------- */
@media (max-width: 980px) {
  .price-grid { gap: 16px; }
  .price-card { padding: clamp(22px, 5vw, 32px); }
}
@media (max-width: 560px) {
  .price-card { padding: 24px; gap: 20px; border-radius: 18px; }
  .price-tier-sub { font-size: 14px; }
  .price-includes li { font-size: 13.5px; }
  .price-num { letter-spacing: -0.035em; }
  .price-amount { padding-top: 10px; }
}

/* ---------------- Versus --------------------------------------- */
@media (max-width: 880px) {
  .versus-grid { gap: 14px; margin-top: 40px; }
}
@media (max-width: 560px) {
  .vs { padding: 24px; border-radius: 16px; }
  .vs-target { font-size: 26px; }
  .vs-head { margin-bottom: 16px; }
}

/* ---------------- Section transitions (arrow lines) ------------ */
@media (max-width: 560px) {
  .problem-transition { font-size: 20px; padding-top: 24px; }
  .versus-transition { font-size: 20px !important; padding-top: 28px; max-width: 100%; }
}

/* ---------------- FAQ ------------------------------------------ */
@media (max-width: 560px) {
  .faq-list { margin-top: 36px; }
  .faq-item summary { gap: 14px; padding: 18px 2px; }
  .faq-q { font-size: 17px; line-height: 1.3; }
  .faq-toggle { width: 26px; height: 26px; flex-basis: 26px; }
  .faq-item p { font-size: 14.5px; margin: 0 2px 22px; }
}

/* ---------------- Final CTA ------------------------------------ */
@media (max-width: 640px) {
  .final-cta {
    border-radius: 22px;
    padding-top: clamp(64px, 16vw, 100px);
    padding-bottom: clamp(56px, 14vw, 90px);
  }
  .final-h2 { font-size: clamp(34px, 9.5vw, 60px); }
  .final-body { font-size: 17px; }
  .final-ctas { gap: 16px 22px; margin-bottom: 36px; }
}
@media (max-width: 420px) {
  .final-ctas { flex-direction: column; align-items: stretch; }
  .final-ctas .btn { width: 100%; justify-content: center; }
  .final-or { text-align: center; }
}

/* ---------------- Footer --------------------------------------- */
@media (max-width: 880px) {
  .footer-grid { gap: 32px; }
  .footer-brand { max-width: 100%; }
  .footer-links { gap: 40px; justify-self: flex-start; }
  .footer-meta { text-align: left; align-items: flex-start; }
  .footer-social { justify-content: flex-start; }
}
@media (max-width: 480px) {
  .footer-links { gap: 28px; flex-wrap: wrap; }
}

/* ---------------- Touch targets / hover guards ----------------- */
@media (max-width: 640px) and (pointer: coarse) {
  .btn { min-height: 44px; }
  .site-nav a, .footer-col a, .footer-mail { padding: 4px 0; }
}

/* No sticky hover transforms on touch devices */
@media (hover: none) {
  .pf-card:hover, .pf-card--link:hover { transform: none; }
  .pf-card--link:hover .pf-thumb--img { transform: none; }
  .btn-glass:hover, .btn-glass-ghost:hover, .btn-glass-dark:hover { transform: none; }
}

/* ---------------- Animation perf on mobile --------------------- */
/* Cheaper backdrop-filter on phones (some Androids stutter) */
@media (max-width: 640px) {
  .header-inner, .hero-meta, .problem-aside, .pf-card, .price-card,
  .vs, .faq-toggle, .final-counter {
    -webkit-backdrop-filter: blur(10px) saturate(140%);
    backdrop-filter: blur(10px) saturate(140%);
  }
  /* Reveal: drop will-change after first paint isn't doable in pure CSS,
     so soften the transform distance on mobile to reduce paint area. */
  .reveal { transform: translateY(20px); }
}
