/* =======================================================================
   MAILKEY — Landing page
   Dark editorial premium · Instrument Serif + Inter · Lime accent
   ======================================================================= */

/* ------------------------------------------------------------------ RESET */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img, svg, video { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
input, select, textarea, button { font-family: inherit; }
summary { cursor: pointer; list-style: none; }
summary::-webkit-details-marker { display: none; }

/* ----------------------------------------------------------------- TOKENS */
:root {
  --bg: #09090B;
  --bg-2: #0F0F12;
  --surface: #131316;
  --surface-2: #18181C;
  --line: rgba(255,255,255,.07);
  --line-strong: rgba(255,255,255,.14);
  --text: #F5F3EF;
  --text-dim: #B7B5AD;
  --text-muted: #6A6A70;

  --cream: #F4EEE1;
  --cream-2: #ECE3CE;
  --accent: #C8FF3C;            /* electric lime */
  --accent-ink: #0A0A0B;
  --accent-dim: rgba(200,255,60,.18);
  --danger: #FF6B6B;
  --ok: #4CD07A;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --shadow-soft: 0 20px 60px -20px rgba(0,0,0,.6);
  --shadow-card: 0 30px 80px -30px rgba(0,0,0,.75), 0 1px 0 rgba(255,255,255,.04) inset;

  --f-display: "Instrument Serif", "Times New Roman", serif;
  --f-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  --gap: clamp(16px, 2vw, 24px);
  --px: clamp(20px, 4vw, 48px);
  --page-max: 1240px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--f-sans);
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

/* ------------------------------------------------------- GLOBAL BG EFFECTS */
.bg-fx {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  overflow: hidden;
}
.bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 50% 0%, #000 0%, transparent 70%);
}
.bg-glow {
  position: absolute;
  width: 60vw; height: 60vw; border-radius: 50%;
  filter: blur(110px); opacity: .35;
  pointer-events: none;
}
.bg-glow--one {
  top: -18vw; left: -12vw;
  background: radial-gradient(circle, rgba(200,255,60,.28), transparent 60%);
}
.bg-glow--two {
  bottom: -20vw; right: -18vw;
  background: radial-gradient(circle, rgba(244,238,225,.18), transparent 60%);
}
.bg-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: .35; mix-blend-mode: overlay;
}

/* --------------------------------------------------------------- CONTAINER */
.container {
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: var(--px);
}

/* ------------------------------------------------------------ TYPOGRAPHY */
.h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(36px, 5.2vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  max-width: 22ch;
}
.h2 em { font-style: italic; color: var(--cream); font-family: var(--f-display); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 18px;
}
.eyebrow em {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--accent);
  letter-spacing: 0;
  font-size: 15px;
}

.lede {
  color: var(--text-dim);
  font-size: clamp(17px, 1.2vw, 19px);
  max-width: 60ch;
  margin: 0;
}
.lede--wide { max-width: 72ch; }
.lede em { color: var(--text); font-style: italic; font-family: var(--f-display); }

.muted { color: var(--text-muted); }

/* --------------------------------------------------------------- BUTTONS */
.btn {
  --y: 0;
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600;
  border-radius: 999px;
  padding: 14px 22px;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
  position: relative;
  line-height: 1;
  isolation: isolate;
}
.btn--sm { padding: 10px 16px; font-size: 14px; }
.btn--lg { padding: 18px 26px; font-size: 16px; }
.btn--block { display: flex; width: 100%; justify-content: center; }

.btn--primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 8px 30px -10px rgba(200,255,60,.55), inset 0 0 0 1px rgba(0,0,0,.15);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px -12px rgba(200,255,60,.85), inset 0 0 0 1px rgba(0,0,0,.15);
}
.btn--ghost {
  background: rgba(255,255,255,.04);
  color: var(--text);
  border: 1px solid var(--line-strong);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
}
.btn-arrow {
  display: inline-block;
  transition: transform .25s var(--ease);
}
.btn:hover .btn-arrow { transform: translateX(4px); }

.play-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(200,255,60,.25);
  display: inline-block;
}

/* ------------------------------------------------------------------- NAV */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px var(--px);
  max-width: var(--page-max);
  margin: 0 auto;
  transition: background .3s var(--ease), backdrop-filter .3s var(--ease), border-color .3s var(--ease);
}
.nav.is-scrolled {
  background: rgba(10,10,11,.72);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  border-bottom: 1px solid var(--line);
}
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 17px; letter-spacing: -.01em;
}
.logo--big { font-size: 22px; }
.logo-sup {
  font-size: 9px; color: var(--text-muted); font-weight: 500;
  transform: translateY(-4px);
}
.nav-links {
  display: flex; justify-content: center; gap: 28px;
  font-size: 14.5px; color: var(--text-dim);
}
.nav-links a { transition: color .2s var(--ease); position: relative; }
.nav-links a::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: -6px; height: 1px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { display: inline-flex; gap: 10px; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.nav-toggle span {
  display: block; width: 18px; height: 1.5px; background: var(--text);
  transition: transform .25s var(--ease);
}

/* ===================================================================== HERO */
.hero {
  position: relative;
  padding: clamp(64px, 10vw, 140px) 0 clamp(80px, 12vw, 160px);
}
.hero .container {
  position: relative;
  max-width: 1200px;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  font-size: 13px; color: var(--text-dim);
  margin-bottom: 32px;
}
.hero-kicker .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(200,255,60,.2);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(200,255,60,.18);}
  50% { box-shadow: 0 0 0 8px rgba(200,255,60,.02);}
}

