/* ================================================================
   Ciao Bella — retro Italian deli brand
   Cream paper, primary blue/red/yellow, secondary green/orange
   ================================================================ */

:root {
  /* Neutrals */
  --bg: #FFF1DE;            /* cream paper */
  --bg-white: #FFFCF4;      /* slightly off-white card */
  --ink: #2E2C29;           /* charcoal */
  --heading: #2E2C29;
  --sub: #4A4845;
  --sub-2: #6B6862;
  --muted: #B8B3A8;         /* warm grey */
  --border: #E5D9BE;

  /* Primary */
  --yellow: #F5A623;        /* warm orange-yellow */
  --blue:   #2D6FB5;        /* royal blue */
  --red:    #E04E33;        /* tomato red */

  /* Secondary */
  --green:  #1F7A45;        /* deep deli green */
  --orange: #DC6A1A;        /* deep orange (BELLA letters) */

  /* Aliases for legacy components */
  --pill: var(--orange);
  --cta: var(--green);
  --cta-hover: #18633A;
  --cta-circle: #FFE4B0;    /* soft yellow tint */
  --coral: var(--red);
  --teal: var(--green);
  --card-pink: var(--red);
  --card-amber: var(--yellow);
  --card-mint: var(--green);

  --serif: 'Playfair Display', Georgia, serif;
  /* Body — clean, premium, easy to read at small sizes */
  --body: 'DM Sans', system-ui, sans-serif;
  /* Hand — Playpen Sans demoted to accents/eyebrows/signoffs ONLY */
  --hand: 'Playpen Sans', system-ui, sans-serif;
  /* Display headings — same as body, weight-driven hierarchy */
  --heading-font: 'DM Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 400;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--heading);
  margin: 0;
  letter-spacing: -0.02em;
}

p { margin: 0; line-height: 1.55; }

a { color: inherit; text-decoration: none; }

.container { max-width: 1480px; margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) {
  .container { padding: 0 36px; }
  .container-narrow { padding: 0 36px; }
}
@media (min-width: 1280px) { .container { padding: 0 48px; } }

/* ================================================================
   NAV
   ================================================================ */
.nav {
  position: sticky;
  top: 16px;
  z-index: 50;
  width: 100%;
  padding: 0 16px;
  pointer-events: none;
}
/* Ensure nav stays visible even when ancestors clip overflow */
html, body { position: relative; }
.nav.scrolled .nav-inner { box-shadow: 0 10px 30px rgba(0,0,0,0.18); }
.nav-inner {
  pointer-events: auto;
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 14px 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #fff;
  border-radius: 999px;
  color: var(--heading);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: box-shadow 0.2s ease;
}
@media (min-width: 768px) { .nav-inner { padding: 12px 16px 12px 16px; } }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.nav-logo .dot { display: none; }
.nav-logo img { display: block; height: 28px; width: auto; }

.nav-links {
  display: none;
  gap: 32px;
}
@media (min-width: 760px) {
  .nav-links { display: flex; gap: 24px; }
}
@media (min-width: 1024px) {
  .nav-links { gap: 32px; }
}
.nav-links a {
  font-family: var(--body);
  font-size: 15px;
  color: var(--heading);
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--cta); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--pill);
  border-radius: 2px;
}

/* ── Right side: CTA + hamburger ── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Hamburger button — visible on mobile only */
.nav-burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s;
}
.nav-burger:hover { background: var(--cta-circle); }
.nav-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.15s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hide hamburger from tablet+ where full nav-links show */
@media (min-width: 760px) {
  .nav-burger { display: none; }
}

/* On mobile, swap the in-bar Reserve CTA for the hamburger.
   We keep the CTA inside the drawer instead so the bar isn't crammed. */
@media (max-width: 759px) {
  .nav-cta { display: none; }
  .nav-inner { gap: 12px; padding: 6px 6px 6px 14px; }
  .nav { top: 10px; padding: 0 10px; }
  .nav-logo img { height: 20px; }
}
@media (max-width: 380px) {
  .nav-logo img { height: 18px; }
  .nav-inner { padding: 6px 6px 6px 12px; }
}

/* ── Mobile drawer ──
   The drawer + scrim sit inside <nav class="nav"> which is pointer-events:none
   (so the rounded pill doesn't block scrolling around it). Children that need
   taps must explicitly re-enable. */
.nav-scrim {
  position: fixed;
  inset: 0;
  background: rgba(46, 44, 41, 0.45);
  z-index: 48;
  animation: navScrimIn 0.18s ease-out;
  pointer-events: auto;
}
@keyframes navScrimIn { from { opacity: 0; } to { opacity: 1; } }

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(86vw, 360px);
  height: 100dvh;
  background: var(--bg);
  z-index: 49;
  box-shadow: -20px 0 40px rgba(0, 0, 0, 0.18);
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(.4,.0,.2,1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  visibility: hidden;
  pointer-events: auto;
}
.nav-drawer.open {
  transform: translateX(0);
  visibility: visible;
}
.nav-drawer-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 92px 28px 32px;
}
.nav-drawer-link {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 28px;
  color: var(--ink);
  padding: 14px 0;
  letter-spacing: -0.02em;
  border-bottom: 1px solid var(--border);
  transition: color 0.15s;
}
.nav-drawer-link:last-of-type { border-bottom: none; }
.nav-drawer-link:hover, .nav-drawer-link.active { color: var(--red); }
.nav-drawer-cta {
  margin-top: 24px;
  display: flex;
}
.nav-drawer-cta .cta {
  width: 100%;
  justify-content: center;
  gap: 0;
  padding: 18px 56px 18px 12px;
  font-size: 19px;
  position: relative;
}
.nav-drawer-cta .cta > span:first-child {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0;
}
.nav-drawer-cta .cta .cta-circle {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
}
.nav-drawer-cta .cta .cta-circle svg { width: 10px; height: 16px; }

@media (min-width: 760px) {
  .nav-drawer, .nav-scrim { display: none; }
}

/* ================================================================
   PILL BADGE
   ================================================================ */
.pill {
  display: inline-block;
  background: var(--red);
  color: #FAEED7;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 6px;
  white-space: nowrap;
}
.pill-row {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--hand); font-weight: 500; font-size: 16px; color: var(--ink);
}
.pill-row .dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--pill);
}

/* ================================================================
   CTA — signature blue + cream circle
   ================================================================ */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--cta);
  color: #fff;
  font-family: var(--body);
  font-weight: 700;
  font-size: 22px;
  padding: 10px 10px 10px 18px;
  border-radius: 999px;
  letter-spacing: -0.02em;
  transition: background 0.15s;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.cta:hover { background: var(--cta-hover); }
.cta-circle {
  width: 48px; height: 48px;
  background: var(--cta-circle);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-circle svg { width: 12px; height: 20px; }

.cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-weight: 500;
  font-size: 16px;
  color: var(--heading);
  border-bottom: 1.5px solid var(--heading);
  padding: 4px 0;
  letter-spacing: -0.02em;
  transition: color 0.15s;
}
.cta-ghost:hover { color: var(--cta); border-color: var(--cta); }

.cta-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--cta);
  color: #fff;
  font-family: var(--body);
  font-weight: 700;
  font-size: 15px;
  padding: 4px 4px 4px 12px;
  border-radius: 999px;
  letter-spacing: -0.02em;
  transition: background 0.15s;
  white-space: nowrap;
}
.cta-sm:hover { background: var(--cta-hover); }
.cta-sm .cta-circle { width: 30px; height: 30px; }
.cta-sm .cta-circle svg { width: 9px; height: 14px; }

/* ================================================================
   HEADINGS / SECTIONS
   ================================================================ */
.h-hero {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--heading);
  text-align: center;
  text-wrap: balance;
}
.h-hero em {
  font-family: var(--heading-font);
  font-style: normal;
  font-weight: 500;
}

.h-section {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.17;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-align: center;
  text-wrap: balance;
}
.h-section .underlined {
  position: relative;
  display: inline-block;
}
.h-section .underlined .arrow {
  position: absolute;
  left: 50%;
  bottom: -0.05em;
  transform: translateX(-50%);
  width: 100%;
  min-width: 96px;
  height: 0.32em;
  pointer-events: none;
}

.section { padding: 72px 0; position: relative; overflow: hidden; }
@media (min-width: 1024px) { .section { padding: 112px 0; } }

.eyebrow-row {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--hand);
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
}
.eyebrow-row .dot {
  width: 12px; height: 12px; border-radius: 50%; background: var(--pill);
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  padding-top: 80px;
  padding-bottom: 60px;
  overflow: hidden;
  background: #FFF1DE;
}
@media (min-width: 1024px) { .hero { padding-top: 96px; padding-bottom: 100px; } }

.hero-content {
  display: flex; flex-direction: column; align-items: center; gap: 28px;
  padding: 0 24px;
  text-align: center;
}
.hero-content .pill { font-size: 14px; }
.hero-tagline {
  font-family: var(--heading-font);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: var(--text-muted, #6b6b6b);
  margin: 14px 0 0 0;
  letter-spacing: 0.01em;
}
.hero-tagline em {
  font-style: italic;
  color: var(--accent, #d97757);
  font-weight: 500;
}
@media (min-width: 768px) {
  .hero-tagline { font-size: 20px; }
}
.hero-sub {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--sub);
  max-width: 720px;
  margin: 0 auto;
  text-wrap: pretty;
}
.hero-cta-row {
  display: flex; gap: 24px; align-items: center; flex-wrap: wrap; justify-content: center;
  margin-top: 4px;
}

/* Hero doodles */
.hero-doodle {
  display: block;
  position: absolute;
  pointer-events: none;
  user-select: none;
}
@media (max-width: 700px) { .hero-doodle { display: none; } }
.hero-doodle-1 {
  top: 30px; left: 16px; width: 130px; height: 130px;
  transform: rotate(-8deg);
}
.hero-doodle-2 {
  top: 20px; right: 16px; width: 150px; height: 150px;
  transform: rotate(20deg);
}
@media (min-width: 1100px) {
  .hero-doodle-1 { top: 44px; left: max(20px, calc(50% - 640px)); width: 200px; height: 200px; }
  .hero-doodle-2 { top: 30px; right: max(20px, calc(50% - 650px)); width: 220px; height: 220px; }
}
@media (min-width: 1100px) {
  .hero-doodle-1 { width: 200px; height: 200px; }
  .hero-doodle-2 { width: 220px; height: 220px; }
}

/* Photo fan */
.hero-photos {
  position: relative;
  margin: 24px auto 0;
  height: 560px;
  max-width: 1296px;
}
@media (min-width: 768px) { .hero-photos { height: 580px; margin-top: 32px; } }
@media (min-width: 1024px) { .hero-photos { height: 640px; } }

.hero-photo, .hero-card {
  position: absolute;
  border-radius: 0;
  overflow: visible;
  background: #f1f1f1;
}
.hero-photo > .cord-frame { overflow: visible; }
.hero-photo > .cord-frame > image-slot { display: block; width: 100%; height: 100%; }
.hero-photo > .cord-frame > picture { display: block; width: 100%; height: 100%; }
.hero-photo img, .hero-card img, .hero-card video {
  width: 100%; height: 100%; object-fit: cover;
}

.hero-photo-left, .hero-photo-right { display: none; }
@media (min-width: 768px) {
  .hero-photo-left, .hero-photo-right { display: block; }
}
.hero-photo-left {
  left: 50%; top: 130px;
  width: 320px; height: 400px;
  transform: translateX(calc(-100% + 30px)) rotate(-8deg);
  transform-origin: bottom right;
  z-index: 2;
}
.hero-photo-right {
  left: 50%; top: 130px;
  width: 320px; height: 400px;
  transform: translateX(-30px) rotate(8deg);
  transform-origin: bottom left;
  z-index: 1;
}
@media (min-width: 1024px) {
  .hero-photo-left  { width: 380px; height: 460px; top: 150px; transform: translateX(calc(-100% + 40px)) rotate(-8deg); }
  .hero-photo-right { width: 380px; height: 460px; top: 150px; transform: translateX(-40px) rotate(8deg); }
}

.hero-card {
  left: 50%; top: 30px;
  width: 240px; height: 350px;
  transform: translateX(-50%);
  background: #dae9f3;
  box-shadow: 0 15px 34px rgba(0,0,0,0.25), 0 61px 61px rgba(0,0,0,0.22);
  z-index: 2;
}
@media (min-width: 768px) {
  .hero-card { top: 57px; width: 280px; height: 412px; transform: translateX(calc(-50% - 43px)); }
}
@media (min-width: 1024px) {
  .hero-card { width: 376px; height: 554px; }
}

/* Speech bubbles */
.bubble {
  display: block;
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 10;
}
@media (max-width: 760px) { .bubble { display: none; } }
.bubble-svg {
  position: relative;
}
.bubble-svg img { width: 100%; height: 100%; }
.bubble-svg .text {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--hand);
  font-weight: 600;
  text-align: center;
  padding: 0 28px;
  line-height: 1;
}
.bubble-l {
  left: 50%; top: 0;
  width: 174px; height: 124px;
  transform: translateX(calc(-100% - 240px));
}
.bubble-l .text { font-size: 18px; color: var(--red); font-weight: 600; }
.bubble-r {
  left: 50%; top: 0;
  width: 150px; height: 150px;
  transform: translateX(240px);
}
@media (min-width: 1024px) {
  .bubble-l { transform: translateX(calc(-100% - 280px)); }
  .bubble-r { top: 0; transform: translateX(280px); }
}
.bubble-r .text {
  font-size: 18px; color: var(--cta);
  inset: 28% 20% 44% 20%;
}

