/* ============================================================
   LUNCHBOX FORMULA — styles
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand colors (locked) */
  --navy: #123457;
  --cream: #f8f4ec;
  --peri: #c5ccfd;
  --peri-soft: #e4e7fc;
  --peri-dark: #5654bf;
  --teal: #29b18f;
  --mint: #b7fdc4;

  /* Functional */
  --ink: #123457;
  --ink-mid: #3a5070;
  --ink-soft: #7a91a8;
  --rule: rgba(18,52,87,.10);
  --rule-strong: rgba(18,52,87,.22);

  /* Layout */
  --sidebar-w: 248px;
  --sidebar-w-collapsed: 72px;

  /* Type */
  --serif: 'Instrument Serif', serif;
  --sans: 'Montserrat', sans-serif;
  --mono: 'Courier Prime', monospace;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ============ TYPOGRAPHY ============ */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow .dash { width: 22px; height: 1px; background: currentColor; display: inline-block; }

.h-display {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -2.4px;
  color: var(--navy);
}
.h-display .up { font-style: normal; }
.h-display .alt { color: var(--peri-dark); }
.accent-i { color: var(--peri-dark); font-style: italic; }

.h-section {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -1.2px;
  color: var(--navy);
}
.h-section .up { font-style: normal; }
.h-section .alt { color: var(--peri-dark); }

.lede {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-mid);
}

.body-copy {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-mid);
}

.fine {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: .3px;
}

/* ============ SHELL / LAYOUT ============ */
.shell {
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr;
  min-height: 100vh;
  transition: grid-template-columns .35s cubic-bezier(.4,.2,.2,1);
}

body[data-nav="top"] .shell { grid-template-columns: 0 1fr; }
main { min-width: 0; }

/* ============ SIDEBAR ============ */
.sidebar {
  background: var(--cream);
  border-right: 1px solid var(--rule);
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 28px 18px 22px;
  overflow: hidden;
  transition: padding .35s;
}
body[data-nav="top"] .sidebar { display: none; }

.sb-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 24px;
  padding: 4px 8px 0;
}
.sb-logo {
  width: 96px;
  height: auto;
  display: block;
}

.sb-url {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.4px;
  text-transform: lowercase;
  color: var(--ink-soft);
  margin-top: 10px;
}

.sb-section-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 14px 12px 10px;
}


.sb-nav {
  display: flex;
  flex-direction: column;
  gap: 1px;
  list-style: none;
  flex: 1;
  overflow-y: auto;
}
.sb-nav a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 12px;
  border-radius: 7px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-mid);
  text-decoration: none;
  transition: background .15s, color .15s;
  position: relative;
  white-space: nowrap;
}
.sb-nav a:hover { background: var(--peri-soft); color: var(--navy); }
.sb-divider { height: 1px; background: var(--rule); margin: 9px 12px; flex-shrink: 0; }

.sb-nav a.active {
  background: var(--navy);
  color: var(--cream);
}
.sb-nav a.active .sb-icon { color: var(--peri); }
.sb-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ink-soft);
}
.sb-nav a:hover .sb-icon { color: var(--navy); }
.sb-icon svg { width: 18px; height: 18px; }
.sb-label { flex: 0 1 auto; min-width: 0; }
.sb-pill {
  flex-shrink: 0;
  margin-left: 8px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: var(--mint);
  color: var(--navy);
  padding: 2px 5px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.sb-nav a.active .sb-pill { background: var(--peri); }

.sb-foot {
  margin-top: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sb-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--cream);
  border: none;
  padding: 8px 8px 8px 14px;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  justify-content: space-between;
  transition: background .15s;
}
.sb-cta:hover { background: #0c2440; }
.sb-cta-disc {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--peri);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}
.sb-cta-disc svg { width: 10px; height: 10px; }
.sb-cta-label.desktop { white-space: nowrap; }
.sb-cta-label.tablet { display: none; }

.sb-meta {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1.2px;
  color: var(--ink-soft);
  line-height: 1.6;
  padding: 0 4px;
}


/* ============ TOP NAV ============ */
.topnav {
  display: none;
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
  padding: 14px 6%;
  align-items: center;
  justify-content: space-between;
}
body[data-nav="top"] .topnav { display: flex; }
.topnav img { height: 40px; }
.topnav-right { display: flex; align-items: center; gap: 18px; }
.topnav-link {
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  color: var(--ink-mid); text-decoration: none; letter-spacing: .2px;
}
.topnav-link:hover { color: var(--navy); }
.topnav .sb-cta { padding: 7px 8px 7px 14px; font-size: 10px; }

/* ============ SECTIONS COMMON ============ */
section { padding: 88px 7%; position: relative; }
.section-inner { max-width: 1120px; margin: 0 auto; }
.section-inner.narrow { max-width: 880px; }

hr.rule { border: none; border-top: 1px solid var(--rule); margin: 0; }

/* ====== EDITORIAL SECTION HEADER — confident & visible ====== */
.sec-head {
  display: flex;
  align-items: baseline;
  gap: 22px;
  margin-bottom: 48px;
  padding-bottom: 18px;
  border-bottom: 1.5px solid var(--rule-strong);
}
.sec-head .num-stat {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -2px;
  color: var(--navy);
  flex-shrink: 0;
}
.sec-head .num-label {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 700;
}
.sec-head.invert .num-stat { color: var(--cream); }
.sec-head.invert .num-label { color: var(--cream); }
.sec-head.invert { border-bottom-color: rgba(248,244,236,.13); }

/* ============ COMMON CTA / FORM ============ */
.cta-form:focus-within {
  border-color: var(--navy);
  box-shadow: 0 6px 24px -16px rgba(18,52,87,.4);
}
.cta-form input::placeholder { color: rgba(18,52,87,.4); }

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--cream);
  border: none;
  cursor: pointer;
  padding: 7px 7px 7px 14px;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .15s;
}
.cta-btn:hover { background: #0c2440; }
.cta-btn .disc {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--peri);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: transform .3s, background .15s;
}
.cta-btn:hover .disc { transform: rotate(45deg); background: var(--mint); }
.cta-btn .disc svg { width: 11px; height: 11px; }

/* Standalone button (no form attached) */
.cta-btn.solo { padding: 8px 8px 8px 18px; font-size: 10.5px; }

/* Form-note */
.form-note {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--ink-soft);
  margin-top: 10px;
  letter-spacing: .3px;
  text-align: left;
}

/* On NAVY background */
.on-navy .cta-form {
  background: rgba(248,244,236,.06);
  border-color: rgba(248,244,236,.22);
}
.on-navy .cta-form input { color: var(--cream); }
.on-navy .cta-form input::placeholder { color: rgba(248,244,236,.4); }
.on-navy .cta-btn { background: var(--cream); color: var(--navy); }
.on-navy .cta-btn:hover { background: var(--peri); }
.on-navy .cta-btn .disc { background: var(--peri); color: var(--navy); }
.on-navy .cta-btn:hover .disc { background: var(--navy); color: var(--peri); }
.on-navy .form-note { color: var(--mint); }

/* On PERIWINKLE background */
.on-peri .cta-form {
  background: rgba(255,255,255,.45);
  border-color: rgba(18,52,87,.18);
}
.on-peri .cta-btn .disc { background: var(--cream); }
.on-peri .cta-btn:hover .disc { background: var(--mint); }
.on-peri .form-note { color: var(--peri-dark); }

/* ============================================================
   MISCHIEF KIT — hand-drawn marker emphasis
   ============================================================ */
.mark-scribble {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.mark-scribble svg.mk-line {
  position: absolute;
  left: -2%;
  bottom: -0.16em;
  width: 104%;
  height: 0.22em;
  color: var(--teal);
  pointer-events: none;
  overflow: visible;
}
.mark-scribble.peri svg.mk-line { color: var(--peri-dark); }
.mark-scribble.navy svg.mk-line { color: var(--navy); }
.mark-scribble.peri-light svg.mk-line { color: var(--peri); }

/* Wavy variant — slightly taller */
.mark-scribble.wavy svg.mk-line {
  height: 0.3em;
  bottom: -0.22em;
}

/* Double underline variant — slightly taller, sits lower */
.mark-scribble.double svg.mk-line {
  height: 0.32em;
  bottom: -0.28em;
}

/* Strikethrough — line crosses middle of text */
.mark-scribble.strike svg.mk-line {
  height: 0.22em;
  bottom: 35%;
}

/* Highlight — sits BEHIND text */
.mark-highlight {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.mark-highlight svg.mk-fill {
  position: absolute;
  left: -3%;
  top: 10%;
  width: 106%;
  height: 92%;
  color: var(--mint);
  z-index: -1;
  pointer-events: none;
}
.mark-highlight.peri svg.mk-fill { color: var(--peri); }
.mark-highlight > * { position: relative; z-index: 1; }

.mark-circle {
  position: relative;
  display: inline-block;
  padding: 0 6px;
  white-space: nowrap;
}
.mark-circle svg.mk-ring {
  position: absolute;
  left: -8%;
  top: -8%;
  width: 116%;
  height: 118%;
  color: var(--peri-dark);
  pointer-events: none;
}
.mark-circle.mint svg.mk-ring { color: var(--teal); }
.mark-circle.navy svg.mk-ring { color: var(--navy); }

.italic-peri {
  font-style: italic;
  color: var(--peri-dark);
}

.mk-aster-inline {
  display: inline-block;
  width: 0.7em;
  height: 0.7em;
  color: var(--teal);
  vertical-align: 0.18em;
  margin-right: 0.18em;
  flex-shrink: 0;
}

/* Sticky-note callout — playful, rotated, mono */
.sticky-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--mint);
  color: var(--navy);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 9px 14px;
  border-radius: 6px;
  transform: rotate(-3deg);
  box-shadow: 0 6px 0 -2px rgba(18,52,87,.06), 0 10px 24px -12px rgba(18,52,87,.18);
  white-space: nowrap;
}
.sticky-note.peri { background: var(--peri); color: var(--navy); }
.sticky-note.cream { background: var(--cream); color: var(--navy); border: 1px solid var(--rule-strong); }
.sticky-note.rot-right { transform: rotate(3deg); }
.sticky-note.rot-flat { transform: rotate(-1deg); }

