/* ═══════════════════════════════════════════════════════════════
   PAWCASTCAM — LANDING PAGE
   Design language: DifferentDog-inspired editorial × Pawcast brand
   Fonts: Playfair Display (display) · Inter (body)
   Palette: Navy #0F1E35 · Amber #F5A623 · White · Cream
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. DESIGN TOKENS ──────────────────────────────────────────── */
:root {
  /* Core brand — Golden Hour (active default) */
  --jet:           #1D3D27;   /* primary dark — hero, dark sections */
  --jet-mid:       #28512E;   /* dark card backgrounds              */
  --jet-light:     #336640;   /* lighter dark surface               */
  --lime:          #F0B429;   /* primary accent — CTAs, highlights  */
  --lime-deep:     #C8901A;   /* hover on lime elements             */
  --lime-dark:     #9E6E10;   /* pressed / dark surface lime        */
  --lime-pale:     #FEF3D0;   /* light tint for pale sections       */
  --off-white:     #F7F4EE;   /* main page background               */
  --off-white-alt: #FFFFFF;   /* card surfaces in light sections    */
  --off-white-warm:#F2EDE3;   /* slightly warm card tint            */
  --white:         #FFFFFF;

  /* Semantic */
  --color-bg:          var(--off-white);
  --color-bg-alt:      var(--off-white-alt);
  --color-text:        var(--jet);
  --color-text-muted:  #3D5A3E;
  --color-text-faint:  #9CA3AF;
  --color-border:      #DDD8CC;
  --color-accent:      var(--lime);
  --color-accent-deep: var(--lime-deep);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Fluid type scale */
  --text-display:    clamp(36px, 5.5vw, 68px);
  --text-hero:       clamp(30px, 4.2vw, 56px);
  --text-heading:    clamp(26px, 3.2vw, 44px);
  --text-subheading: clamp(18px, 2vw, 26px);
  --text-body:       16px;
  --text-small:      14px;
  --text-caption:    12px;

  /* Line heights */
  --leading-tight:  1.1;
  --leading-snug:   1.3;
  --leading-normal: 1.65;
  --leading-loose:  1.8;

  /* Letter spacing */
  --tracking-tight:  -0.03em;
  --tracking-snug:   -0.02em;
  --tracking-normal: 0;
  --tracking-wide:   0.08em;
  --tracking-wider:  0.14em;

  /* Spacing */
  --space-section: clamp(72px, 10vw, 120px);
  --space-half:    clamp(36px, 5vw, 60px);
  --space-card:    32px;
  --space-gap:     24px;

  /* Border radius */
  --radius-xl:   28px;
  --radius-lg:   20px;
  --radius-md:   14px;
  --radius-sm:   8px;
  --radius-pill: 9999px;

  /* Shadows */
  --shadow-sm:    0 2px 8px rgba(20,20,20,0.06);
  --shadow-card:  0 4px 28px rgba(20,20,20,0.08);
  --shadow-float: 0 12px 40px rgba(20,20,20,0.18);
  --shadow-btn:   0 6px 28px rgba(240,180,41,0.40);

  /* Easing */
  --ease-out:    cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);

  /* Z-index */
  --z-sticky:   50;
  --z-dropdown: 100;
  --z-bar:      40;
}

/* ── 2. RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: var(--leading-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, picture, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
ul { list-style: none; }

/* ── 3. TYPOGRAPHY ─────────────────────────────────────────────── */
.display {
  font-family: var(--font-display);
  font-size: var(--text-display);
  font-weight: 900;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  text-wrap: balance;
}

.display em {
  font-style: italic;
  font-weight: 800;
  color: var(--amber);
}

.heading {
  font-family: var(--font-display);
  font-size: var(--text-heading);
  font-weight: 800;
  line-height: var(--leading-snug);
  letter-spacing: var(--tracking-tight);
  text-wrap: balance;
}

.subheading {
  font-family: var(--font-display);
  font-size: var(--text-subheading);
  font-weight: 700;
  line-height: var(--leading-snug);
  letter-spacing: var(--tracking-snug);
  text-wrap: balance;
}

.body-large {
  font-size: 17px;
  line-height: var(--leading-loose);
  color: var(--color-text-muted);
  max-width: 62ch;
}

.body-large strong {
  color: var(--color-text);
  font-weight: 600;
}

/* ── 4. LAYOUT UTILITIES ───────────────────────────────────────── */
.container {
  width: min(1360px, 90vw);
  margin-inline: auto;
}

.container--wide {
  width: min(1520px, 92vw);
  margin-inline: auto;
}

.section-pad {
  padding-block: var(--space-section);
}

.section-pad--half {
  padding-block: var(--space-half);
}

/* ── 5. IMAGE PLACEHOLDERS ─────────────────────────────────────── */
.img-ph {
  background: linear-gradient(145deg, var(--sky) 0%, var(--sky-mid) 100%);
  border: 1.5px dashed var(--sky-mid);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--color-text-faint);
  text-align: center;
  padding: 24px 16px;
  overflow: hidden;
  position: relative;
}

.img-ph::before {
  content: attr(data-ph);
  font-size: 11px;
  font-family: var(--font-body);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  opacity: 0.7;
  line-height: 1.5;
  max-width: 26ch;
}