.hero-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(48px, 8.2vw, 128px);
  line-height: .95;
  letter-spacing: -0.035em;
  margin: 0 0 32px;
  max-width: 18ch;
}
.hero-title em {
  font-style: italic; color: var(--cream);
  font-family: var(--f-display);
}
.hero-wordmark {
  display: inline-block;
  padding: 0 .15em;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 14px;
  transform: translateY(-.05em) rotate(-1.2deg);
  box-shadow: 0 20px 60px -10px rgba(200,255,60,.35);
  font-style: italic;
}

.hero-sub {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.5;
  color: var(--text-dim);
  max-width: 58ch;
  margin: 0 0 40px;
}
.hero-sub strong { color: var(--text); font-weight: 600; }

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

.hero-claims {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-claims li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dim);
  letter-spacing: 0;
}
.hero-claims__tick {
  display: inline-grid;
  place-items: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(200,255,60,.14);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.hero-proof {
  display: flex; align-items: center; gap: 24px;
  padding: 16px 22px;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--line);
  border-radius: 18px;
  max-width: 620px;
  backdrop-filter: blur(8px);
}
.hero-proof__stack { display: flex; align-items: center; gap: 14px; }
.avatars {
  display: flex;
}
.avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--c, #ddd);
  border: 2px solid var(--bg);
  margin-left: -10px;
  background-image: linear-gradient(135deg, var(--c) 0%, #333 120%);
}
.avatar:first-child { margin-left: 0; }
.stars { color: var(--accent); font-size: 13px; letter-spacing: 2px; }
.hero-proof__line { margin: 2px 0 0; font-size: 13px; color: var(--text-dim); }
.hero-proof__line strong { color: var(--text); }
.hero-proof__divider { width: 1px; height: 36px; background: var(--line-strong); }
.hero-proof__caption {
  margin: 0; font-size: 14px;
  font-family: var(--f-display);
  font-style: italic;
  color: var(--text-dim);
  line-height: 1.5;
}
.hero-proof__caption .muted {
  font-family: var(--f-sans);
  font-style: normal; font-size: 12px;
  letter-spacing: .02em;
}

/* ---- floating hero emails ---- */
.hero-float {
  position: absolute;
  right: calc(var(--px) * -0.2);
  top: 10%;
  width: 42%;
  max-width: 520px;
  pointer-events: none;
  z-index: 1;
  display: none;
}
@media (min-width: 1100px) { .hero-float { display: block; } }

.email-card {
  position: absolute;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  backdrop-filter: blur(20px);
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  padding: 18px 20px;
  width: 360px;
  box-shadow: var(--shadow-card);
  animation: float 7s ease-in-out infinite;
}
.email-card.tilt-a {
  top: 20px; right: 40px;
  transform: rotate(3deg);
}
.email-card.tilt-b {
  top: 230px; right: 120px;
  transform: rotate(-4deg);
  animation-delay: -3.5s;
  background: linear-gradient(180deg, rgba(244,238,225,.07), rgba(244,238,225,.02));
}
@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}
.email-card__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.email-chip {
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(200,255,60,.15); color: var(--accent);
  border: 1px solid rgba(200,255,60,.3);
}
.email-chip--sms {
  background: rgba(244,238,225,.1); color: var(--cream);
  border-color: rgba(244,238,225,.2);
}
.email-time { font-size: 11px; color: var(--text-muted); }
.email-card__subject {
  font-family: var(--f-display); font-size: 22px; margin-bottom: 4px;
  letter-spacing: -.01em;
}
.email-card__preview {
  font-size: 13.5px; color: var(--text-dim); line-height: 1.5;
  margin-bottom: 16px;
}
.email-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  padding-top: 14px; border-top: 1px dashed var(--line);
}
.email-stats > div { display: flex; flex-direction: column; gap: 2px; }
.email-stats b { font-size: 18px; font-weight: 700; letter-spacing: -.01em; }
.email-stats span {
  font-size: 10.5px; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted);
}

/* ================================================================== TRUST */
.trust {
  padding: 40px 0 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.015);
}
.trust-caption {
  text-align: center;
  font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 24px;
}
.marquee {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}
.marquee__track {
  display: flex; gap: 48px;
  width: max-content;
  animation: scroll 40s linear infinite;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.logo-pill {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--text-dim);
  opacity: .75;
  white-space: nowrap;
  transition: opacity .3s var(--ease), color .3s var(--ease);
}
.logo-pill.serif {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  font-size: 28px;
}
.logo-pill:hover { opacity: 1; color: var(--text); }