/* Hand-drawn arrow */
.hand-arrow {
  display: inline-block;
  color: var(--navy);
  pointer-events: none;
}
.hand-arrow.mint { color: var(--teal); }
.hand-arrow.peri { color: var(--peri-dark); }

/* ============ HERO GIF ============ */
.hero-art {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-gif-wrap {
  position: relative;
  display: inline-block;
}
.hero-gif {
  display: block;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 324 / 405;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 20px 40px -24px rgba(18,52,87,.35);
}
.hero-gif-wrap .sticky-note {
  position: absolute;
  top: -12px;
  right: -16px;
  z-index: 3;
  transform: rotate(6deg);
}
.hero-gif-wrap .sticky-note.left {
  top: auto;
  bottom: 24px;
  right: auto;
  left: -28px;
  transform: rotate(-5deg);
}
.hero-gif-wrap .hand-arrow.from-text {
  position: absolute;
  top: -36px;
  left: -52px;
  width: 70px;
  height: 86px;
  color: var(--peri-dark);
  transform: rotate(-12deg);
}

/* Circle stamp — "LET·THE·KIDS" style rotating badge */
.circle-stamp {
  position: absolute;
  top: -34px;
  right: -34px;
  width: 130px;
  height: 130px;
  z-index: 3;
  transform: rotate(-14deg);
  filter: drop-shadow(0 8px 16px rgba(18,52,87,.18));
  animation: stampFloat 6s ease-in-out infinite;
}
.circle-stamp svg { width: 100%; height: 100%; display: block; }
@keyframes stampFloat {
  0%, 100% { transform: rotate(-14deg) translateY(0); }
  50% { transform: rotate(-12deg) translateY(-4px); }
}

/* Sticky note inside hero gif wrap */
.hero-gif-wrap > .sticky-note {
  position: absolute;
  bottom: 18px;
  left: -22px;
  z-index: 3;
  transform: rotate(-5deg);
}

/* ============ FORM widening ============ */
.cta-form {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  border: 1.5px solid var(--rule-strong);
  border-radius: 100px;
  padding: 5px 5px 5px 18px;
  max-width: 540px;
  width: 100%;
  transition: border-color .2s, box-shadow .2s;
}
.cta-form input {
  flex: 1 1 220px;
  min-width: 180px;
  border: none;
  background: transparent;
  outline: none;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--navy);
  padding: 8px 0;
}

/* ============ PROOF — PHONE MOCKUP WALL ============ */
.phone-wall {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  padding: 32px 0 40px;
  align-items: end;
}

.phone {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform .35s cubic-bezier(.4,.2,.2,1);
}
.phone:hover { transform: rotate(0) translateY(-6px) !important; z-index: 5; }

.phone-bezel {
  position: relative;
  width: 100%;
  background: #fafafa;
  border-radius: 28px;
  border: 6px solid #1a1a1d;
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,.05),
    0 24px 40px -22px rgba(18,52,87,.4),
    0 12px 20px -12px rgba(18,52,87,.2);
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}
.phone-notch {
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 16px;
  background: #1a1a1d;
  border-radius: 0 0 12px 12px;
  z-index: 4;
}
.phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 22px 6px;
  font-size: 11px;
  font-weight: 600;
  color: #1a1a1d;
  background: #fafafa;
}
.phone-status.light { color: #fff; background: #1a1a1d; }
.phone-status .ps-time { font-weight: 700; }
.phone-status .ps-right { display: inline-flex; align-items: center; gap: 5px; }
.phone-status svg { height: 10px; width: auto; color: currentColor; }
.phone-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: center;
}