.img-ph--hero {
  border-radius: var(--radius-xl);
  border: none;
  background: linear-gradient(160deg, #1A2A10 0%, #1F3014 60%, #141E0A 100%);
  min-height: 560px;
  color: rgba(196,241,53,0.35);
}

.img-ph--hero::before {
  color: rgba(196,241,53,0.35);
  font-size: 12px;
}

.img-ph--device {
  min-height: 240px;
  background: linear-gradient(145deg, var(--amber-pale) 0%, #FDE8B4 100%);
  border-color: rgba(245,166,35,0.2);
  color: var(--amber-deep);
}

.img-ph--device::before { color: var(--amber-deep); }

.img-ph--app {
  min-height: 480px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  border: none;
  border-radius: var(--radius-lg);
  color: rgba(255,255,255,0.35);
  max-width: 280px;
}

.img-ph--app::before { color: rgba(255,255,255,0.35); }

.img-ph--step {
  min-height: 200px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  border: none;
  border-bottom: 1.5px dashed var(--sky-mid);
}

.img-ph--box {
  min-height: 360px;
  background: linear-gradient(145deg, var(--off-white) 0%, #F0F2F5 100%);
  border-color: var(--color-border);
}

.icon-ph {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-ph::before {
  content: attr(data-ph);
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-align: center;
  line-height: 1.3;
}

/* ── 6. BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  border: none;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.btn-lg {
  font-size: 15px;
  letter-spacing: 0.04em;
  padding: 18px 36px;
  min-height: 56px;
}

.btn-md {
  font-size: 14px;
  letter-spacing: 0.03em;
  padding: 14px 28px;
  min-height: 48px;
}

.btn-sm {
  font-size: 13px;
  padding: 10px 20px;
  min-height: 40px;
}

/* Lime — primary CTA */
.btn-amber {
  background: var(--lime);
  color: var(--jet);
  font-weight: 800;
}

@media (hover: hover) and (pointer: fine) {
  .btn-amber:hover {
    background: var(--lime-deep);
    color: var(--jet);
    transform: translateY(-2px);
    box-shadow: var(--shadow-btn);
  }
}

.btn-amber:active { transform: scale(0.97); }

/* Bark Brown — secondary */
.btn-navy {
  background: var(--jet);
  color: var(--white);
}

@media (hover: hover) and (pointer: fine) {
  .btn-navy:hover {
    background: var(--jet-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-float);
  }
}

.btn-navy:active { transform: scale(0.97); }

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--color-border);
}

@media (hover: hover) and (pointer: fine) {
  .btn-outline:hover {
    border-color: var(--amber);
    color: var(--amber-deep);
    transform: translateY(-2px);
  }
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}

@media (hover: hover) and (pointer: fine) {
  .btn-outline-white:hover {
    border-color: var(--amber);
    color: var(--amber);
    transform: translateY(-2px);
  }
}

/* Transition on all btns — explicit properties only */
.btn {
  transition:
    transform 160ms var(--ease-out),
    box-shadow 160ms var(--ease-out),
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

/* ── 7. ANNOUNCEMENT BAR ───────────────────────────────────────── */
.announcement-bar {
  background: var(--lime);
  color: var(--jet);
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  position: relative;
  z-index: var(--z-sticky);
}

.announcement-bar a {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (hover: hover) and (pointer: fine) {
  .announcement-bar a:hover { opacity: 0.8; }
}

/* ── 8. NAVIGATION ─────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.nav--scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: 0 2px 16px rgba(15,30,53,0.07);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 20px;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.nav-logo-svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: block;
}

.nav-logo-text {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.025em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color 160ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .nav-links a:hover { color: var(--navy); }
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ── 9. HERO ───────────────────────────────────────────────────── */
.hero {
  padding: 20px 20px 0;
  background: var(--jet);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  min-height: clamp(580px, 88vh, 860px);
  max-width: min(1640px, calc(100vw - 40px));
  margin-inline: auto;
}

.hero-card {
  background: var(--jet);
  border-radius: var(--radius-xl);
  padding: clamp(36px, 5vw, 72px) clamp(28px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,241,53,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196,241,53,0.12);
  border: 1px solid rgba(196,241,53,0.3);
  color: var(--lime);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 28px;
  width: fit-content;
}

.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 900;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--white);
  text-wrap: balance;
  margin-bottom: 24px;
}

.hero-headline em {
  font-style: italic;
  color: var(--lime);
  font-weight: 800;
}

.hero-sub {
  font-size: 16px;
  line-height: var(--leading-loose);
  color: rgba(249,249,245,0.62);
  max-width: 52ch;
  margin-bottom: 36px;
}

.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-cta-note {
  font-size: 13px;
  color: rgba(249,249,245,0.42);
  padding-left: 4px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.hero-trust span {
  font-size: 12.5px;
  color: rgba(249,249,245,0.5);
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero-trust span::before {
  content: '✓';
  color: var(--lime);
  font-weight: 700;
  font-size: 11px;
}

.hero-photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  /* Grid item — must fill the full row height */
  align-self: stretch;
  display: flex;
}

/* Make picture + img fill the full hero card height */
.hero-photo picture {
  display: block;
  width: 100%;
  height: 100%;
  flex: 1;
}

.hero-photo picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-photo .img-ph--hero {
  height: 100%;
  border-radius: var(--radius-xl);
  min-height: 500px;
}

/* ── 10. PROOF BAR ─────────────────────────────────────────────── */
.proof-bar {
  background: var(--jet);
  padding-block: 32px;
  margin-top: -2px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.proof-item {
  background: var(--jet-mid);
  padding: 28px 24px;
  text-align: center;
}

.proof-val {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  color: var(--lime);
  line-height: 1;
  letter-spacing: var(--tracking-tight);
  margin-bottom: 8px;
  display: block;
}

.proof-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: rgba(255,255,255,0.55);
  display: block;
  margin-bottom: 4px;
}

.proof-sub {
  font-size: 11.5px;
  color: rgba(255,255,255,0.3);
  font-style: italic;
}

/* ── 10b. PARTNERS ─────────────────────────────────────────────── */
.partners {
  background: var(--off-white);
  padding-block: clamp(52px, 6vw, 80px);
}

.partners-intro {
  text-align: center;
  margin-bottom: 40px;
}

.partners-label {
  font-family: var(--font-display);
  font-size: var(--text-subheading);
  font-style: italic;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 0;
}

.partners-grid {
  display: flex;
  align-items: stretch;
  max-width: 920px;
  margin-inline: auto;
}

/* Thin vertical separator */
.partners-sep {
  width: 1px;
  flex-shrink: 0;
  align-self: stretch;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--color-border) 20%,
    var(--color-border) 80%,
    transparent
  );
}

/* Partner entry — no card chrome */
.partner-entry {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 28px 0;
  gap: 10px;
}

/* ── Logo zones ── */
.partner-logo-zone {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  margin-bottom: 4px;
}

/* Li & Fung — horizontal mark + wordmark */
.plz-lifung {
  display: flex;
  align-items: center;
  gap: 12px;
}

.plz-lf-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.plz-lf-wordmark {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.plz-lf-name {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--jet);
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}

.plz-lf-sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(20,20,20,0.32);
}

/* Rover — official SVG, brand green */
.plz-rover-svg {
  width: 120px;
  height: auto;
  display: block;
}