/* ================================================================== STATS */
.stats {
  padding: clamp(72px, 10vw, 120px) 0 clamp(40px, 6vw, 72px);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat-num {
  font-family: var(--f-display);
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: 12px;
  color: var(--cream);
}
.stat-label {
  font-size: 14px; font-weight: 600; margin-bottom: 4px;
}
.stat-meta {
  font-size: 12.5px; color: var(--text-muted);
}
@media (max-width: 820px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:nth-child(odd) { border-right: 1px solid var(--line); }
  .stat:nth-last-child(-n+2) { border-bottom: 0; }
}

/* ================================================================= SECTION */
.section {
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
}
.section-head { margin-bottom: 56px; max-width: 900px; }

/* =================================================================== PROBLEM */
.problem .container { max-width: 1120px; }
.problem .h2 { margin-bottom: 24px; }
.leaks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.leak {
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}
.leak:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  background: var(--surface-2);
}
.leak-num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 40px;
  color: var(--accent);
  margin-bottom: 12px;
  line-height: 1;
}
.leak h3 {
  font-family: var(--f-display); font-weight: 400;
  font-size: 26px; letter-spacing: -.01em; margin: 0 0 10px;
}
.leak p { color: var(--text-dim); margin: 0; font-size: 15.5px; }
.leak em { font-style: italic; color: var(--cream); font-family: var(--f-display); }
@media (max-width: 900px) { .leaks { grid-template-columns: 1fr; } }

/* ============================================================== FLOW RIBBON */
.flow-ribbon {
  padding: 28px 0 48px;
  border-bottom: 1px solid var(--line);
}
.flow-ribbon__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 24px;
}
.flow-node {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.flow-node:hover { border-color: var(--line-strong); color: var(--text); }
.flow-node__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(200,255,60,.14);
  font-size: 0;
}
.flow-node__label { font-weight: 500; }
.flow-node--accent {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
}
.flow-node--accent .flow-node__dot { background: var(--accent-ink); box-shadow: none; }
.flow-arrow {
  color: var(--text-muted);
  font-size: 18px;
  letter-spacing: 0;
}
@media (max-width: 600px) {
  .flow-ribbon { padding: 22px 0 32px; }
  .flow-ribbon__inner { gap: 10px 12px; }
  .flow-node { padding: 8px 12px; font-size: 11.5px; }
  .flow-arrow { font-size: 14px; }
}

/* ================================================================= SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.service-card {
  grid-column: span 2;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .4s var(--ease), border-color .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px circle at var(--mx,50%) var(--my,-20%), rgba(200,255,60,.08), transparent 40%);
  opacity: 0; transition: opacity .4s var(--ease); pointer-events: none;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover { transform: translateY(-4px); border-color: var(--line-strong); }

.service-card--lg { grid-column: span 3; }
.service-card--accent {
  grid-column: span 3;
  background: var(--cream);
  color: #17170D;
  border-color: var(--cream-2);
}
.service-card--accent h3 { color: #17170D; }
.service-card--accent p { color: #4F4F45; }

.service-card__icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(200,255,60,.12);
  color: var(--accent);
  font-size: 22px;
  margin-bottom: 18px;
  border: 1px solid rgba(200,255,60,.2);
}
.service-card--accent .service-card__icon {
  background: rgba(23,23,13,.08);
  color: #17170D;
  border-color: rgba(23,23,13,.12);
}
.service-card h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -.01em;
  margin: 0 0 10px;
  line-height: 1.1;
}
.service-card p { color: var(--text-dim); margin: 0 0 18px; font-size: 15px; }
.kv {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 8px;
  padding-top: 16px; border-top: 1px dashed rgba(255,255,255,.12);
}
.service-card--accent .kv { border-top-color: rgba(23,23,13,.15); }
.kv li {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 13px; color: var(--text-muted);
}
.service-card--accent .kv li { color: #5C5C4F; }
.kv b { color: var(--text); font-weight: 700; font-size: 14px; }
.service-card--accent .kv b { color: #17170D; }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card, .service-card--lg, .service-card--accent { grid-column: span 1; }
}

/* =============================================================== PRINCIPLES */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.principle {
  background: var(--surface);
  padding: 32px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .3s var(--ease);
}
.principle:hover { background: var(--surface-2); }
.principle-mark {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 18px;
  color: var(--accent);
  letter-spacing: .06em;
}
.principle h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin: 0;
}

@media (max-width: 760px) {
  .principles-grid { grid-template-columns: 1fr; }
  .principle { padding: 26px 22px 28px; }
  .principle h3 { font-size: 22px; }
}

/* ================================================================== RESULTS */
.case {
  padding: 36px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
}
.case-meta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px; color: var(--text-muted);
  letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 24px;
}
.case-tag {
  padding: 6px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255,255,255,.02);
}
.case-main {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}
.case-copy h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0 0 16px;
}
.case-copy h3 em { color: var(--accent); font-style: italic; font-family: var(--f-display); }
.case-copy p { color: var(--text-dim); margin: 0 0 20px; max-width: 40ch; }
.case-wins { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.case-wins li { display: flex; gap: 10px; align-items: baseline; font-size: 15px; }
.tick {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--accent-dim); color: var(--accent);
  display: inline-grid; place-items: center;
  font-size: 11px; flex: 0 0 auto;
}