/* ==== iMessage ==== */
.phone-imessage .phone-bezel { background: #fff; }
.phone-chat-header {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 8px 16px 14px;
  border-bottom: 1px solid #e5e5e7;
  background: #f6f6f7;
}
.pch-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 17px; font-family: var(--sans);
}
.pch-name { font-size: 12px; font-weight: 600; color: #1a1a1d; margin-top: 2px; }
.pch-sub { font-size: 10px; color: #8e8e93; }
.phone-chat-body {
  padding: 12px 14px 18px;
  display: flex; flex-direction: column; gap: 4px;
  min-height: 200px;
}
.bubble {
  max-width: 80%;
  padding: 8px 12px;
  border-radius: 18px;
  font-size: 12.5px;
  line-height: 1.35;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.bubble p { margin: 0; }
.bubble-them {
  background: #e9e9eb; color: #1a1a1d;
  border-bottom-left-radius: 6px;
  align-self: flex-start;
  margin-top: 4px;
}
.bubble-them + .bubble-them { border-top-left-radius: 6px; margin-top: 1px; }
.bubble-me {
  background: #007aff; color: #fff;
  border-bottom-right-radius: 6px;
  align-self: flex-end;
  margin-top: 4px;
}
.bubble-me + .bubble-me { border-top-right-radius: 6px; margin-top: 1px; }
.bubble-meta { font-size: 9px; color: #8e8e93; align-self: flex-end; margin-top: 6px; font-weight: 500; }

/* ==== Instagram DM ==== */
.phone-ig-dm .phone-bezel { background: #fff; }
.phone-ig-header {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px 12px;
  border-bottom: 1px solid #efefef;
}
.pig-avatar-ring {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(45deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
  padding: 2px;
}
.pig-avatar {
  width: 100%; height: 100%; border-radius: 50%;
  background: #c5ccfd;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 16px;
  border: 2px solid #fff;
}
.pig-name { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.pig-name strong { font-size: 13px; color: #1a1a1d; font-weight: 600; }
.pig-name span { font-size: 10px; color: #8e8e93; }
.phone-chat-body.ig-body { background: #fff; min-height: 180px; }
.bubble-ig-them {
  background: #efefef; color: #1a1a1d;
  border-radius: 18px;
  padding: 9px 14px;
  max-width: 78%;
  align-self: flex-start;
  font-size: 12.5px;
  line-height: 1.35;
  margin-top: 4px;
}
.bubble-ig-me {
  background: linear-gradient(135deg, #6b5cf5, #5654bf);
  color: #fff;
  border-radius: 18px;
  padding: 9px 14px;
  max-width: 78%;
  align-self: flex-end;
  font-size: 12.5px;
  line-height: 1.35;
  margin-top: 6px;
  font-weight: 600;
  margin-left: auto;
}
.phone-chat-body.ig-body { display: flex; flex-direction: column; }
.ig-reaction {
  margin-top: 4px; margin-left: 12px;
  background: #fff; border: 1px solid #efefef;
  border-radius: 100px;
  padding: 4px 10px;
  width: fit-content;
  font-size: 14px;
  box-shadow: 0 2px 8px -4px rgba(0,0,0,.1);
}

/* ==== Instagram post + comment ==== */
.phone-ig-post .phone-bezel { background: #fff; }
.phone-ig-post-header {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid #efefef;
}
.pig-avatar-sm {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 12px;
}
.pig-post-name { font-size: 12.5px; font-weight: 600; color: #1a1a1d; flex: 1; }
.pig-dots { font-size: 14px; color: #1a1a1d; letter-spacing: 2px; }
.phone-ig-image {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--peri-soft), var(--peri));
  overflow: hidden;
}
.phone-ig-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.ig-image-placeholder {
  width: 100%; height: 100%;
  background:
    radial-gradient(circle at 30% 40%, rgba(183,253,196,.7), transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(41,177,143,.5), transparent 35%),
    linear-gradient(135deg, var(--peri-soft), var(--peri));
  display: flex; align-items: center; justify-content: center;
}
.ig-image-tag {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--navy);
  background: rgba(248,244,236,.7);
  padding: 5px 10px; border-radius: 100px;
}
.phone-ig-actions {
  display: flex; gap: 12px;
  padding: 10px 12px 6px;
  color: #1a1a1d;
}
.phone-ig-actions svg { width: 22px; height: 22px; }
.phone-ig-comment { padding: 0 12px 14px; }
.ig-likes { font-size: 12px; color: #1a1a1d; margin-bottom: 8px; }
.ig-likes strong { font-weight: 600; }
.ig-comment-row { display: flex; gap: 8px; align-items: flex-start; padding-top: 6px; }
.ig-comment-row p {
  font-size: 11.5px; line-height: 1.4;
  color: #1a1a1d;
  margin: 0; flex: 1;
}
.ig-comment-row strong { font-weight: 600; }

/* ==== Tweet reply ==== */
.phone-tweet .phone-bezel.small {
  background: #fff;
  padding: 16px 16px 14px;
}
.phone-tweet .phone-notch { width: 40px; height: 12px; }
.tweet-header {
  display: flex; align-items: center; gap: 10px;
  margin-top: 14px; margin-bottom: 10px;
}
.tweet-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 13px;
  flex-shrink: 0;
}
.tweet-avatar.small { width: 22px; height: 22px; font-size: 10px; }
.tweet-meta { flex: 1; display: flex; flex-direction: column; }
.tweet-meta strong { font-size: 12.5px; color: #1a1a1d; font-weight: 700; }
.tweet-meta span { font-size: 10.5px; color: #536471; }
.tweet-dots { color: #536471; font-size: 14px; letter-spacing: 1.5px; }
.tweet-body { font-size: 13px; line-height: 1.45; color: #0f1419; margin: 0 0 14px; }
.tweet-body a { color: #1d9bf0; }
.tweet-reply {
  display: flex; gap: 8px; align-items: flex-start;
  padding: 10px;
  background: #f7f9f9;
  border-radius: 12px;
  margin-bottom: 12px;
}
.tweet-reply p { font-size: 11.5px; color: #0f1419; margin: 0; line-height: 1.4; }
.tweet-reply strong { font-weight: 600; }
.tweet-stats {
  display: flex; gap: 18px;
  font-size: 11px; color: #536471;
  padding-top: 6px;
  border-top: 1px solid #eff3f4;
}

/* ==== Asymmetric tilted grid ==== */
.phone-1 { grid-column: 1 / 4; transform: rotate(-3deg); }
.phone-2 { grid-column: 4 / 7; transform: rotate(2deg); margin-top: 48px; }
.phone-3 { grid-column: 7 / 10; transform: rotate(-2deg); margin-top: -16px; }
.phone-4 { grid-column: 10 / 13; transform: rotate(1.5deg); margin-top: 32px; }
.phone-5 { grid-column: 5 / 9; transform: rotate(-1deg); margin-top: -24px; }

/* Mint pill in proof sec-head */
.sec-head .dm-pill {
  margin-left: auto;
  background: var(--mint);
  color: var(--navy);
  border-radius: 100px;
  padding: 8px 16px;
  transform: none;
  box-shadow: none;
  letter-spacing: 1.6px;
  font-size: 10.5px;
  align-self: center;
}
.dm-wall-note {
  position: relative;
  margin-bottom: 24px;
  text-align: center;
}
.dm-wall-note .sticky-note {
  background: var(--mint);
  color: var(--navy);
  border-radius: 100px;
  padding: 8px 18px;
  transform: none;
  box-shadow: none;
  letter-spacing: 1.6px;
}
  display: flex;
  justify-content: flex-end;
  padding-right: 12%;
}

@media (max-width: 1100px) {
  .phone-wall { grid-template-columns: repeat(6, 1fr); gap: 28px; }
  .phone-1 { grid-column: 1 / 4; margin-top: 0; }
  .phone-2 { grid-column: 4 / 7; margin-top: 24px; }
  .phone-3 { grid-column: 1 / 4; margin-top: 0; }
  .phone-4 { grid-column: 4 / 7; margin-top: 0; }
  .phone-5 { grid-column: 2 / 6; margin-top: 0; }
}
@media (max-width: 640px) {
  .phone-wall { grid-template-columns: 1fr; gap: 36px; padding: 24px 0; }
  .phone-1, .phone-2, .phone-3, .phone-4, .phone-5 {
    grid-column: 1 / -1;
    margin-top: 0;
    transform: rotate(0);
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ============ WHY ============ */
.why { background: var(--cream); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.why-left h2 { margin-bottom: 26px; }
.why-left .body-copy { margin-bottom: 16px; max-width: 480px; }

/* Big pivot quote */
/* Big pivot quote — a moment of relief after the problem list */
.pivot-block {
  margin: 56px 0 8px;
  padding: 4px 0 4px 0;
  background: transparent;
  border: none;
  border-radius: 0;
  position: relative;
  max-width: 600px;
}
.pivot-block .quote-mark {
  display: none;
}
.pivot-block p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 23px;
  line-height: 1.7;
  color: var(--navy);
  letter-spacing: -.2px;
  display: inline;
  text-wrap: pretty;
  /* marker stripe — same mint vibe as the hero "actually work" */
  background-image: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 14%,
    rgba(183, 253, 196, 0.85) 14%,
    rgba(183, 253, 196, 0.85) 84%,
    transparent 84%
  );
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 2px 8px;
  margin-left: -4px;
}
.pivot-block .byline {
  display: block;
  margin-top: 26px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* Chaos cards (was bare list) */
.polaroid-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 28px;
  padding: 16px 8px 32px;
}
.polaroid {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--rule);
  padding: 18px 20px 20px;
  border-radius: 4px;
  box-shadow:
    0 1px 0 var(--rule),
    0 14px 28px -18px rgba(18,52,87,.28),
    0 6px 12px -8px rgba(18,52,87,.12);
  transition: transform .25s cubic-bezier(.4,.2,.2,1), box-shadow .25s;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 220px;
}
.polaroid:hover {
  transform: rotate(0) translateY(-4px) !important;
  box-shadow:
    0 1px 0 var(--rule),
    0 24px 40px -20px rgba(18,52,87,.32),
    0 10px 16px -8px rgba(18,52,87,.16);
  z-index: 2;
}
.polaroid.p-1 { transform: rotate(-2deg) translateY(0); background: var(--cream); }
.polaroid.p-2 { transform: rotate(1.8deg) translateY(14px); background: #faf6ee; }
.polaroid.p-3 { transform: rotate(-1.4deg) translateY(-8px); background: var(--cream); }
.polaroid.p-4 { transform: rotate(2.2deg) translateY(20px); background: #faf6ee; }

.polaroid .p-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--peri-dark);
  font-weight: 700;
}
.polaroid .p-ill {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 36px;
  height: 36px;
  color: var(--navy);
  opacity: .85;
}
.polaroid .p-ill svg { width: 100%; height: 100%; display: block; }
.polaroid .p-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -.6px;
  color: var(--navy);
  padding-right: 48px;
  text-wrap: balance;
}
.polaroid .p-body {
  font-family: var(--sans);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-mid);
  margin-top: auto;
}

/* Tape decoration on alternating cards */
.polaroid.p-1::before,
.polaroid.p-3::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 62px;
  height: 18px;
  background: rgba(183,253,196,.7);
  border-left: 1px dashed rgba(41,177,143,.3);
  border-right: 1px dashed rgba(41,177,143,.3);
  z-index: 3;
}
.polaroid.p-2::before,
.polaroid.p-4::before {
  content: '';
  position: absolute;
  top: -8px;
  right: 22px;
  transform: rotate(8deg);
  width: 54px;
  height: 16px;
  background: rgba(197,204,253,.7);
  border-left: 1px dashed rgba(86,84,191,.3);
  border-right: 1px dashed rgba(86,84,191,.3);
  z-index: 3;
}

@media (max-width: 720px) {
  .polaroid-stack { grid-template-columns: 1fr; gap: 32px; padding: 24px 8px; }
  .polaroid.p-1, .polaroid.p-2, .polaroid.p-3, .polaroid.p-4 { transform: rotate(0); }
}

/* ============ FAILS (NAVY) ============ */
.fails {
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.fails .h-section { color: var(--cream); }
.fails .lede { color: rgba(248,244,236,.78); max-width: 540px; margin-bottom: 0; }
.fails .h-section { font-size: clamp(32px, 4vw, 46px) !important; max-width: 640px !important; }

/* Intro row — illustration left, image bleeds RIGHT (into gap), not left */
.fails-intro {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
  position: relative;
}
.fails-intro-art {
  width: 220px;
  height: 200px;
  position: relative;
  overflow: visible;
}
.fails-intro-art img {
  position: absolute;
  width: 320px;
  height: 320px;
  left: -20px;
  top: 50%;
  transform: translateY(-50%) rotate(-4deg);
  object-fit: contain;
  display: block;
  opacity: .9;
  pointer-events: none;
}
.fails-intro-text { min-width: 0; padding-left: 8px; }
.fails-intro-text .h-section { max-width: none !important; }

@media (max-width: 820px) {
  .fails-intro {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
  }
  .fails-intro-art {
    width: 160px;
    height: 160px;
  }
  .fails-intro-art img {
    width: 240px;
    height: 240px;
    left: 0;
  }
  .fails-intro-text { padding-left: 0; }
}

/* ============ FAILS — cross-out scorecard ============ */
.fails-scorecard {
  margin-top: 32px;
  border-top: 1px solid rgba(248,244,236,.18);
}
.fs-row {
  display: grid;
  grid-template-columns: 40px minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(248,244,236,.1);
  transition: background .2s;
}
.fs-row:last-child { border-bottom: none; }
.fs-row:hover { background: rgba(197,204,253,.04); }

.fs-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.6px;
  color: rgba(248,244,236,.4);
  font-weight: 700;
  align-self: flex-start;
  padding-top: 4px;
}

.fs-bad {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fs-title {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -.2px;
  color: rgba(248,244,236,.85);
  line-height: 1.3;
  text-wrap: balance;
}
.fs-bad p {
  font-family: var(--sans);
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(248,244,236,.65);
  max-width: 460px;
}

/* Strikethrough variant for full headlines */
.mark-scribble.strike-wide {
  display: inline;
}
.mark-scribble.strike-wide svg.mk-line {
  position: absolute;
  left: -1%;
  bottom: auto;
  top: 42%;
  width: 102%;
  height: 0.22em;
  color: var(--mint);
  pointer-events: none;
  overflow: visible;
}

.fs-good {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 28px;
  border-left: 1.5px dashed rgba(197,204,253,.35);
}
.fs-good-label {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--peri);
  font-weight: 700;
}
.fs-good-text {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.2;
  letter-spacing: -.5px;
  color: var(--mint);
  text-wrap: balance;
}

/* Mobile — stack */
@media (max-width: 720px) {
  .fs-row {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 8px 14px;
    padding: 20px 0;
    align-items: start;
  }
  .fs-num { grid-row: 1; padding-top: 4px; }
  .fs-bad {
    grid-column: 2;
    grid-row: 1;
  }
  .fs-good {
    grid-column: 2;
    grid-row: 2;
    padding-left: 14px;
    border-left: 1.5px dashed rgba(197,204,253,.35);
    margin-top: 10px;
  }
  .fs-good-text { font-size: 17px; }
  .fs-title { font-size: 15px; }
}

.fails-pivot {
  margin-top: 40px;
  padding: 32px 36px;
  border: 1px dashed rgba(197,204,253,.4);
  border-radius: 16px;
  background: rgba(197,204,253,.06);
}
.fails-pivot .ill {
  width: 64px;
  height: 64px;
  color: var(--mint);
}
.fails-pivot p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  line-height: 1.32;
  color: var(--cream);
  letter-spacing: -.5px;
}
.fails-pivot strong {
  font-style: normal;
  font-weight: 400;
  color: var(--mint);
  border-bottom: 1.5px solid rgba(183,253,196,.4);
  padding-bottom: 1px;
}

/* ============ PILLARS ============ */
.pillars {
  background: var(--cream);
  position: relative;
}
.pillars-inner { max-width: 1080px; margin: 0 auto; }
.pillars-head { text-align: center; margin-bottom: 24px; max-width: 600px; margin-left: auto; margin-right: auto; }
.pillars-head h2 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -1.6px;
  color: var(--navy);
  margin-bottom: 14px;
  text-wrap: balance;
}
.pillars-head h2 .up { font-style: normal; }
.pillars-head h2 .alt { color: var(--peri-dark); }
.pillars-head .lede { max-width: 560px; margin: 0 auto; }

.lunchbox-vis {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  background: var(--navy);
  padding: 4px;
  border-radius: 18px;
  max-width: 760px;
  margin: 0 auto 28px;
}
.compartment {
  background: var(--cream);
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}
.compartment:nth-child(1) { border-radius: 14px 4px 4px 4px; }
.compartment:nth-child(2) { border-radius: 4px 14px 4px 4px; }
.compartment:nth-child(3) { border-radius: 4px 4px 4px 14px; }
.compartment:nth-child(4) { border-radius: 4px 4px 14px 4px; }
.compartment-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.8px;
  color: var(--ink-soft);
}
.compartment .ill {
  width: 56px;
  height: 56px;
  margin: 6px 0 10px;
  color: var(--navy);
}
.compartment h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -.8px;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.compartment h3 .up { font-style: normal; }
.compartment .role {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--teal);
}

.compartment.bonus {
  background: var(--peri);
  border-radius: 4px 4px 14px 14px;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px 22px;
}
.compartment.bonus .ill { width: 40px; height: 40px; margin: 0; color: var(--peri-dark); }
.compartment.bonus h3 { font-size: 22px; margin: 0; }
.compartment.bonus .role { color: var(--peri-dark); }
.compartment.bonus .bonus-label {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--peri-dark);
  padding: 5px 11px;
  border: 1px solid var(--peri-dark);
  border-radius: 100px;
}

.pillars-cta {
  text-align: center;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.pillars-cta .note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--navy);
  line-height: 1.7;
  text-wrap: pretty;
  max-width: 560px;
}
.pillars-cta .note span {
  background-image: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 14%,
    rgba(183, 253, 196, 0.85) 14%,
    rgba(183, 253, 196, 0.85) 84%,
    transparent 84%
  );
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 2px 8px;
}

/* ============ AUTHORITY (PERIWINKLE) ============ */
.authority {
  background: var(--peri);
  position: relative;
  overflow: hidden;
  padding: 104px 7%;
}
.auth-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}
.auth-quote-block {
  position: relative;
  padding-left: 8px;
}
.auth-quote-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 220px;
  line-height: .6;
  color: var(--navy);
  display: block;
  margin-bottom: -40px;
  margin-left: -16px;
}
.auth-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.08;
  letter-spacing: -1.6px;
  color: var(--navy);
  margin-bottom: 28px;
  text-wrap: balance;
}
.auth-byline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding-top: 18px;
  border-top: 1px solid rgba(18,52,87,.18);
  max-width: 360px;
}
.auth-byline .sig {
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  color: var(--navy);
  letter-spacing: -.5px;
}
.auth-byline .role {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--peri-dark);
}

.auth-points {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.auth-points-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--peri-dark);
  font-weight: 700;
  padding-bottom: 16px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(18,52,87,.18);
  display: block;
}
.auth-point {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(18,52,87,.12);
  align-items: baseline;
}
.auth-point:last-child { border-bottom: none; }
.auth-point-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.6px;
  color: var(--peri-dark);
  font-weight: 700;
  padding-top: 2px;
}
.auth-point p {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--navy);
  font-weight: 400;
}
.auth-point p strong {
  font-weight: 600;
  color: var(--navy);
}

