/* ============================================================
   No More Stutter — shared styles
   Brand: calm, trustworthy, hopeful. Built for conversion.
   ============================================================ */

:root {
  /* Palette */
  --ink: #0c2a38;          /* deep navy from the logo */
  --ink-soft: #46606e;     /* muted slate body text */
  --primary: #0c7a90;      /* logo teal */
  --primary-dark: #08596b;
  --primary-tint: #e4f2f5; /* light teal wash */
  --accent: #0aa6c2;       /* bright teal — CTAs */
  --accent-dark: #0789a1;
  --star: #f5b301;         /* gold — star glyphs only */
  --cyan: #2bb6d0;         /* logo bright cyan — highlights */
  --paper: #ffffff;
  --cloud: #f6f9fb;        /* section background */
  --line: #e2eaef;
  --success: #1f9d57;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 3px rgba(15,35,48,.08), 0 1px 2px rgba(15,35,48,.06);
  --shadow-md: 0 10px 30px rgba(15,35,48,.10);
  --shadow-lg: 0 24px 60px rgba(12,80,112,.18);
  --maxw: 1080px;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-head: 'Lora', Georgia, 'Times New Roman', serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-head); line-height: 1.18; color: var(--ink); font-weight: 600; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); letter-spacing: -.01em; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1.1rem; }