/* ── Partner body text ── */
.partner-category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--lime-dark, #7A9618);
  margin-bottom: 8px;
}

.partner-headline {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-text-muted);
  letter-spacing: -0.01em;
}

/* Mobile */
@media (max-width: 600px) {
  .partners-grid {
    flex-direction: column;
    max-width: 360px;
  }
  .partners-sep {
    width: 60%;
    height: 1px;
    align-self: center;
    background: linear-gradient(
      to right,
      transparent,
      var(--color-border) 20%,
      var(--color-border) 80%,
      transparent
    );
  }
  .partner-entry {
    padding: 0 24px;
  }
}

/* ── 11. PROBLEM SECTION ───────────────────────────────────────── */
.problem {
  background: var(--color-bg-alt);
  padding-block: var(--space-section);
}

.problem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}

.problem-copy { max-width: 52ch; }

.problem-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--lime-deep);
  margin-bottom: 20px;
}

.problem-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: var(--leading-snug);
  letter-spacing: var(--tracking-tight);
  color: var(--navy);
  margin-bottom: 24px;
  text-wrap: balance;
}

.problem-body {
  font-size: 16px;
  line-height: var(--leading-loose);
  color: var(--color-text-muted);
  margin-bottom: 16px;
  max-width: 52ch;
}

.problem-body strong {
  color: var(--navy);
  font-weight: 700;
}

.problem-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.problem-stat-bar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.bar-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 0.02em;
}

.bar-track {
  background: var(--color-border);
  border-radius: var(--radius-pill);
  height: 16px;
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
}

.bar-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  border-radius: var(--radius-pill);
  background: var(--lime);
  transition: width 1.2s var(--ease-out);
}

.bar-fill--seen  { width: 9%; }
.bar-fill--unseen { width: 91%; background: var(--jet); }

.bar-annotation {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
}

.bar-annotation .seen { color: var(--amber-deep); }
.bar-annotation .unseen { color: var(--navy); }

.problem-callout {
  background: var(--jet);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: white;
}

.problem-callout-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  color: var(--lime);
  line-height: 1;
  letter-spacing: var(--tracking-tight);
  margin-bottom: 8px;
}

.problem-callout-text {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  line-height: var(--leading-normal);
}

/* ── 12. HOW IT WORKS ──────────────────────────────────────────── */
.how {
  background: var(--color-bg);
  padding-block: var(--space-section);
}

.section-header {
  text-align: center;
  max-width: 56ch;
  margin-inline: auto;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.section-header .heading { margin-bottom: 12px; }

.section-header .body-large {
  margin-inline: auto;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-gap);
}

.step-card {
  background: var(--color-bg-alt);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-float);
  }
}

.step-visual { position: relative; }

.step-num {
  position: absolute;
  bottom: 16px;
  left: 16px;
  width: 40px;
  height: 40px;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
  color: var(--navy);
  z-index: 2;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.step-body { padding: 28px; }

.step-body h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: var(--tracking-snug);
  margin-bottom: 10px;
  text-wrap: balance;
}

.step-body p {
  font-size: 14.5px;
  line-height: var(--leading-loose);
  color: var(--color-text-muted);
}

.step-body .step-note {
  margin-top: 14px;
  font-size: 13px;
  font-style: italic;
  color: var(--amber-deep);
  font-weight: 500;
}

/* ── 13. SOLUTION PILLARS ──────────────────────────────────────── */
.solution {
  background: var(--jet);
  padding-block: var(--space-section);
}

.solution .heading,
.solution .body-large { color: var(--white); }

.solution .body-large { color: rgba(255,255,255,0.55); }

.solution .section-header { margin-bottom: clamp(40px, 6vw, 64px); }

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-gap);
}

.solution-card {
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.solution-card::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.solution-card--cam   { background: var(--jet-light); }
.solution-card--ai    { background: var(--jet-mid); }
.solution-card--diary {
  background: var(--jet);
  border: 2px solid rgba(196,241,53,0.35);
}

@media (hover: hover) and (pointer: fine) {
  .solution-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
  }
}

.solution-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 12px;
}

/* ── Solution card graphics (SVG containers) ───── */
.sg {
  width: 72px;
  height: 72px;
  margin-bottom: 22px;
  flex-shrink: 0;
}

.sg svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.solution-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: var(--tracking-snug);
  margin-bottom: 12px;
  text-wrap: balance;
}

.solution-card p {
  font-size: 14.5px;
  line-height: var(--leading-loose);
  color: rgba(255,255,255,0.62);
}

.solution-caption {
  margin-top: 18px;
  font-size: 13px;
  font-style: italic;
  color: var(--lime);
  font-weight: 500;
}

.solution-card--diary .solution-badge {
  display: inline-block;
  background: rgba(196,241,53,0.12);
  border: 1px solid rgba(255,128,73,0.3);
  color: var(--lime);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

/* ── 14. THE DIARY SECTION ─────────────────────────────────────── */
/* ── DIARY — Triptych redesign ──────────────────────────── */
.diary {
  background: var(--jet-mid);   /* slightly lighter than solution's --jet — creates visual break */
  padding-block: var(--space-section);
  position: relative;
  overflow: hidden;
}

/* Ambient glow behind the right phone */
.diary::after {
  content: '';
  position: absolute;
  top: 10%; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,241,53,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* 3-column triptych: phone | copy | phone */
.diary-triptych {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
}

/* ── Phone columns ── */
.dpt-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.dpt-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin: 0;
}

/* Phone frame containers — inherit diary4-frame styling */
.dpt-frame {
  background: #0E0E0E;
  padding: 10px;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.07),
    0 28px 70px rgba(0,0,0,0.55),
    0 8px 24px rgba(0,0,0,0.35);
}

.dpt-frame--sm {
  width: 100%;
  max-width: 240px;
  border-radius: 46px;
}

.dpt-frame--lg {
  width: 100%;
  max-width: 290px;
  border-radius: 52px;
  /* Subtle lime halo on the memoir phone */
  box-shadow:
    0 0 0 1px rgba(196,241,53,0.12),
    0 0 48px rgba(196,241,53,0.06),
    0 32px 80px rgba(0,0,0,0.6),
    0 8px 24px rgba(0,0,0,0.4);
}

.dpt-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.dpt-day {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
}