/* ============ OUTCOMES ============ */
.outcomes { background: var(--cream); }
.outcomes .section-inner { position: relative; }
.outcomes-fork {
  position: absolute;
  top: 92px;
  right: -16px;
  width: 230px;
  height: 230px;
  z-index: 1;
  color: #0a0a0a;
  transform: rotate(-12deg);
  pointer-events: none;
}
.outcomes-fork-mask {
  display: block;
  width: 100%;
  height: 100%;
  background: currentColor;
  -webkit-mask: var(--icon-url) center/contain no-repeat;
  mask: var(--icon-url) center/contain no-repeat;
}
@media (max-width: 900px) {
  .outcomes-fork { width: 160px; height: 160px; top: 60px; right: -10px; opacity: .85; }
}
@media (max-width: 640px) {
  .outcomes-fork { display: none; }
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.outcome-card {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background .2s, border-color .2s;
  position: relative;
}
.outcome-card:hover {
  background: var(--peri-soft);
  border-color: var(--peri);
}
.outcome-card .ill {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  color: var(--navy);
  opacity: .65;
}
.outcome-card .ill svg { width: 100%; height: 100%; display: block; }
.outcome-card .o-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 700;
  background: var(--mint);
  padding: 5px 12px;
  border-radius: 100px;
  align-self: flex-start;
  white-space: nowrap;
}
.outcome-card h4 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -.5px;
  margin-bottom: 6px;
}
.outcome-card p {
  font-family: var(--sans);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-mid);
}