/* klaviyo-like stat card */
.case-visual { display: grid; gap: 16px; }
.stat-card {
  background: #FFFFFF;
  color: #111315;
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.7);
}
.stat-card__head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 18px;
}
.stat-card__title { font-weight: 700; font-size: 15px; letter-spacing: -.01em; }
.stat-card__sub { font-size: 12px; color: #76797A; margin-top: 2px; }
.stat-card__pill {
  display: inline-flex; align-items: center;
  padding: 4px 10px;
  background: #E5F8EC; color: #1D8A4B;
  border-radius: 999px;
  font-size: 11px; font-weight: 600; letter-spacing: .04em;
}
.stat-card__row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.stat-card__big {
  font-family: var(--f-display);
  font-size: 28px;
  letter-spacing: -.02em;
  line-height: 1;
}
.stat-card__big--accent { color: #1D8A4B; }
.stat-card__label { font-size: 12.5px; color: #44474B; font-weight: 600; margin-top: 4px; }
.stat-card__link { font-size: 11.5px; color: #0A6BD4; margin-top: 2px; }

.stat-card--summary .stat-card__grid2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin: 10px 0 18px;
}
.stat-bar {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: #55585B;
  margin-top: 6px;
}
.stat-bar span {
  display: block; height: 8px; border-radius: 999px;
  background: #0A0A0B;
  max-width: 220px;
  min-width: 30px;
}

.case-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.case-mini {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  transition: transform .4s var(--ease);
}
.case-mini:hover { transform: translateY(-4px); }
.case-mini h3 {
  font-family: var(--f-display);
  font-weight: 400; font-size: 32px;
  line-height: 1.1; letter-spacing: -.02em;
  margin: 0 0 12px;
}
.case-mini p { color: var(--text-dim); margin: 0 0 20px; }
.mini-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  padding-top: 20px; border-top: 1px dashed var(--line-strong);
}
.mini-stats > div { display: flex; flex-direction: column; gap: 2px; }
.mini-stats b {
  font-family: var(--f-display);
  font-size: 26px;
  color: var(--cream);
  letter-spacing: -.01em;
}
.mini-stats span {
  font-size: 11px; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .1em;
}

@media (max-width: 900px) {
  .case-main { grid-template-columns: 1fr; }
  .case-row { grid-template-columns: 1fr; }
  .stat-card__row { grid-template-columns: repeat(2, 1fr); }
  .stat-card--summary .stat-card__grid2 { grid-template-columns: 1fr; }
}

/* ================================================================= GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mockup {
  margin: 0;
  transition: transform .4s var(--ease);
}
.mockup--a { transform: translateY(0); }
.mockup--b { transform: translateY(40px); }
.mockup--c { transform: translateY(20px); }
.mockup--a:hover { transform: translateY(-6px) rotate(-.5deg); }
.mockup--b:hover { transform: translateY(34px) rotate(.5deg); }
.mockup--c:hover { transform: translateY(14px) rotate(-.5deg); }
.mockup__device {
  border-radius: 20px;
  background: #0B0B0C;
  border: 1px solid var(--line-strong);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
}
.mockup__bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  background: #131315; border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.mockup__bar span {
  width: 9px; height: 9px; border-radius: 50%;
  background: #2A2A2E;
}
.mockup__bar span:nth-child(1) { background: #FF6057; }
.mockup__bar span:nth-child(2) { background: #FFBD2E; }
.mockup__bar span:nth-child(3) { background: #28C840; }
.mockup__bar em {
  font-style: normal;
  font-size: 11px; color: var(--text-muted);
  margin-left: auto;
}
.mockup figcaption {
  text-align: center;
  font-size: 12px; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .12em;
  margin-top: 14px;
}
/* real email screenshots — hero peek, click to open the full email */
.mockup__open {
  width: 100%; padding: 0; text-align: left;
  appearance: none; -webkit-appearance: none; cursor: pointer;
}
.mockup__open:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 22px; }
.mockup__shot {
  position: relative;
  height: 400px;
  overflow: hidden;
  background: #fff;
}
.mockup__shot img { display: block; width: 100%; height: auto; transition: filter .25s var(--ease); }
/* bottom fade — signals the email continues below */
.mockup__shot::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 96px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #fff);
  pointer-events: none;
}
/* persistent corner badge so touch users know it opens */
.mockup__badge {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 30px; height: 30px; border-radius: 9px;
  display: grid; place-items: center;
  background: rgba(10,10,11,.62); color: #fff;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.18);
  transition: background .2s var(--ease), color .2s var(--ease);
}
/* hover cue — centered "view full email" pill */
.mockup__cue {
  position: absolute; left: 50%; bottom: 18px; z-index: 2;
  transform: translateX(-50%) translateY(6px);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 999px;
  background: var(--accent); color: var(--accent-ink);
  font-size: 12px; font-weight: 700; letter-spacing: .04em; white-space: nowrap;
  opacity: 0; pointer-events: none;
  box-shadow: 0 10px 30px -10px rgba(200,255,60,.6);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .mockup__open:hover .mockup__cue,
  .mockup__open:focus-visible .mockup__cue { opacity: 1; transform: translateX(-50%) translateY(0); }
  .mockup__open:hover .mockup__badge,
  .mockup__open:focus-visible .mockup__badge { background: var(--accent); color: var(--accent-ink); }
  .mockup__open:hover .mockup__shot img { filter: brightness(.97); }
}