/* ================================================================
   HOW IT WORKS
   ================================================================ */
.how-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px 40px;
  width: 100%;
  max-width: 1176px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .how-cards { grid-template-columns: repeat(3, 1fr); gap: 24px 48px; }
}
.how-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  display: flex; flex-direction: column;
  align-items: center;
  text-align: center;
}
.how-card-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 0;
  overflow: visible;
  margin-bottom: 28px;
  position: relative;
}
.how-card-photo img { width: 100%; height: 100%; object-fit: cover; }
.how-card-photo > .cord-frame > image-slot { display: block; width: 100%; height: 100%; }
.how-card-num {
  font-family: var(--heading-font);
  font-style: italic;
  font-weight: 400;
  font-size: 40px;
  line-height: 1;
  color: var(--cta);
  letter-spacing: 0;
  text-transform: none;
  margin: 0 0 12px;
  display: inline-block;
}
.how-card h3 {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  max-width: 18ch;
  text-wrap: balance;
}
.how-card p {
  font-family: var(--hand);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--sub);
  max-width: 28ch;
  text-wrap: pretty;
  margin: 0;
}

/* Section heading wrapper */
.section-head-wrap {
  position: relative;
  width: 100%;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
  margin-bottom: 64px;
}
@media (min-width: 1024px) { .section-head-wrap { margin-bottom: 80px; } }
.section-doodle {
  display: block;
  position: absolute;
  pointer-events: none;
  user-select: none;
  opacity: 0.85;
}
@media (max-width: 760px) { .section-doodle { display: none; } }

/* ================================================================
   FEATURE PANELS
   ================================================================ */
.feature-panels {
  width: 100%;
  display: flex; flex-direction: column;
  gap: 24px;
}
@media (min-width: 1024px) { .feature-panels { gap: 32px; } }
.feature-panel {
  border-radius: 32px;
  padding: 32px;
  display: flex; flex-direction: column-reverse;
  align-items: center;
  gap: 24px;
  width: 100%;
  min-height: 444px;
  color: #fff;
}
@media (min-width: 1024px) {
  .feature-panel {
    flex-direction: row;
    padding: 32px 32px 32px 48px;
  }
}
.feature-panel-coral { background: var(--coral); }
.feature-panel-blue { background: var(--blue); box-shadow: 0 -20px 40px rgba(0,0,0,0.12); }
.feature-panel-teal { background: var(--teal); box-shadow: 0 -20px 40px rgba(0,0,0,0.12); }

.feature-content {
  display: flex; flex-direction: column;
  gap: 20px;
  flex: 1;
  padding: 16px 0;
}
.feature-content .icon {
  width: 56px; height: 56px;
}
.feature-content h3 {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.08;
  color: #fff;
  letter-spacing: -0.02em;
  max-width: 622px;
}
.feature-content p {
  font-family: var(--hand);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  max-width: 456px;
}
.feature-image {
  width: 100%;
  height: 260px;
  border-radius: 0;
  overflow: visible;
  flex-shrink: 0;
  position: relative;
}
@media (min-width: 1024px) {
  .feature-image { width: 476px; height: 380px; }
}
.feature-image img { width: 100%; height: 100%; object-fit: cover; }
.feature-image > .cord-frame > image-slot { display: block; width: 100%; height: 100%; }

/* ================================================================
   BUNDLES
   ================================================================ */
.bundles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: 100%;
}
@media (min-width: 900px) {
  .bundles-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
}
.bundle-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.bundle-card.featured {
  background: var(--cta-circle);
  border-color: transparent;
}
.bundle-card.featured .bundle-cta { background: var(--ink); }
.bundle-card.featured .bundle-cta:hover { background: #333; }
.bundle-badge {
  position: absolute;
  top: -14px;
  left: 32px;
  background: var(--ink);
  color: #fff;
  font-family: var(--body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.bundle-name {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 26px;
  color: var(--heading);
  letter-spacing: -0.02em;
}
.bundle-tag {
  font-family: var(--hand);
  font-weight: 500;
  font-size: 15px;
  color: var(--sub-2);
  margin-top: 4px;
  margin-bottom: 24px;
}
.bundle-phones {
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  position: relative;
  background: var(--bg-white);
  border-radius: 14px;
  overflow: hidden;
  padding: 18px 22px;
}
.bundle-card.featured .bundle-phones {
  /* keep same bg as Solo/Trio for visual consistency across all three bundle cards */
}
.bundle-phones image-slot,
.bundle-phones img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* Each bundle photo has a different source aspect, so they need different
   scales to look visually consistent in the same 200px frame. Solo uses
   fit="cover" now (tight-cropped source), so no transform needed. */
.bundle-phones-solo { padding: 0; }
.bundle-phones-bff image-slot,
.bundle-phones-bff img { transform: scale(1.3) translateX(-5%); transform-origin: center center; }
.bundle-phones-trio image-slot,
.bundle-phones-trio img { transform: scale(1.3) translateX(-5%); transform-origin: center center; }
.bundle-price-row {
  display: flex; align-items: baseline; gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.bundle-gst {
  font-family: var(--body);
  font-weight: 500;
  font-size: 12px;
  color: var(--sub);
  letter-spacing: 0.02em;
  margin-left: auto;
}
.bundle-price {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 44px;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1;
}
.bundle-rrp {
  font-family: var(--body);
  font-size: 18px;
  color: var(--muted);
  text-decoration: line-through;
}
.bundle-save {
  font-family: var(--hand);
  font-weight: 700;
  font-size: 14px;
  color: var(--coral);
  letter-spacing: 0.02em;
}
.bundle-features {
  list-style: none;
  padding: 0;
  margin: 24px 0 28px;
  font-family: var(--body);
  font-size: 15px;
  color: var(--sub);
  display: flex; flex-direction: column; gap: 10px;
}
.bundle-features li {
  display: flex; align-items: flex-start; gap: 10px;
  line-height: 1.4;
}
.bundle-features li::before {
  content: '';
  width: 18px; height: 18px;
  margin-top: 2px;
  background: var(--cta-circle);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'><path d='M5 9 L 8 12 L 13 6' stroke='%23343433' stroke-width='2.2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-size: contain;
}
.bundle-cta {
  margin-top: auto;
}
.bundle-cta-dark {
  background: #1a1a1a !important;
  color: #fff !important;
}
.bundle-cta-dark:hover { background: #2e2c29 !important; }
.bundle-cta-dark .cta-circle { background: #FAF6EE !important; }
.bundle-cancel {
  margin-top: 12px;
  text-align: center;
  font-family: var(--hand);
  font-weight: 500;
  font-size: 14px;
  color: var(--sub-2);
}

/* ── $25 reserve banner (above bundle cards) ── */
.reserve-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 28px auto 36px;
  padding: 14px 28px;
  max-width: 720px;
  background: var(--cta-circle);
  border: 1.5px solid #F1C77F;
  border-radius: 999px;
  box-shadow: 0 6px 0 rgba(241, 199, 127, 0.35);
  font-family: var(--heading-font);
  text-align: center;
}
.reserve-banner-amt {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 30px;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.reserve-banner-text {
  font-family: var(--hand);
  font-weight: 500;
  font-size: 16px;
  color: var(--sub);
  line-height: 1.3;
}
@media (max-width: 640px) {
  .reserve-banner {
    flex-direction: column;
    gap: 4px;
    padding: 14px 22px;
    border-radius: 22px;
  }
  .reserve-banner-text { font-size: 14px; }
}

/* ── Cord-matches-top quick note (in configurator) ── */
.cord-note {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  margin: 0 0 24px;
  background: #FDF1DC;
  border: 1.5px dashed #E0B070;
  border-radius: 16px;
  font-family: var(--hand);
  font-weight: 500;
  font-size: 16px;
  color: var(--sub);
  line-height: 1.4;
}
.cord-note strong { color: var(--ink); font-weight: 700; }
.cord-note-icon {
  flex-shrink: 0;
  width: 36px;
  height: 22px;
  color: var(--red);
  display: inline-flex;
  align-items: center;
}
.cord-note-icon svg { width: 100%; height: 100%; }

/* ── Combo name + subtitle in PhoneCard ── */
.config-combo-name {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin: 4px 0 0;
  font-family: var(--heading-font);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.config-combo-name > span:first-child {
  font-size: 28px;
  color: var(--ink);
  line-height: 1;
}
.config-combo-sub {
  font-family: var(--hand);
  font-style: italic;
  font-weight: 500;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0;
}

/* ── Photo phone preview tweaks ── */
.phone-preview-photo {
  background: transparent !important;
  box-shadow: none !important;
}
.phone-preview-photo img {
  -webkit-user-drag: none;
  user-select: none;
}
.bundles-footnote {
  margin-top: 36px;
  font-family: var(--hand);
  font-weight: 500;
  font-size: 15px;
  color: var(--sub-2);
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ================================================================
   CONFIGURATOR
   ================================================================ */
.config-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 1024px) {
  .config-grid { grid-template-columns: 1.1fr 1fr; gap: 64px; }
}
.config-quantity-row {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.config-quantity-label {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 18px;
  color: var(--heading);
}
.qty-stepper {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}
.qty-btn {
  width: 44px; height: 44px;
  background: transparent; border: none;
  font-family: var(--heading-font);
  font-size: 22px;
  color: var(--heading);
  cursor: pointer;
  transition: background 0.15s;
}
.qty-btn:hover:not(:disabled) { background: var(--cta-circle); }
.qty-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.qty-display {
  width: 56px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 18px;
  color: var(--heading);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.phone-list {
  display: flex; flex-direction: column;
  gap: 20px;
}
.phone-config-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 600px) {
  .phone-config-card { grid-template-columns: 110px 1fr; }
}
.phone-config-preview {
  width: 110px; height: 160px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}
.phone-config-preview .top, .phone-config-preview .bot {
  position: absolute; left: 0; right: 0;
  height: 50%;
}
.phone-config-preview .top { top: 0; border-radius: 14px 14px 6px 6px; }
.phone-config-preview .bot { bottom: 0; border-radius: 6px 6px 14px 14px; }
.phone-config-info {
  display: flex; flex-direction: column;
}
.phone-config-info .label {
  font-family: var(--hand);
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.phone-config-info h4 {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 20px;
  color: var(--heading);
  margin-bottom: 14px;
}
.swatch-row { display: flex; gap: 10px; flex-wrap: wrap; }
.swatch {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--c, #ccc);
  cursor: pointer;
  transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s;
  position: relative;
}
.swatch:hover { transform: scale(1.05); }
.swatch.active {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px var(--cta-circle);
}
.swatch.active::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 2px solid #fff;
}
.swatch-name {
  font-family: var(--body);
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
}

/* Config summary (sticky on desktop) */
.config-summary {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  position: relative;
  top: 24px;
}
@media (min-width: 1024px) {
  .config-summary { position: sticky; top: 100px; }
}
.config-summary h3 {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 22px;
  color: var(--heading);
  margin-bottom: 18px;
}
.config-summary-list {
  display: flex; flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--border);
}
.config-summary-line {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--body);
  font-size: 15px;
  color: var(--sub);
}
.config-summary-line .price { color: var(--ink); font-weight: 500; }
.config-summary-total {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 10px;
}
.config-summary-total .label {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 18px;
  color: var(--heading);
}
.config-summary-total .amt {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 36px;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.config-summary-saved {
  font-family: var(--hand);
  font-weight: 700;
  font-size: 14px;
  color: var(--coral);
  margin-bottom: 24px;
}
/* Full-width variants: the circle is absolutely positioned at the right
   edge so the label can be centered across the FULL button width — no
   empty green on the left, no off-center text. Side padding kept minimal
   on the left, but right reserves space for the arrow circle so labels
   like "Confirm reservation" never collide. */
.config-summary-cta {
  width: 100%;
  justify-content: center;
  gap: 0;
  padding: 12px 48px 12px 4px;
  font-size: 20px;
  position: relative;
}
.config-summary-cta > span:first-child {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0;
}
.config-summary-cta .cta-circle {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
}
.config-summary-cta .cta-circle svg { width: 10px; height: 16px; }
.config-reassurance {
  margin-top: 20px;
  display: flex; flex-direction: column; gap: 8px;
  font-family: var(--body);
  font-size: 13px;
  color: var(--muted);
}
.config-reassurance > div {
  display: flex; align-items: center; gap: 8px;
}
.config-reassurance .check {
  width: 16px; height: 16px;
  background: var(--cta-circle);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Subscription placeholder */
.sub-placeholder {
  background: #fafafa;
  border: 1px dashed var(--border);
  border-radius: 20px;
  padding: 28px;
  margin-top: 32px;
}
.sub-placeholder h4 {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 18px;
  color: var(--heading);
  margin-bottom: 8px;
}
.sub-placeholder p {
  font-family: var(--body);
  font-size: 15px;
  color: var(--sub);
  line-height: 1.55;
}
.sub-placeholder .label {
  display: inline-block;
  background: var(--cta-circle);
  color: var(--heading);
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: 100%;
}
@media (min-width: 800px) {
  .testi-grid { grid-template-columns: repeat(3, 1fr); }
}
.testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.testi-card.featured {
  background: var(--cta-circle);
  border-color: transparent;
}
.testi-quote {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  color: var(--heading);
  letter-spacing: -0.01em;
  flex: 1;
}
.testi-attribution {
  font-family: var(--hand);
  font-weight: 500;
  font-size: 14px;
  color: var(--muted);
  display: flex; align-items: center; gap: 8px;
}
.testi-attribution::before {
  content: '';
  width: 32px; height: 1.5px;
  background: var(--muted);
}

/* ================================================================
   FAQ
   ================================================================ */
.faq-list {
  display: flex; flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 776px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: transparent; border: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 24px;
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 17px;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  letter-spacing: -0.01em;
}
.faq-chev {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--cta-circle);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s;
  font-size: 18px;
  font-weight: 600;
}
.faq-item.open .faq-chev { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 24px 22px;
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--sub);
}

/* ================================================================
   FINAL CTA STRIP
   ================================================================ */
.final-cta {
  position: relative;
  text-align: center;
  padding: 100px 0;
  overflow: hidden;
}
.final-cta h2 {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--heading);
  text-align: center;
  margin-bottom: 24px;
}
.final-cta p {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 18px;
  color: var(--sub);
  max-width: 540px;
  margin: 0 auto 36px;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--bg);
  padding: 80px 0 40px;
  overflow: visible;
  position: relative;
  position: relative;
  overflow: hidden;
}
.footer-photos {
  display: none;
  position: relative;
  height: 240px;
  margin-bottom: 60px;
}
@media (min-width: 1024px) { .footer-photos { display: block; } }
.footer-photo {
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.footer-photo img { width: 100%; height: 100%; object-fit: cover; }
.footer-photo-l { left: 8%; top: 0; transform: rotate(-8deg); }
.footer-photo-r { right: 8%; top: 0; transform: rotate(8deg); }

.footer-cta-block {
  text-align: center;
  margin-bottom: 80px;
  padding: 0 24px;
}
.footer-cta-block h2 {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--heading);
  margin-bottom: 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-col h4 {
  font-family: var(--body);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-family: var(--body);
  font-size: 15px;
  color: var(--sub);
  padding: 4px 0;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--cta); }
.footer-tagline {
  font-family: var(--hand);
  font-weight: 500;
  font-size: 16px;
  color: var(--sub);
  line-height: 1.5;
  margin-top: 16px;
  max-width: 260px;
}
.footer-bottom {
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  flex-wrap: wrap;
  font-family: var(--body);
  font-size: 13px;
  color: var(--muted);
}

/* ================================================================
   CHECKOUT (preorder)
   ================================================================ */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 1024px) {
  .checkout-grid { grid-template-columns: 1.3fr 1fr; gap: 64px; }
}
.checkout-step-num {
  display: inline-flex;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--cta-circle);
  align-items: center; justify-content: center;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 14px;
  color: var(--heading);
  margin-right: 12px;
}
.checkout-step h3 {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 22px;
  color: var(--heading);
  margin-bottom: 20px;
  display: flex; align-items: center;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.field-row.single { grid-template-columns: 1fr; }
.field {
  display: flex; flex-direction: column; gap: 6px;
}
.field label {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  color: var(--sub);
}
.field input, .field textarea, .field select {
  font-family: var(--body);
  font-size: 15px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.15s;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--cta);
}

.confirm-block {
  padding: 60px 40px;
  background: var(--cta-circle);
  border-radius: 24px;
  text-align: center;
}
.confirm-block h2 {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 16px;
}
.confirm-block p {
  font-family: var(--hand);
  font-weight: 500;
  font-size: 16px;
  color: var(--sub);
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.about-hero {
  text-align: center;
  padding: 60px 24px 80px;
}
.about-hero h1 {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--heading);
  max-width: 900px;
  margin: 24px auto 24px;
  text-wrap: balance;
}
.about-hero h1 em { font-family: var(--serif); font-style: italic; }
.about-hero p {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  color: var(--sub);
  max-width: 680px;
  margin: 0 auto;
}
.about-prose {
  max-width: 720px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 28px;
  font-family: var(--body);
  font-size: 19px;
  line-height: 1.65;
  color: var(--sub);
}
.about-prose strong {
  color: var(--heading);
  font-weight: 600;
}
.about-prose em {
  font-style: italic;
}
  font-weight: 500;
}

/* ================================================================
   TWEAKS PANEL OVERRIDE
   ================================================================ */
.tweaks-panel { font-family: var(--body) !important; }

/* Hide default tweaks toggle -- managed by host */
[data-edit-mode-host] {}


/* ================================================================
   THE PHONE PAGE
   ================================================================ */
.phone-page { padding-bottom: 60px; position: relative; overflow-x: clip; }

/* Hero */
.phone-hero { padding: 60px 0 80px; }
.phone-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .phone-hero-inner { grid-template-columns: 1.1fr 1fr; gap: 80px; }
}
.phone-hero-copy h1 {
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--heading);
  margin: 18px 0 20px;
}
.phone-hero-copy h1 em {
  font-style: italic;
  font-family: var(--heading-font);
  color: var(--cta);
}
.phone-hero-copy .lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--sub-2);
  max-width: 520px;
  margin-bottom: 28px;
}
.phone-hero-cta {
  display: flex; gap: 18px; align-items: center; flex-wrap: wrap;
}
.phone-hero-cta .hand-note {
  font-family: var(--hand);
  font-weight: 500;
  font-size: 17px;
  color: var(--sub-2);
}
.phone-hero-art {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  min-height: 360px;
}
.phone-hero-art .phone-hero-doodle {
  position: absolute;
  width: 90px; height: 90px;
  pointer-events: none;
  opacity: 0.85;
}
.phone-hero-art .phone-hero-doodle.d1 { top: 10%; left: 8%; transform: rotate(-15deg); }
.phone-hero-art .phone-hero-doodle.d2 { bottom: 12%; right: 10%; transform: rotate(20deg); }