/* ============ INLINE CTA (NAVY strip) ============ */
.inline-cta {
  background: var(--navy);
  padding: 44px 7%;
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.inline-cta-thumb {
  position: absolute;
  right: 0;
  left: auto;
  top: 50%;
  transform: translateY(-50%) rotate(8deg) scaleX(-1);
  width: 130px;
  height: 130px;
  pointer-events: none;
  z-index: 1;
  color: var(--cream);
  opacity: .95;
}
.inline-cta-thumb-mask {
  display: block;
  width: 100%;
  height: 100%;
  background: currentColor;
  -webkit-mask: var(--icon-url) center/contain no-repeat;
  mask: var(--icon-url) center/contain no-repeat;
}
.inline-cta-inner {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding-left: 0;
  padding-right: 130px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.inline-cta p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.22;
  color: var(--cream);
  letter-spacing: -.6px;
  max-width: 580px;
}
.inline-cta p .up { font-style: normal; color: var(--mint); }
.inline-cta .cta-form-wrap { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.inline-cta .cta-form {
  background: rgba(248,244,236,.06);
  border-color: rgba(248,244,236,.22);
}
.inline-cta .cta-form input { color: var(--cream); }
.inline-cta .cta-form input::placeholder { color: rgba(248,244,236,.4); }
.inline-cta .cta-btn { background: var(--cream); color: var(--navy); }
.inline-cta .cta-btn:hover { background: var(--peri); }
.inline-cta .cta-btn .disc { background: var(--peri); }
.inline-cta .form-note { color: var(--mint); margin-top: 0; }

/* ============ INSIDE (PERIWINKLE) ============ */
.inside { background: var(--peri); position: relative; overflow: hidden; }
.inside-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: center;
}
.inside-left h2 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(38px, 4.6vw, 56px);
  line-height: 1;
  letter-spacing: -1.6px;
  color: var(--navy);
  margin-bottom: 18px;
}
.inside-left h2 .up { font-style: normal; }
.inside-left h2 .num-inline {
  font-style: normal;
  color: var(--peri-dark);
  letter-spacing: -2px;
}
.inside-left .body-copy {
  margin: 16px 0 24px;
  max-width: 360px;
  color: var(--navy);
}
.inside-left .cta-form {
  background: rgba(255,255,255,.45);
  border-color: rgba(18,52,87,.18);
}
.inside-left .form-note { color: var(--peri-dark); }

.inside-illustration {
  margin-top: 28px;
  width: 100%;
  max-width: 280px;
  color: var(--peri-dark);
  opacity: .55;
}

.inside-list {
  background: var(--cream);
  border-radius: 16px;
  padding: 8px 22px;
  border: 1px solid rgba(18,52,87,.1);
}
.inside-row {
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 40px 44px 1fr;
  gap: 14px;
  align-items: center;
}
.inside-row:last-child { border-bottom: none; }
.inside-row .num {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 1.4px;
  color: var(--peri-dark);
}
.inside-row .ill {
  width: 36px;
  height: 36px;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.inside-row .title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 19px;
  letter-spacing: -.3px;
  color: var(--navy);
  line-height: 1.25;
}
.inside-row .tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--peri-dark);
  white-space: nowrap;
  padding: 4px 9px;
  background: var(--peri-soft);
  border-radius: 100px;
}

/* ============ PROOF ============ */
.proof { background: var(--cream); }
.proof-head {
  display: flex;
  align-items: baseline;
  gap: 32px;
  margin-bottom: 40px;
  padding-bottom: 0;
  border-bottom: none;
  flex-wrap: wrap;
}
.proof-stat-block {
  display: flex;
  align-items: baseline;
  gap: 28px;
  flex-wrap: wrap;
  max-width: 100%;
}
.proof-stat {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(64px, 7.5vw, 108px);
  letter-spacing: -4px;
  color: var(--navy);
  line-height: .9;
  flex-shrink: 0;
}
.proof-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.18;
  letter-spacing: -.6px;
  color: var(--navy);
  max-width: 340px;
  margin: 0;
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.quote-card {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  min-height: 200px;
}
.quote-card.featured {
  background: var(--navy);
  border-color: transparent;
  grid-column: span 6;
}
.quote-card.featured blockquote { color: var(--cream); font-size: 22px; }
.quote-card.featured .q-source { color: var(--peri); }
.quote-card:not(.featured) { grid-column: span 4; }
.quote-card:not(.featured):last-child { grid-column: span 6; }
.quote-card blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.42;
  color: var(--navy);
  letter-spacing: -.2px;
}
.q-source {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.q-source::before { content: '— '; }

/* ============ HONEST (PERIWINKLE) ============ */
.honest {
  background: var(--peri);
  padding: 88px 7%;
  position: relative;
  overflow: hidden;
}
.honest-inner {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.honest-text { max-width: 480px; }
.honest h2 {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.04;
  letter-spacing: -1.4px;
  color: var(--navy);
  margin: 14px 0 22px;
}
.honest h2 .up { font-style: normal; }
.honest .body-copy { margin-bottom: 12px; color: var(--navy); }
.honest-em {
  margin-top: 24px;
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--peri-dark);
  padding: 12px 0;
  border-top: 1.5px solid var(--peri-dark);
  border-bottom: 1.5px solid var(--peri-dark);
}
.honest-illustration {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.honest-illustration .ill-wrap {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1;
  background: rgba(255,255,255,.4);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px;
  color: var(--navy);
  position: relative;
}
.honest-illustration .ill-wrap svg { width: 100%; height: 100%; }
.honest-illustration .badge {
  position: absolute;
  top: -14px;
  right: -10px;
  background: var(--mint);
  color: var(--navy);
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  transform: rotate(8deg);
  white-space: nowrap;
}

/* ============ FINAL CTA ============ */
.final {
  background: var(--navy);
  color: var(--cream);
  padding: 104px 7% 96px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 2; }
.final-trigger {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(19px, 2.2vw, 26px);
  color: var(--peri);
  margin-bottom: 18px;
  letter-spacing: -.4px;
  line-height: 1.3;
}
.final h2 {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.08;
  letter-spacing: -1.2px;
  color: var(--cream);
  margin-bottom: 36px;
  text-wrap: balance;
}
.final h2 .up { font-style: normal; }
.final h2 .alt { color: var(--peri); font-style: italic; }
.final .cta-form {
  background: rgba(248,244,236,.06);
  border-color: rgba(248,244,236,.22);
  margin: 0 auto;
}
.final .cta-form input { color: var(--cream); }
.final .cta-form input::placeholder { color: rgba(248,244,236,.4); }
.final .cta-btn { background: var(--cream); color: var(--navy); }
.final .cta-btn:hover { background: var(--peri); }
.final .cta-btn .disc { background: var(--peri); color: var(--navy); }
.final .cta-btn:hover .disc { background: var(--navy); color: var(--peri); }
.final .form-note { color: var(--mint); margin-top: 14px; }

.final-blob {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: .08;
  color: var(--peri);
}
.final-blob.left { top: 40px; left: 8%; width: 100px; }
.final-blob.right { bottom: 40px; right: 8%; width: 120px; }

/* ============ FOOTER ============ */
footer {
  background: var(--cream);
  padding: 36px 7% 0;
  border-top: 1px solid var(--rule);
  display: block;
}
footer .f-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  padding-bottom: 28px;
}
footer .f-left img { height: 68px; display: block; }
footer .f-mid {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
footer .f-mid a {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
}
footer .f-mid a:hover { color: var(--navy); }
footer .f-right { display: flex; justify-content: flex-end; align-items: center; gap: 10px; }
footer .f-right a,
footer .f-right .footer-cookie-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--navy);
  border: 1px solid var(--navy);
  color: var(--mint);
  text-decoration: none;
  cursor: pointer;
  padding: 0;
  transition: background .18s, color .18s, transform .18s, border-color .18s;
}
footer .f-right a:hover,
footer .f-right .footer-cookie-btn:hover {
  background: var(--peri-dark);
  color: var(--mint);
  border-color: var(--peri-dark);
  transform: translateY(-3px);
}
footer .f-right a svg { width: 16px; height: 16px; }
footer .f-right .footer-cookie-btn .cookie-ico {
  width: 24px; height: 24px;
  display: block;
  background-color: var(--mint);
  -webkit-mask: url("/__l5e/assets-v1/f4a5d05e-4f46-472e-ac49-3272345ceb84/cookie-icon.png") center / contain no-repeat;
          mask: url("/__l5e/assets-v1/f4a5d05e-4f46-472e-ac49-3272345ceb84/cookie-icon.png") center / contain no-repeat;
}
footer .f-bottom {
  border-top: 1px solid var(--rule);
  padding: 18px 0;
  text-align: center;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .hero-grid, .why-grid, .auth-inner, .inside-grid, .honest-inner { grid-template-columns: 1fr; gap: 48px; }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-head { grid-template-columns: 1fr; gap: 24px; }
  .quote-card.featured, .quote-card:not(.featured) { grid-column: span 12; }
  .inline-cta-inner { grid-template-columns: 1fr; gap: 20px; padding-left: 0; padding-right: 120px; }
  .inline-cta .cta-form-wrap { align-items: flex-start; }
  .inline-cta-thumb { width: 110px; height: 110px; }
}
@media (max-width: 820px) {
  .shell { grid-template-columns: 0 1fr !important; }
  .sidebar { display: none; }
  .topnav { display: flex; }
  section { padding: 64px 6%; }
  .fails-grid, .outcomes-grid { grid-template-columns: 1fr; }
  .lunchbox-vis { grid-template-columns: 1fr; }
  .compartment.bonus { grid-template-columns: 1fr; gap: 12px; }
  .sec-head { flex-wrap: wrap; gap: 12px; }
  .sec-head .num-stat { font-size: 44px; }
  footer .f-top { grid-template-columns: 1fr; text-align: left; gap: 20px; padding-bottom: 22px; }
  footer .f-mid { justify-content: flex-start; gap: 18px 22px; }
  footer .f-right { justify-content: flex-start; }
  .fails-pivot { grid-template-columns: 1fr; }
}
@media (min-width: 821px) and (max-width: 1024px) {
  footer { padding: 32px 5% 0; }
  footer .f-top {
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    padding-bottom: 22px;
  }
  footer .f-left img { height: 56px; }
  footer .f-mid { gap: 18px 20px; }
  footer .f-mid a { font-size: 10px; letter-spacing: 1.4px; }
  footer .f-right { gap: 8px; }
  footer .f-right a,
  footer .f-right .footer-cookie-btn { width: 32px; height: 32px; }
  footer .f-right a svg { width: 14px; height: 14px; }
  footer .f-right .footer-cookie-btn .cookie-ico { width: 20px; height: 20px; }
  footer .f-bottom { padding: 10px 0; }
}