.dpt-word {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  letter-spacing: var(--tracking-snug);
}

.dpt-word--accent {
  color: var(--lime);
  font-size: 20px;
}

/* Diary phone screens use screenshot's native 9:19.5 ratio */
.dpt-screen {
  aspect-ratio: 9 / 19.5 !important;
  border-radius: 34px !important;
}

.dpt-screen img {
  border-radius: 34px;
}

/* ── Centre copy — light text on dark ── */
.diary-copy { max-width: 52ch; }

.diary-headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 900;
  line-height: var(--leading-snug);
  letter-spacing: var(--tracking-tight);
  color: var(--white);
  margin-bottom: 24px;
  text-wrap: balance;
}

.diary-headline em {
  font-style: italic;
  color: var(--lime);
}

.diary-body {
  font-size: 15px;
  line-height: var(--leading-loose);
  color: rgba(255,255,255,0.58);
  margin-bottom: 14px;
  max-width: 52ch;
}

.diary-body strong { color: rgba(255,255,255,0.88); font-weight: 700; }

.diary-body em { color: rgba(255,255,255,0.82); }

.diary-quote {
  margin-top: 28px;
  padding: 20px 24px;
  background: rgba(196,241,53,0.06);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(196,241,53,0.14);
}

.diary-quote blockquote {
  font-size: 14px;
  line-height: var(--leading-loose);
  color: rgba(255,255,255,0.75);
  font-style: italic;
  margin-bottom: 10px;
}

.diary-quote cite {
  font-size: 12.5px;
  font-style: normal;
  font-weight: 600;
  color: var(--lime);
}

/* ── DIARY — FOUR PHONE MILESTONES ───────────────────────────── */
.diary4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ── Phone frame ── */
.diary4-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.diary4-frame {
  width: 100%;
  background: #0E0E0E;
  border-radius: 32px;
  padding: 8px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.07),
    0 24px 60px rgba(0,0,0,0.45);
  position: relative;
}

.diary4-notch {
  width: 56px; height: 18px;
  background: #0E0E0E;
  border-radius: 0 0 12px 12px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  top: -1px;
}

.diary4-screen {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 9/16;
  background: #131313;
  position: relative;
}

/* ── App UI inside screen ── */
.diary4-ui {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.diary4-bar {
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 10px 10px 7px;
  flex-shrink: 0;
}

.diary4-bar-app {
  display: block;
  font-family: var(--font-body);
  font-size: 8.5px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
}

.diary4-bar-app strong { color: var(--lime); }

.diary4-bar-sub {
  display: block;
  font-size: 7px;
  color: rgba(255,255,255,0.28);
  margin-top: 1px;
}

/* ── Feed containers ── */
.diary4-feed {
  flex: 1;
  padding: 8px 8px 0;
  overflow: hidden;
  position: relative;
}

/* Day 1 — single hero entry */
.diary4-feed--day1 {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.diary4-new-badge {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--lime);
  background: rgba(196,241,53,0.12);
  border: 1px solid rgba(196,241,53,0.2);
  border-radius: 20px;
  padding: 3px 8px;
  width: fit-content;
}

.diary4-hero-entry {
  background: rgba(196,241,53,0.08);
  border: 1px solid rgba(196,241,53,0.15);
  border-radius: 6px;
  aspect-ratio: 16/9;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 5px 6px;
}

.diary4-entry-date {
  font-size: 7px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
}

.diary4-entry-dur {
  font-size: 7px;
  font-weight: 700;
  color: var(--lime);
}

.diary4-entry-caption {
  font-size: 6.5px;
  color: rgba(255,255,255,0.4);
  font-style: italic;
  line-height: 1.4;
}

.diary4-empty-hint {
  margin-top: auto;
  font-size: 6.5px;
  color: rgba(255,255,255,0.18);
  font-style: italic;
  padding-bottom: 8px;
}

/* Day 30 — 2-col thumbnail grid */
.diary4-feed--day30 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  align-content: start;
}

/* Day 365 — 3-col grid */
.diary4-feed--day365 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  align-content: start;
}

/* Day 1,095 — 4-col micro grid */
.diary4-feed--day1095 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  align-content: start;
}

/* Month section label */
.diary4-month-label {
  grid-column: 1 / -1;
  font-size: 6.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  padding: 2px 0 1px;
}

/* Individual thumbnail squares */
.diary4-thumb {
  aspect-ratio: 16/10;
  border-radius: 2px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.04);
}

.diary4-thumb--recent {
  background: rgba(196,241,53,0.14);
  border-color: rgba(196,241,53,0.12);
}

/* Bottom fade-out on all feeds (implies more below) */
.diary4-feed::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 32px;
  background: linear-gradient(0deg, #131313 0%, transparent 100%);
  pointer-events: none;
}

/* Placeholder label (visible until real screenshots) */
.diary4-ph-label {
  position: absolute;
  bottom: 6px; left: 0; right: 0;
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  text-align: center;
  line-height: 1.5;
  padding: 0 6px;
  z-index: 2;
}

/* ── Caption below phone ── */
.diary4-caption {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.diary4-day {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  display: block;
}

.diary4-word {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  font-style: italic;
  color: var(--color-text);
  display: block;
  letter-spacing: var(--tracking-snug);
}

.diary4-word--final {
  color: var(--lime-deep);
}


/* ── 15. SEGMENTS ──────────────────────────────────────────────── */
.segments {
  background: var(--color-bg-alt);
  padding-block: var(--space-section);
}

.segments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-gap);
}

/* Card image header — added when segment photos are available */
.segment-card-img {
  margin: -36px -28px 24px;  /* bleed to card edges */
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.segment-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  border: 1.5px solid var(--color-border);
  display: flex;
  flex-direction: column;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), border-color 220ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .segment-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-float);
    border-color: var(--amber);
  }
}

.segment-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--lime-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.segment-icon-wrap::before {
  content: attr(data-icon);
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--lime-deep);
  text-align: center;
}

.segment-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: var(--tracking-snug);
  margin-bottom: 12px;
  text-wrap: balance;
}

.segment-card p {
  font-size: 14.5px;
  line-height: var(--leading-loose);
  color: var(--color-text-muted);
  flex: 1;
  margin-bottom: 20px;
}