/* What it is */
.phone-what {
  background: var(--bg);
  padding: 72px 0 40px;
  margin: 32px 0 0;
}
/* Pull the next section closer — phone-what already provides its own breathing room. */
.phone-what + .section { padding-top: 64px; }
.what-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 32px;
}
@media (min-width: 800px) { .what-grid { grid-template-columns: repeat(3, 1fr); gap: 40px; } }
.what-block h3 {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.25;
  color: var(--heading);
  margin: 0 0 14px;
}
.what-block p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--sub-2);
  margin: 0;
}

/* Configurator section */
.phone-configurator { padding: 40px 0 60px; }
.config-intro {
  font-size: 18px;
  line-height: 1.55;
  color: var(--sub-2);
  max-width: 600px;
  margin: 16px 0 48px;
}

/* What's in the box */
.phone-box {
  padding: 100px 0;
  border-top: 1px dashed var(--border);
  margin-top: 60px;
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}
.phone-box-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}
.phone-box-head h2 {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--heading);
  margin: 18px 0 0;
  text-wrap: balance;
}
.phone-box-head h2 em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--cta);
  font-weight: 400;
}
.box-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}
@media (min-width: 800px) { .box-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; } }

.box-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 32px 28px 30px;
  text-align: center;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 2px 0 rgba(0,0,0,0.02);
}
.box-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.08);
}
.box-item:nth-child(2) { background: var(--cta-circle, #fae8c9); }
.box-item:nth-child(3) { background: #fff; }

.box-illo {
  width: 124px;
  height: 124px;
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--paper, #FAF6EE);
  border-radius: 50%;
  border: 1px solid var(--border);
  transition: transform 0.4s ease;
}
.box-item:nth-child(2) .box-illo { background: #fff; }
.box-item:hover .box-illo { transform: rotate(-4deg); }
.box-illo svg { width: 78%; height: 78%; }

.box-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  line-height: 1;
  color: var(--cta);
  margin: 4px 0 8px;
  letter-spacing: 0;
}
.box-item h4 {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 22px;
  color: var(--heading);
  margin: 0 0 10px;
}
.box-item p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--sub-2);
  margin: 0;
  max-width: 28ch;
  margin-left: auto; margin-right: auto;
}

/* ================================================================
   CONFIGURATOR V2 — per-phone top + bottom + presets
   ================================================================ */
.phone-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}
.phone-config-card-v2 {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
@media (min-width: 700px) {
  .phone-config-card-v2 { grid-template-columns: 260px 1fr; gap: 32px; }
}
.phone-config-preview-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  min-height: 240px;
}
.config-card-head .label {
  font-family: var(--hand);
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 4px;
}
.config-card-head h4 {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 22px;
  color: var(--heading);
  margin: 0 0 18px;
}