/* ============ HERO SECTION (restored) ============ */
.hero {
  padding: 72px 7% 88px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}
.hero-left .eyebrow { margin-bottom: 60px; }
.hero-left .eyebrow .eyebrow-dot { opacity: .55; }

.hero-h1 {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(36px, 7vw, 60px);
  line-height: 1.02;
  letter-spacing: -1.8px;
  color: var(--navy);
  margin-bottom: 28px;
  text-wrap: pretty;
}
.hero-h1 .mark-highlight { white-space: normal; }

.hero-lede {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-mid);
  max-width: 520px;
  margin-bottom: 28px;
  font-weight: 400;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.trust-item {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
@media (max-width: 560px) {
  .trust-row { flex-wrap: wrap; gap: 12px 16px; }
}
.trust-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  display: inline-block;
}

/* ============ HERO CARD (placeholder w/ GIF inside) ============ */
.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: unset;
}
.hero-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: rgba(18,52,87,.025);
  border: 1.5px solid var(--rule-strong);
  border-radius: 22px;
  padding: 12px;
  display: flex;
  flex-direction: column;
}
.hero-card-media {
  position: relative;
  border-radius: 16px;
  overflow: visible;
  aspect-ratio: 4 / 5;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(18,52,87,.07) 0 2px,
      transparent 2px 14px
    ),
    rgba(18,52,87,.04);
}
.hero-card-gif {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.hero-card .circle-stamp {
  position: absolute;
  top: -28px;
  right: -28px;
  width: 122px;
  height: 122px;
  z-index: 3;
  transform: rotate(-14deg);
  filter: drop-shadow(0 8px 16px rgba(18,52,87,.18));
  animation: stampFloat 6s ease-in-out infinite;
}

.hero-card-pill {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  background: var(--navy);
  color: var(--cream);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2.4px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 100px;
  white-space: nowrap;
  display: none; /* hidden when stamp is present to avoid overlap */
}
.hero-card-caption {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1.65;
  padding: 4px 8px 6px;
}

@media (max-width: 1100px) {
  .hero-grid { gap: 48px; }
  .hero-card { max-width: 520px; margin: 0 auto; }
}
@media (max-width: 820px) {
  .hero { padding: 48px 6% 64px; }
  .hero-grid { gap: 36px; }
  .hero-card .circle-stamp { width: 92px; height: 92px; top: -18px; right: -10px; }
}


/* ============ FAILS (NAVY) — restructured banner 3 ============ */
.fails-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.2fr);
  gap: 80px;
  align-items: start;
  margin-top: 8px;
}
.fails-left {
  position: sticky;
  top: 32px;
  align-self: start;
}
.fails-left .h-section {
  font-size: clamp(32px, 4vw, 46px) !important;
  max-width: none !important;
}

.fails-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 9px 9px 22px;
  border: 1.5px solid rgba(248,244,236,.4);
  background: transparent;
  color: var(--cream);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .15s, border-color .15s, color .15s;
  margin-bottom: 28px;
}
.fails-cta:hover {
  background: var(--mint);
  border-color: var(--mint);
  color: var(--navy);
}
.fails-cta .disc {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s;
}
.fails-cta:hover .disc { background: var(--navy); color: var(--mint); transform: rotate(45deg); }
.fails-cta .disc svg { width: 11px; height: 11px; }

.fails-form-wrap {
  display: none;
}

.fails-source {
  font-family: var(--mono);
  font-size: 11.5px;
  line-height: 1.7;
  color: rgba(248,244,236,.5);
  max-width: 380px;
  letter-spacing: .2px;
}
.fails-source strong { color: var(--mint); font-weight: 700; }

/* Right stack of comparison rows */
.fails-stack {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(248,244,236,.04);
  border: 1px solid rgba(248,244,236,.1);
  border-radius: 18px;
  padding: 8px;
}
.fails-row {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 8px 18px 8px 12px;
  background: rgba(248,244,236,.05);
  border-radius: 12px;
  transition: background .2s;
  position: relative;
}
.fails-row-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--peri);
  flex-shrink: 0;
}
.fails-row-icon svg { width: 36px; height: 36px; opacity: .9; }
.fails-row-icon-mask {
  display: block;
  width: 44px;
  height: 44px;
  background: currentColor;
  -webkit-mask: var(--icon-url) center/contain no-repeat;
  mask: var(--icon-url) center/contain no-repeat;
}
.fails-row-label {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15.5px;
  color: var(--cream);
  letter-spacing: -.15px;
  min-width: 0;
  opacity: .92;
}
.fails-row-label .mark-scribble.strike svg.mk-line {
  color: var(--peri-dark);
  opacity: 1;
  height: 0.85em;
  bottom: 18%;
  left: -3%;
  width: 106%;
}
.fails-row-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--mint);
  white-space: nowrap;
}

/* Winning row */
.fails-row.is-winner {
  background: var(--cream);
  grid-template-columns: 76px 1fr auto;
  grid-template-rows: auto auto;
  row-gap: 10px;
  padding: 18px 22px 18px 0;
  margin: 2px 0;
  box-shadow: 0 12px 32px -20px rgba(0,0,0,.5);
  overflow: hidden;
}
.fails-row.is-winner .fails-row-icon {
  background: transparent;
  color: var(--navy);
  opacity: 1;
}
.fails-row.is-winner .fails-row-icon-xl {
  width: 92px;
  height: 92px;
  align-self: end;
  justify-self: start;
  margin-left: -6px;
  margin-bottom: -12px;
  transform: rotate(-8deg);
}
.fails-row.is-winner .fails-row-icon-xl .fails-row-icon-mask {
  width: 92px;
  height: 92px;
}
.fails-row.is-winner .fails-row-label {
  color: var(--navy);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -.4px;
  text-decoration: none;
}
.fails-row.is-winner .fails-row-tag {
  color: var(--navy);
  background: var(--mint);
  padding: 6px 12px;
  border-radius: 100px;
}
.fails-row-meta {
  grid-column: 2 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 700;
  padding-top: 2px;
  border-top: 1px solid rgba(18,52,87,.12);
  margin-top: 2px;
}
.fails-row-meta .dot { color: var(--teal); opacity: .8; }

/* Embedded form inside winner row */
.fails-row-form {
  grid-column: 2 / -1;
  margin-top: 4px;
}
.fails-row-form .cta-form {
  background: rgba(18,52,87,.04);
  border-color: rgba(18,52,87,.18);
  max-width: none;
}
.fails-row-form .cta-form input { color: var(--navy); }
.fails-row-form .cta-form input::placeholder { color: rgba(18,52,87,.4); }
.fails-row-form .cta-btn { background: var(--navy); color: var(--cream); }
.fails-row-form .cta-btn:hover { background: #0c2440; }
.fails-row-form .cta-btn .disc { background: var(--mint); color: var(--navy); }
.fails-row-form .cta-btn:hover .disc { background: var(--cream); }
.fails-row-form .form-note {
  color: var(--ink-soft);
  margin-top: 10px;
}

/* Footnote under stack */
.fails-footnote {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(248,244,236,.45);
  letter-spacing: .2px;
  margin-top: 18px;
  line-height: 1.65;
}
.fails-footnote a {
  color: var(--mint);
  text-decoration: none;
  border-bottom: 1px solid rgba(183,253,196,.3);
  padding-bottom: 1px;
}
.fails-footnote a:hover { border-bottom-color: var(--mint); }

@media (max-width: 1100px) {
  .fails-layout { grid-template-columns: 1fr; gap: 48px; }
  .fails-left { position: static; }
}
@media (max-width: 640px) {
  .fails-row {
    grid-template-columns: 40px 1fr;
    row-gap: 6px;
    padding: 14px 16px;
  }
  .fails-row-icon { width: 40px; height: 40px; }
  .fails-row-icon svg { width: 20px; height: 20px; }
  .fails-row-tag {
    grid-column: 2 / -1;
    font-size: 10px;
    letter-spacing: 1.2px;
  }
  .fails-row.is-winner { grid-template-columns: 40px 1fr; }
  .fails-row.is-winner .fails-row-label { font-size: 19px; }
  .fails-row-meta { grid-column: 1 / -1; }
}


/* ============ AUTHORITY (PERIWINKLE) — photo-led layout ============ */
.authority {
  padding: 80px 7%;
}
.auth-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: center;
  max-width: 1180px;
}