.segment-quote {
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.segment-quote blockquote {
  font-size: 14px;
  font-style: italic;
  color: var(--navy);
  line-height: var(--leading-normal);
  margin-bottom: 8px;
}

.segment-quote cite {
  font-size: 12.5px;
  font-style: normal;
  font-weight: 600;
  color: var(--color-text-faint);
}

/* ── 16. PRICING ───────────────────────────────────────────────── */
.pricing {
  background: var(--jet);
  padding-block: var(--space-section);
}

.pricing .section-header { margin-bottom: clamp(40px, 5vw, 56px); }
.pricing .heading { color: var(--white); }
.pricing .body-large { color: rgba(255,255,255,0.55); }

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 860px;
  margin-inline: auto;
}

.pricing-card {
  background: var(--jet-mid);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  border: 2px solid rgba(255,255,255,0.06);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.pricing-card--featured {
  background: var(--jet);
  border-color: var(--lime);
  box-shadow: 0 0 48px rgba(196,241,53,0.15);
}

@media (hover: hover) and (pointer: fine) {
  .pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  }
}

.pricing-popular-badge {
  display: inline-flex;
  align-items: center;
  background: var(--lime);
  color: var(--jet);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  width: fit-content;
  margin-bottom: 14px;
}

.pricing-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 8px;
}

.pricing-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: var(--tracking-snug);
  margin-bottom: 6px;
  text-wrap: balance;
}

.pricing-subtitle {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
  font-style: italic;
}

.pricing-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.pricing-was {
  font-size: 16px;
  color: rgba(255,255,255,0.3);
  text-decoration: line-through;
}

.pricing-cta-label {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 900;
  color: var(--lime);
  letter-spacing: var(--tracking-tight);
  line-height: 1;
}

.pricing-reserve-note {
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 28px;
  font-style: italic;
}

.pricing-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: var(--leading-normal);
}

.pricing-feature::before {
  content: '✓';
  color: var(--lime);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 3px;
}

.pricing-feature strong { color: var(--white); }

.pricing-cta { width: 100%; }

/* Subscription callout inside Starter Kit card */
.pricing-sub-callout {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,128,73,0.10);
  border: 1px solid rgba(196,241,53,0.25);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 20px;
}

.pricing-sub-badge {
  flex-shrink: 0;
  background: var(--lime);
  color: var(--jet);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.pricing-sub-detail {
  flex: 1;
  min-width: 0;
}

.pricing-sub-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
  line-height: 1.3;
}

.pricing-sub-items {
  font-size: 11.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pricing-sub-value {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-decoration: line-through;
  opacity: 0.7;
}

.pricing-cancel-note {
  text-align: center;
  font-size: 12.5px;
  color: rgba(255,255,255,0.35);
  margin-top: 10px;
  font-style: italic;
}

.pricing-guarantee {
  max-width: 560px;
  margin: 40px auto 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  text-align: center;
}

.pricing-guarantee p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: var(--leading-loose);
}

.pricing-guarantee strong { color: rgba(255,255,255,0.85); }

/* Spot counter */
.spot-counter {
  text-align: center;
  margin-top: 28px;
}

.spot-counter-bar {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-pill);
  height: 6px;
  max-width: 320px;
  margin: 12px auto 10px;
  overflow: hidden;
}

.spot-counter-fill {
  height: 100%;
  background: var(--lime);
  border-radius: var(--radius-pill);
  width: 62%;
  transition: width 1s var(--ease-out);
}

.spot-counter-text {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.spot-counter-text strong { color: rgba(255,255,255,0.8); }

/* ── 17. IN THE BOX ────────────────────────────────────────────── */
.inbox {
  background: var(--color-bg);
  padding-block: var(--space-section);
}

.inbox-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.inbox-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: var(--tracking-tight);
  margin-bottom: 12px;
  text-wrap: balance;
}

.inbox-sub {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: 32px;
  line-height: var(--leading-loose);
}

.inbox-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.inbox-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding-block: 20px;
  border-bottom: 1px solid var(--color-border);
  align-items: start;
}

.inbox-item:last-child { border-bottom: none; }

.inbox-item-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--lime-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.inbox-item-icon::before {
  content: attr(data-icon);
  font-size: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--lime-deep);
  text-align: center;
  line-height: 1.3;
}

.inbox-item-body {}

.inbox-item-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.inbox-item-spec {
  font-size: 12px;
  color: var(--lime-deep);
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}

.inbox-item-desc {
  font-size: 13.5px;
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
}

.inbox-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime-deep);
  background: var(--lime-pale);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  margin-top: 4px;
}

/* ── 18. SPECS ─────────────────────────────────────────────────── */
.specs {
  background: var(--color-bg-alt);
  padding-block: var(--space-section);
}

.specs-table {
  max-width: 680px;
  margin: 0 auto;
}

.spec-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 16px;
  padding-block: 16px;
  border-bottom: 1px solid var(--color-border);
  align-items: baseline;
}

.spec-row:last-child { border-bottom: none; }

.spec-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--color-text-faint);
}

.spec-value {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
  line-height: var(--leading-normal);
}

.spec-value em {
  font-style: normal;
  color: var(--color-text-muted);
  font-weight: 400;
  font-size: 13.5px;
}

.specs-note {
  max-width: 560px;
  margin: 32px auto 0;
  padding: 20px 24px;
  background: var(--lime-pale);
  border-radius: var(--radius-md);
  border: 1px solid rgba(196,241,53,0.2);
}

.specs-note p {
  font-size: 14px;
  color: var(--navy);
  line-height: var(--leading-loose);
}

.specs-note strong { font-weight: 700; }

/* ── 18a. MID-PAGE REEL INLINE (no heading, pure video row) ───── */
.reel-inline {
  background: var(--jet);
  overflow: hidden;
  /* Tiny top/bottom fade into the sections above/below */
  box-shadow: 0 -1px 0 var(--jet), 0 1px 0 var(--jet);
}

/* Reuses .reel-track and .reel-item from the reel-strip below */