/* ---- email lightbox ---- */
.lightbox { position: fixed; inset: 0; z-index: 120; }
.lightbox[hidden] { display: none; }
.lightbox__backdrop {
  position: absolute; inset: 0;
  background: rgba(6,6,8,.82);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  animation: lb-fade .2s var(--ease);
}
.lightbox__dialog {
  position: relative; z-index: 1;
  width: min(460px, 92vw); max-height: 92vh;
  margin: 4vh auto 0;
  display: flex; flex-direction: column;
  background: #0F0F12; border: 1px solid var(--line-strong);
  border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow-card);
  animation: lb-pop .28s var(--ease-out);
}
.lightbox__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 16px; background: #131315; border-bottom: 1px solid var(--line); flex-shrink: 0;
}
.lightbox__title { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-dim); }
.lightbox__close {
  width: 32px; height: 32px; border-radius: 50%;
  font-size: 22px; line-height: 1; color: var(--text-dim);
  display: grid; place-items: center; flex-shrink: 0;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.lightbox__close:hover { background: rgba(255,255,255,.08); color: var(--text); }
.lightbox__scroll { overflow-y: auto; -webkit-overflow-scrolling: touch; background: #fff; }
.lightbox__img { display: block; width: 100%; height: auto; }
.lightbox__cap {
  margin: 0; padding: 12px 16px; text-align: center;
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted);
  background: #131315; border-top: 1px solid var(--line); flex-shrink: 0;
}
body.lb-open { overflow: hidden; }
@keyframes lb-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes lb-pop { from { opacity: 0; transform: translateY(12px) scale(.985); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .lightbox__backdrop, .lightbox__dialog { animation: none; }
  .mockup__shot img { transition: none; }
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-float { display: none !important; }
  .mockup--a, .mockup--b, .mockup--c { transform: none; }
  .mockup--a:hover, .mockup--b:hover, .mockup--c:hover { transform: translateY(-6px); }
}

/* ================================================================= PROCESS */
.timeline {
  list-style: none; padding: 0; margin: 0;
  counter-reset: step;
  position: relative;
  max-width: 880px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 56px; top: 20px; bottom: 20px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--accent) 10%, var(--accent) 90%, transparent);
  opacity: .3;
}
.timeline-item {
  display: grid; grid-template-columns: auto 1fr; gap: 32px;
  padding: 24px 0;
  align-items: flex-start;
  position: relative;
}
.timeline-num {
  width: 112px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 56px;
  color: var(--cream);
  letter-spacing: -.03em;
  position: relative;
  text-align: center;
}
.timeline-num::before {
  content: "";
  position: absolute;
  left: 48px; top: 50%;
  width: 16px; height: 16px;
  background: var(--accent);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 0 4px var(--bg), 0 0 0 5px var(--line-strong);
}
.timeline-body h3 {
  font-family: var(--f-display); font-weight: 400;
  font-size: 30px; letter-spacing: -.01em;
  margin: 10px 0 12px;
  line-height: 1.1;
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
}
.chip {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(200,255,60,.12);
  color: var(--accent);
  border: 1px solid rgba(200,255,60,.25);
  font-family: var(--f-sans);
  font-size: 12px;
  letter-spacing: .04em;
}
.timeline-body p { color: var(--text-dim); margin: 0; max-width: 60ch; }

@media (max-width: 720px) {
  .timeline::before { left: 22px; }
  .timeline-item { grid-template-columns: 1fr; gap: 8px; }
  .timeline-num {
    width: 100%; text-align: left; font-size: 40px;
    padding-left: 52px;
  }
  .timeline-num::before { left: 14px; }
}

/* ================================================================= PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: transform .4s var(--ease), border-color .4s var(--ease);
  display: flex; flex-direction: column;
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}
.price-card--featured {
  background: linear-gradient(180deg, rgba(200,255,60,.08), rgba(200,255,60,.02) 40%, var(--surface));
  border-color: rgba(200,255,60,.3);
}
.price-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent); color: var(--accent-ink);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .04em;
  white-space: nowrap;
}
.price-tag {
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.price-amount {
  display: flex; align-items: baseline; gap: 2px;
  margin-bottom: 12px;
  font-family: var(--f-display);
  color: var(--cream);
}
.price-euro { font-size: 32px; color: var(--text-dim); }
.price-n {
  font-size: 64px; letter-spacing: -.03em; line-height: 1;
}
.price-per { font-size: 16px; color: var(--text-dim); font-family: var(--f-sans); }
.price-custom { font-size: 52px; letter-spacing: -.03em; line-height: 1; font-style: italic; }

.price-desc { color: var(--text-dim); font-size: 14.5px; margin: 0 0 24px; min-height: 3.2em; }

.price-feat {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: grid; gap: 10px;
  padding-bottom: 24px;
  border-bottom: 1px dashed var(--line-strong);
  flex: 1;
}
.price-feat li {
  font-size: 14.5px;
  display: flex; align-items: flex-start; gap: 10px;
}
.price-feat li::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  margin-top: 8px;
  flex: 0 0 auto;
}
.price-feat em { color: var(--cream); font-family: var(--f-display); font-style: italic; }

/* =============================================================== GUARANTEE */
.guarantee .container { max-width: 1080px; }
.guarantee-card {
  position: relative;
  padding: 56px 56px 60px;
  border: 1px solid rgba(200,255,60,.32);
  border-radius: 26px;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(200,255,60,.08), transparent 55%),
    var(--surface);
  text-align: center;
  overflow: hidden;
  box-shadow:
    0 50px 100px -50px rgba(200,255,60,.18),
    inset 0 1px 0 rgba(255,255,255,.04);
}
.guarantee-card__glow {
  position: absolute;
  top: -120px; right: -120px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,255,60,.18), transparent 60%);
  pointer-events: none;
  filter: blur(20px);
}
.guarantee-card__icon {
  display: inline-grid;
  place-items: center;
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: 18px;
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 12px 36px -8px rgba(200,255,60,.5);
}
.guarantee-card .eyebrow { justify-content: center; display: inline-flex; }
.guarantee-card .h2 { max-width: 22ch; margin-left: auto; margin-right: auto; }
.guarantee-card .lede { margin-left: auto; margin-right: auto; }