.auth-left {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}
.auth-photo {
  position: relative;
  margin: 0;
  width: 100%;
  border-radius: 22px;
  overflow: visible;
  transform: none;
}
.auth-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 24px 60px -28px rgba(18,52,87,.55), 0 6px 16px -10px rgba(18,52,87,.25);
}
.auth-eyebrow {
  display: block;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 700;
  margin: 0 0 4px;
  padding-bottom: 14px;
  border-bottom: 1.5px solid rgba(18,52,87,.22);
}

/* Photo as the dominant visual (sizing in .auth-left block above) */
.auth-photo-old { display: none; }
.auth-photo-stamp {
  position: absolute;
  top: -28px;
  right: -28px;
  width: 116px;
  height: 116px;
  z-index: 3;
  transform: rotate(12deg);
  filter: drop-shadow(0 8px 16px rgba(18,52,87,.22));
  animation: stampFloat 6s ease-in-out infinite;
  pointer-events: none;
}
.auth-photo-stamp svg { width: 100%; height: 100%; display: block; }

/* Quote overlay (no longer used — hidden) */
.auth-quote-overlay { display: none; }

/* Right column = compressed stack */
.auth-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 0;
}
.auth-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(255,255,255,.4);
  border: 1px solid rgba(18,52,87,.14);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
}
.auth-row {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: baseline;
  padding: 12px 20px;
  background: transparent;
  border-radius: 0;
  border-bottom: 1px solid rgba(18,52,87,.1);
}
.auth-row:last-child { border-bottom: none; }
.auth-row-num {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 1.6px;
  color: var(--peri-dark);
  font-weight: 700;
  opacity: .8;
}
.auth-row-text {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
  color: var(--navy);
  font-weight: 400;
  margin: 0;
}
.auth-row-text strong { font-weight: 600; }
/* Older standalone quote/byline rules (kept for fallback) */
.auth-left > .auth-quote,
.auth-left > .auth-byline { display: none; }

.auth-bread,
.auth-bread-mask { display: none; }

/* ============ AUTHORITY photo card ============ */
.auth-photo {
  position: relative;
  margin: 36px 0 0;
  width: 100%;
  max-width: 480px;
  transform: rotate(-1.5deg);
  transition: transform .4s;
}
.auth-photo:hover { transform: rotate(0deg); }
.auth-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 24px 60px -28px rgba(18,52,87,.55), 0 6px 16px -10px rgba(18,52,87,.25);
}
.auth-photo-stamp {
  position: absolute;
  top: -28px;
  right: -32px;
  width: 120px;
  height: 120px;
  z-index: 3;
  transform: rotate(12deg);
  filter: drop-shadow(0 8px 16px rgba(18,52,87,.22));
  animation: stampFloat 6s ease-in-out infinite;
  pointer-events: none;
}
.auth-photo-stamp svg { width: 100%; height: 100%; display: block; }

.auth-photo-caption {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 16px;
  padding: 0 6px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--peri-dark);
  font-weight: 700;
  line-height: 1.55;
}
.auth-photo-tag {
  flex-shrink: 0;
  padding: 4px 10px;
  background: var(--navy);
  color: var(--cream);
  border-radius: 100px;
  letter-spacing: 1.8px;
}

/* Right stack */
.auth-stack {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(255,255,255,.35);
  border: 1px solid rgba(18,52,87,.12);
  border-radius: 18px;
  padding: 8px;
}
.auth-row {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 16px 22px 16px 18px;
  background: rgba(255,255,255,.4);
  border-radius: 12px;
  transition: background .2s;
  position: relative;
}
.auth-row-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.6px;
  color: var(--peri-dark);
  font-weight: 700;
  opacity: .7;
  padding-top: 2px;
}
.auth-row-text {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--navy);
  font-weight: 400;
  margin: 0;
}
.auth-row-text strong {
  font-weight: 600;
  color: var(--navy);
}

/* Winning row */
.auth-row.is-winner {
  background: var(--navy);
  border-bottom: none;
  padding: 14px 18px;
}
.auth-row.is-winner .auth-row-num {
  color: var(--mint);
  opacity: 1;
}
.auth-row.is-winner .auth-row-text {
  color: var(--cream);
}
.auth-row.is-winner .auth-row-text strong {
  color: var(--mint);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.2em;
  letter-spacing: -.3px;
}

/* Hidden quote block (removed from layout) */
.auth-right .auth-quote-block,
.auth-right .auth-quote-mark,
.auth-right .auth-quote,
.auth-right .auth-byline { display: none; }
.auth-right .auth-byline .sig {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--navy);
  letter-spacing: -.3px;
}
.auth-right .auth-byline .role {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--peri-dark);
  font-weight: 700;
}

@media (max-width: 1100px) {
  .auth-inner { grid-template-columns: 1fr; gap: 36px; }
  .auth-photo img { min-height: 380px; }
}
@media (max-width: 640px) {
  .auth-row {
    grid-template-columns: 32px 1fr;
    padding: 14px 16px;
  }
  .auth-row.is-winner { grid-template-columns: 32px 1fr; }
}


/* ============ PILLARS — hand-drawn lunchbox frame ============ */
.lunchbox-vis {
  position: relative;
  display: block;
  width: 100%;
  max-width: 540px;
  margin: 4px auto 32px;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  padding: 0;
}
.lunchbox-frame {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.lunchbox-vis > img {
  display: block;
  width: 100%;
  height: auto;
}
.lunchbox-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.lunchbox-vis .compartment {
  position: absolute;
  background: transparent !important;
  border-radius: 0 !important;
  z-index: 1;
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
}
/* Cells measured on cropped PNG:
   c-1: x 4.8-51.6, y 2.5-42.1
   c-2: x 51.6-98.2, y 2.5-42.1
   c-3: x 4.8-51.6, y 42.1-82.3
   c-4: x 51.6-98.2, y 42.1-82.3
   bonus: x 4.8-98.2, y 82.3-97.5 */
.lunchbox-vis .compartment.c-1 { left: 4.8%; top: 2.5%;  width: 46.8%; height: 39.6%; }
.lunchbox-vis .compartment.c-2 { left: 51.6%; top: 2.5%;  width: 46.6%; height: 39.6%; }
.lunchbox-vis .compartment.c-3 { left: 4.8%; top: 42.1%; width: 46.8%; height: 40.2%; }
.lunchbox-vis .compartment.c-4 { left: 51.6%; top: 42.1%; width: 46.6%; height: 40.2%; }
.lunchbox-vis .compartment.bonus {
  left: 4.8%;
  top: 82.3%;
  width: 93.4%;
  height: 15.2%;
  background: transparent !important;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  gap: 18px;
  text-align: left;
}

.lunchbox-vis .compartment-num {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--peri-dark);
  font-weight: 700;
  margin: 0;
}
.lunchbox-vis .compartment h3 {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.8vw, 34px);
  line-height: 1;
  color: var(--navy);
  letter-spacing: -.5px;
}
.lunchbox-vis .compartment h3 .up { font-style: normal; }
.lunchbox-vis .compartment.bonus h3 {
  font-size: clamp(18px, 2.1vw, 24px);
  margin: 0;
  color: var(--peri-dark);
}
.lunchbox-vis .compartment.bonus .role {
  color: var(--peri-dark);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-top: 2px;
  display: block;
}
.lunchbox-vis .compartment.bonus .bonus-label {
  color: var(--peri-dark);
  border-color: var(--peri-dark);
}

@media (max-width: 760px) {
  .lunchbox-vis {
    aspect-ratio: auto;
    display: grid;
    grid-template-columns: 1fr;
    padding: 0;
    gap: 12px;
  }
  .lunchbox-frame { display: none; }
  .lunchbox-vis .compartment {
    position: static;
    width: auto;
    height: auto;
    border: 2px solid var(--navy);
    border-radius: 12px;
    padding: 20px 22px;
    align-items: flex-start;
    text-align: left;
  }
  .lunchbox-vis .compartment.bonus {
    background: var(--peri) !important;
    border-color: var(--peri);
  }
}


/* ============ HONEST banner — restructured ============ */
.honest .honest-inner {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.honest-text .sec-head { margin-bottom: 24px; padding-bottom: 14px; border-bottom-width: 1px; }
.honest-text h2 { margin-bottom: 24px; max-width: 520px; }

/* Permissions list */
.honest-permissions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  padding: 6px 0 4px;
}
.honest-perm {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  align-items: baseline;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.45;
  color: var(--navy);
  font-weight: 500;
  letter-spacing: -.1px;
}
.honest-perm-check {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--mint);
  color: var(--navy);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: -2px;
}
.honest-perm-check svg { width: 14px; height: 14px; }
.honest-perm .mark-highlight svg.mk-fill { color: var(--cream); opacity: .85; }