/* Mobile: same horizontal scroll behaviour */
@media (max-width: 768px) {
  .reel-inline .reel-track {
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .reel-inline .reel-track::-webkit-scrollbar { display: none; }
  .reel-inline .reel-item { flex: 0 0 80vw; scroll-snap-align: start; }
}

/* ── 18b. REEL STRIP ───────────────────────────────────────────── */
.reel-strip {
  background: var(--jet);
  padding-top: clamp(52px, 6vw, 80px);
  overflow: hidden;
}

.reel-strip-intro {
  text-align: center;
  padding-bottom: clamp(36px, 4vw, 52px);
  max-width: 600px;
  margin-inline: auto;
}

.reel-strip-heading {
  font-family: var(--font-display);
  font-size: var(--text-heading);
  font-weight: 900;
  line-height: var(--leading-snug);
  letter-spacing: var(--tracking-tight);
  color: var(--white);
  text-wrap: balance;
  margin-bottom: 12px;
}

.reel-strip-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.50);
  line-height: var(--leading-normal);
}

/* Outer wrapper — clips the staggered offset overflow */
.reel-tracks {
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

/* Subtle bottom fade — sits over both rows */
.reel-tracks::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--jet));
  pointer-events: none;
  z-index: 1;
}

/* Full-bleed video row */
.reel-track {
  display: flex;
  width: 100%;
  flex-shrink: 0;
}


.reel-item {
  flex: 1;
  min-width: 0;
  aspect-ratio: 9 / 16;
  overflow: hidden;
}

.reel-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Mobile: single swipeable row */
@media (max-width: 768px) {
  /* Release overflow-hidden so horizontal scroll works */
  .reel-tracks {
    overflow: visible;
    gap: 0;
  }
  /* Hide the second row — single row is cleaner on mobile */
  .reel-tracks .reel-track:last-child {
    display: none;
  }
  /* Horizontal snap-scroll */
  .reel-track {
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .reel-track::-webkit-scrollbar { display: none; }
  /* 80vw so ~20% of next video peeks — clearly swipeable */
  .reel-item {
    flex: 0 0 80vw;
    scroll-snap-align: start;
  }
  /* Hide bottom fade on mobile — not needed for single row */
  .reel-tracks::after { display: none; }
}

/* ── 19. TESTIMONIALS ──────────────────────────────────────────── */
.testimonials {
  background: var(--color-bg);
  padding-block: var(--space-section);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-gap);
}

/* ── Card ── */
.testi-card {
  background: var(--color-bg-alt);
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--color-border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .testi-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-float);
  }
}

/* ── Photo slot ──
   Replace the <img> src with a real selfie photo (400×320px recommended).
   The dark gradient shows when no image is present — looks intentional. */
.testi-photo {
  aspect-ratio: 5 / 4;
  background: linear-gradient(160deg, var(--jet-light) 0%, var(--jet) 100%);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.testi-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  /* Hides broken-image indicator while photos are pending */
  color: transparent;
  font-size: 0;
}

/* Subtle paw watermark on placeholder — hidden once real photo loads */
.testi-photo img[src=""] ~ .testi-photo-ph,
.testi-photo-ph {
  display: none;
}

/* ── Card body ── */
.testi-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* ── Stars ── */
.testi-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}

.testi-star {
  width: 13px;
  height: 13px;
  background: var(--lime);
  border-radius: 2px;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

/* ── Quote ── */
.testi-quote {
  font-size: 15px;
  font-style: italic;
  line-height: var(--leading-loose);
  color: var(--color-text);
  flex: 1;
  margin-bottom: 20px;
}

/* ── Author ── */
.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--jet-light);
}

.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testi-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
}

.testi-meta {
  font-size: 12px;
  color: var(--color-text-faint);
  margin-top: 2px;
}

/* ── 20. FAQ ───────────────────────────────────────────────────── */
.faq {
  background: var(--color-bg-alt);
  padding-block: var(--space-section);
}

.faq-section-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--amber-deep);
  letter-spacing: var(--tracking-snug);
  text-transform: uppercase;
  margin-bottom: 12px;
  margin-top: 40px;
  font-size: 12px;
  letter-spacing: var(--tracking-wider);
}

.faq-section-title:first-child { margin-top: 0; }

.faq-list { max-width: 720px; margin-inline: auto; }

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding-block: 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  transition: color 160ms ease;
  min-height: 44px;
}

@media (hover: hover) and (pointer: fine) {
  .faq-trigger:hover { color: var(--amber-deep); }
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 200ms ease, transform 300ms var(--ease-out);
}

.faq-icon::before {
  content: '+';
  font-size: 16px;
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1;
  transition: color 200ms ease;
}

.faq-item.is-open .faq-icon {
  background: var(--lime);
  transform: rotate(45deg);
}

.faq-item.is-open .faq-icon::before { color: var(--navy); }

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 380ms var(--ease-out);
}

.faq-content-inner {
  padding-bottom: 22px;
  font-size: 15px;
  line-height: var(--leading-loose);
  color: var(--color-text-muted);
  max-width: 62ch;
}

/* ── 21. FINAL CTA ─────────────────────────────────────────────── */
.final-cta {
  background: var(--jet);
  padding-block: var(--space-section);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -160px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  color: var(--white);
  line-height: var(--leading-snug);
  letter-spacing: var(--tracking-tight);
  margin-bottom: 24px;
  text-wrap: balance;
  max-width: 16ch;
  margin-inline: auto;
}

.final-cta-body {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: var(--leading-loose);
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: 40px;
}

.final-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.final-cta-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  font-style: italic;
}

/* ── 22. FOOTER ────────────────────────────────────────────────── */
.footer {
  background: var(--jet);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-block: 40px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-logo {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.footer-logo span { color: var(--lime); }

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--lime);
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  transition: color 160ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .footer-links a:hover { color: rgba(255,255,255,0.8); }
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  text-align: right;
  line-height: var(--leading-loose);
}

/* ── 23. MOBILE STICKY CTA BAR ─────────────────────────────────── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--jet);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 12px 20px;
  z-index: var(--z-bar);
  box-shadow: 0 -8px 24px rgba(0,0,0,0.25);
}

.mobile-cta-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 480px;
  margin: 0 auto;
}

.mobile-cta-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.mobile-cta-label strong {
  display: block;
  font-size: 15px;
  color: var(--white);
  font-weight: 700;
}

/* ── 23b. VIDEO SAMPLE ─────────────────────────────────────────── */
.video-sample {
  background: var(--color-bg-alt);  /* white — separates it from the dark solution section */
}

.video-sample-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}