/* Preset block + chips */
.preset-block {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.preset-label {
  display: block;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.preset-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.preset-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 8px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 14px;
  font-family: var(--body);
  font-weight: 500;
  color: var(--heading);
  cursor: pointer;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.preset-chip:hover { border-color: var(--cta); }
.preset-chip.active {
  border-color: var(--heading);
  background: #fff;
  box-shadow: 0 0 0 1px var(--heading);
}
.preset-chip-swatch {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.08);
  flex-shrink: 0;
}

/* Mix & match subhead — clean, premium */
.mix-divider {
  margin: 4px 0 18px;
}
.mix-divider span {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Engraving / name field */
.phone-name-field {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.phone-name-field label {
  display: block;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.phone-name-field label .opt {
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--muted);
  font-size: 12px;
  margin-left: 4px;
}
.phone-name-field input {
  width: 100%;
  max-width: 280px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  font-family: var(--body);
  font-size: 15px;
  color: var(--heading);
  transition: border-color 0.15s;
}
.phone-name-field input:focus {
  outline: none;
  border-color: var(--heading);
}

/* Quantity over-5 hint */
.qty-hint {
  margin: 14px 0 0;
  padding: 12px 16px;
  background: var(--bg, #FAF6EE);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--sub-2);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.qty-hint a {
  color: var(--heading);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.qty-hint-dot {
  flex-shrink: 0;
  width: 8px; height: 8px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--cta, #2D3F66);
}

/* Shell pickers (top + bottom) */
.config-section-label {
  font-family: var(--hand);
  font-size: 14px;
  font-weight: 500;
  color: var(--sub-2);
  letter-spacing: 0.02em;
}
.shell-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 4px 0 4px;
}
.shell-swatch {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.08);
  cursor: pointer;
  padding: 0;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
  position: relative;
}
.shell-swatch:hover { transform: scale(1.08); }
.shell-swatch.active {
  border-color: var(--heading);
  box-shadow: 0 0 0 3px var(--bg, #FAF6EE), 0 0 0 5px var(--heading);
}
.shell-name {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

/* Pricing summary */
.pricing-summary {
  position: sticky;
  top: 100px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.pricing-summary-head .label {
  font-family: var(--hand);
  font-size: 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 4px;
}
.pricing-summary-head h3 {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 28px;
  color: var(--heading);
  margin: 0;
}
.pricing-rows {
  display: flex; flex-direction: column; gap: 10px;
  padding: 18px 0;
  border-top: 1px dashed var(--border);
  border-bottom: 1px dashed var(--border);
}
.pricing-rows .row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 15px;
  color: var(--sub-2);
}
.pricing-rows .row.total {
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 500;
  color: var(--heading);
  padding-top: 8px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}
.pricing-fineprint {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}
.pricing-fineprint p { margin: 0 0 4px; }
.bundle-tip {
  background: var(--bg, #FAF6EE);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 14px;
  color: var(--sub-2);
  line-height: 1.55;
}
.bundle-tip strong { color: var(--heading); font-weight: 600; }
.bundle-tip ul { margin: 6px 0 0; padding-left: 16px; }
.bundle-tip li { margin: 2px 0; }


/* ================================================================
   ABOUT STRIP — pull quote teaser
   ================================================================ */
.about-strip {
  padding: 120px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.about-strip-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.about-pull {
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.35;
  color: var(--heading);
  margin: 30px 0 18px;
  letter-spacing: -0.005em;
  position: relative;
}
.about-pull em {
  font-style: italic;
  color: var(--cta);
}
.about-quote-mark {
  font-family: var(--heading-font);
  font-style: italic;
  font-size: 1.4em;
  color: var(--cta);
  line-height: 0;
  position: relative;
  top: 0.18em;
  margin-right: 0.06em;
  opacity: 0.7;
}
.about-quote-mark.right { margin-left: 0.06em; margin-right: 0; }

/* ── Not-a-smartwatch comparison ── */
.not-smartwatch { }
.not-sw-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.not-sw-eyebrow {
  display: inline-block; font-family: var(--hand); font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; font-size: 12px;
  color: #F4B860; padding: 6px 14px; border: 1px solid #F4B860; border-radius: 999px;
}
.not-sw-title {
  font-family: var(--heading-font); font-weight: 500;
  font-size: clamp(32px, 4vw, 52px); line-height: 1.15;
  margin: 24px 0 16px; color: #FAF6EE; letter-spacing: -0.015em;
}
.not-sw-sub {
  font-family: var(--heading-font); font-size: 17px; line-height: 1.5;
  color: rgba(250,246,238,0.7); max-width: 540px; margin: 0 auto;
}
.not-sw-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  max-width: 880px; margin: 0 auto;
}
@media (max-width: 720px) { .not-sw-grid { grid-template-columns: 1fr; } }
.not-sw-col {
  background: #232323; border-radius: 20px; padding: 32px 28px;
  border: 1px solid #2a2a2a;
}
.not-sw-col-us { background: #FAF6EE; color: #1a1a1a; border-color: #F4B860; }
.not-sw-col-head {
  font-family: var(--heading-font); font-weight: 600; font-size: 14px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(250,246,238,0.5); margin-bottom: 18px;
}
.not-sw-col-us .not-sw-col-head { color: rgba(26,26,26,0.5); }
.not-sw-col ul { list-style: none; padding: 0; margin: 0; }
.not-sw-col li {
  font-family: var(--heading-font); font-size: 17px; line-height: 1.5;
  padding: 14px 0; border-top: 1px solid rgba(250,246,238,0.08);
  display: flex; align-items: flex-start; gap: 10px;
}
.not-sw-col li:first-child { border-top: none; }
.not-sw-col-us li { border-top-color: rgba(26,26,26,0.08); }
.not-sw-col li::before {
  content: '×'; flex-shrink: 0; font-weight: 600; color: rgba(250,246,238,0.4);
  font-size: 20px; line-height: 1; margin-top: 2px;
}
.not-sw-col-us li::before { content: '✓'; color: #1F7A45; font-size: 16px; }

/* ── Ciao marquee ── */
.ciao-marquee {
  background: var(--coral, #E56F4F); color: #FAF6EE;
  padding: 28px 0; overflow: hidden; border-top: 3px solid #1a1a1a; border-bottom: 3px solid #1a1a1a;
}
.ciao-marquee-track { display: flex; gap: 0; animation: ciaoMarq 38s linear infinite; }
.ciao-marquee-row { display: flex; align-items: center; gap: 32px; padding-right: 32px; flex-shrink: 0; }
.ciao-marquee-item {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: clamp(28px, 3.4vw, 44px); white-space: nowrap;
}
.ciao-marquee-star { font-size: 22px; opacity: 0.7; }
@keyframes ciaoMarq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.about-sig {
  font-family: var(--hand);
  font-weight: 500;
  font-size: 18px;
  color: var(--sub-2);
  margin: 0 0 30px;
}
.about-strip .about-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 600;
  color: var(--heading);
  text-decoration: none;
  border-bottom: 1.5px solid var(--heading);
  padding-bottom: 2px;
  transition: gap 0.2s ease;
}
.about-strip .about-link:hover { gap: 12px; }


/* ================================================================
   ABOUT PAGE — extended (rich story, name section, signoff)
   ================================================================ */
.about-page { color: var(--heading); }

.about-doodle {
  position: absolute;
  width: 130px; height: 130px;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.about-doodle-l { left: 4%; top: 90px; transform: rotate(-15deg); }
.about-doodle-r { right: 4%; top: 220px; transform: rotate(20deg); width: 140px; height: 140px; }
@media (max-width: 768px) {
  .about-doodle-l, .about-doodle-r { display: none; }
}

.about-byline {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}
.about-byline-dot {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cta-circle, #fae8c9);
  border: 1px solid var(--border);
}
.about-byline-name {
  font-family: var(--heading-font);
  font-weight: 600;
  font-style: normal;
  font-size: 17px;
  color: var(--heading);
  text-align: left;
}
.about-byline-sub {
  font-family: var(--body);
  font-size: 14px;
  color: var(--sub-2, var(--sub));
  text-align: left;
}

.about-section {
  padding: 48px 0 64px;
  position: relative;
  z-index: 1;
}

.about-prose-emphasis {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.45;
  color: var(--heading);
  margin: 12px 0;
}
.about-pullquote {
  margin: 12px 0 0;
  padding: 30px 36px;
  background: var(--paper, #FAF6EE);
  border-radius: 24px;
  border: 1px solid var(--border);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.4;
  color: var(--heading);
  font-weight: 400;
}

/* photos block */
.about-photos-section {
  padding: 30px 0 60px;
}
.about-photos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 48px;
  max-width: 760px;
  margin: 0 auto;
}
.about-photo {
  border-radius: 24px;
  overflow: visible;
  box-shadow: 0 20px 40px rgba(0,0,0,0.10);
}
.about-photo > .cord-frame { overflow: visible; }
.about-photo img {
  width: 100%; height: 300px;
  object-fit: cover;
  object-position: center 22%;
  display: block;
  border-radius: 24px;
}
.about-photo-l { transform: rotate(-3deg); }
.about-photo-r { transform: rotate(3deg); }

/* name section */
.about-name-section {
  padding: 80px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.about-name-section .eyebrow-row {
  margin-bottom: 4px;
}
.about-name-h2 {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: clamp(38px, 5.6vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 48px;
  text-wrap: balance;
  text-align: center;
}
.about-name-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
  margin: 0 auto 32px;
  max-width: 640px;
  text-align: left;
  align-items: start;
}
@media (max-width: 640px) {
  .about-name-grid { grid-template-columns: 1fr; gap: 24px; max-width: 380px; text-align: center; }
}
.about-name-block {
  padding: 4px 0;
  position: relative;
}
.about-name-word {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(48px, 6.4vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  display: inline-block;
}
/* Single brand-colour for both name words — lets the Playfair italic and
   sheer scale carry the moment, without color competition. */
.about-name-word-ciao  { color: var(--cta); }
.about-name-word-bella { color: var(--cta); }
/* Soft hand-drawn underline matching the word colour */
.about-name-word::after {
  content: '';
  display: block;
  width: 2.2em;
  height: 6px;
  margin-top: 6px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.18;
}
@media (max-width: 640px) {
  .about-name-word::after { margin-left: auto; margin-right: auto; }
}
.about-name-block p {
  margin-top: 6px;
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--sub-2, var(--sub));
  max-width: 30ch;
}
@media (max-width: 640px) {
  .about-name-block p { margin-left: auto; margin-right: auto; }
}
.about-name-summary {
  font-family: var(--heading-font);
  font-weight: 500;
  font-style: normal;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.5;
  color: var(--heading);
  margin: 0 auto;
  max-width: 560px;
  padding-top: 24px;
  border-top: 1px dashed var(--border);
  text-wrap: pretty;
  text-align: center;
}

/* signoff */
.about-signoff {
  text-align: center;
  margin-top: 56px;
}
.about-signoff-line {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 28px;
  color: var(--heading);
  margin-bottom: 6px;
}
.about-signoff-sub {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 17px;
  color: var(--sub);
  color: var(--sub-2, var(--sub));
}


/* ================================================================
   BRAND DECORATIONS — retro Italian deli
   ================================================================ */
.sticker {
  position: absolute;
  display: block;
  pointer-events: none;
  user-select: none;
  z-index: 5;
}
.sticker:hover { animation: sticker-wiggle 0.5s ease; }
@keyframes sticker-wiggle {
  0%,100% { transform: rotate(var(--r,0deg)); }
  25% { transform: rotate(calc(var(--r,0deg) - 6deg)) scale(1.06); }
  75% { transform: rotate(calc(var(--r,0deg) + 6deg)) scale(1.06); }
}

.checker-strip {
  display: block;
}
.checker-strip-top {
  margin-bottom: 0;
}
.checker-strip-bottom {
  margin-top: 0;
}

.squiggle {
  display: block;
}

/* CTA: deli green primary, on cream */
.cta {
  background: var(--green);
  color: #FAEED7;
  border-radius: 12px !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
}
.cta:hover { background: #18633A; }
.cta-circle {
  background: #FAEED7 !important;
  border-radius: 8px !important;
}
.cta-circle svg { stroke: var(--green) !important; }

.cta-sm {
  background: var(--green);
  color: #FAEED7;
  border-radius: 10px !important;
  font-weight: 700 !important;
}
.cta-sm:hover { background: #18633A; }

.cta-ghost {
  color: var(--ink) !important;
  border-bottom-color: var(--ink) !important;
  font-weight: 700;
}
.cta-ghost:hover { color: var(--red) !important; border-bottom-color: var(--red) !important; }

/* Section labels and eyebrows pop in red */
.section-label {
  color: var(--red) !important;
  letter-spacing: 0.16em !important;
  font-weight: 800 !important;
}
.eyebrow-row .dot { background: var(--red); }

/* Bundle featured card uses cream tint */
.bundle-card.featured { background: var(--bg-white); }

/* Body cream */
html, body { background: var(--bg); }

/* Hero italics in red */
.h-hero em, h1 em, h2 em, .h-section em {
  color: var(--red) !important;
  font-style: italic;
  font-weight: 600;
}

/* Underlined word — red squiggle already coloured, no filter needed */
.underlined .arrow { filter: none; }

/* Footer cream tint */
.footer { background: var(--bg); }
.footer-bottom { color: var(--sub-2); }


/* ── Brand additions: squiggle border + Italian deli flourish ── */
.squiggle-bordered {
  position: relative;
  padding-top: 80px !important;
  padding-bottom: 80px !important;
  background: linear-gradient(180deg, rgba(245, 166, 35, 0.06), rgba(245, 166, 35, 0.02));
  overflow: visible !important;
}
.squiggle-bordered .about-strip-inner { position: relative; z-index: 2; }
.squiggle-border-edge {
  position: absolute;
  left: 0;
  width: 100%;
  height: 30px;
  display: block;
  pointer-events: none;
  z-index: 1;
}
.squiggle-border-edge.top { top: 8px; }
.squiggle-border-edge.bottom { bottom: 8px; transform: scaleY(-1); }

.footer-italian-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 60px auto 20px;
  padding: 28px 0;
  border-top: 1.5px dashed var(--border);
  border-bottom: 1.5px dashed var(--border);
  flex-wrap: wrap;
  position: relative;
}
.footer-italian-strip::before,
.footer-italian-strip::after {
  content: '';
  flex: 1;
  height: 0;
  border-top: 1px dashed var(--border);
  max-width: 80px;
  display: none;
}
.footer-italian-strip img {
  height: 110px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 0 rgba(46, 44, 41, 0.08));
  transition: transform 0.3s;
}
.footer-italian-strip img:hover {
  transform: rotate(-3deg) scale(1.04);
}

/* Mascot positioning override so it doesn't overlap hero text on smaller widths */
@media (max-width: 1100px) {
  .hero .sticker[src*="mascot"] { transform: rotate(-8deg) scale(0.7); top: 20px !important; }
}

/* ================================================================
   MOBILE — text-wrap fixes, tighter spacing, no horizontal overflow
   ================================================================ */
@media (max-width: 759px) {
  /* Prevent ANY hidden text from being cropped by clamp(text-wrap: balance)
     producing single-line layouts on long words */
  .h-hero, .h-section,
  .hero-content h1, .hero-content h2,
  .feature-content h3,
  .phone-hero-copy h1, .phone-box-head h2,
  .about-hero h1, .about-name-h2,
  .footer-cta-block h2, .final-cta h2,
  .not-sw-title, .about-pull, .about-prose-emphasis {
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
    -webkit-hyphens: auto;
  }

  /* Section padding compressed — far too much for phones */
  .section { padding: 44px 0; }
  .section-head-wrap { margin-bottom: 40px; gap: 18px; }

  /* Hero — pull spacing in, reduce photo-fan height so cards never overflow */
  .hero { padding-top: 56px; padding-bottom: 32px; }
  .hero-content { gap: 20px; padding: 0 16px; }
  .hero-photos { height: auto; margin-top: 20px; min-height: 360px; }
  /* On mobile, surface ONE hero photo (the left one) centered above the fold
     so the product is always visible. The right photo + the "card" overlay
     stay desktop-only. */
  .hero-photo-left {
    display: block;
    position: relative;
    left: auto;
    top: auto;
    width: min(280px, 78vw);
    height: auto;
    aspect-ratio: 4 / 5;
    margin: 0 auto;
    transform: rotate(-4deg);
    transform-origin: center;
    z-index: 2;
  }
  .hero-photo-right { display: none; }
  .hero-card { display: none; }

  /* Phone page hero — shrink the headline and clamp the product photo so it
     never overflows the viewport. */
  .phone-hero { padding: 24px 0 32px; }
  .phone-hero-inner { gap: 24px; }
  .phone-hero-copy { min-width: 0; }
  .phone-hero-copy h1 {
    font-size: clamp(26px, 7.5vw, 36px);
    line-height: 1.1;
    margin: 12px 0 14px;
  }
  .phone-hero-copy h1 br { display: none; }
  .phone-hero-copy .lede {
    font-size: 16px;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .phone-hero-art {
    min-height: 0;
    padding: 4px 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .phone-hero-art .phone-preview,
  .phone-hero-art .phone-preview-photo,
  .phone-hero-art > div {
    width: 100% !important;
    max-width: 100% !important;
  }
  .phone-hero-art img {
    max-width: 100%;
    height: auto;
  }
  .phone-hero-art .phone-hero-doodle { width: 56px; height: 56px; }

  /* How-it-works cards — aspect ratio handles sizing on mobile */

  /* Feature panels — pad less, smaller image */
  .feature-panel { padding: 24px 20px; gap: 20px; min-height: 0; border-radius: 24px; }
  .feature-image { height: 340px; }
  .feature-content { padding: 8px 0 0; gap: 14px; }
  .feature-content h3 { font-size: 28px; }

  /* Bundle cards — pad less */
  .bundle-card { padding: 24px 20px; }
  .bundle-phones { height: 170px; padding: 14px 16px; }
  .bundle-phones-solo { padding: 0; }
  .bundle-price { font-size: 38px; }
  .bundle-name { font-size: 22px; }
  .bundle-features { margin: 20px 0 24px; font-size: 14.5px; }

  /* Configurator (preorder) — tighter padding so cards breathe on 360px */
  .config-summary { padding: 22px 20px; border-radius: 20px; }
  .config-summary h3 { font-size: 20px; margin-bottom: 14px; }
  .config-summary-total .amt { font-size: 32px; }
  .phone-config-card-v2 { padding: 20px 18px; }
  .config-card-head { min-height: 0; padding: 4px 0 8px; }
  .phone-config-preview-wrap > div { margin: 0 auto; }

  /* Pricing summary (Phone page) — don't stick on mobile; it stacks below */
  .pricing-summary { position: static; top: auto; padding: 22px 20px; border-radius: 20px; }
  .pricing-summary-head h3 { font-size: 24px; }
  .pricing-rows .row.total { font-size: 20px; }

  /* Checkout form — stack inputs single-column on phones so name + email
     don't squeeze into 140px each */
  .field-row { grid-template-columns: 1fr; gap: 14px; }
  .checkout-step h3 { font-size: 20px; margin-bottom: 16px; }
  .checkout-step-num { width: 28px; height: 28px; font-size: 13px; margin-right: 10px; }

  /* Confirmation block — heavy desktop padding doesn't fit on phones */
  .confirm-block { padding: 40px 20px; border-radius: 20px; }

  /* FAQ — tighter question padding so the chevron fits with breathing room */
  .faq-q { padding: 18px 18px; font-size: 16px; gap: 12px; }
  .faq-a-inner { padding: 0 18px 20px; }

  /* Testimonials — slightly tighter card padding */
  .testi-card { padding: 22px 22px; border-radius: 20px; }

  /* Final CTA + footer compressed */
  .final-cta { padding: 64px 0; }
  .footer { padding: 56px 0 32px; }
  .footer-cta-block { margin-bottom: 56px; padding: 0 16px; }
  .footer-cta-block h2 { font-size: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }

  /* About */
  .about-hero { padding: 40px 16px 56px; }
  .about-section { padding: 32px 0 40px; }
  .about-prose { font-size: 17px; }
  .about-name-section { padding: 56px 0; }

  /* Phone page */
  .phone-hero { padding: 40px 0 48px; }
  .phone-what { padding: 56px 0 32px; margin: 24px 0 0; }
  .phone-what + .section { padding-top: 32px; }
  .phone-box { padding: 64px 0; margin-top: 32px; }

  /* About strip / not-smartwatch */
  .about-strip { padding: 72px 0; }
  .not-smartwatch { padding: 64px 16px !important; }

  /* Squiggle-bordered tweak — already padded by .section override above */
  .squiggle-bordered { padding-top: 56px !important; padding-bottom: 56px !important; }

  /* Container side gutter slightly tighter so headings have more room */
  .container { padding: 0 16px; }

  /* Drawer CTA inherits desktop CTA size (it's the big one) — keep font and
     padding from the base .nav-drawer-cta rule above; this used to override
     them too tightly and made the arrow look cramped. */
}
@media (max-width: 760px) {
  .squiggle-bordered .sticker[src*="sardine"],
  .squiggle-bordered .sticker[src*="time-travel"] { display: none; }
}

/* About page: both photos portrait-tall, matched size */
.about-photo { min-height: 520px; }
.about-photo img { height: 520px; }
.about-photo image-slot { display: block; width: 100%; height: 100%; min-height: 520px; }
@media (max-width: 700px) {
  .about-photo { min-height: 420px; }
  .about-photo img { height: 420px; }
  .about-photo image-slot { min-height: 420px; }
}

/* Cord frame — curly squiggle border drawn around an image */
.cord-frame {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.cord-frame > .cord {
  position: absolute;
  pointer-events: none;
  display: block;
  user-select: none;
}
.cord-frame > .cord-top,
.cord-frame > .cord-bottom {
  left: 0;
  width: 100%;
  height: auto;
}
.cord-frame > .cord-top    { top: 0;    transform: translateY(-50%); }
.cord-frame > .cord-bottom { bottom: 0; transform: translateY(50%) scaleY(-1); }
.cord-frame > .cord-left,
.cord-frame > .cord-right {
  top: 0;
  height: 100%;
  width: auto;
}
.cord-frame > .cord-left  { left: 0;  transform: translateX(-50%); }
.cord-frame > .cord-right { right: 0; transform: translateX(50%) scaleX(-1); }

/* Gutter stickers — scattered decorative stickers down the page edges */
.gutter-stickers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 1;
}
.gutter-sticker {
  position: absolute;
  height: auto;
  filter: drop-shadow(0 4px 0 rgba(46,44,41,0.10));
}
/* Hide gutter stickers only on small/mobile — they sit nicely beside content on tablet+ */
@media (max-width: 760px) {
  .gutter-stickers { display: none; }
}

/* Footer sticker — single decorative accent */
.footer-sticker {
  position: absolute;
  top: -60px;
  left: 6%;
  width: 110px;
  height: auto;
  transform: rotate(-12deg);
  filter: drop-shadow(0 6px 0 rgba(46,44,41,0.14));
  z-index: 3;
  pointer-events: none;
}
@media (max-width: 700px) {
  .footer-sticker { width: 84px; top: -42px; left: 20px; }
}


/* ================================================================
   WHY CIAO BELLA — closing-argument pillars + founder note
   ================================================================ */
.why-sub {
  font-family: var(--hand);
  font-weight: 500;
  color: var(--sub);
  text-align: center;
  max-width: 580px;
  font-size: 17px;
  line-height: 1.5;
  margin: 0;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px 56px;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
.why-pillar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  position: relative;
}
.why-pillar-num {
  font-family: var(--heading-font);
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
  line-height: 1;
  color: var(--cta);
  margin-bottom: 4px;
}
.why-pillar h3 {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}
.why-pillar p {
  font-family: var(--hand);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.55;
  color: var(--sub);
  margin: 0;
  text-wrap: pretty;
}

.founder-note {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 8px;
  font-family: var(--hand);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  text-align: left;
}
.founder-note p { margin: 0 0 18px; text-wrap: pretty; }
.founder-note p:last-child { margin-bottom: 0; }
.founder-sig {
  font-family: var(--heading-font);
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  color: var(--cta);
  margin-top: 28px !important;
}


/* ================================================================
   FOUNDERS — "Two Sydney mums" credibility section
   ================================================================ */
.founders-section { padding-top: 80px; padding-bottom: 80px; }
@media (min-width: 1024px) {
  .founders-section { padding-top: 120px; padding-bottom: 120px; }
}
.founders-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.founders-headline {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: clamp(48px, 7vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.founders-headline em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--coral, #E04E33);
}
.founders-names-small {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0;
  color: var(--ink);
  margin: 18px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.founders-amp-sm {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  color: var(--coral, #E04E33);
  font-weight: 400;
  margin: 0 2px;
  font-size: 1.1em;
}
.founders-divider {
  color: var(--muted);
  font-size: 14px;
  opacity: 0.7;
}
.founders-role {
  font-family: var(--body);
  font-weight: 600;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.founders-bio {
  max-width: 620px;
  margin: 8px 0 0;
  font-family: var(--hand);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.55;
  color: var(--sub);
  text-wrap: pretty;
}
.founders-bio p { margin: 0 0 14px; }
.founders-bio p:last-child { margin-bottom: 0; }
.founders-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 10px;
  margin-top: 8px;
}
.founders-pill {
  font-family: var(--body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0;
  color: var(--ink);
  background: var(--cta-circle);
  border: 1px solid #F1C77F;
  border-radius: 999px;
  padding: 6px 14px;
  display: inline-block;
}
.founders-link {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 17px;
  color: var(--cta);
  text-decoration: none;
  border-bottom: 1.5px solid var(--cta);
  padding-bottom: 2px;
  margin-top: 12px;
  transition: opacity 0.15s;
}
.founders-link:hover { opacity: 0.7; }


/* ================================================================
   ABOUT STRIP — signed-letter attribution
   ================================================================ */
.about-strip-attribution {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.about-strip-signature {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(28px, 3.2vw, 36px);
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.about-strip-amp {
  color: var(--coral, #E04E33);
  margin: 0 6px;
}
.about-strip-credit {
  font-family: var(--body);
  font-weight: 500;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.about-strip-dot {
  margin: 0 6px;
  opacity: 0.6;
}
.about-strip-bio {
  font-family: var(--hand);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.55;
  color: var(--sub);
  max-width: 560px;
  margin: 24px auto 0;
  text-wrap: pretty;
}
.about-strip-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 10px;
  margin: 22px 0 6px;
}
.about-strip-pill {
  font-family: var(--body);
  font-weight: 500;
  font-size: 12px;
  color: var(--ink);
  background: var(--cta-circle);
  border: 1px solid #F1C77F;
  border-radius: 999px;
  padding: 6px 14px;
  display: inline-block;
}


/* ================================================================
   HERO — editorial split (text left, single dominant photo right)
   ================================================================ */
.hero-split {
  padding: 32px 0 64px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .hero-split { padding: 48px 0 112px; }
}
.hero-split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 960px) {
  .hero-split-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 64px;
    padding: 0 40px;
    align-items: center;
  }
}
@media (min-width: 1280px) {
  .hero-split-grid { gap: 96px; padding: 0 56px; }
}
.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  text-align: left;
  max-width: 540px;
}
@media (max-width: 959px) {
  .hero-copy { align-items: center; text-align: center; margin: 0 auto; }
}
.hero-product-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 6px 14px 6px 12px;
}
.hero-product-pill em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: var(--coral, #E04E33);
  margin-left: 2px;
}
.hero-product-dot {
  width: 7px; height: 7px;
  background: var(--cta);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.hero-split .h-hero {
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
  max-width: 22ch;
}
@media (max-width: 959px) {
  .hero-split .h-hero { max-width: 22ch; }
}
.hero-split .hero-sub {
  font-family: var(--hand);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.5;
  color: var(--sub);
  margin: 0;
  max-width: 440px;
  text-wrap: pretty;
}
.hero-split .hero-cta-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 6px;
}
@media (max-width: 959px) {
  .hero-split .hero-cta-row { justify-content: center; }
}
.hero-cta-meta {
  font-family: var(--hand);
  font-weight: 500;
  font-size: 14px;
  color: var(--sub);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-cta-meta-icon {
  color: var(--cta);
  font-weight: 700;
}
.hero-trustlist {
  list-style: none;
  margin: 14px 0 0;
  padding: 14px 0 0;
  border-top: 1px solid rgba(46, 44, 41, 0.12);
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--body);
  font-weight: 500;
  font-size: 13.5px;
  color: var(--ink);
  width: 100%;
  max-width: 380px;
}
.hero-trustlist li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0;
}
.hero-trustlist li > span:first-child {
  color: var(--cta);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}

/* Single dominant photo — no rotation, clean aspect */
.hero-photos-split {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-width: 600px;
  margin: 0 auto;
  height: auto !important;
  min-height: 0 !important;
}
@media (min-width: 960px) {
  .hero-photos-split {
    aspect-ratio: 5 / 6;
    max-width: none;
    margin: 0;
  }
}
.hero-photo-primary {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  transform: none !important;
  z-index: 1;
  display: block !important;
}
.hero-photo-secondary { display: none !important; }
.hero-photo-left, .hero-photo-right { display: none !important; }
.hero-photo-primary > .cord-frame { overflow: visible; }
.hero-photo-primary > .cord-frame > image-slot { display: block; width: 100%; height: 100%; }


/* ================================================================
   FOR PARENTS PAGE
   ================================================================ */
.forparents-page { padding: 0 0 40px; overflow: hidden; }

/* Hero */
.fp-hero {
  padding: 56px 0 64px;
  position: relative;
}
@media (min-width: 1024px) {
  .fp-hero { padding: 80px 0 96px; }
}
.fp-hero-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.fp-hero-title {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: clamp(40px, 5.8vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.fp-hero-title em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: var(--coral, #E04E33);
}
.fp-hero-sub {
  font-family: var(--hand);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.55;
  color: var(--sub);
  max-width: 580px;
  margin: 0;
  text-wrap: pretty;
}

/* Anchor nav */
.fp-anchor-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  margin-top: 6px;
  background: #fff;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 6px;
}
.fp-anchor-nav a {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 999px;
  transition: background 0.15s, color 0.15s;
}
.fp-anchor-nav a:hover {
  background: var(--cta-circle);
}
@media (max-width: 540px) {
  .fp-anchor-nav { gap: 2px; padding: 4px; }
  .fp-anchor-nav a { font-size: 13px; padding: 7px 12px; }
}

/* Section sub copy reused */
.fp-section-sub {
  font-family: var(--hand);
  font-weight: 500;
  color: var(--sub);
  text-align: center;
  max-width: 580px;
  font-size: 17px;
  line-height: 1.5;
  margin: 0;
}

/* Safety grid */
.fp-safety-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (min-width: 720px) {
  .fp-safety-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (min-width: 1024px) {
  .fp-safety-grid { grid-template-columns: repeat(3, 1fr); }
}
.fp-safety-card {
  background: #fff;
  border: 1px solid rgba(46, 44, 41, 0.12);
  border-radius: 18px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.fp-safety-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46, 44, 41, 0.06);
}
.fp-safety-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--cta);
  letter-spacing: 0;
}
.fp-safety-card h3 {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}
.fp-safety-card p {
  font-family: var(--hand);
  font-weight: 500;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--sub);
  margin: 0;
  text-wrap: pretty;
}

/* Parent app showcase */
.fp-app-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  max-width: 920px;
  margin: 0 auto 56px;
  align-items: end;
}
@media (min-width: 720px) {
  .fp-app-showcase {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
  }
}
.fp-app-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.fp-app-frame {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 9 / 19.5;
  background: #1a1a1a;
  border-radius: 36px;
  padding: 10px;
  box-shadow: 0 30px 60px rgba(46, 44, 41, 0.18);
  position: relative;
}
.fp-app-frame > image-slot,
.fp-app-frame .image-slot {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 28px;
  overflow: hidden;
}
.fp-app-screen-primary { transform: rotate(-2deg); }
.fp-app-screen-secondary { transform: rotate(2deg); margin-top: 36px; }
@media (max-width: 719px) {
  .fp-app-screen-primary, .fp-app-screen-secondary { transform: none; margin: 0; }
}
.fp-app-caption {
  font-family: var(--hand);
  font-weight: 500;
  font-size: 14px;
  color: var(--sub);
  text-align: center;
  max-width: 280px;
  text-wrap: balance;
}

.fp-app-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px 40px;
  max-width: 880px;
  margin: 0 auto;
}
@media (min-width: 720px) {
  .fp-app-features { grid-template-columns: repeat(2, 1fr); }
}
.fp-app-feature h4 {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.fp-app-feature p {
  font-family: var(--hand);
  font-weight: 500;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--sub);
  margin: 0;
  text-wrap: pretty;
}
.fp-app-meta {
  font-family: var(--body);
  font-weight: 500;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  margin: 56px 0 0;
}

/* Closing CTA */
.fp-close {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
.fp-close-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.fp-close-inner h2 {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: clamp(40px, 5.4vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.fp-close-inner h2 em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: var(--coral, #E04E33);
}
.fp-close-inner p {
  font-family: var(--hand);
  font-weight: 500;
  font-size: 16px;
  color: var(--sub);
  margin: 0 0 18px;
}


/* ================================================================
   SUBSCRIPTIONS PAGE
   ================================================================ */
.subs-page { padding: 0 0 40px; overflow: hidden; }

/* Hero */
.subs-hero {
  padding: 56px 0 64px;
}
@media (min-width: 1024px) {
  .subs-hero { padding: 80px 0 96px; }
}
.subs-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.subs-hero-title {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: clamp(40px, 5.8vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.subs-hero-title em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: var(--coral, #E04E33);
}
.subs-hero-sub {
  font-family: var(--hand);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.55;
  color: var(--sub);
  max-width: 580px;
  margin: 0;
  text-wrap: pretty;
}

/* Plan cards */
.subs-plans-section { padding-top: 56px; padding-bottom: 56px; }
@media (min-width: 1024px) {
  .subs-plans-section { padding-top: 80px; padding-bottom: 80px; }
}
.subs-plans {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: stretch;
}
@media (min-width: 880px) {
  .subs-plans { grid-template-columns: 1fr 1fr; gap: 28px; }
}

.subs-plan {
  background: #fff;
  border: 1px solid rgba(46, 44, 41, 0.14);
  border-radius: 22px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}
.subs-plan-plus {
  background: var(--ink);
  color: #FFFCF4;
  border: none;
}

/* Plan head */
.subs-plan-head { display: flex; flex-direction: column; gap: 8px; }
.subs-plan-eyebrow {
  font-family: var(--body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.subs-plan-eyebrow-plus {
  color: #F4B860;
}
.subs-plan-name {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: clamp(36px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.subs-plan-plus .subs-plan-name { color: #FFFCF4; }
.subs-plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 4px 0 8px;
}
.subs-plan-amt {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--cta);
}
.subs-plan-plus .subs-plan-amt { color: #F4B860; }
.subs-plan-period {
  font-family: var(--hand);
  font-weight: 500;
  font-size: 15px;
  color: var(--sub);
}
.subs-plan-plus .subs-plan-period { color: rgba(255, 252, 244, 0.65); }
.subs-plan-pitch {
  font-family: var(--hand);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--sub);
  margin: 0;
  text-wrap: pretty;
}
.subs-plan-plus .subs-plan-pitch { color: rgba(255, 252, 244, 0.78); }

/* Feature list */
.subs-features {
  list-style: none;
  margin: 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(46, 44, 41, 0.1);
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}
.subs-plan-plus .subs-features {
  border-top-color: rgba(255, 252, 244, 0.14);
}
.subs-features li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.subs-features strong {
  display: block;
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.subs-plan-plus .subs-features strong { color: #FFFCF4; }
.subs-features em {
  font-style: normal;
  font-family: var(--hand);
  font-weight: 500;
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--sub);
  display: block;
}
.subs-plan-plus .subs-features em { color: rgba(255, 252, 244, 0.66); }

.subs-check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--cta-circle);
  border: 1.5px solid var(--cta);
  color: var(--cta);
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.subs-check-plus {
  background: rgba(244, 184, 96, 0.18);
  border-color: #F4B860;
  color: #F4B860;
}

.subs-plan-foot {
  font-family: var(--hand);
  font-weight: 500;
  font-size: 14px;
  color: var(--sub);
  padding-top: 18px;
  border-top: 1px dashed rgba(46, 44, 41, 0.18);
  text-align: center;
}
.subs-plan-foot-plus {
  color: rgba(255, 252, 244, 0.62);
  border-top-color: rgba(255, 252, 244, 0.18);
}

/* Clarity (plain-talk) cards */
.subs-clarity-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 920px;
  margin: 0 auto;
}
@media (min-width: 720px) {
  .subs-clarity-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}
.subs-clarity-card {
  background: #fff;
  border: 1px solid rgba(46, 44, 41, 0.12);
  border-radius: 18px;
  padding: 24px 24px;
}
.subs-clarity-card h3 {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  text-wrap: balance;
}
.subs-clarity-card p {
  font-family: var(--hand);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.55;
  color: var(--sub);
  margin: 0;
  text-wrap: pretty;
}

/* Closing CTA — mirrors fp-close */
.subs-close {
  text-align: center;
  padding-top: 72px;
  padding-bottom: 80px;
}
.subs-close-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.subs-close-inner h2 {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.subs-close-inner h2 em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: var(--coral, #E04E33);
}
.subs-close-inner p {
  font-family: var(--hand);
  font-weight: 500;
  font-size: 16px;
  color: var(--sub);
  margin: 0 0 18px;
}


/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-page { padding: 0 0 80px; overflow: hidden; }

.contact-hero {
  padding: 56px 0 64px;
}
@media (min-width: 1024px) {
  .contact-hero { padding: 80px 0 96px; }
}
.contact-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.contact-title {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: clamp(40px, 5.8vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.contact-title em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: var(--coral, #E04E33);
}
.contact-sub {
  font-family: var(--hand);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.55;
  color: var(--sub);
  max-width: 540px;
  margin: 0;
  text-wrap: pretty;
}

.contact-form-section { padding-top: 56px; padding-bottom: 56px; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (min-width: 880px) {
  .contact-layout { grid-template-columns: 1.4fr 1fr; gap: 56px; }
}

.contact-form {
  background: #fff;
  border: 1px solid rgba(46, 44, 41, 0.14);
  border-radius: 22px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (min-width: 720px) {
  .contact-form { padding: 40px; }
}
.contact-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 560px) {
  .contact-row { grid-template-columns: 1fr 1fr; }
}
.contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-label {
  font-family: var(--body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--body);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  background: #FFFCF4;
  border: 1.5px solid rgba(46, 44, 41, 0.18);
  border-radius: 12px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
  font-family: inherit;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--cta);
  box-shadow: 0 0 0 3px var(--cta-circle);
}
.contact-form textarea {
  resize: vertical;
  min-height: 130px;
  font-family: var(--body);
  font-weight: 500;
}
.contact-submit-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.contact-sent {
  font-family: var(--hand);
  font-weight: 500;
  font-size: 14px;
  color: var(--cta);
}
.contact-microcopy {
  font-family: var(--hand);
  font-weight: 500;
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 8px;
}
.contact-aside-block h3 {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 10px;
}
.contact-aside-mail {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 18px;
  color: var(--cta);
  text-decoration: none;
  border-bottom: 1.5px solid var(--cta);
  padding-bottom: 2px;
  display: inline-block;
  margin-bottom: 6px;
}
.contact-aside-meta {
  font-family: var(--hand);
  font-weight: 500;
  font-size: 14px;
  color: var(--sub);
  margin: 0;
}
.contact-aside-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-aside-links a {
  font-family: var(--body);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(46, 44, 41, 0.18);
  padding-bottom: 2px;
  width: fit-content;
}
.contact-aside-links a:hover { color: var(--cta); border-bottom-color: var(--cta); }

/* ================================================================
   LEGAL PAGES (privacy / terms / refunds)
   ================================================================ */
.legal-page { padding: 0 0 64px; overflow: hidden; }
.legal-hero {
  padding: 48px 0 56px;
}
@media (min-width: 1024px) {
  .legal-hero { padding: 64px 0 80px; }
}
.legal-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.legal-title {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: clamp(36px, 4.8vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.legal-updated {
  font-family: var(--body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}
.legal-intro {
  font-family: var(--hand);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.55;
  color: var(--sub);
  max-width: 580px;
  margin: 0;
  text-wrap: pretty;
}

.legal-body-section { padding-top: 32px; padding-bottom: 56px; }
.legal-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 960px) {
  .legal-layout { grid-template-columns: 260px 1fr; gap: 64px; }
}

.legal-toc {
  font-family: var(--body);
  position: relative;
}
@media (min-width: 960px) {
  .legal-toc { position: sticky; top: 100px; align-self: start; }
}
.legal-toc h4 {
  font-family: var(--body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 12px;
}
.legal-toc ol,
.legal-toc ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.legal-toc a {
  font-family: var(--body);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  display: block;
  padding: 6px 0;
  border-bottom: 1px solid rgba(46, 44, 41, 0.08);
  transition: color 0.15s, border-color 0.15s;
}
.legal-toc a:hover { color: var(--cta); border-bottom-color: var(--cta); }
.legal-toc-foot { margin-top: 24px; }

.legal-body { font-family: var(--body); color: var(--ink); max-width: 720px; }
.legal-section { margin-bottom: 40px; scroll-margin-top: 100px; }
.legal-section h2 {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 16px;
}
.legal-body p {
  font-family: var(--body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 14px;
}
.legal-body ul,
.legal-body ol {
  font-family: var(--body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  padding-left: 22px;
  margin: 0 0 16px;
}
.legal-body ul li,
.legal-body ol li { margin-bottom: 6px; }
.legal-body strong { font-weight: 600; }
.legal-body a { color: var(--cta); text-decoration: underline; text-underline-offset: 3px; }
.legal-body em { font-family: 'Playfair Display', Georgia, serif; font-style: italic; }
.legal-promise {
  background: var(--cta-circle);
  border-left: 4px solid var(--cta);
  padding: 18px 22px;
  border-radius: 0 12px 12px 0;
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 18px !important;
  line-height: 1.4 !important;
  color: var(--ink) !important;
}
.legal-contact-line {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(46, 44, 41, 0.12);
  font-family: var(--hand) !important;
  font-weight: 500 !important;
  font-size: 15px !important;
  color: var(--sub) !important;
}


/* ================================================================
   FAQ — "Still got questions?" warm escape hatch
   ================================================================ */
.faq-still-got {
  margin-top: 36px;
  text-align: center;
  font-family: var(--hand);
  font-weight: 500;
  font-size: 16px;
  color: var(--sub);
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 8px;
}
.faq-still-got-label { color: var(--sub); }
.faq-still-got-mail {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 17px;
  color: var(--cta);
  text-decoration: none;
  border-bottom: 1.5px solid var(--cta);
  padding-bottom: 1px;
  letter-spacing: 0;
}
.faq-still-got-mail:hover { opacity: 0.75; }


/* ================================================================
   HOME FAQ teaser
   ================================================================ */
.home-faq-teaser { padding-top: 64px; padding-bottom: 80px; }
.home-faq-list { width: 100%; max-width: 760px; }
.home-faq-cta {
  margin-top: 36px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  color: #FFFCF4;
  background: var(--ink);
  border: none;
  border-radius: 999px;
  padding: 14px 26px;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}
.home-faq-cta:hover {
  background: var(--cta);
  transform: translateY(-1px);
}
.home-faq-cta svg { stroke-width: 2.5; }


/* ================================================================
   FOOTER — social link
   ================================================================ */
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-weight: 500;
  font-size: 13px;
  color: var(--sub);
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid rgba(46, 44, 41, 0.2);
  border-radius: 999px;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.footer-social:hover {
  color: var(--cta);
  border-color: var(--cta);
  background: var(--cta-circle);
}
.footer-social svg { flex-shrink: 0; }
@media (max-width: 540px) {
  .footer-social { order: 3; }
}


/* ================================================================
   PARENT APP PAGE
   ================================================================ */
.parentapp-page { padding: 0 0 40px; overflow: hidden; }

/* Hero */
.pa-hero {
  padding: 56px 0 64px;
  position: relative;
}
@media (min-width: 1024px) {
  .pa-hero { padding: 72px 0 96px; }
}
.pa-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 960px) {
  .pa-hero-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
}
.pa-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  text-align: left;
}
@media (max-width: 959px) {
  .pa-hero-copy { align-items: center; text-align: center; }
}
.pa-hero-title {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.pa-hero-title em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: var(--coral, #E04E33);
}
.pa-hero-sub {
  font-family: var(--hand);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.55;
  color: var(--sub);
  max-width: 480px;
  margin: 0;
  text-wrap: pretty;
}
.pa-hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.pa-hero-meta-divider { opacity: 0.5; }
.pa-hero-ctas {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 4px;
}
@media (max-width: 959px) {
  .pa-hero-ctas { justify-content: center; }
}
.pa-link {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 2px;
}
.pa-link:hover { color: var(--cta); border-bottom-color: var(--cta); }

.pa-hero-mock {
  display: flex;
  justify-content: center;
  position: relative;
}

/* ── Phone bezel ── */
.pa-bezel {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 9 / 19;
  background: #111;
  border-radius: 42px;
  padding: 8px;
  box-shadow: 0 30px 60px rgba(46, 44, 41, 0.18), 0 4px 12px rgba(46, 44, 41, 0.06);
  position: relative;
  overflow: hidden;
}
.pa-bezel-compact {
  max-width: 280px;
  aspect-ratio: 9 / 14;
  border-radius: 36px;
}
.pa-bezel-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 22px;
  background: #1a1a1a;
  border-radius: 0 0 12px 12px;
  z-index: 2;
}
.pa-bezel-compact .pa-bezel-notch {
  width: 70px;
  height: 18px;
}
.pa-bezel-screen {
  background: #FFFCF4;
  width: 100%;
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  position: relative;
}
.pa-bezel-compact .pa-bezel-screen {
  border-radius: 28px;
}

/* ── Screen content ── */
.pa-screen {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-direction: column;
  font-family: var(--body);
  color: var(--ink);
}

/* Status bar */
.pa-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 22px 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.pa-statusbar-icons { color: var(--ink); }
/* Inside .pa-mini the screen has its own padding — neutralise so the status
   bar sits flush at the top edge like in HomeMockup. */
.pa-mini > .pa-statusbar {
  margin: -16px -18px 4px;
}

/* HOME screen */
.pa-home {
  padding: 0 0 0;
}
.pa-home-greeting {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px 14px;
}
.pa-home-greeting h2 {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}
.pa-eyebrow {
  font-family: var(--body);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 4px;
}
.pa-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: #FFFCF4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 14px;
}

.pa-child-pills {
  display: flex;
  gap: 10px;
  padding: 0 22px 14px;
}
.pa-child-pill {
  flex: 1;
  background: #fff;
  border: 1.5px solid rgba(46, 44, 41, 0.12);
  border-radius: 14px;
  padding: 10px 6px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  font-family: var(--body);
}
.pa-child-pill.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #FFFCF4;
}
.pa-child-pill-letter {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.pa-child-pill-name {
  font-family: var(--body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.pa-status-row {
  margin: 0 22px 18px;
  background: rgba(208, 198, 156, 0.18);
  border: 1px solid rgba(208, 198, 156, 0.45);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-weight: 500;
  font-size: 12.5px;
  color: var(--ink);
}
.pa-status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cta);
  box-shadow: 0 0 0 3px rgba(60, 122, 87, 0.18);
}

.pa-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 22px 16px;
}
.pa-card {
  background: #fff;
  border: 1px solid rgba(46, 44, 41, 0.1);
  border-radius: 14px;
  padding: 12px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--body);
}
.pa-card-mint {
  background: rgba(60, 122, 87, 0.08);
  border-color: rgba(60, 122, 87, 0.2);
}
.pa-card-cream {
  background: rgba(208, 198, 156, 0.18);
  border-color: rgba(208, 198, 156, 0.45);
}
.pa-card-icon {
  width: 22px; height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pa-card-icon svg { width: 22px; height: 22px; }
.pa-card h3 {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
.pa-card p {
  font-family: var(--body);
  font-weight: 500;
  font-size: 11.5px;
  line-height: 1.3;
  color: var(--sub);
  margin: 0;
}

.pa-section-label {
  font-family: var(--body);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 4px 22px 8px;
  margin: 0;
}
.pa-recent {
  padding: 0 22px 12px;
  display: flex;
  flex-direction: column;
}
.pa-recent-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(46, 44, 41, 0.08);
}
.pa-recent-row:last-child { border-bottom: none; }
.pa-recent-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 13px;
  color: #FFFCF4;
  flex-shrink: 0;
}
.pa-recent-avatar-blue { background: #6E8FB8; }
.pa-recent-avatar-green { background: var(--cta); }
.pa-recent-meta {
  flex: 1;
  min-width: 0;
}
.pa-recent-meta strong {
  display: block;
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.pa-recent-meta span {
  font-family: var(--body);
  font-weight: 500;
  font-size: 11px;
  color: var(--sub);
}
.pa-recent-time {
  font-family: var(--body);
  font-weight: 500;
  font-size: 11px;
  color: var(--muted);
}

/* Bottom tab bar */
.pa-tabbar {
  margin-top: auto;
  margin-top: auto;
  background: #fff;
  border-top: 1px solid rgba(46, 44, 41, 0.08);
  padding: 10px 22px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pa-tab {
  width: 28px; height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}
.pa-tab.active { color: var(--cta); }
.pa-tab svg { width: 22px; height: 22px; }

/* ── Mini screens (compact feature mockups) ── */
.pa-mini {
  padding: 16px 18px 0;
  gap: 12px;
  display: flex;
  flex-direction: column;
}
.pa-mini-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pa-mini-head h3 {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
.pa-mini-add {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--ink);
  color: #FFFCF4;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pa-mini-add svg { width: 14px; height: 14px; }
.pa-mini-icon {
  width: 22px; height: 22px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pa-mini-icon svg { width: 22px; height: 22px; }
.pa-mini-pill {
  background: var(--cta);
  color: #FFFCF4;
  font-family: var(--body);
  font-weight: 600;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.pa-mini-info {
  background: rgba(208, 198, 156, 0.18);
  border-radius: 10px;
  padding: 10px 12px;
  font-family: var(--body);
  font-weight: 500;
  font-size: 12px;
  line-height: 1.4;
  color: var(--ink);
}
.pa-mini-foot {
  font-family: var(--body);
  font-weight: 500;
  font-size: 11px;
  color: var(--muted);
  margin: auto 0 0;
  padding-top: 8px;
}

/* Contact list (People mockup) */
.pa-contact-list {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.pa-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(46, 44, 41, 0.08);
}
.pa-contact-list li:last-child { border-bottom: none; }
.pa-contact-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 13px;
  color: #FFFCF4;
  flex-shrink: 0;
}
.pa-contact-avatar-blue { background: #6E8FB8; }
.pa-contact-avatar-green { background: var(--cta); }
.pa-contact-avatar-orange { background: #C97D5B; }

/* Speed Dial mockup — three large numbered slots, no tab bar */
.pa-mini-flush { padding-bottom: 18px; }
.pa-speed-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pa-speed-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  background: #FFFCF4;
  border: 1px solid rgba(46, 44, 41, 0.08);
  border-radius: 14px;
}
.pa-speed-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 22px;
  color: #fff;
  flex-shrink: 0;
}
.pa-speed-num-1 { background: #6E8FB8; }    /* blue */
.pa-speed-num-2 { background: #F2C84B; color: #5a4a10; } /* yellow */
.pa-speed-num-3 { background: var(--cta); } /* green */
.pa-speed-meta { flex: 1; min-width: 0; }
.pa-speed-meta strong {
  display: block;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.2;
}
.pa-speed-meta span {
  display: block;
  font-family: var(--body);
  font-weight: 400;
  font-size: 12px;
  color: var(--sub);
  margin-top: 2px;
}
.pa-contact-meta { flex: 1; min-width: 0; }
.pa-contact-meta strong {
  display: block;
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.pa-contact-meta span {
  font-family: var(--body);
  font-weight: 500;
  font-size: 11px;
  color: var(--sub);
}
.pa-contact-badge {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--cta);
  color: #FFFCF4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pa-contact-badge svg { width: 12px; height: 12px; }
.pa-contact-badge-pending {
  background: rgba(46, 44, 41, 0.12);
  color: var(--sub);
  font-weight: 700;
  font-size: 12px;
}

/* Shh toggle */
.pa-shh-toggle, .pa-shh-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  border-bottom: 1px solid rgba(46, 44, 41, 0.08);
}
.pa-shh-toggle:last-of-type, .pa-shh-row:last-of-type { border-bottom: none; }
.pa-shh-toggle strong, .pa-shh-row strong {
  display: block;
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.pa-shh-toggle span, .pa-shh-row span {
  font-family: var(--body);
  font-weight: 500;
  font-size: 11px;
  color: var(--sub);
}
.pa-toggle {
  width: 36px; height: 22px;
  border-radius: 999px;
  background: rgba(46, 44, 41, 0.16);
  position: relative;
  flex-shrink: 0;
  transition: background 0.15s;
}
.pa-toggle span {
  position: absolute;
  top: 2px; left: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.15s;
}
.pa-toggle.active { background: var(--cta); }
.pa-toggle.active span { left: 16px; }

/* Voicemail */
.pa-vm-list {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.pa-vm-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(46, 44, 41, 0.08);
}
.pa-vm-row:last-of-type { border-bottom: none; }
.pa-vm-new {
  background: rgba(60, 122, 87, 0.05);
  margin: 0 -4px;
  padding-left: 4px;
  padding-right: 4px;
  border-radius: 8px;
}
.pa-vm-play {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--cta);
  color: #FFFCF4;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pa-vm-play svg {
  width: 10px; height: 10px;
  margin-left: 2px;
}
.pa-vm-meta { flex: 1; min-width: 0; }
.pa-vm-meta strong {
  display: block;
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.pa-vm-meta span {
  font-family: var(--body);
  font-weight: 500;
  font-size: 11px;
  color: var(--sub);
}

/* Chat log */
.pa-log-list {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.pa-log-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(46, 44, 41, 0.08);
}
.pa-log-row:last-of-type { border-bottom: none; }
.pa-log-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pa-log-dot-in { background: var(--cta); }
.pa-log-dot-out { background: #6E8FB8; }
.pa-log-dot-miss { background: var(--coral, #E04E33); }
.pa-log-meta { flex: 1; min-width: 0; }
.pa-log-meta strong {
  display: block;
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.pa-log-meta span {
  font-family: var(--body);
  font-weight: 500;
  font-size: 11px;
  color: var(--sub);
}
.pa-log-len {
  font-family: var(--body);
  font-weight: 500;
  font-size: 11px;
  color: var(--muted);
}

/* ── Feature sections ── */
.pa-feat { padding-top: 64px; padding-bottom: 64px; }
@media (min-width: 1024px) {
  .pa-feat { padding-top: 96px; padding-bottom: 96px; }
}
.pa-feat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
@media (min-width: 880px) {
  .pa-feat-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
  .pa-feat-grid.reverse > :first-child { order: 2; }
  .pa-feat-grid.reverse > :last-child { order: 1; }
}
.pa-feat-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 480px;
}
.pa-feat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
  color: var(--cta);
  line-height: 1;
}
.pa-feat-copy h2 {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.pa-feat-copy h2 em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: var(--coral, #E04E33);
}
.pa-feat-copy p {
  font-family: var(--hand);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.5;
  color: var(--sub);
  margin: 0;
}
.pa-feat-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pa-feat-list li {
  font-family: var(--body);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.pa-feat-list li svg {
  width: 18px; height: 18px;
  color: var(--cta);
  flex-shrink: 0;
  margin-top: 2px;
}
.pa-feat-list em {
  font-style: italic;
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--ink);
}
.pa-feat-mock {
  display: flex;
  justify-content: center;
}

/* Closing CTA */
.pa-close {
  text-align: center;
  padding-top: 64px;
  padding-bottom: 80px;
}
.pa-close-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.pa-close-inner h2 {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.pa-close-inner h2 em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: var(--coral, #E04E33);
}
.pa-close-inner p {
  font-family: var(--hand);
  font-weight: 500;
  font-size: 16px;
  color: var(--sub);
  margin: 0 0 18px;
}

/* ================================================================
   FOR PARENTS — parent app teaser block (replaces fp-app-showcase)
   ================================================================ */
.fp-app-teaser {
  max-width: 980px;
  margin: 0 auto;
}
.fp-app-teaser-quad {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
@media (min-width: 720px) {
  .fp-app-teaser-quad { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
.fp-app-teaser-item {
  background: #fff;
  border: 1px solid rgba(46, 44, 41, 0.12);
  border-radius: 16px;
  padding: 22px 22px;
}
.fp-app-teaser-item h4 {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 6px;
}
.fp-app-teaser-item p {
  font-family: var(--hand);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
  color: var(--sub);
  margin: 0;
}
.fp-app-teaser-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}


/* ================================================================
   STORE BADGES (App Store / Google Play)
   ================================================================ */
.pa-store-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 4px 0;
}
.pa-store-badges-center { justify-content: center; margin: 12px 0 18px; }
.pa-store-badge {
  display: inline-block;
  border-radius: 8px;
  transition: transform 0.15s, opacity 0.15s;
  flex-shrink: 0;
}
.pa-store-badge:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}
.pa-store-badge svg {
  display: block;
  height: 44px;
  width: auto;
}
@media (max-width: 480px) {
  .pa-store-badge svg { height: 40px; }
}


/* ================================================================
   COOKIE BANNER — bottom-pinned, dismissible
   ================================================================ */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  display: flex;
  justify-content: center;
  pointer-events: none;
  animation: cookieSlideIn 0.35s ease-out;
}
.cookie-banner-inner {
  pointer-events: auto;
  background: #fff;
  border: 1.5px solid var(--ink);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(46, 44, 41, 0.18), 0 4px 12px rgba(46, 44, 41, 0.06);
  padding: 18px 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  max-width: 920px;
  width: 100%;
}
@media (max-width: 760px) {
  .cookie-banner-inner {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 14px 12px;
    padding: 16px 18px;
  }
}
.cookie-banner-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-banner-icon svg {
  width: 32px;
  height: 32px;
  display: block;
}
.cookie-banner-text { min-width: 0; }
.cookie-banner-text h4 {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 4px;
}
.cookie-banner-text p {
  font-family: var(--body);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.5;
  color: var(--sub);
  margin: 0;
}
.cookie-banner-text p a,
.cookie-banner-text p a:visited {
  color: var(--cta);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner-link {
  background: transparent;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--cta);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}
.cookie-banner-link:hover { opacity: 0.7; }

.cookie-banner-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
@media (max-width: 760px) {
  .cookie-banner-actions {
    grid-column: 1 / -1;
    justify-content: stretch;
  }
  .cookie-banner-actions button { flex: 1; }
}
.cookie-banner-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 13px;
  padding: 9px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.cookie-banner-btn-ghost {
  background: transparent;
  border: 1.5px solid rgba(46, 44, 41, 0.25);
  color: var(--ink);
}
.cookie-banner-btn-ghost:hover {
  border-color: var(--ink);
  background: rgba(46, 44, 41, 0.04);
}
.cookie-banner-btn-primary {
  background: var(--cta);
  border: 1.5px solid var(--cta);
  color: #FFFCF4;
}
.cookie-banner-btn-primary:hover {
  background: var(--ink);
  border-color: var(--ink);
}

@keyframes cookieSlideIn {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}


/* ================================================================
   ANNOUNCEMENT BAR — top strip, pre-order pricing
   ================================================================ */
.announce-bar {
  background: #2E2C29;
  color: #FFFCF4;
  position: relative;
  z-index: 60;
}
.announce-bar-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 9px 56px 9px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 0;
}
.announce-bar-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cta);
  margin-right: 10px;
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(60, 122, 87, 0.25);
  animation: announcePulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes announcePulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(60, 122, 87, 0.25); }
  50% { box-shadow: 0 0 0 5px rgba(60, 122, 87, 0.15); }
}
.announce-bar-text {
  font-family: var(--body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.01em;
  color: #FFFCF4;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.announce-bar-text:hover { color: #F4B860; }
.announce-bar-text strong { font-weight: 700; }
.announce-bar-strike {
  text-decoration: line-through;
  opacity: 0.55;
  font-weight: 500;
  margin-left: 4px;
}
.announce-bar-divider {
  opacity: 0.45;
  margin: 0 2px;
}
.announce-bar-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #FFFCF4;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  opacity: 0.55;
  transition: opacity 0.15s;
}
.announce-bar-close:hover { opacity: 1; }

@media (max-width: 640px) {
  .announce-bar-inner { padding: 8px 48px 8px 16px; }
  .announce-bar-text { font-size: 12px; gap: 6px; }
  .announce-bar-divider { display: none; }
}


/* ================================================================
   PROMO CODE INPUT (preorder checkout step)
   ================================================================ */
.promo-toggle {
  background: transparent;
  border: none;
  padding: 8px 0;
  font-family: var(--body);
  font-weight: 600;
  font-size: 13px;
  color: var(--cta);
  cursor: pointer;
  text-align: left;
  letter-spacing: 0;
}
.promo-toggle:hover { color: var(--ink); }

.promo-input-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.promo-input-row {
  display: flex;
  gap: 6px;
  align-items: stretch;
}
.promo-input {
  flex: 1;
  font-family: var(--body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink);
  background: #FFFCF4;
  border: 1.5px solid rgba(46, 44, 41, 0.2);
  border-radius: 10px;
  padding: 10px 12px;
  outline: none;
  text-transform: uppercase;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.promo-input:focus {
  border-color: var(--cta);
  box-shadow: 0 0 0 3px var(--cta-circle);
}
.promo-input.error {
  border-color: var(--coral, #E04E33);
  box-shadow: 0 0 0 3px rgba(224, 78, 51, 0.12);
}
.promo-input::placeholder {
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.promo-apply {
  background: var(--ink);
  color: #FFFCF4;
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  padding: 10px 16px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.15s, opacity 0.15s;
  min-width: 70px;
}
.promo-apply:hover:not(:disabled) {
  background: var(--cta);
  border-color: var(--cta);
}
.promo-apply:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.promo-error {
  font-family: var(--body);
  font-weight: 500;
  font-size: 12px;
  color: var(--coral, #E04E33);
  padding: 2px 4px;
}

.promo-applied {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cta-circle);
  border: 1.5px solid var(--cta);
  border-radius: 10px;
  padding: 10px 12px;
}
.promo-applied-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--cta);
  color: #FFFCF4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.promo-applied-text {
  flex: 1;
  font-family: var(--body);
  font-weight: 500;
  font-size: 13px;
  color: var(--ink);
}
.promo-applied-text strong { font-weight: 700; }
.promo-remove {
  background: transparent;
  border: none;
  font-family: var(--body);
  font-weight: 600;
  font-size: 12px;
  color: var(--sub);
  cursor: pointer;
  padding: 4px 6px;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.promo-remove:hover { color: var(--coral, #E04E33); }


/* Hero photo flower — small decorative sticker overlapping the top of the photo */
.hero-photo-primary { position: relative; }
.hero-photo-flower {
  position: absolute;
  top: -36px;
  right: -28px;
  width: 110px;
  height: auto;
  transform: rotate(14deg);
  z-index: 3;
  pointer-events: none;
  user-select: none;
}
@media (max-width: 600px) {
  .hero-photo-flower {
    width: 84px;
    top: -24px;
    right: -10px;
  }
}


/* ================================================================
   HERO MOBILE — reduce text load on small screens
   ================================================================ */
@media (max-width: 640px) {
  .hero-split .h-hero {
    font-size: clamp(30px, 8vw, 40px);
    line-height: 1.08;
  }
  .hero-split .hero-sub {
    display: none;
  }
  .hero-trustlist {
    margin-top: 10px;
    padding-top: 10px;
    font-size: 12.5px;
    gap: 4px;
  }
  .hero-trustlist li {
    gap: 6px;
  }
}

/* ================================================================
   FOOTER — allow heart sticker to peek above the top edge
   ================================================================ */
.footer { overflow: visible !important; position: relative; }


/* ================================================================
   GUTTER STICKERS — desktop only
   Stickers are absolutely positioned with fixed pixel top values.
   On smaller screens content reflows but stickers don't, so they
   end up over text/photos. Hide them under 1080px entirely.
   ================================================================ */
@media (max-width: 1079px) {
  .sticker { display: none !important; }
}


/* ================================================================
   HOW IT WORKS — 5-step editorial zigzag (weaves phone + parent app)
   Replaces the old .how-cards 3-up grid. Re-uses .pa-feat-grid layout.
   ================================================================ */
.hiw {
  padding: 72px 0 56px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .hiw { padding: 96px 0 80px; }
}

.hiw .section-head-wrap { margin-bottom: 16px; }
.hiw-sub {
  font-family: var(--hand);
  font-weight: 500;
  color: var(--sub-2);
  text-align: center;
  max-width: 540px;
  font-size: 17px;
  line-height: 1.5;
  margin: 14px auto 0;
}

.hiw-row {
  margin-top: 72px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hiw-row { margin-top: 104px; }
}

/* Always show copy ABOVE the visual on mobile, regardless of source order.
   At desktop (>=880px) the existing .pa-feat-grid rules take over and the
   .reverse variant flips the columns. */
@media (max-width: 879px) {
  .hiw-row > .pa-feat-copy { order: 1; }
  .hiw-row > .pa-feat-mock { order: 2; }
}

/* All phone mockups inside the How It Works section render at the same
   compact size (280×513) regardless of which bezel variant they normally use. */
.hiw-row .pa-bezel {
  max-width: 280px;
  border-radius: 36px;
  overflow: hidden;
}
.hiw-row .pa-bezel-screen {
  border-radius: 28px;
  overflow: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.hiw-row .pa-bezel-notch {
  width: 70px;
  height: 18px;
}
@media (max-width: 700px) {
  .hiw-row .pa-bezel { max-width: 240px; }
}

/* HowItWorks compact pa-home: hide secondary content so the 4-card grid +
   the bottom tab bar all fit within the compact bezel. The cards + tab bar
   carry the message ("you see every call"); recent-calls list and the
   "phone is online" status row are redundant here. */
.hiw-row .pa-status-row { display: none; }
.hiw-row .pa-section-label { display: none; }
.hiw-row .pa-recent { display: none; }

/* Tighten greeting and card padding so all four cards fit. */
.hiw-row .pa-home-greeting { padding: 14px 18px 10px; }
.hiw-row .pa-home-greeting h2 { font-size: 22px; line-height: 1.1; }
.hiw-row .pa-child-pills { padding: 0 18px 12px; gap: 8px; }
.hiw-row .pa-card-grid { padding: 0 18px 12px; gap: 10px; }
.hiw-row .pa-card { padding: 14px; }
.hiw-row .pa-card h3 { font-size: 15px; }
.hiw-row .pa-card p { font-size: 12px; }
.hiw-row .pa-tabbar { padding: 10px 0; }

/* Photo cards inside the hiw rows — sized to roughly match a phone bezel
   so the visual rhythm stays consistent across photo and mockup steps. */
.hiw-photo {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1 / 1;
  position: relative;
  margin: 0 auto;
}
.hiw-photo > .cord-frame { overflow: visible; }
.hiw-photo img,
.hiw-photo image-slot { width: 100%; height: 100%; display: block; }
.hiw-photo image-slot { min-height: 0; }
.hiw-photo img { object-fit: cover; }

/* "Tour the full parent app" link at the bottom of step v */
.hiw-deeper { margin-top: 12px; }
.hiw-deeper a {
  font-family: var(--body);
  font-weight: 600;
  font-size: 15px;
  color: var(--cta, #2a6f4d);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease;
  border-bottom: 2px solid currentColor;
  padding-bottom: 1px;
}
.hiw-deeper a:hover { gap: 10px; }

/* Mobile tightening */
@media (max-width: 700px) {
  .hiw { padding: 48px 0 40px; }
  .hiw-row { margin-top: 48px; }
  .hiw-photo { max-width: 260px; }
}

/* ── Email signup section ── */
.email-signup-section { background: #10804D; padding: 60px 0; }
.email-signup-inner { display: flex; align-items: center; gap: 48px; flex-wrap: wrap; }
.email-signup-copy { flex: 1; min-width: 280px; }
.email-signup-eyebrow { font-family: var(--hand); font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,241,222,0.6); margin-bottom: 10px; }
.email-signup-heading { font-family: var(--body); font-size: 22px; font-weight: 500; font-style: normal; color: #FFF1DE; line-height: 1.4; margin-bottom: 10px; }
.email-signup-sub { font-family: var(--body); font-size: 15px; color: rgba(255,241,222,0.75); line-height: 1.6; max-width: 400px; }
.email-signup-form { flex: 1; min-width: 280px; }
.email-signup-row { display: flex; gap: 8px; flex-wrap: wrap; }
.email-signup-input { flex: 1; min-width: 200px; padding: 13px 18px; border-radius: 28px; border: 1.5px solid rgba(255,241,222,0.3); background: rgba(255,241,222,0.1); color: #FFF1DE; font-family: var(--body); font-size: 15px; outline: none; }
.email-signup-input::placeholder { color: rgba(255,241,222,0.45); }
.email-signup-input:focus { border-color: rgba(255,241,222,0.6); }
.email-signup-btn { padding: 13px 24px; border-radius: 28px; background: #FFF1DE; color: #10804D; border: none; font-family: var(--body); font-weight: 700; font-size: 15px; cursor: pointer; white-space: nowrap; }
.email-signup-btn:disabled { opacity: 0.6; cursor: wait; }
.email-signup-error { font-family: var(--body); font-size: 13px; color: #FEA604; margin-top: 8px; }
.email-signup-fine { font-family: var(--body); font-size: 12px; color: rgba(255,241,222,0.45); margin-top: 10px; }
.email-signup-success { justify-content: center; text-align: center; }
.email-signup-success-msg { font-family: var(--serif); font-size: 22px; font-style: italic; color: #FFF1DE; }
@media (max-width: 640px) {
  .email-signup-inner { flex-direction: column; gap: 28px; }
  .email-signup-heading { font-size: 22px; }
  .email-signup-row { flex-direction: column; }
  .email-signup-btn { width: 100%; }
}