@media (max-width: 760px) {
  .guarantee-card { padding: 40px 28px 44px; }
  .guarantee-card__icon { width: 54px; height: 54px; margin-bottom: 14px; }
  .guarantee-card__icon svg { width: 30px; height: 30px; }
}

/* ============================================================ TESTIMONIALS */
.tmn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 16px;
}
.tmn {
  margin: 0;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.tmn:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.tmn--feat {
  grid-row: span 2;
  grid-column: span 2;
  background: var(--cream);
  color: #17170D;
  border-color: var(--cream-2);
  padding: 40px;
}
.tmn blockquote {
  margin: 0 0 24px;
  font-family: var(--f-display);
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -.01em;
}
.tmn--feat blockquote {
  font-size: 36px;
  line-height: 1.15;
}
.tmn blockquote em { color: var(--accent); font-style: italic; }
.tmn--feat blockquote em { color: #1D7A3F; }
.tmn figcaption {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px;
}
.tmn-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c) 0%, #333 120%);
  flex: 0 0 auto;
}
.tmn figcaption b { display: block; font-weight: 600; }
.tmn figcaption > div span { display: block; color: var(--text-muted); font-size: 12.5px; }
.tmn--feat figcaption > div span { color: #6F6F5F; }
.tmn-result {
  margin-left: auto;
  flex: 0 0 auto;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .04em;
  background: rgba(200,255,60,.14);
  color: var(--accent);
  white-space: nowrap;
}
.tmn--feat .tmn-result {
  background: rgba(29,122,63,.16);
  color: #1D7A3F;
}

@media (max-width: 900px) {
  .tmn-grid { grid-template-columns: 1fr; }
  .tmn--feat { grid-row: span 1; grid-column: span 1; padding: 28px; }
  .tmn--feat blockquote { font-size: 24px; }
}

/* ===================================================================== FAQ */
.faq-wrap { max-width: 860px; }
.faq-list { display: grid; gap: 10px; margin-top: 8px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.faq-item:hover { border-color: var(--line-strong); }
.faq-item summary {
  padding: 22px 24px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
  font-weight: 500; font-size: 17px;
  position: relative;
}
.faq-item summary::after {
  content: "+";
  font-family: var(--f-display);
  font-size: 28px; font-weight: 400;
  color: var(--accent);
  transition: transform .3s var(--ease);
  line-height: 1;
}
.faq-item[open] summary::after { content: "—"; color: var(--text-dim); }
.faq-body { padding: 0 24px 24px; color: var(--text-dim); font-size: 15.5px; }
.faq-body p { margin: 0; max-width: 68ch; }

/* ============================================================ FINAL CTA */
.cta-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: clamp(40px, 6vw, 80px);
  border: 1px solid var(--line-strong);
  background: radial-gradient(ellipse at 20% 0%, rgba(200,255,60,.18), transparent 55%),
              radial-gradient(ellipse at 90% 90%, rgba(244,238,225,.12), transparent 60%),
              linear-gradient(180deg, #141416 0%, #0B0B0D 100%);
}
.cta-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 80%);
  pointer-events: none;
}
.cta-inner { position: relative; }
.cta-inner .h2 { max-width: 18ch; }
.cta-inner .lede { margin-bottom: 36px; }

.cta-form {
  display: grid;
  grid-template-columns: 1.2fr 1fr .9fr auto;
  gap: 10px;
  padding: 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  max-width: 900px;
}
.field { position: relative; }
.field label {
  position: absolute;
  top: 8px; left: 20px;
  font-size: 10.5px;
  color: var(--text-muted);
  letter-spacing: .1em;
  text-transform: uppercase;
  pointer-events: none;
}
.field input, .field select {
  width: 100%;
  padding: 24px 20px 10px;
  background: transparent;
  border: 0;
  color: var(--text);
  font-size: 15px;
  border-radius: 999px;
  outline: none;
}
.field input:focus, .field select:focus {
  background: rgba(255,255,255,.04);
}
.field--select select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23B7B5AD' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 44px;
}
.cta-submit { white-space: nowrap; }

.cta-trust {
  display: flex; gap: 28px; flex-wrap: wrap;
  margin-top: 24px;
  font-size: 13px; color: var(--text-dim);
}
.cta-trust__item { display: inline-flex; gap: 6px; }

.cta-guarantee {
  margin: 18px 0 0;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(200,255,60,.08);
  border: 1px solid rgba(200,255,60,.22);
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: .02em;
}
.cta-guarantee em {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--accent);
  margin-left: 6px;
}