.video-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--lime-deep);
  margin-bottom: 18px;
}

.video-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 900;
  color: var(--color-text);
  line-height: var(--leading-snug);
  letter-spacing: var(--tracking-tight);
  margin-bottom: 20px;
  text-wrap: balance;
}

.video-body {
  font-size: 16px;
  line-height: var(--leading-loose);
  color: var(--color-text-muted);
  max-width: 48ch;
  margin-bottom: 24px;
}

.video-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.video-features li {
  font-size: 14.5px;
  color: var(--color-text-muted);
  padding-left: 20px;
  position: relative;
  line-height: var(--leading-normal);
}

.video-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--lime-deep);
  font-weight: 700;
  font-size: 12px;
  top: 2px;
}

.video-attribution {
  font-size: 13px;
  font-style: italic;
  color: var(--color-text-faint);
  line-height: var(--leading-normal);
  max-width: 44ch;
}

/* Phone frame */
.video-sample-visual {
  display: flex;
  justify-content: center;
}

.phone-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.phone-frame {
  width: 340px;
  background: #0E0E0E;
  border-radius: 56px;
  padding: 14px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 40px 100px rgba(0,0,0,0.55),
    0 12px 32px rgba(0,0,0,0.35);
  position: relative;
  flex-shrink: 0;
}

.phone-notch {
  width: 100px;
  height: 28px;
  background: #0E0E0E;
  border-radius: 0 0 18px 18px;
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.phone-screen {
  border-radius: 44px;
  overflow: hidden;
  aspect-ratio: 9/16;
  background: var(--jet-mid);
  position: relative;
}

.img-ph--video {
  width: 100%;
  height: 100%;
  border-radius: 44px;
  border: none;
  background: linear-gradient(180deg, #1A2A0A 0%, #1F3010 50%, #141E0A 100%);
  min-height: unset;
}

.img-ph--video::before {
  font-size: 9px;
  color: rgba(255,255,255,0.3);
  padding: 24px 12px 0;
  text-align: center;
}

/* App UI overlay inside the phone */
.phone-ui {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 14px 16px;
  pointer-events: none;
  z-index: 2;
}

.phone-ui-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-ui-app {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  font-family: var(--font-body);
}

.phone-ui-app strong { color: var(--lime); }

.phone-ui-badge {
  background: var(--lime);
  color: var(--jet);
  font-size: 9px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
}

.phone-ui-bottom {
  background: linear-gradient(0deg, rgba(0,0,0,0.72) 0%, transparent 100%);
  padding: 20px 0 4px;
  border-radius: 0 0 44px 44px;
  margin: 0 -14px -16px;
  padding-inline: 14px;
}

.phone-ui-caption {
  font-size: 11.5px;
  color: rgba(255,255,255,0.85);
  line-height: 1.45;
  margin-bottom: 6px;
  font-family: var(--font-body);
}

.phone-ui-time {
  font-size: 10px;
  font-weight: 700;
  color: var(--lime);
  font-family: var(--font-body);
}

/* Caption below phone */
.phone-caption {
  text-align: center;
  max-width: 280px;
}

.phone-caption-title {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
  margin-bottom: 12px;
  font-style: italic;
}

.share-chips {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.share-chip {
  background: var(--off-white);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

/* ── 23c. PRODUCT COLOURS ──────────────────────────────────────── */
.colors {
  background: var(--color-bg);
}

.colors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.color-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  border: 1.5px solid var(--color-border);
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), border-color 200ms ease;
  cursor: default;
}

@media (hover: hover) and (pointer: fine) {
  .color-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-float);
    border-color: var(--lime);
  }
}

.color-card-visual {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.img-ph--color {
  width: 100%;
  height: 100%;
  border-radius: 0;
  border: none;
  min-height: unset;
  background-color: var(--color-ph, #ccc);
  background-image: none;
}

.img-ph--color::before {
  font-size: 9px;
  text-align: center;
  color: rgba(255,255,255,0.5);
  padding: 0 12px;
}

.color-card-body {
  padding: 18px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.color-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--jet);
  letter-spacing: -0.01em;
}

.color-avail {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime-deep);
  background: var(--lime-pale);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.colors-footnote {
  text-align: center;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: var(--leading-loose);
  max-width: 56ch;
  margin-inline: auto;
}

/* ── 23d. IN THE BOX (revamped) ────────────────────────────────── */
.inbox {
  background: var(--off-white);
}

.inbox-flatlay {
  margin-bottom: 40px;
}

.img-ph--flatlay {
  width: 100%;
  border-radius: var(--radius-xl);
  border: none;
  min-height: 340px;
  background: linear-gradient(145deg, #F0EBE2 0%, #E8E0D4 100%);
  border: 1.5px dashed #D8CEBF;
}

.img-ph--flatlay::before {
  font-size: 11px;
  color: #A09480;
}

.inbox-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.inbox-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--color-border);
  display: flex;
  flex-direction: column;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), border-color 200ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .inbox-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--lime);
  }
}

.inbox-card--featured {
  border-color: rgba(196,241,53,0.30);
  background: var(--white);
}

/* ── Subscription badge (CSS-only, no image needed) ── */
.inbox-sub-badge-wrap {
  background: var(--jet) !important;
}

.inbox-sub-badge {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 16px;
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow */
.inbox-sub-badge::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,241,53,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.isb-paw {
  width: 36px; height: 36px;
  color: rgba(196,241,53,0.5);
  margin-bottom: 4px;
}

.isb-paw svg { width: 100%; height: 100%; }

.isb-number {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 52px);
  font-weight: 900;
  line-height: 1;
  color: var(--lime);
  letter-spacing: -0.04em;
}

.isb-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: lowercase;
  margin-top: -2px;
}

.isb-sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}

.inbox-card-img {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--off-white);
}

.img-ph--inbox-item {
  width: 100%;
  height: 100%;
  border-radius: 0;
  border: none;
  min-height: unset;
  background: linear-gradient(145deg, #F5F0E8 0%, #EDE5D8 100%);
}

.img-ph--inbox-item::before {
  font-size: 8px;
  color: #A09480;
  padding: 0 8px;
  text-align: center;
}

.img-ph--inbox-sub {
  background: linear-gradient(145deg, var(--lime-pale) 0%, #FCDFC6 100%);
}

.img-ph--inbox-sub::before { color: var(--lime-deep); }

.inbox-card-body {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.inbox-card-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--jet);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.inbox-card-spec {
  font-size: 11px;
  font-weight: 600;
  color: var(--lime-deep);
  letter-spacing: 0.02em;
}

.inbox-card-desc {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.5;
  flex: 1;
  margin-top: 2px;
}

.inbox-card-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime-deep);
  background: var(--lime-pale);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  margin-top: 6px;
  width: fit-content;
}