.honest-closing {
  max-width: 520px;
  margin-bottom: 18px !important;
  color: var(--navy) !important;
  opacity: .82;
}

/* Photo on the right */
.honest-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.honest-illustration .ill-wrap { display: none; }
.honest-illustration .badge { display: none; }

.honest-photo {
  position: relative;
  margin: 0;
  width: 100%;
  max-width: 460px;
  transform: rotate(2deg);
  transition: transform .4s;
}
.honest-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 24px 60px -28px rgba(18,52,87,.55), 0 6px 16px -10px rgba(18,52,87,.25);
}
.honest-photo-stamp {
  position: absolute;
  top: -30px;
  left: -32px;
  width: 124px;
  height: 124px;
  z-index: 3;
  transform: rotate(-14deg);
  filter: drop-shadow(0 8px 16px rgba(18,52,87,.22));
  animation: stampFloat 6s ease-in-out infinite;
  pointer-events: none;
}
.honest-photo-stamp svg { width: 100%; height: 100%; display: block; }

@media (max-width: 1100px) {
  .honest .honest-inner { grid-template-columns: 1fr; gap: 48px; }
  .honest-photo { max-width: 100%; margin: 0 auto; }
}

/* Legal opt-in checkbox */
.legal-optin {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .2px;
  line-height: 1.5;
  color: rgba(18, 52, 87, .55);
  cursor: default;
  margin-top: 2px;
  text-align: left;
}
.hero .legal-optin input[type="checkbox"] { accent-color: var(--navy); }
[class*="fails"] .legal-optin,
.final .legal-optin {
  color: rgba(183, 253, 196, .7);
}
.legal-optin input[type="checkbox"] {
  accent-color: var(--mint);
  width: 14px;
  height: 14px;
  margin-top: 1px;
  flex-shrink: 0;
  cursor: pointer;
}
.legal-optin span { flex: 1; }

/* ============================================================
   SECTION LABEL SOURCE OF TRUTH
   The old global eyebrow rule hard-coded dark ink with !important.
   It now reads semantic variables so navy sections can set one token
   instead of fighting the cascade with scattered one-off overrides.
   ============================================================ */
:root {
  --section-label-color: var(--ink);
  --section-rule-color: var(--rule-strong);
  --navy-section-label-color: #f8f4ec;
  --navy-section-rule-color: rgba(248,244,236,.13);
}

.eyebrow {
  display: block !important;
  font-family: var(--mono) !important;
  font-size: 13px !important;
  letter-spacing: 1px !important;
  text-transform: uppercase;
  color: var(--section-label-color) !important;
  -webkit-text-fill-color: var(--section-label-color) !important;
  font-weight: 700 !important;
  padding-bottom: 18px !important;
  margin-bottom: 48px !important;
  border-bottom: 1.5px solid var(--section-rule-color) !important;
  gap: 0 !important;
  opacity: 1 !important;
}
/* Hero eyebrow override removed — use unified 48px rule→heading spacing */
.hero-left .eyebrow { margin-bottom: 48px !important; }

.eyebrow .dash,
.eyebrow .eyebrow-dot { display: none !important; }

/* Inverted contexts (dark backgrounds) */
.sec-head.invert .eyebrow,
[class*="invert"] .eyebrow,
.newsletter-hero .eyebrow,
.nl-m-preview .eyebrow,
.tools-main:not(.recipes-main) .eyebrow,
.tools-main:not(.recipes-main) .tools-hero .eyebrow,
.tl-m-hero .eyebrow,
.tl-m-section .eyebrow,
section[style*="navy"] .eyebrow {
  --section-label-color: var(--cream);
  --section-rule-color: var(--navy-section-rule-color);
}

/* Recipes reuses the tools hero markup, but sits on cream — keep the label dark. */
.recipes-main .eyebrow,
.recipes-main .tools-hero .eyebrow {
  --section-label-color: var(--ink);
  --section-rule-color: var(--rule-strong);
}

/* Mobile: same look, slightly tighter */
@media (max-width: 768px) {
  .eyebrow {
    font-size: 12px !important;
    padding-bottom: 14px !important;
    margin-bottom: 32px !important;
  }
}

/* ============================================================
   HERO EYEBROW SPACING — unified across every page
   Beats per-page specificity overrides (home, tools, recipes,
   newsletter, formula, recipe-detail, about, contact — desktop
   and mobile heroes). Label→rule 18px, rule→heading 48px.
   ============================================================ */
.home-hero .hero-left .eyebrow,
.hero .hero-left .eyebrow,
.tools-hero .eyebrow,
.tools-hero-main .eyebrow,
.newsletter-hero .eyebrow,
.nwsl-hero-text .eyebrow,
.rd-hero-text .eyebrow,
.contact-hero .eyebrow,
.ab-hero .eyebrow,
.m-hero .eyebrow,
.fm-hero .eyebrow,
.nl-m-hero .eyebrow,
.tl-m-hero .eyebrow,
.rec-m-hero .eyebrow {
  padding-bottom: 18px !important;
  margin-bottom: 48px !important;
  border-bottom: 1.5px solid var(--section-rule-color) !important;
}

@media (max-width: 768px) {
  .home-hero .hero-left .eyebrow,
  .hero .hero-left .eyebrow,
  .tools-hero .eyebrow,
  .tools-hero-main .eyebrow,
  .newsletter-hero .eyebrow,
  .nwsl-hero-text .eyebrow,
  .rd-hero-text .eyebrow,
  .contact-hero .eyebrow,
  .ab-hero .eyebrow,
  .m-hero .eyebrow,
  .fm-hero .eyebrow,
  .nl-m-hero .eyebrow,
  .tl-m-hero .eyebrow,
  .rec-m-hero .eyebrow {
    padding-bottom: 14px !important;
    margin-bottom: 32px !important;
  }
}


/* ====== DM tag pill on phone mockups (desktop / default) ====== */
.phone .phone-bezel { position: relative; }
.phone-dm-tag {
  position: absolute; top: 10px; right: 12px; z-index: 5;
  font-family: var(--mono); font-size: 9px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--teal);
  background: var(--cream);
  border: 1px solid rgba(41,177,143,.4);
  padding: 3px 8px; border-radius: 100px;
  line-height: 1;
}
.phone.is-highlight { position: relative; }
.phone.is-highlight::before {
  content: ""; position: absolute; inset: -10px -10px -14px -10px;
  background: var(--mint); opacity: .3;
  border-radius: 36px; z-index: -1;
  transform: rotate(-1.5deg);
}

/* Navy section labels/dividers: Home, Lunchbox Formula, About — desktop + mobile.
   The rule colour is exactly the Lunchbox Formula pillar-card border colour. */
.home-formula,
.fails,
.ab-beliefs,
.m-formula,
.fm-fails,
.ab-m-beliefs {
  --section-label-color: var(--navy-section-label-color);
  --section-rule-color: var(--navy-section-rule-color);
}

.home-formula .sec-head,
.fails .sec-head,
.ab-beliefs .sec-head,
.ab-beliefs .ab-eyebrow,
.ab-beliefs .eyebrow,
.m-formula .sec-head,
.fm-fails .sec-head,
.ab-m-beliefs .sec-head {
  border-bottom: 1px solid var(--navy-section-rule-color) !important;
}

.home-formula .sec-head,
.home-formula .sec-head .num-label,
.home-formula .sec-head .num-label *,
.fails .sec-head,
.fails .sec-head .num-label,
.fails .sec-head .num-label *,
.ab-beliefs .sec-head,
.ab-beliefs .sec-head .num-label,
.ab-beliefs .sec-head .num-label *,
.ab-beliefs .ab-eyebrow,
.ab-beliefs .ab-eyebrow .num-label,
.ab-beliefs .ab-eyebrow .num-label *,
.ab-beliefs .eyebrow,
.m-formula .sec-head,
.m-formula .sec-head .num-label,
.m-formula .sec-head .num-label *,
.fm-fails .sec-head,
.fm-fails .sec-head .num-label,
.fm-fails .sec-head .num-label *,
.ab-m-beliefs .sec-head,
.ab-m-beliefs .sec-head .num-label,
.ab-m-beliefs .sec-head .num-label * {
  color: var(--navy-section-label-color) !important;
  -webkit-text-fill-color: var(--navy-section-label-color) !important;
  opacity: 1 !important;
}

/* ============ TRUST PILLS (form badges) ============ */
.trust-pills {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0;
  padding: 0;
  line-height: 1.4;
}
.trust-pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(18,52,88,.07);
  color: var(--navy);
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}
.trust-pills--dark .trust-pill {
  background: rgba(248,244,236,.14);
  color: var(--cream);
}
.trust-pills--mint .trust-pill {
  background: rgba(183,253,196,.16);
  color: rgb(183, 253, 196);
}
@media (max-width: 560px) {
  .trust-pills { flex-wrap: nowrap; gap: 4px; }
  .trust-pill { font-size: clamp(7px, 2.2vw, 8px); padding: 4px 8px; letter-spacing: 0.9px; }
}