a  { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.narrow { max-width: 760px; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .6rem;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center; overflow: hidden;
  background: transparent;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
/* Fallback only when the logo image is missing: show a teal "N" disc */
.brand-mark.is-letter {
  background: linear-gradient(135deg, var(--primary), #2bb6d0);
  color: #fff; font-weight: 800; font-family: var(--font-body); font-size: 1rem;
  box-shadow: var(--shadow-sm);
}

/* Supporting section photo (floated beside prose) */
.side-photo { width: 300px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.side-photo img { width: 100%; display: block; border-radius: var(--radius-lg); }
.side-photo.right { float: right; margin: 4px 0 16px 28px; }
.side-photo.left  { float: left;  margin: 4px 28px 16px 0; }
.side-photo .cap { font-size: .78rem; color: var(--ink-soft); text-align: center; padding: 8px 6px 0; }
.side-photo.bw img { filter: grayscale(100%) contrast(1.05); }
@media (max-width: 620px){ .side-photo.right, .side-photo.left { float: none; width: 100%; max-width: 360px; margin: 0 auto 20px; } }
.brand-name {
  font-family: var(--font-body); font-weight: 800; letter-spacing: -.01em;
  font-size: 1.06rem; color: var(--ink); line-height: 1;
}
.brand-name span { color: var(--primary); }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { color: var(--ink-soft); font-weight: 600; font-size: .95rem; }
.nav a:hover { color: var(--primary); text-decoration: none; }
.nav .nav-cta { display: inline-block; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: transparent; border: 0; cursor: pointer; padding: 9px; }
.nav-toggle i { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .2s; }
@media (max-width: 680px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute; top: 68px; left: 0; right: 0; background: #fff;
    flex-direction: column; align-items: stretch; gap: 0; padding: 6px 0;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); display: none;
  }
  .nav.open { display: flex; }
  .nav a:not(.nav-cta) { display: block; padding: 13px 22px; }
  .nav .nav-cta { margin: 8px 22px; text-align: center; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 700; font-size: 1.02rem;
  padding: .85rem 1.5rem; border-radius: 999px; border: 0; cursor: pointer;
  text-decoration: none; transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  line-height: 1.1;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #06222e; box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-dark { background: var(--primary); color: #fff; box-shadow: var(--shadow-md); }
.btn-dark:hover { background: var(--primary-dark); }
.btn-ghost { background: transparent; color: var(--primary); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--primary); background: var(--primary-tint); }
.btn-lg { font-size: 1.12rem; padding: 1.05rem 2rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 500px at 80% -10%, rgba(20,163,184,.16), transparent 60%),
    radial-gradient(900px 500px at 0% 110%, rgba(17,105,142,.12), transparent 55%),
    var(--cloud);
  padding: clamp(48px, 9vw, 96px) 0 clamp(56px, 9vw, 100px);
}
.hero h1 { margin: 0 0 1rem; }
.hero .lede { font-size: clamp(1.08rem, 2.2vw, 1.3rem); color: var(--ink-soft); max-width: 620px; margin-bottom: 1.8rem; }

/* Two-column hero with image */
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
@media (max-width: 900px){ .hero-grid { grid-template-columns: 1fr; gap: 30px; } }
.hero-media { position: relative; }
.hero-media img {
  width: 100%; height: 100%; max-height: 460px; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.hero-media .media-tag {
  position: absolute; left: 16px; bottom: 16px;
  background: rgba(15,35,48,.78); color: #fff; backdrop-filter: blur(4px);
  font-size: .82rem; font-weight: 600; padding: .5rem .9rem; border-radius: 999px;
}
@media (max-width: 900px){ .hero-media { order: 2; } }

/* ===== Polished hero composition (framed photo + glow + floating proof cards) ===== */
.hero-photo-wrap { position: relative; width: 100%; max-width: 460px; margin-left: auto; }
@media (max-width: 900px){ .hero-photo-wrap { margin: 0 auto; } }
.hero-photo-wrap::before {
  content: ""; position: absolute; inset: -10% -12% -14% -10%; z-index: 0;
  background:
    radial-gradient(55% 55% at 72% 18%, rgba(43,182,208,.40), transparent 70%),
    radial-gradient(60% 60% at 22% 92%, rgba(17,105,142,.34), transparent 70%);
  filter: blur(34px);
}
.hero-photo-wrap::after {
  content: ""; position: absolute; z-index: 0; right: -22px; top: 26px;
  width: 78%; height: 88%; border-radius: 28px;
  background: linear-gradient(160deg, var(--primary), #2bb6d0);
  opacity: .12; transform: rotate(4deg);
}
.hero-media .hero-photo {
  position: relative; z-index: 1; width: 100%; aspect-ratio: 4/5; max-height: 540px;
  object-fit: cover; object-position: 50% 32%;
  border-radius: 26px; border: 6px solid #fff;
  box-shadow: 0 34px 80px rgba(12,80,112,.30), 0 6px 18px rgba(12,80,112,.12);
  max-width: none;
}
.float-card {
  position: absolute; z-index: 3;
  background: rgba(255,255,255,.94); backdrop-filter: blur(10px);
  border: 1px solid rgba(226,234,239,.9); border-radius: 16px;
  box-shadow: 0 16px 36px rgba(12,80,112,.18);
  padding: .72rem .95rem; display: flex; align-items: center; gap: .65rem;
  animation: floatY 5s ease-in-out infinite;
}
.float-card--tr { top: 26px; right: -26px; }
.float-card--bl { bottom: 30px; left: -30px; animation-delay: 1.4s; }
.fc-ic {
  width: 38px; height: 38px; border-radius: 11px; flex: 0 0 auto;
  display: grid; place-items: center; font-size: 1.15rem;
  background: var(--primary-tint); color: var(--primary-dark);
}
.fc-stars { color: var(--star); font-size: 1rem; letter-spacing: 1px; }
.fc-text { display: flex; flex-direction: column; line-height: 1.15; }
.fc-text strong { font-family: var(--font-body); font-size: .92rem; color: var(--ink); font-weight: 800; }
.fc-text span { font-size: .76rem; color: var(--ink-soft); }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@media (prefers-reduced-motion: reduce){ .float-card { animation: none; } }
@media (max-width: 1000px){
  .float-card--tr { right: -10px; }
  .float-card--bl { left: -10px; }
}
@media (max-width: 560px){
  .float-card { padding: .6rem .75rem; }
  .float-card--tr { right: 6px; top: 14px; }
  .float-card--bl { left: 6px; bottom: 16px; }
  .fc-text span { display: none; }
}

/* Highlighted word in headline */
.hl { background: linear-gradient(180deg, transparent 60%, rgba(43,182,208,.45) 60%); padding: 0 .06em; border-radius: 2px; }

/* About portrait (placeholder for Pierre's photo) */
.about-portrait {
  float: right; width: 240px; margin: 0 0 18px 28px; border-radius: var(--radius-lg); overflow: hidden;
}
@media (max-width: 620px){ .about-portrait { float: none; width: 100%; max-width: 320px; margin: 0 auto 22px; } }
.about-portrait img { width: 100%; display: block; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); object-fit: cover; aspect-ratio: 4/5; }
.about-portrait .portrait-cap { text-align: center; font-size: .82rem; font-weight: 600; color: var(--ink-soft); margin-top: 8px; }
.photo-placeholder {
  width: 100%; aspect-ratio: 4/5; border-radius: var(--radius-lg);
  border: 2px dashed var(--line); background: var(--cloud);
  display: grid; place-items: center; text-align: center; color: var(--ink-soft); padding: 18px;
}
.photo-placeholder .ph-ic { font-size: 2rem; margin-bottom: 8px; opacity: .5; }
.photo-placeholder .ph-t { font-weight: 700; color: var(--ink); font-size: .95rem; }
.photo-placeholder .ph-s { font-size: .82rem; margin-top: 4px; }

/* Photographic product cover */
.product-cover.has-photo { padding: 0; overflow: hidden; }
.product-cover.has-photo img { width: 100%; height: 100%; object-fit: cover; }

/* Real book-cover image overlay (falls back to the styled text cover if the file is missing) */
.product-cover.cover-book { position: relative; }
.product-cover.cover-book .real-cover {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; object-position: center; z-index: 2;
  background: linear-gradient(150deg, #0c7a90, #08596b); padding: 12px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-note { font-size: .9rem; color: var(--ink-soft); margin-top: 1.1rem; }
.hero-note strong { color: var(--ink); }

/* ---------- Sections ---------- */
section { padding: clamp(48px, 8vw, 86px) 0; }
.section-cloud { background: var(--cloud); }
.section-tint { background: var(--primary-tint); }
.section-head { max-width: 680px; margin: 0 auto clamp(30px, 5vw, 50px); text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; }

/* ---------- About / philosophy ---------- */
.lead-quote {
  font-family: var(--font-head); font-size: clamp(1.3rem, 3vw, 1.9rem);
  line-height: 1.45; color: var(--ink); border-left: 4px solid var(--accent);
  padding: .2rem 0 .2rem 1.4rem; margin: 0 0 1.4rem;
}
.prose p { color: var(--ink-soft); font-size: 1.06rem; }
.prose strong { color: var(--ink); }

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 820px){ .pillars { grid-template-columns: 1fr; } }
.pillar {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow-sm);
}
.pillar .ic {
  width: 46px; height: 46px; border-radius: 12px; background: var(--primary-tint);
  color: var(--primary); display: grid; place-items: center; margin-bottom: 14px; font-size: 1.4rem;
}
.pillar h3 { margin: 0 0 .5rem; }
.pillar p { margin: 0; color: var(--ink-soft); font-size: .98rem; }

/* ---------- Product cards ---------- */
.products { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
@media (max-width: 820px){ .products { grid-template-columns: 1fr; } }
.product-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-top { padding: 30px 28px 0; }
.product-cover {
  height: 168px; margin: 4px 0 0; border-radius: 12px;
  display: grid; place-items: center; text-align: center; color: #fff;
  font-family: var(--font-head); font-weight: 600; padding: 18px;
}
.cover-book { background: linear-gradient(150deg, #0c7a90, #08596b); }
.cover-audio { background: linear-gradient(150deg, #0aa6c2, #08596b); color:#fff; }
.product-body { padding: 24px 28px 28px; display: flex; flex-direction: column; flex: 1; }
.product-kicker { font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--primary); margin-bottom: .4rem; }
.product-card h3 { font-size: 1.5rem; margin: 0 0 .6rem; }
.product-body p { color: var(--ink-soft); margin-bottom: 1rem; }
.product-meta { display:flex; align-items:center; gap:.6rem; margin: auto 0 1.1rem; font-size:.92rem; color: var(--ink-soft); }
.price-tag { font-family: var(--font-body); font-weight: 800; color: var(--ink); font-size: 1.15rem; }
.product-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- Bullets / checklist ---------- */
.checks { list-style: none; padding: 0; margin: 0 0 1.6rem; display: grid; gap: .8rem; }
.checks li { position: relative; padding-left: 2rem; color: var(--ink-soft); font-size: 1.04rem; }
.checks li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 1.4rem; height: 1.4rem; background: var(--success); color: #fff;
  border-radius: 50%; display: grid; place-items: center; font-size: .8rem; font-weight: 700;
}

/* ---------- Video placeholder ---------- */
.video-frame {
  position: relative; aspect-ratio: 16/9; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #08596b, #0c7a90);
  display: grid; place-items: center; color: #fff; text-align: center;
  box-shadow: var(--shadow-lg); overflow: hidden; border: 1px solid rgba(255,255,255,.1);
}
.video-frame .play {
  width: 76px; height: 76px; border-radius: 50%; background: rgba(255,255,255,.18);
  border: 2px solid rgba(255,255,255,.6); display: grid; place-items: center; margin: 0 auto 14px;
  backdrop-filter: blur(2px);
}
.video-frame .play::after {
  content: ""; display: block; width: 0; height: 0;
  border-left: 20px solid #fff; border-top: 13px solid transparent; border-bottom: 13px solid transparent;
  margin-left: 5px;
}
.video-frame .vf-label { font-size: .92rem; opacity: .85; }
.video-frame .vf-title { font-family: var(--font-head); font-size: 1.3rem; margin-top: .2rem; }

/* ---------- Callout / guarantee ---------- */
.callout {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; box-shadow: var(--shadow-sm); display: flex; gap: 20px; align-items: flex-start;
}
.callout .ic { font-size: 1.8rem; }
.callout h3 { margin: 0 0 .4rem; }
.callout p { margin: 0; color: var(--ink-soft); }

/* ---------- Price block (VSL) ---------- */
.buybox {
  max-width: 560px; margin: 0 auto; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 34px 32px; text-align: center;
}
.buybox .price { font-family: var(--font-body); font-weight: 800; font-size: 3rem; color: var(--ink); line-height: 1; }
.buybox .price small { font-size: 1rem; color: var(--ink-soft); font-weight: 600; }
.buybox .price-sub { color: var(--ink-soft); margin-bottom: 1.4rem; }
.buybox .trust { display:flex; justify-content:center; gap:1.2rem; flex-wrap:wrap; margin-top:1rem; font-size:.85rem; color: var(--ink-soft); }

/* ---------- Steps ---------- */
.steps { display:grid; grid-template-columns: repeat(3,1fr); gap: 22px; counter-reset: step; }
@media (max-width: 820px){ .steps { grid-template-columns: 1fr; } }
.step { background: var(--paper); border:1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow-sm); }
.step .n {
  width: 38px; height: 38px; border-radius: 50%; background: var(--primary); color:#fff;
  display:grid; place-items:center; font-weight:800; font-family: var(--font-body); margin-bottom: 12px;
}
.step h3 { margin: 0 0 .4rem; font-size: 1.12rem; }
.step p { margin: 0; color: var(--ink-soft); font-size: .97rem; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color:#fff; text-align:center; }
.cta-band h2 { color:#fff; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 560px; margin: 0 auto 1.6rem; font-size: 1.1rem; }

/* ---------- Back link ---------- */
.backlink { display:inline-flex; align-items:center; gap:.4rem; font-weight:600; color: var(--ink-soft); margin-bottom: 1.4rem; font-size:.95rem; }
.backlink:hover { color: var(--primary); text-decoration:none; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #c4d2db; padding: 50px 0 30px; }
.site-footer a { color: #c4d2db; }
.site-footer a:hover { color: #fff; }
.footer-grid { display:flex; justify-content:space-between; gap: 30px; flex-wrap: wrap; align-items: flex-start; }
.footer-brand { font-family: var(--font-body); font-weight: 800; color:#fff; font-size: 1.1rem; margin-bottom:.5rem; }
.footer-links { display:flex; gap: 22px; flex-wrap: wrap; font-size:.95rem; }
.disclaimer { border-top: 1px solid rgba(255,255,255,.12); margin-top: 28px; padding-top: 20px; font-size: .82rem; color: rgba(255,255,255,.55); max-width: 760px; }
.disclaimer strong { color: rgba(255,255,255,.75); }

/* ---------- Misc ---------- */
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.badge-row { display:flex; gap:.6rem; flex-wrap:wrap; justify-content:center; margin-top: 1rem; }
.badge { background: var(--primary-tint); color: var(--primary-dark); font-weight:600; font-size:.85rem; padding:.35rem .8rem; border-radius:999px; }

/* ===== Credibility strip ===== */
.stat-strip { background: var(--ink); }
.stat-strip .wrap { display:flex; flex-wrap:wrap; justify-content:center; gap: 16px 48px; padding: 24px 22px; text-align:center; }
.stat { display:flex; flex-direction:column; }
.stat .n { font-family: var(--font-body); font-weight:800; font-size:1.45rem; color:#fff; line-height:1.1; }
.stat .l { font-size:.82rem; color: rgba(255,255,255,.7); letter-spacing:.03em; margin-top:2px; }

/* ===== Testimonials ===== */
.tcards { display:grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
@media (max-width:820px){ .tcards{ grid-template-columns:1fr; } }
.tcard { background:var(--paper); border:1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-sm); display:flex; flex-direction:column; }
.tcard .stars { color: var(--star); margin-bottom: 10px; letter-spacing:1px; }
.tcard blockquote { margin:0 0 18px; font-size:1.06rem; color: var(--ink); line-height:1.55; font-family: var(--font-head); }
.tcard .who { display:flex; align-items:center; gap:12px; margin-top:auto; }
.tcard .who .av { width:42px; height:42px; border-radius:50%; background:var(--primary-tint); color:var(--primary-dark); display:grid; place-items:center; font-weight:800; flex:0 0 auto; }
.tcard .who .nm { font-weight:700; font-size:.95rem; }
.tcard .who .rl { font-size:.82rem; color:var(--ink-soft); }
.tcard.placeholder { border-style:dashed; background: var(--cloud); }
.tcard.placeholder blockquote { color: var(--ink-soft); font-style:italic; }

/* ===== Email capture ===== */
.capture { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color:#fff; }
.capture .wrap { text-align:center; }
.capture h2 { color:#fff; }
.capture > .wrap > p { color: rgba(255,255,255,.92); max-width:560px; margin:0 auto 1.5rem; font-size:1.06rem; }
.capture form { display:flex; gap:10px; max-width:520px; margin:0 auto; flex-wrap:wrap; justify-content:center; }
.capture input[type=email]{ flex:1; min-width:220px; padding:.95rem 1.2rem; border-radius:999px; border:0; font-size:1rem; font-family:var(--font-body); color:var(--ink); }
.capture .fineprint{ font-size:.8rem; color:rgba(255,255,255,.7); margin-top:1rem; }
.capture .ok { color:#fff; font-weight:700; margin-top:1.1rem; display:none; }

/* ===== Sticky mobile CTA ===== */
.sticky-cta { position:fixed; left:0; right:0; bottom:0; z-index:60; background:rgba(255,255,255,.97); backdrop-filter:blur(10px); border-top:1px solid var(--line); box-shadow:0 -6px 24px rgba(12,80,112,.14); padding:10px 16px; display:none; align-items:center; justify-content:space-between; gap:12px; }
.sticky-cta .sc-price{ font-weight:800; color:var(--ink); font-size:1.05rem; }
.sticky-cta .sc-price small{ color:var(--ink-soft); font-weight:600; font-size:.8rem; }
@media (max-width:768px){ .sticky-cta{ display:flex; } body.has-sticky{ padding-bottom:74px; } }

/* ===== Accessibility: visible keyboard focus ===== */
a:focus-visible, button:focus-visible, input:focus-visible, summary:focus-visible {
  outline: 3px solid var(--cyan); outline-offset: 2px; border-radius: 4px;
}

/* ===== FAQ accordion ===== */
.faq { max-width: 780px; margin: 0 auto; }
.faq details { border:1px solid var(--line); border-radius: var(--radius); background:var(--paper); margin-bottom:12px; box-shadow:var(--shadow-sm); }
.faq summary { cursor:pointer; list-style:none; padding:18px 22px; font-weight:700; color:var(--ink); display:flex; justify-content:space-between; align-items:center; gap:14px; }
.faq summary::-webkit-details-marker { display:none; }
.faq summary::after { content:"+"; font-size:1.5rem; color:var(--primary); font-weight:400; line-height:1; }
.faq details[open] summary { color:var(--primary); }
.faq details[open] summary::after { content:"\2013"; }
.faq .ans { padding: 0 22px 20px; color:var(--ink-soft); line-height:1.65; }
.faq details { transition: box-shadow .2s ease, transform .2s ease; }
.faq details:hover { box-shadow: var(--shadow-md); }

/* ===== 2026: organic wave dividers ===== */
.stat-strip, .capture, .cta-band, .site-footer { position: relative; }
.wave-top { position:absolute; left:0; top:0; width:100%; line-height:0; transform:translateY(-98%); pointer-events:none; }
.wave-top svg { display:block; width:100%; height:46px; }

/* ===== 2026: kinetic hero reveal ===== */
@media (prefers-reduced-motion: no-preference) {
  .hero .eyebrow, .hero h1, .hero .lede, .hero-cta, .hero-note { opacity:0; animation: heroIn .7s ease forwards; }
  .hero h1 { animation-delay:.08s; }
  .hero .lede { animation-delay:.16s; }
  .hero-cta { animation-delay:.24s; }
  .hero-note { animation-delay:.32s; }
  .hero-media { opacity:0; animation: heroIn .8s ease .22s forwards; }
  @keyframes heroIn { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:none; } }
  /* underline draws itself in */
  .hl { background-repeat:no-repeat; background-size:0% 100%; animation: hlDraw .8s cubic-bezier(.2,.7,.3,1) .55s forwards; }
  @keyframes hlDraw { to { background-size:100% 100%; } }
}

/* ===== 2026: scroll-reveal micro-interactions (applied via effects.js) ===== */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity:0; transform:translateY(22px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.in-view { opacity:1; transform:none; }
}

/* ===== 2026: subtle hover lifts ===== */
.pillar, .step { transition: transform .18s ease, box-shadow .18s ease; }
.pillar:hover, .step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.btn { transition: transform .14s ease, box-shadow .14s ease, background .14s ease; }
.btn:hover { transform: translateY(-2px); }