.cta-success {
  margin-top: 32px;
  padding: 24px 28px;
  border-radius: var(--radius);
  background: rgba(200,255,60,.08);
  border: 1px solid rgba(200,255,60,.25);
  max-width: 600px;
}
.cta-success__icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: var(--accent-ink);
  display: grid; place-items: center;
  margin-bottom: 12px;
  font-weight: 700;
}
.cta-success h3 {
  font-family: var(--f-display); font-weight: 400;
  font-size: 26px; margin: 0 0 6px; letter-spacing: -.01em;
}
.cta-success p { margin: 0; color: var(--text-dim); }

@media (max-width: 900px) {
  .cta-form {
    grid-template-columns: 1fr;
    border-radius: var(--radius-lg);
    padding: 8px;
  }
  .field input, .field select { border-radius: var(--radius); }
}

/* =================================================================== FOOTER */
.footer {
  position: relative;
  padding-top: 80px;
  margin-top: 40px;
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
}
.footer-brand { max-width: 360px; }
.footer-tag {
  color: var(--text-dim);
  font-size: 15px;
  margin: 16px 0 24px;
  max-width: 34ch;
}
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  font-size: 12px; color: var(--text-dim);
  text-transform: lowercase;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.footer-socials a:hover { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-head {
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.footer-col a {
  color: var(--text-dim); font-size: 14.5px;
  transition: color .2s var(--ease);
}
.footer-col a:hover { color: var(--text); }

.footer-giant {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(120px, 22vw, 340px);
  line-height: .85;
  letter-spacing: -.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244,238,225,.18);
  text-align: center;
  padding: 20px 0 0;
  user-select: none;
  white-space: nowrap;
  overflow: hidden;
}

.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding: 24px var(--px);
  font-size: 12.5px; color: var(--text-muted);
  border-top: 1px solid var(--line);
  margin-top: -10px;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}

/* ================================================================== FAB */
.fab {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 60;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 20px;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 999px;
  font-weight: 700;
  font-size: 14.5px;
  box-shadow: 0 20px 50px -10px rgba(200,255,60,.6), 0 0 0 1px rgba(0,0,0,.2);
  transform: translateY(120px);
  transition: transform .5s var(--ease-out), box-shadow .3s var(--ease);
}
.fab.is-visible { transform: translateY(0); }
.fab:hover { box-shadow: 0 24px 60px -8px rgba(200,255,60,.85); }
.fab-arrow { display: inline-block; transition: transform .25s var(--ease); }
.fab:hover .fab-arrow { transform: translateX(3px); }

@media (max-width: 720px) {
  .fab span:first-child { display: none; }
  .fab { padding: 14px; aspect-ratio: 1; }
}

/* =========================================================== REVEAL ANIM */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* =========================================================== RESPONSIVE NAV */
@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav.is-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    padding: 20px var(--px) 28px;
    background: rgba(10,10,11,.94);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    gap: 14px;
    font-size: 17px;
  }
  .nav.is-open .nav-cta {
    display: flex; justify-content: stretch;
    position: absolute;
    top: calc(100% + 200px); left: 0; right: 0;
    padding: 0 var(--px) 28px;
  }
  .nav.is-open .nav-cta .btn { flex: 1; justify-content: center; }
}

/* =========================================================================
   FEEDBACK REBUILD — centered titles, credibility strip, monthly review,
   let's-talk-numbers pricing block.
   ========================================================================= */

/* Center every section head */
.section-head {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head .eyebrow { justify-content: center; }
.section-head .h2 { margin-left: auto; margin-right: auto; }
.section-head .lede { margin-left: auto; margin-right: auto; }

.problem .container { text-align: center; }
.problem .h2 { margin-left: auto; margin-right: auto; }
.problem .lede { margin-left: auto; margin-right: auto; }
.problem .eyebrow { justify-content: center; }
.problem .leaks { text-align: left; }

/* Hero proof softened — remove stars remains, add sub line */
.hero-proof__sub {
  font-size: 12.5px;
  margin: 3px 0 0;
  color: var(--text-muted);
}

/* Email float — label-only stats (no numbers) */
.email-stats--labels {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px dashed var(--line);
  padding-top: 12px;
  margin-top: 14px;
}
.email-stats--labels div {
  display: flex; flex-direction: column; gap: 2px;
}
.email-stats--labels span {
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* =========================== CREDIBILITY STRIP =========================== */
.credstrip {
  padding: 48px 0 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(200,255,60,.04), transparent 60%),
    var(--bg);
}
.credstrip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.cred-num {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 8px;
}
.cred-label {
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: .04em;
}
@media (max-width: 720px) {
  .credstrip-grid { grid-template-columns: 1fr; gap: 24px; }
  .credstrip { padding: 36px 0 20px; }
}



/* Case note styling */
.case-note {
  font-size: 12.5px;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 14px !important;
}

/* Timeline accent step */
.timeline-item--accent .timeline-num {
  background: var(--accent);
  color: var(--accent-ink);
}
.timeline-item--accent .timeline-body h3 {
  color: var(--cream);
}

/* Mobile section heads — ensure full width */
@media (max-width: 720px) {
  .section-head { text-align: center; }
  .section-head .eyebrow { justify-content: center; }
}

/* ==========================================================================
   KLAVIYO-UI STYLE HERO CARDS + CASE MOCKUP LABELS
   ========================================================================== */

.kv-card {
  position: relative;
  width: 360px;
  padding: 14px 16px 16px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,0) 70%),
    #FBFAF5;
  color: #14130F;
  font-family: var(--f-sans);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow:
    0 30px 70px -25px rgba(0,0,0,.55),
    0 8px 20px -12px rgba(0,0,0,.4),
    inset 0 1px 0 rgba(255,255,255,.6);
}
.kv-card--b {
  background:
    linear-gradient(180deg, rgba(200,255,60,.07), transparent 70%),
    #14151A;
  color: #F4F2EC;
  border-color: rgba(255,255,255,.08);
}