.inbox-camera-note {
  background: var(--lime-pale);
  border: 1.5px solid rgba(196,241,53,0.30);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: center;
}

.inbox-camera-note p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
}

.inbox-camera-note strong {
  color: var(--jet);
  font-weight: 700;
}

/* ── 24. ANIMATIONS ────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.85); }
}

@keyframes shimmer {
  from { background-position: -200% center; }
  to   { background-position: 200% center; }
}

/* Hero entrance stagger */
.hero-badge      { animation: fadeUp 0.55s var(--ease-out) 0ms    both; }
.hero-headline   { animation: fadeUp 0.65s var(--ease-out) 70ms   both; }
.hero-sub        { animation: fadeUp 0.55s var(--ease-out) 140ms  both; }
.hero-cta-wrap   { animation: fadeUp 0.55s var(--ease-out) 200ms  both; }
.hero-trust      { animation: fadeUp 0.55s var(--ease-out) 260ms  both; }
.hero-photo      { animation: fadeUp 0.7s  var(--ease-out) 120ms  both; }

/* Scroll reveals */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}

[data-reveal].visible {
  opacity: 1;
  transform: none;
}

[data-reveal]:nth-child(2) { transition-delay: 70ms; }
[data-reveal]:nth-child(3) { transition-delay: 140ms; }
[data-reveal]:nth-child(4) { transition-delay: 210ms; }
[data-reveal]:nth-child(5) { transition-delay: 280ms; }
[data-reveal]:nth-child(6) { transition-delay: 350ms; }

/* ── 25. RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { min-height: 75vh; }
  .solution-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .inbox-cards { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --space-section: clamp(48px, 11vw, 72px);
    --space-gap: 16px;
  }

  /* Prevent horizontal overflow */
  body { overflow-x: hidden; }
  .container { width: min(1360px, 94vw); }

  /* ── Announcement bar ── */
  .announcement-bar {
    font-size: 12px;
    padding: 9px 16px;
    line-height: 1.5;
  }

  /* ── Nav ── */
  .nav-links { display: none; }
  .nav-inner { padding-block: 14px; }

  /* ── Hero ── */
  .hero { padding: 12px 12px 0; }
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 12px;
  }
  .hero-photo { order: -1; }
  .hero-photo .img-ph--hero { min-height: 280px; }
  .hero-card { padding: 32px 24px; }
  .hero-headline { font-size: clamp(28px, 7.5vw, 48px); }
  .hero-cta-wrap .btn { width: 100%; justify-content: center; }

  /* ── Proof bar ── */
  .proof-grid { grid-template-columns: repeat(2, 1fr); }

  /* ── Partners ── */
  .partner-entry { padding: 8px 16px 0; }

  /* ── Problem ── */
  .problem-inner { grid-template-columns: 1fr; }

  /* ── How It Works ── */
  .steps-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }

  /* ── Solution ── */
  .solution-grid { grid-template-columns: 1fr; }

  /* ── Diary ── */
  .diary-triptych { grid-template-columns: 1fr; gap: 40px; }
  .dpt-phone--left { order: 1; }
  .diary-copy       { order: 2; }
  .dpt-phone--right { order: 3; }
  .dpt-frame--sm, .dpt-frame--lg { max-width: 280px; }

  /* ── Reel strip ── */
  .reel-strip-intro { padding-inline: 16px; }
  .reel-strip-heading { font-size: clamp(22px, 6vw, 32px); }

  /* ── Segments ── */
  .segments-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }

  /* ── Pricing ── */
  .pricing-cards { grid-template-columns: 1fr; max-width: 100%; }
  .pricing-card { padding: 28px 20px; overflow: hidden; }
  .pricing-title { font-size: 20px; }
  .pricing-sub-callout { flex-direction: column; align-items: flex-start; gap: 8px; }
  .pricing-sub-items { white-space: normal; }
  .pricing-guarantee { padding: 20px 16px; }
  .mobile-cta-label strong { font-size: 14px; }
  .mobile-cta-label { font-size: 12px; }

  /* ── Video sample ── */
  .video-sample-inner { grid-template-columns: 1fr; }
  .video-sample-visual { order: -1; }
  .phone-frame { width: 280px; }

  /* ── Colour picker ── */
  .colors-grid { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; }

  /* ── In the Box ── */
  .inbox-cards { grid-template-columns: repeat(2, 1fr); }
  .inbox-flatlay { min-height: 220px; }

  /* ── Specs ── */
  .spec-row { grid-template-columns: 1fr; gap: 4px; }
  .spec-label { font-size: 11px; }

  /* ── Testimonials ── */
  .testimonials-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }

  /* ── FAQ ── */
  .faq-question { min-height: 52px; padding-block: 16px; }

  /* ── Final CTA ── */
  .final-cta-headline { font-size: clamp(28px, 7vw, 48px); }
  .final-cta-actions .btn { min-width: 280px; }

  /* ── Footer ── */
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer-links { gap: 16px; }
  .footer-copy { text-align: left; }

  /* ── Mobile CTA bar ── */
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 80px; }
}

@media (max-width: 480px) {
  .hero-badge { font-size: 10px; padding: 6px 12px; }
  .hero-trust { flex-direction: column; gap: 6px; }
  .proof-item { padding: 20px 16px; }
  .announcement-bar { font-size: 11px; }

  /* In the Box: single column on small mobile */
  .inbox-cards { grid-template-columns: 1fr; max-width: 300px; margin-inline: auto; }

  /* Diary phones smaller */
  .dpt-frame--sm, .dpt-frame--lg { max-width: 240px; }

  /* Pricing */
  .pricing-card { padding: 24px 20px; }
}

/* ── 26. REDUCED MOTION ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-badge, .hero-headline, .hero-sub,
  .hero-cta-wrap, .hero-trust, .hero-photo {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