.kv-card__bar {
  display: flex; align-items: center; gap: 6px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  margin-bottom: 12px;
  font-size: 11px;
  letter-spacing: .02em;
}
.kv-card--b .kv-card__bar { border-bottom-color: rgba(255,255,255,.08); }
.kv-crumb {
  color: #7a7a7a;
  font-weight: 500;
}
.kv-card--b .kv-crumb { color: #8f9099; }
.kv-chev { color: #b4b4b4; font-size: 13px; }
.kv-card--b .kv-chev { color: #5c5e68; }
.kv-crumb--active {
  color: #14130F;
  font-weight: 700;
}
.kv-card--b .kv-crumb--active { color: #F4F2EC; }
.kv-pill {
  margin-left: auto;
  font-size: 10px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase;
  padding: 3px 8px; border-radius: 4px;
}
.kv-pill--sent { background: #e8f4ea; color: #1f7a43; }
.kv-pill--live {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 0 0 3px rgba(200,255,60,.15);
}

.kv-card__title-row {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
  margin-bottom: 12px;
}
.kv-card__title {
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -.005em;
  color: inherit;
}
.kv-card__sub {
  font-size: 11.5px;
  color: #8a8a8a;
  margin-top: 2px;
  font-weight: 500;
}
.kv-card--b .kv-card__sub { color: #8c8e97; }
.kv-tab {
  font-size: 10.5px; font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
  background: #efece3;
  color: #4b4a45;
  letter-spacing: .02em;
}
.kv-card--b .kv-tab { background: rgba(255,255,255,.06); color: #B7B5AD; }
.kv-trend {
  font-size: 11px; font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
}
.kv-trend--up {
  background: rgba(200,255,60,.18);
  color: var(--accent);
}

/* Campaign grid */
.kv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.kv-cell {
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 10px;
  padding: 10px 12px;
}
.kv-card--b .kv-cell {
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.06);
}
.kv-cell--accent {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: transparent;
}
.kv-cell__num {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -.02em;
  color: inherit;
  line-height: 1.1;
}
.kv-cell__num span {
  font-size: 13px; font-weight: 600; opacity: .7;
  margin-left: 1px;
}
.kv-cell__label {
  font-size: 10.5px;
  font-weight: 600;
  color: #8a8a8a;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 4px;
}
.kv-cell--accent .kv-cell__label { color: rgba(10,10,11,.7); }
.kv-card--b .kv-cell__label { color: #8c8e97; }
.kv-cell__meta {
  font-size: 10.5px;
  color: #a0a0a0;
  margin-top: 2px;
}
.kv-cell--accent .kv-cell__meta { color: rgba(10,10,11,.6); }
.kv-card--b .kv-cell__meta { color: #6f717a; }

/* Flow rows */
.kv-rows {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.kv-rows li {
  display: grid;
  grid-template-columns: 92px 1fr 54px;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}
.kv-row__k { color: #8c8e97; font-weight: 500; }
.kv-card:not(.kv-card--b) .kv-row__k { color: #7a7a7a; }
.kv-row__bar {
  position: relative;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  overflow: hidden;
}
.kv-card:not(.kv-card--b) .kv-row__bar { background: rgba(0,0,0,.06); }
.kv-row__bar span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--accent), #9CE03D);
  border-radius: inherit;
}
.kv-row__v {
  font-weight: 700;
  font-size: 12px;
  text-align: right;
  color: inherit;
}
.kv-card__foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed rgba(255,255,255,.08);
  font-size: 12px;
  color: #8c8e97;
}
.kv-card__foot b {
  font-weight: 700;
  font-size: 15px;
  color: #F4F2EC;
  letter-spacing: -.01em;
}

/* Inherit tilt positions from existing hero-float system */
.kv-card.tilt-a {
  position: absolute;
  top: 20px; right: 40px;
  transform: rotate(-2deg);
  z-index: 3;
  animation: float 7s ease-in-out infinite;
}
.kv-card.tilt-b {
  position: absolute;
  top: 300px; right: 130px;
  transform: rotate(3deg);
  z-index: 2;
  width: 340px;
  animation: float 7s ease-in-out infinite;
  animation-delay: -3.5s;
}

@media (max-width: 1100px) {
  .kv-card.tilt-a, .kv-card.tilt-b {
    position: static;
    width: auto;
    transform: none;
    margin: 0 0 16px;
    animation: none;
  }
}

/* ================== Case mockup label ================== */
.case-mockup {
  font-family: var(--f-sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(200,255,60,.12);
  color: var(--accent);
  border: 1px solid rgba(200,255,60,.28);
  margin-left: auto;
}
.case-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
