html { scroll-behavior: smooth; }
*, body { font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif; }
body { background: #FAFAF8; margin: 0; line-height: 1.5; }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 72px; height: 68px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #EBEBEB;
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}
.nav-logo {
  display: flex; align-items: center; gap: 5px;
  font-size: 19px; font-weight: 800; color: #111;
  text-decoration: none; letter-spacing: -0.2px;
}
.nav-logo img {
  height: 30px; width: auto; object-fit: contain;
}
.wordmark { display: inline-flex; align-items: baseline; line-height: 1; }
.tm-mark {
  font-size: 0.43em; font-weight: 700; letter-spacing: 0;
  position: relative; top: -0.42em; margin-left: 2px; opacity: 0.72;
}
.nav-links {
  position: absolute; left: 50%; transform: translateX(-50%);
  display: flex; gap: 28px;
}
.nav-links a {
  font-size: 14px; font-weight: 600; color: #6B6B6B;
  text-decoration: none; transition: color 0.15s ease;
}
.nav-links a:hover { color: #1A1A1A; }
@media (max-width: 900px) { .nav-links { display: none; } }
.nav-actions { display: flex; gap: 8px; align-items: center; }
.btn-ghost {
  background: none; border: none; color: #9A9A9A;
  font-size: 14px; font-weight: 500; cursor: pointer;
  padding: 8px 18px; border-radius: 999px;
  transition: color 0.2s cubic-bezier(0.4,0,0.2,1), background 0.2s cubic-bezier(0.4,0,0.2,1);
  text-decoration: none; font-family: inherit;
}
.btn-ghost:hover { color: #1A1A1A; background: rgba(0,0,0,0.05); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: inherit; font-weight: 700; cursor: pointer;
  border: none; text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
}
.btn-primary {
  background: #E8735A; color: white;
  border-radius: 100px; padding: 12px 26px; font-size: 14px;
}
.btn-shimmer {
  --spread: 90deg;
  --shimmer-color: rgba(255,255,255,0.95);
  --radius: 100px;
  --speed: 3s;
  --cut: 1.5px;
  --bg: #E8735A;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--bg);
}
.btn-primary.btn-shimmer:hover {
  --bg: #D45E45;
}
.btn-shimmer-label {
  position: relative;
  z-index: 3;
}
.btn-shimmer-spark-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: visible;
  filter: blur(2px);
  pointer-events: none;
  container-type: size;
}
.btn-shimmer-sweep {
  position: absolute;
  inset: 0;
  height: 100cqh;
  aspect-ratio: 1;
  animation: shimmer-slide var(--speed) ease-in-out infinite alternate;
}
.btn-shimmer-spark {
  position: absolute;
  inset: -100%;
  background: conic-gradient(
    from calc(270deg - (var(--spread) * 0.5)),
    transparent 0,
    var(--shimmer-color) var(--spread),
    transparent var(--spread)
  );
  animation: spin-around calc(var(--speed) * 2) infinite linear;
}
.btn-shimmer-highlight {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: var(--radius);
  box-shadow: inset 0 -8px 10px rgba(255,255,255,0.12);
  transition: box-shadow 0.3s ease-in-out;
  pointer-events: none;
}
.btn-shimmer-backdrop {
  position: absolute;
  inset: var(--cut);
  z-index: 1;
  border-radius: calc(var(--radius) - var(--cut));
  background: var(--bg);
  pointer-events: none;
}
.btn-primary:hover {
  background: #D45E45;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,115,90,0.35);
}
.btn-shimmer:hover .btn-shimmer-highlight {
  box-shadow: inset 0 -6px 10px rgba(255,255,255,0.24);
}
.btn-shimmer:active .btn-shimmer-highlight {
  box-shadow: inset 0 -10px 10px rgba(255,255,255,0.24);
}
.btn-primary:active { transform: scale(0.97); box-shadow: none; }
.btn-outline:active { transform: scale(0.97); box-shadow: none; }
.btn-outline {
  background: transparent; color: #1A1A1A;
  border-radius: 100px; padding: 11px 26px; font-size: 14px;
  border: 1.5px solid #E0E0E0;
}
.btn-outline:hover {
  background: rgba(0,0,0,0.03);
  border-color: #BBB;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}
.btn-lg { padding: 14px 30px; font-size: 15px; }

/* ── HERO ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-wrap {
  background: #FAF9F7;
  position: relative;
  overflow: hidden;
  padding-bottom: 72px;
  animation: fadeInUp 0.4s ease both;
}
/* Subtle centered glow */
.hero-wrap::before {
  content: '';
  position: absolute;
  top: 10%; left: 50%; transform: translateX(-50%);
  width: 80%; height: 60%;
  background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(245,196,184,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero {
  text-align: center;
  padding: 76px 72px 0;
  max-width: 820px; margin: 0 auto;
  position: relative; z-index: 2;
}
/* eyebrow removed — logo in nav is sufficient */
.hero h1 {
  font-size: 72px; font-weight: 700; line-height: 1.03;
  letter-spacing: -1.5px; margin: 0 0 28px; color: #1A1A1A;
  font-family: 'Fraunces', serif;
  text-wrap: balance;
}
.hero-highlight {
  color: #E8735A;
  -webkit-text-fill-color: #E8735A;
  position: relative; display: inline-block;
}
/* Hand-drawn scribble underline — draws itself in after the headline lands */
@keyframes scribble-draw {
  from { clip-path: inset(-4px 100% -4px 0); }
  to   { clip-path: inset(-4px 0 -4px 0); }
}
.hero-highlight::after {
  content: '';
  position: absolute;
  left: 3%; right: 3%; bottom: -4px;
  height: 9px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' preserveAspectRatio='none'%3E%3Cpath d='M3 9 C 30 3, 62 3, 117 7' stroke='%23E8735A' stroke-opacity='0.5' stroke-width='4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
  pointer-events: none;
  animation: scribble-draw 0.5s cubic-bezier(0.16,1,0.3,1) 0.55s both;
}
.hero-sub {
  font-size: 20px; color: #6B6B6B; line-height: 1.65;
  margin: 0 auto 28px; max-width: 560px;
  letter-spacing: -0.1px;
}
.hero-actions {
  display: flex; gap: 12px; align-items: center;
  justify-content: center;
  margin-bottom: 20px; flex-wrap: wrap;
}
.hero-cta { display: contents; }
/* Visible CTA weight — persistent glow anchors the button */
.hero-actions .btn-primary {
  box-shadow: 0 8px 28px rgba(232,115,90,0.30);
}
.hero-actions .btn-primary:hover {
  box-shadow: 0 12px 36px rgba(232,115,90,0.45);
}
/* Secondary, low-commitment path: view the demo result page */
.hero-demo-link {
  font-size: 15px; font-weight: 600; color: #6B6B6B;
  text-decoration: none; padding: 12px 16px; border-radius: 100px;
  transition: color 0.15s ease, background 0.15s ease;
}
.hero-demo-link:hover { color: #E8735A; background: rgba(232,115,90,0.07); }
.hero-demo-arrow { display: inline-block; transition: transform 0.15s ease; }
.hero-demo-link:hover .hero-demo-arrow { transform: translateX(3px); }
.hero-trust {
  font-size: 13px; font-weight: 500; color: #767676;
  letter-spacing: 0.3px; margin: 0 0 10px;
}
.hero-proof {
  font-size: 13px; font-weight: 500; color: #767676;
  letter-spacing: 0.1px; margin: 0 0 22px;
}
.hero-proof-stars {
  color: #E8735A; letter-spacing: 2px; font-size: 12px;
}

/* ── Hero gallery — product result previews ── */
.hero-gallery {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr 0.9fr;
  gap: 16px;
  max-width: 1160px;
  width: 100%;
  box-sizing: border-box;
  margin: 48px auto 0;
  padding: 0 64px;
  position: relative; z-index: 2;
}
.hero-gallery-item {
  display: block;
  color: inherit;
  text-decoration: none;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 3.8;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform: rotate(var(--tilt, 0deg));
}
/* Polaroid tilt on the side photos; straighten on hover */
/* nth-child(2): the absolutely-positioned .hero-annotation is the gallery's first child */
.hero-gallery-col:nth-child(2) .hero-gallery-item { --tilt: -1.6deg; }
.hero-gallery-col:last-child .hero-gallery-item { --tilt: 1.8deg; }
.hero-gallery-item:hover {
  transform: translateY(-4px) rotate(0deg);
  box-shadow: 0 16px 48px rgba(0,0,0,0.14), 0 4px 12px rgba(0,0,0,0.08);
}
.hero-gallery-item:focus-visible {
  border-radius: 16px;
  transform: translateY(-4px) rotate(0deg);
  box-shadow: 0 0 0 3px rgba(232,115,90,0.25), 0 16px 48px rgba(0,0,0,0.14);
}
/* Side columns stack a photo and a tile, bottom-aligned with the tall center card */
.hero-gallery-col {
  margin-top: 24px;
  display: flex; flex-direction: column; gap: 16px; min-width: 0;
}
.hero-more-tile {
  flex: 1;
  min-height: 0;
  box-sizing: border-box;
  border: 1.5px dashed rgba(232,115,90,0.45);
  border-radius: 16px;
  padding: 16px;
  display: flex; flex-direction: column; justify-content: center; gap: 10px;
}
.hero-ghost-idea {
  background: rgba(255,255,255,0.75);
  border: 1px solid #F0EBE7;
  border-radius: 12px;
  padding: 10px 14px;
  display: flex; flex-direction: column; gap: 2px;
}
.hero-ghost-idea strong { font-size: 13px; font-weight: 700; color: #4A4A4A; }
.hero-ghost-idea span { font-size: 11px; font-weight: 600; color: #9A9A9A; }
.hero-more-caption {
  font-family: 'Caveat', cursive;
  font-size: 20px; font-weight: 600; line-height: 1.2;
  color: #E8735A; text-align: center;
  margin-top: 2px;
}
/* Center card — taller, starts at the top, visually dominant */
.hero-gallery-tall {
  aspect-ratio: 3 / 4.6;
  margin-top: 0;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0,0,0,0.16), 0 6px 20px rgba(0,0,0,0.08);
}
.hero-gallery-tall:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 72px rgba(0,0,0,0.18), 0 8px 24px rgba(0,0,0,0.10);
}
/* Idle Ken Burns drift on the center photo — the animation owns the img
   transform, so the shared hover zoom intentionally doesn't apply here */
@keyframes kenburns-drift {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}
.hero-gallery-tall img { animation: kenburns-drift 26s ease-in-out 1s infinite alternate both; }
.hero-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  /* Shared grade so all three photos read as one set */
  filter: saturate(1.08) contrast(1.03);
}
/* Per-photo correction toward the shared grade: side cards run dark, the night
   fairground shot needs a lift so faces stay readable */
.hero-gallery-item:nth-child(1) img { filter: saturate(1.08) contrast(1.03) brightness(1.06); }
.hero-gallery-col:last-child .hero-gallery-item img { filter: saturate(1.08) contrast(1.02) brightness(1.1); }
.hero-gallery-item:nth-child(3) img { filter: saturate(1.06) contrast(1.02) brightness(1.12); }
.hero-gallery-item:hover img,
.hero-gallery-item:focus-visible img {
  transform: scale(1.05);
}
/* Plan artifact tile — fills the space under the left photo */
.hero-plan-float {
  flex: 1;
  min-height: 0;
  box-sizing: border-box;
  background: #FFFFFF;
  border: 1px solid #F0EBE7;
  border-radius: 16px;
  padding: 16px 18px;
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  text-align: left;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.06);
}
.hero-plan-head {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.hero-plan-chip {
  font-size: 10px; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; color: #E8735A;
}
.hero-plan-dots { display: flex; gap: 5px; }
.hero-plan-dots i {
  width: 6px; height: 6px; border-radius: 50%;
  background: #F0DBD4;
  transition: background 0.3s ease, transform 0.3s ease;
}
.hero-plan-dots i.on { background: #E8735A; transform: scale(1.2); }
.hero-plan-title {
  font-size: 15px; font-weight: 700; color: #1A1A1A; line-height: 1.3;
  /* Reserve two lines so cycling plans never shift the layout */
  min-height: 39px;
  display: flex; align-items: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.hero-plan-meta {
  font-size: 12px; font-weight: 600; color: #6B6B6B;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.hero-plan-title.swap-out, .hero-plan-meta.swap-out {
  opacity: 0; transform: translateY(5px);
}
.hero-plan-btn {
  margin-top: 4px; align-self: flex-start;
  background: #E8735A; color: #FFFFFF;
  font-size: 12px; font-weight: 700;
  border-radius: 100px; padding: 7px 14px;
}
/* Side card overlay — strong enough to guarantee legibility */
.hero-gallery-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 54px 18px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.18) 55%, transparent 100%);
  display: flex; flex-direction: column; gap: 7px;
}
.hero-gallery-meta {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
}
.hero-gallery-title {
  font-size: 15px; font-weight: 700;
  color: #FFFFFF; letter-spacing: 0;
  line-height: 1.2;
}
/* Hover affordance — hidden line that slides up so photos read as clickable */
.hero-gallery-cta {
  font-size: 12px; font-weight: 700; color: #FFFFFF;
  opacity: 0; transform: translateY(4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.hero-gallery-item:hover .hero-gallery-cta,
.hero-gallery-item:focus-visible .hero-gallery-cta { opacity: 1; transform: translateY(0); }
/* Center card — richer overlay, more room for content */
.hero-gallery-tall .hero-gallery-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.12) 55%, transparent 100%);
  padding: 68px 22px 24px;
}
.hero-gallery-tall .hero-gallery-title {
  font-size: 18px; letter-spacing: -0.2px;
}
.hero-gallery-tall .hero-gallery-meta {
  color: rgba(255,255,255,0.65);
}

/* Handwritten annotation — floats in the gap above the center card, desktop only.
   Own keyframes: fadeUp would clobber the base translateX/rotate transform. */
@keyframes annotation-in {
  from { opacity: 0; transform: translate(-385px, 12px) rotate(-3deg); }
  to   { opacity: 1; transform: translate(-385px, 0) rotate(-3deg); }
}
.hero-annotation {
  position: absolute;
  top: -42px; left: 50%;
  transform: translateX(-385px) rotate(-3deg);
  display: flex; align-items: flex-start; gap: 4px;
  z-index: 3; pointer-events: none;
  animation: annotation-in 0.55s cubic-bezier(0.16,1,0.3,1) 0.5s both;
}
.hero-annotation-text {
  font-family: 'Caveat', cursive;
  font-size: 22px; font-weight: 600; line-height: 1;
  color: #E8735A; white-space: nowrap;
}
.hero-annotation svg { margin-top: 10px; flex-shrink: 0; }
/* Needs the wide desktop gap — hide as soon as the gallery starts compressing */
@media (max-width: 1120px) { .hero-annotation { display: none; } }

/* Floating feature chip pinned to a gallery photo */
@keyframes chip-bob {
  from { transform: translateY(0); }
  to   { transform: translateY(-4px); }
}
.hero-photo-chip {
  position: absolute; top: 14px; left: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.94);
  border-radius: 100px; padding: 7px 12px;
  font-size: 11px; font-weight: 700; color: #1A1A1A;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  pointer-events: none;
  animation: chip-bob 2.6s ease-in-out infinite alternate;
}
.hero-photo-chip svg { flex-shrink: 0; }

/* ── HERO ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeScale {
  from { opacity: 0; transform: scale(0.96) rotate(var(--tilt, 0deg)); }
  to   { opacity: 1; transform: scale(1) rotate(var(--tilt, 0deg)); }
}
@keyframes shimmer-slide {
  to {
    transform: translate(calc(100cqw - 100%), 0);
  }
}
@keyframes spin-around {
  0% {
    transform: translateZ(0) rotate(0);
  }
  15%, 35% {
    transform: translateZ(0) rotate(90deg);
  }
  65%, 85% {
    transform: translateZ(0) rotate(270deg);
  }
  100% {
    transform: translateZ(0) rotate(360deg);
  }
}
/* Coral glow pulse — hero primary CTA only, delayed until after entry stagger completes */
/* Text — centered stagger */
.hero h1         { animation: fadeUp 0.6s cubic-bezier(0.16,1,0.3,1) 0s both; }
.hero-sub        { animation: fadeUp 0.55s cubic-bezier(0.16,1,0.3,1) 0.06s both; }
.hero-actions    { animation: fadeUp 0.55s cubic-bezier(0.16,1,0.3,1) 0.12s both; }
/* Gallery — no stagger delay so screenshots don't catch invisible state */
.hero-gallery-item { animation: fadeScale 0.6s cubic-bezier(0.16,1,0.3,1) 0s both; }
.hero-plan-float, .hero-more-tile { animation: fadeScale 0.6s cubic-bezier(0.16,1,0.3,1) 0s both; }

/* Reduced motion — respect OS accessibility preference */
@media (prefers-reduced-motion: reduce) {
  .hero-wrap,
  .hero h1, .hero-sub, .hero-actions,
  .hero-highlight::after,
  .hero-annotation,
  .hero-photo-chip,
  .hero-gallery-item,
  .hero-gallery-tall img,
  .hero-plan-float,
  .hero-more-tile,
  .hero-actions .btn-primary,
  .btn-shimmer-sweep,
  .btn-shimmer-spark { animation: none !important; }
  .hiw-card,
  .hiw-card-num,
  .hiw-chip,
  .hiw-detail,
  .hiw-memory-tag {
    transition: none !important;
    transform: none !important;
  }
}

/* Focus rings */
a:focus-visible, button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(232,115,90,0.25);
  border-radius: 4px;
}
.btn-primary:focus-visible, .btn-outline:focus-visible { border-radius: 100px; }
.btn-ghost:focus-visible { border-radius: 999px; }

/* ── SHARED SECTION ── */
.section { padding: 96px 72px; }
.section-eyebrow {
  color: #E8735A; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px;
}
h2.section-title {
  font-size: 48px; font-weight: 700; letter-spacing: -0.8px;
  line-height: 1.12; margin-bottom: 16px; color: #0F0F0F;
  font-family: 'Fraunces', serif;
  text-wrap: balance;
}
p.section-lead { font-size: 17px; color: #6B6B6B; line-height: 1.7; }
.section-center { text-align: center; max-width: 580px; margin: 0 auto 60px; }

/* ── WAVE DIVIDERS ── */
.wave-divider { line-height: 0; display: block; }
.wave-divider svg { width: 100%; height: 72px; display: block; }
.section .wave-divider { margin: 0 -72px; }

/* ── HOW IT WORKS ── */
.hiw-wrap {
  /* Warm band — carries the hero's cream into the brand's light coral */
  background: linear-gradient(180deg, #FAF9F7 0%, #FDF0ED 100%);
  overflow: hidden; padding-bottom: 96px; position: relative;
}
.hiw-header {
  max-width: 1100px; margin: 0 auto 56px;
  text-align: center;
}
/* Three connected step cards joined by a dashed path visible in the gaps */
.hiw-steps {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  position: relative;
}
.hiw-steps::before {
  content: '';
  position: absolute;
  top: 58px; left: 10%; right: 10%;
  border-top: 2px dashed rgba(232,115,90,0.4);
  z-index: 0;
}
.hiw-card {
  position: relative; z-index: 1;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  display: flex; flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.hiw-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);
}
.hiw-card-num {
  font-family: 'Fraunces', serif;
  font-size: 44px; font-weight: 800; line-height: 1;
  color: #F5C4B8;
  margin-bottom: 16px;
  transition: color 0.15s ease;
}
.hiw-card:hover .hiw-card-num { color: #E8735A; }
.hiw-step-title {
  font-size: 20px; font-weight: 700; color: #1A1A1A;
  letter-spacing: -0.3px; margin: 0 0 8px;
}
.hiw-step-desc {
  font-size: 14px; color: #5C5C5C; line-height: 1.65; margin: 0 0 22px;
}
/* Consistent vignette card pinned to each step card's bottom */
.hiw-vignette {
  margin-top: auto;
  width: 100%; box-sizing: border-box;
  padding: 14px 16px;
  border-radius: 14px;
  background: #FAFAF8;
  border: 1px solid rgba(232,115,90,0.16);
  display: flex; flex-direction: column; gap: 8px;
  text-align: left;
}
.hiw-idea-pick { display: flex; flex-direction: column; gap: 3px; }
.hiw-idea-pick strong { font-size: 15px; line-height: 1.25; color: #1A1A1A; }
.hiw-idea-pick span { font-size: 12px; font-weight: 600; color: #767676; }
/* Dimmed alternates behind the pick — shows every batch comes with options */
.hiw-idea-alts { display: flex; flex-wrap: wrap; gap: 6px; }
.hiw-idea-alts span {
  font-size: 11px; font-weight: 600; color: #AFAFAF;
  background: #FFFFFF; border: 1px dashed #E0E0E0;
  border-radius: 999px; padding: 4px 11px; white-space: nowrap;
}
.hiw-vignette-label {
  font-size: 10px; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; color: #E8735A;
}
.hiw-chip-row { display: flex; flex-wrap: wrap; gap: 6px; }
.hiw-vignette .hiw-chip { background: #F5F5F5; }
.hiw-vignette .hiw-chip-on { background: #E8735A; }
.hiw-vignette .hiw-detail { background: #F5F5F5; }
.hiw-vignette .hiw-memory-tag { white-space: normal; padding: 8px 14px; align-self: flex-start; }
.hiw-vignette-stars { font-size: 13px; color: #E8735A; letter-spacing: 1px; }
.hiw-vignette-stars em { font-size: 12px; font-weight: 600; font-style: normal; color: #8E8E8E; letter-spacing: 0; margin-left: 4px; }
.hiw-chip {
  font-size: 12px; font-weight: 600;
  padding: 5px 12px; border-radius: 999px;
  background: #FFFFFF; color: #AFAFAF;
  white-space: nowrap;
  transition: background-color 0.16s, color 0.16s, box-shadow 0.16s, transform 0.16s;
}
.hiw-chip-on {
  background: #E8735A; color: white;
}
.hiw-detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #8E8E8E;
  background: #FFFFFF;
  border-radius: 999px;
  padding: 6px 12px;
  white-space: nowrap;
  transition: background-color 0.16s, color 0.16s, box-shadow 0.16s, transform 0.16s;
}
.hiw-memory-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; color: #B56B56;
  font-style: italic;
  background: #FDF0ED;
  border: 1px solid rgba(232,115,90,0.25); border-radius: 999px;
  padding: 8px 18px; white-space: nowrap;
  box-shadow: 0 2px 8px rgba(232,115,90,0.10);
  transition: background-color 0.16s, box-shadow 0.16s, transform 0.16s;
}

/* ── THE RESULT — product preview ── */
.product-wrap {
  background: #FFFFFF;
  border-top: 1px solid #EBEBEB;
}
/* Tinted stage panel behind the result card, with floating chips echoing the UI */
.product-stage {
  position: relative;
  max-width: 920px; margin: 0 auto;
  background: #FAE8E4;
  border-radius: 32px;
  padding: 56px 72px;
}
.product-float-note {
  position: absolute;
  top: 26px; left: 48px;
  font-family: 'Caveat', cursive;
  font-size: 24px; font-weight: 600;
  color: #C25B44;
  transform: rotate(-4deg);
}
.product-float-chip {
  position: absolute;
  z-index: 2;
  background: #FFFFFF;
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 13px; font-weight: 700; color: #1A1A1A;
  box-shadow: 0 12px 32px rgba(126,52,35,0.16);
}
.product-float-chip-vibe { top: 88px; right: 24px; transform: rotate(2deg); }
/* Sits in the stage's bottom padding, straddling the frame corner like a
   sticker — never over the card's cost text */
.product-float-chip-cost { bottom: 16px; left: 40px; transform: rotate(-2deg); }
.product-frame {
  max-width: 760px; margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid #EBEBEB;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.10), 0 4px 16px rgba(0,0,0,0.05);
}
.product-chrome {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 16px;
  background: #FAFAF8;
  border-bottom: 1px solid #EBEBEB;
}
.product-chrome-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #E0E0E0;
}
.product-chrome-url {
  margin: 0 auto;
  font-size: 12px; font-weight: 500; color: #AFAFAF;
  background: #FFFFFF;
  border: 1px solid #EBEBEB;
  border-radius: 100px;
  padding: 4px 16px;
  letter-spacing: 0.2px;
}
.product-card { padding: 28px 32px 26px; }
.product-card-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 18px; flex-wrap: wrap;
}
.product-chip {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.2px;
  color: #E8735A; background: #FDF0ED;
  border-radius: 100px; padding: 6px 14px;
}
.product-vibe {
  font-size: 12px; font-weight: 600; color: #9A9A9A;
  font-style: italic;
}
.product-title {
  font-size: 24px; font-weight: 800; letter-spacing: -0.3px;
  color: #1A1A1A; margin: 0 0 8px; line-height: 1.2;
}
.product-match {
  font-size: 14px; color: #6B6B6B; line-height: 1.6; margin: 0 0 16px;
}
.product-meta {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  font-size: 13px; font-weight: 600; color: #1A1A1A;
  margin-bottom: 20px;
}
.product-meta-dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: #C8BDB8; flex-shrink: 0;
}
.product-plan {
  background: #FAFAF8;
  border: 1px solid #F0EBE7;
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 18px;
}
.product-plan-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px;
}
.product-plan-title {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.2px;
  color: #9A9A9A;
}
.product-plan-total { font-size: 12px; font-weight: 700; color: #E8735A; }
.product-plan-list {
  list-style: none; margin: 0; padding: 0;
  counter-reset: plan-step;
}
.product-plan-list li {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; padding: 8px 0;
  font-size: 14px; color: #1A1A1A; font-weight: 500;
  border-bottom: 1px solid #F0EBE7;
  counter-increment: plan-step;
}
.product-plan-list li:last-child { border-bottom: none; padding-bottom: 0; }
.product-plan-list li > span:first-child::before {
  content: counter(plan-step) '.';
  color: #E8735A; font-weight: 700; margin-right: 8px;
}
.product-plan-mins {
  font-size: 12px; font-weight: 600; color: #9A9A9A;
  white-space: nowrap; flex-shrink: 0;
}
.product-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.product-cost { display: flex; flex-direction: column; gap: 2px; }
.product-cost-label {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px; color: #9A9A9A;
}
.product-cost-value { font-size: 15px; font-weight: 700; color: #1A1A1A; }
.product-fake-btn { pointer-events: none; }

/* ── SOCIAL PROOF ── */
.social-proof-wrap {
  background: #FFFFFF;
  border-top: 1px solid #EBEBEB;
}
.social-proof-header {
  text-align: center; margin-bottom: 48px;
}
.social-proof-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 1100px; margin: 0 auto;
}
.social-proof-card {
  background: #fff; border-radius: 24px; padding: 32px 28px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.06);
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s cubic-bezier(0.4,0,0.2,1);
}
.social-proof-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.08);
}
.social-proof-stars {
  color: #E8735A; font-size: 14px; letter-spacing: 2px; margin-bottom: 16px;
}
.social-proof-quote {
  font-size: 15px; font-weight: 500; color: #1A1A1A; line-height: 1.7;
  font-style: italic; margin: 0 0 24px;
}
.social-proof-author {
  display: flex; align-items: center; gap: 12px;
}
.social-proof-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: #FDF0ED; color: #E8735A;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.social-proof-name {
  display: block; font-size: 14px; font-weight: 700; color: #1A1A1A;
}
.social-proof-detail {
  display: block; font-size: 12px; font-weight: 500; color: #9A9A9A;
}

/* ── DESIGNED AROUND YOU — the page's dark moment ── */
.day-wrap {
  background: #261C18;
  overflow: hidden;
  padding-top: 96px;
  padding-bottom: 96px;
  position: relative;
}
.day-wrap .section-eyebrow { color: #F0937B; }
.day-wrap .section-title { color: #FAF6F3; }

/* Section header */
.day-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 40px;
}

/* Cinematic editorial image */
.day-cinema {
  max-width: 1040px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.45), 0 8px 24px rgba(0,0,0,0.25);
  position: relative; z-index: 1;
}
.day-cinema img {
  width: 100%; height: 500px;
  object-fit: cover; display: block;
}

/* Vignette panel — overlaps the image to unify composition */
.day-vignettes-panel {
  box-sizing: border-box;
  max-width: 640px;
  margin: -70px auto 0;
  position: relative; z-index: 2;
  background: rgba(254, 252, 251, 0.90);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 38px 44px 36px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.05), 0 3px 12px rgba(0,0,0,0.03);
}

/* Personalization vignettes */
.day-vignettes {
  display: flex; flex-direction: column;
  gap: 0;
}
.day-vignette {
  padding-bottom: 28px;
}
.day-vignette:last-child {
  padding-bottom: 0;
}
.day-vignette + .day-vignette {
  border-top: 1px solid rgba(232,115,90,0.14);
  padding-top: 28px;
}
.day-vignette-body { flex: 1; }
.day-vignette-label {
  font-size: 10px;
  font-weight: 800;
  color: #E8735A;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.day-vignette-quote {
  font-size: 19px; font-weight: 600;
  color: #1A1A1A; line-height: 1.38;
  letter-spacing: -0.2px;
  margin: 0 0 9px;
  font-family: 'Fraunces', serif;
}
.day-vignette-sub {
  font-size: 14px; font-weight: 500;
  color: #6B6B6B; line-height: 1.65; margin: 0;
}
.day-diff {
  text-align: center; max-width: 600px; margin: 48px auto 0;
  font-size: 22px; font-weight: 600; color: rgba(250,246,243,0.9); line-height: 1.55;
  letter-spacing: -0.2px;
  font-family: 'Fraunces', serif;
}

/* ── MEMORIES ── */
.mem-wrap { background: #FFFFFF; padding-bottom: 96px; position: relative; }
.mem-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  max-width: 1100px; margin: 0 auto;
}
.mem-copy .section-eyebrow { color: #E8735A; }
.mem-copy .section-title { color: #0F0F0F; line-height: 1.1; }
.mem-body { color: #888; font-size: 15px; line-height: 1.75; margin: 16px 0 32px; }
.mem-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 20px; }
.mem-feature { display: flex; gap: 14px; align-items: flex-start; }
.mem-feat-icon { font-size: 20px; min-width: 36px; height: 36px; background: #FEF0EC; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mem-feature strong { display: block; font-size: 14px; font-weight: 700; color: #111; margin-bottom: 2px; }
.mem-feature span { font-size: 13px; color: #888; line-height: 1.5; }

/* Scrapbook card mockup */
.mem-card-wrap { display: flex; justify-content: center; }
.mem-card {
  background: white; border-radius: 24px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.10), 0 6px 20px rgba(0,0,0,0.06);
  width: 100%; max-width: 380px;
  transition: transform 0.2s cubic-bezier(0.4,0,0.2,1), box-shadow 0.2s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.mem-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.10), 0 6px 20px rgba(0,0,0,0.07);
}
.mem-card-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 20px 20px 16px;
}
.mem-card-name { font-size: 15px; font-weight: 700; color: #0F0F0F; margin-bottom: 4px; }
.mem-card-meta { font-size: 12px; color: #999; }
.mem-card-private { display: flex; align-items: center; gap: 4px; font-size: 11px; color: #999; background: #F5F5F5; padding: 4px 10px; border-radius: 999px; white-space: nowrap; }
.mem-card-photo-wrap { width: 100%; height: 220px; overflow: hidden; }
.mem-card-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.mem-card-body { padding: 16px 20px 20px; }
.mem-card-stars { font-size: 14px; color: #E8735A; margin-bottom: 10px; }
.mem-card-stars-label { font-size: 12px; font-weight: 600; color: #9A9A9A; margin-left: 6px; }
.mem-card-note { font-size: 13px; color: #6B6B6B; line-height: 1.65; margin-bottom: 14px; font-style: italic; }
.aside-note { font-family: 'Fraunces', serif; font-size: 14px; font-weight: 600; font-style: italic; color: #9A918A; margin-top: 20px; margin-bottom: 0; letter-spacing: 0.1px; line-height: 1.4; }
.mem-card-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.mem-tag { font-size: 12px; color: #9A9A9A; background: #F5F5F5; border-radius: 999px; padding: 5px 12px; font-weight: 500; }

/* ── PRICING ── */
.pricing-wrap {
  background: #FAFAF8;
}
.pricing-header {
  text-align: center; margin-bottom: 48px;
}
.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  max-width: 820px; margin: 0 auto;
}
.pricing-card {
  border-radius: 24px; padding: 32px 28px;
  display: flex; flex-direction: column; gap: 24px;
  align-items: stretch; position: relative;
}
.pricing-card-free {
  background: #fff; border: 1.5px solid #E0E0E0;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.06);
}
.pricing-card-premium {
  background: linear-gradient(180deg, #E8735A 0%, #D45E45 100%);
  color: #fff;
  box-shadow: 0 12px 30px rgba(232,115,90,0.22);
}
.pricing-badge {
  position: absolute; top: 18px; right: 18px;
  padding: 6px 14px; border-radius: 100px;
  background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.24);
  color: #fff; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
}
.pricing-card-top {
  display: flex; flex-direction: column; gap: 8px;
}
.pricing-tier {
  font-size: 14px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; margin: 0;
}
.pricing-card-free .pricing-tier { color: #1A1A1A; }
.pricing-card-premium .pricing-tier { padding-right: 0; }
.pricing-price-wrap { margin: 4px 0; }
.pricing-price {
  font-size: 48px; font-weight: 800; letter-spacing: -1.8px;
  line-height: 1; margin: 0;
  font-family: 'Fraunces', serif;
}
.pricing-card-free .pricing-price { color: #1A1A1A; }
.pricing-caption {
  font-size: 14px; font-weight: 500; margin: 4px 0 0;
}
.pricing-card-free .pricing-caption { color: #9A9A9A; }
.pricing-card-premium .pricing-caption { color: rgba(255,255,255,0.8); }
.pricing-anchor {
  color: rgba(255,255,255,0.86);
  font-size: 12px;
  font-weight: 700;
  margin: -2px 0 2px;
}
.pricing-intro {
  font-size: 14px; font-weight: 500; line-height: 1.6; margin: 0;
}
.pricing-card-free .pricing-intro { color: #6B6B6B; }
.pricing-card-premium .pricing-intro { color: rgba(255,255,255,0.85); }
.pricing-everything {
  font-size: 11px; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; color: rgba(255,255,255,0.60);
  margin: 4px 0 8px;
}
.pricing-features {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
  flex: 1;
}
.pricing-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500;
}
.pricing-card-free .pricing-features li { color: #1A1A1A; }
.pricing-card-premium .pricing-features li { color: rgba(255,255,255,0.95); }
.pricing-btn {
  display: flex; align-items: center; justify-content: center;
  width: 100%; margin-top: auto;
  box-sizing: border-box;
  transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.1s, box-shadow 0.15s;
}
.pricing-card-free .pricing-btn:hover {
  background: #FFFFFF;
  border-color: #E8735A;
  color: #E8735A;
  box-shadow: none;
  transform: translateY(-1px);
}
/* Duo strip — the partner-included story gets first-class visual weight */
.pricing-duo {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; border-radius: 14px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
}
.pricing-duo-icons { display: flex; flex-shrink: 0; }
.pricing-duo-icons svg:last-child { margin-left: -7px; }
.pricing-duo-copy {
  display: flex; flex-direction: column; gap: 2px;
  font-size: 12px; font-weight: 500; line-height: 1.5;
  color: rgba(255,255,255,0.85);
}
.pricing-duo-copy strong { font-size: 13px; font-weight: 700; color: #FFFFFF; }
.pricing-action-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}
.pricing-btn-premium {
  background: #fff; color: #E8735A;
  box-shadow: 0 12px 24px rgba(126,52,35,0.14);
}
.pricing-btn-premium:hover {
  background: #FDEAE4; color: #D45E45;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(126,52,35,0.18);
}
.pricing-reassurance {
  color: rgba(255,255,255,0.76);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
  margin: 0;
  text-align: center;
}
.pricing-reassurance-free { color: #9A9A9A; }

/* ── MORE TO LOVE ── */
.extras-wrap {
  background: #FFFFFF;
}
.extras-header {
  text-align: center; margin-bottom: 48px;
}
.extras-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  max-width: 1100px; margin: 0 auto;
}
/* Subgrid shares the mockup row and the caption row across both cards, so
   "Your Scrapbook" / "Your Calendar" start on the same line no matter how
   tall each mockup or description is. Non-subgrid browsers fall back to
   plain rows (minor misalignment only). */
.extras-card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  row-gap: 24px;
}
.extras-card .mem-card,
.extras-card .plan-ahead-card {
  max-width: 100%;
  align-self: start;
}
/* Tinted stage behind each mockup — stretches to the shared row height so
   both stages match no matter which mockup runs taller */
.extras-stage {
  background: #FDF0ED;
  border-radius: 28px;
  padding: 32px;
  align-self: stretch;
  display: flex; flex-direction: column;
}
.extras-stage .mem-card,
.extras-stage .plan-ahead-card {
  flex: 1;
}
/* Calendar mockup absorbs extra height by spacing its entries evenly */
.extras-stage .plan-ahead-card { display: flex; flex-direction: column; }
.extras-stage .plan-ahead-entries { flex: 1; justify-content: space-evenly; }
/* Tape strips on the scrapbook photo — the memory motif */
.mem-card-photo-wrap { position: relative; }
.mem-card-photo-wrap::before,
.mem-card-photo-wrap::after {
  content: '';
  position: absolute;
  top: 10px;
  width: 64px; height: 20px;
  background: rgba(250,232,228,0.75);
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  z-index: 2;
}
.mem-card-photo-wrap::before { left: 14px; transform: rotate(-6deg); }
.mem-card-photo-wrap::after { right: 14px; transform: rotate(5deg); }
.extras-card-copy {
  text-align: center; padding: 0 12px;
  align-self: start;
}
.extras-card-title {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 700; color: #1A1A1A;
  margin: 0 0 8px; letter-spacing: -0.3px;
}
.extras-card-desc {
  font-size: 14px; font-weight: 500; color: #6B6B6B;
  line-height: 1.7; margin: 0;
}

/* ── MID-PAGE CTA BANNER ── */
.cta-banner-wrap { background: #FDF0ED; padding: 80px 72px; }
/* Full-volume brand moment — solid coral, white type */
.cta-banner {
  max-width: 920px; margin: 0 auto;
  background: linear-gradient(160deg, #E8735A 0%, #D45E45 100%);
  border: none;
  border-radius: 28px; padding: 76px 64px;
  text-align: center;
  box-shadow: 0 28px 72px rgba(212,94,69,0.35), 0 8px 24px rgba(212,94,69,0.20);
  position: relative; overflow: hidden;
}
.cta-banner-inner { position: relative; z-index: 1; }
.cta-banner-icon {
  width: 72px; height: 72px; border-radius: 22px;
  background: white;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 32px rgba(232,115,90,0.18);
}
.cta-banner-eyebrow {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: rgba(255,255,255,0.75); margin-bottom: 16px;
}
.cta-banner-heading {
  font-size: 48px; font-weight: 700; letter-spacing: -0.8px;
  color: #FFFFFF; margin-bottom: 14px; line-height: 1.12;
  font-family: 'Fraunces', serif;
  text-wrap: balance;
}
.cta-banner-heading span {
  color: inherit;
}
.cta-banner-sub {
  font-size: 17px; color: rgba(255,255,255,0.88);
  margin: 0 auto 36px; line-height: 1.6; max-width: 560px;
}
.cta-banner-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-banner-btn {
  background: #FFFFFF; color: #E8735A;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  box-shadow: 0 12px 28px rgba(126,52,35,0.22);
}
.cta-banner-btn:hover {
  background: #FDEAE4; color: #D45E45; transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(126,52,35,0.28);
}
.cta-banner-btn:active { transform: scale(0.97); }
.cta-banner-ghost {
  background: transparent; color: #FFFFFF;
  border: 1.5px solid rgba(255,255,255,0.55); border-radius: 100px;
  padding: 14px 28px; font-size: 15px; font-weight: 600;
  text-decoration: none; display: inline-flex; align-items: center;
  transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.1s; font-family: inherit; cursor: pointer;
}
.cta-banner-ghost:hover {
  background: #FFFFFF;
  border-color: #FFFFFF;
  color: #E8735A;
  transform: translateY(-1px);
}
.cta-trust {
  margin-top: 24px; font-size: 13px; color: rgba(255,255,255,0.8);
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.cta-trust-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.4); }

/* ── FAQ ── */
.faq-wrap { background: #F5F5F5; margin-bottom: 0; padding-top: 96px; padding-bottom: 96px; }
.faq-wrap h2.section-title { font-size: 36px; }
.faq-wrap .section-center { margin-bottom: 42px; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #E0E0E0; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; text-align: left;
  font-size: 15px; font-weight: 600; cursor: pointer;
  background: none; border: none; color: #1A1A1A; padding: 22px 4px;
  font-family: inherit; letter-spacing: -0.1px;
  transition: color 0.2s cubic-bezier(0.4,0,0.2,1);
}
.faq-q:hover { color: #E8735A; }
.faq-q .icon {
  color: #ccc; transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), color 0.2s; font-size: 22px;
  font-weight: 300; line-height: 1; flex-shrink: 0; margin-left: 16px;
}
.faq-item.open .faq-q { color: #1A1A1A; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); color: #E8735A; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 800px; }
.faq-a p { color: #5C5C5C; font-size: 14px; line-height: 1.8; padding-bottom: 22px; font-weight: 400; }
.faq-item.faq-hidden { display: none; }
.faq-more-row { text-align: center; margin-top: 28px; }
.faq-more-btn {
  background: transparent;
  border: 1.5px solid #E0E0E0;
  color: #6B6B6B;
  font-family: inherit; font-size: 14px; font-weight: 600;
  border-radius: 100px; padding: 11px 26px; cursor: pointer;
  transition: all 0.15s ease;
}
.faq-more-btn:hover { border-color: #E8735A; color: #E8735A; background: #FDF0ED; }

/* ── FOOTER ── */
.footer-light {
  /* Warm espresso — harmonizes with the coral brand instead of the old cold navy */
  background: #261C18; border-radius: 0;
  padding: 48px 72px 32px; box-shadow: none;
  margin-top: 0;
  border-top: 1px solid rgba(38,28,24,0.15);
}
.footer-main { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 32px; }
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-logo { display: flex; align-items: center; gap: 6px; font-size: 21px; font-weight: 800; color:#FFFFFF; text-decoration:none; }
.footer-logo img { height: 34px; width: auto; filter: brightness(1.12) saturate(1.06); }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.5); margin: 0; }
.footer-divider { height: 1px; background: rgba(255,255,255,0.1); margin-bottom: 24px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s cubic-bezier(0.4,0,0.2,1); }
.footer-links a:hover { color: rgba(255,255,255,0.85); }
.footer-cta { padding: 13px 28px; font-size: 15px; }
.footer-cols { display: flex; gap: 64px; align-items: flex-start; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-heading { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.35); margin-bottom: 4px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s cubic-bezier(0.4,0,0.2,1); }
.footer-col a:hover { color: rgba(255,255,255,0.85); }
.footer-col-muted { font-size: 13px; color: rgba(255,255,255,0.3); font-style: italic; }

/* ── STAY ON TOP (Plan Ahead) ── */
.plan-ahead-wrap { background: #FFFFFF; padding-top: 72px; padding-bottom: 96px; position: relative; border-top: 1px solid #EBEBEB; }
.plan-ahead-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  max-width: 1100px; margin: 0 auto;
}
.plan-ahead-mockup { display: flex; justify-content: center; }
.plan-ahead-card {
  background: white; border-radius: 24px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.10), 0 6px 20px rgba(0,0,0,0.06);
  width: 100%; max-width: 380px;
  transition: transform 0.2s cubic-bezier(0.4,0,0.2,1), box-shadow 0.2s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.plan-ahead-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.10), 0 6px 20px rgba(0,0,0,0.07);
}
.plan-ahead-card-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 20px 16px; border-bottom: 1px solid #EBEBEB;
}
.plan-ahead-card-title { font-size: 13px; font-weight: 700; color: #0F0F0F; }
.plan-ahead-dot { width: 8px; height: 8px; border-radius: 50%; background: #E8735A; }
.plan-ahead-entries { display: flex; flex-direction: column; }
.plan-ahead-entry {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; border-bottom: 1px solid #F0F0F0;
}
.plan-ahead-entry:last-child { border-bottom: none; }
.plan-ahead-date-badge { width: 42px; flex-shrink: 0; text-align: center; }
.badge-day { font-size: 18px; font-weight: 800; color: #E8735A; line-height: 1; }
.badge-month { font-size: 10px; font-weight: 600; color: #E8735A; text-transform: uppercase; letter-spacing: 1px; }
.plan-ahead-entry-info { flex: 1; }
.plan-ahead-entry-name { font-size: 14px; font-weight: 700; color: #111; margin-bottom: 3px; }
.plan-ahead-entry-chip {
  display: inline-block; font-size: 11px; font-weight: 600;
  color: #9A9A9A; background: #F5F5F5; border-radius: 999px; padding: 3px 10px;
}
.plan-ahead-entry-chip.chip-soon {
  color: #E8735A; background: #FDF0ED;
}
.plan-ahead-body { color: #888; font-size: 15px; line-height: 1.75; margin: 16px 0 32px; }
.plan-ahead-copy .section-eyebrow { color: #E8735A; }
.plan-ahead-copy .section-title { color: #0F0F0F; line-height: 1.1; }

/* ── RESPONSIVE: TABLET ── */
@media (max-width: 768px) {
  .nav { padding: 0 28px; }
  .hero-wrap { padding-bottom: 56px; }
  .hero { padding: 48px 28px 0; }
  .hero h1 { font-size: 44px; letter-spacing: -1px; }
  .hero-sub { max-width: 100%; }
  .hero-trust { margin-bottom: 8px; }
  .hero-gallery { padding: 0 28px; gap: 12px; }
  .hero-gallery-item { aspect-ratio: 3 / 3.5; }
  .hero-gallery-item:first-child,
  .hero-gallery-item:last-child { margin-top: 18px; }
  .hero-gallery-tall { aspect-ratio: 3 / 4.1; margin-top: 0; }
  .hero-gallery-title { font-size: 14px; }
  .hero-gallery-overlay { padding: 40px 16px 16px; }
  .hero-gallery-col { display: contents; }
  /* Keep the plan tile — the product artifact — as a full-width row under the photos */
  .hero-plan-float {
    order: 10; grid-column: 1 / -1;
    flex: none; min-height: 0;
    padding: 18px 20px;
  }
  .hero-more-tile { display: none; }
  .section { padding: 72px 28px; }
  h2.section-title { font-size: 34px; }
  .product-stage { padding: 32px 20px; border-radius: 24px; }
  .product-float-note, .product-float-chip { display: none; }
  .extras-stage { padding: 20px; }
  .hiw-steps { grid-template-columns: 1fr; max-width: 480px; }
  .hiw-steps::before { display: none; }
  .day-cinema img { height: 340px; }
  .day-vignettes-panel { margin: -48px auto 0; padding: 34px 32px 32px; }
  .day-vignette-quote { font-size: 20px; }
  .cta-banner-heading { font-size: 34px; }
  .mem-layout { grid-template-columns: 1fr; }
  .mem-card { max-width: 100%; }
  .plan-ahead-layout { grid-template-columns: 1fr; }
  .plan-ahead-copy { order: -1; }
  .plan-ahead-card { max-width: 100%; }
  .cta-banner-wrap { padding: 48px 28px 64px; }
  .cta-banner { padding: 48px 32px; border-radius: 24px; }
  .social-proof-grid { grid-template-columns: 1fr; max-width: 420px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .pricing-card-premium { order: -1; }
  .extras-grid { grid-template-columns: 1fr; max-width: 420px; }
  .cta-banner-heading { font-size: 32px; }
  .footer-light { padding: 40px 28px 32px; }
  .footer-cols { flex-wrap: wrap; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
}

/* ── RESPONSIVE: MOBILE ── */
@media (max-width: 480px) {
  .nav { padding: 0 20px; height: 60px; }
  .nav-logo { font-size: 17px; }
  .btn-primary { padding: 10px 22px; font-size: 13px; }
  .hero-wrap { padding-bottom: 44px; }
  .hero { padding: 36px 20px 0; }
  .hero h1 { font-size: 36px; letter-spacing: -0.6px; line-height: 1.08; }
  .hero-sub { font-size: 15px; margin-bottom: 28px; }
  .hero-trust { margin-bottom: 8px; }
  .hero-gallery {
    grid-template-columns: 1fr 1fr;
    padding: 0 20px; gap: 10px;
  }
  .hero-gallery-item { aspect-ratio: 3 / 3.8; }
  .hero-gallery-item:first-child,
  .hero-gallery-item:last-child { margin-top: 0; }
  .hero-gallery-tall { margin-top: 0; aspect-ratio: 3 / 3.8; }
  .hero-gallery-col:last-child { display: none; }
  .hero-gallery-overlay { padding: 32px 14px 14px; }
  .hero-gallery-title { font-size: 13px; line-height: 1.4; }
  .hero-gallery-meta { font-size: 10px; }
  .section { padding: 56px 20px; }
  .hiw-card { padding: 22px 20px; }
  .hiw-card-num { font-size: 36px; margin-bottom: 12px; }
  .hiw-step-title { font-size: 17px; }
  .day-cinema { border-radius: 16px; }
  .day-cinema img { height: 240px; }
  .day-vignettes-panel { margin: -28px 12px 0; padding: 30px 24px 28px; border-radius: 16px; }
  .day-vignette-quote { font-size: 18px; letter-spacing: -0.3px; }
  .mem-layout, .plan-ahead-layout { gap: 40px; }
  .mem-card-meta { color: #888; }
  .mem-card-stars-label { color: #888; }
  .plan-ahead-entry-chip { font-size: 12px; color: #888; }
  .cta-banner { padding: 36px 24px; }
  .cta-banner-heading { font-size: 26px; }
  .cta-banner-wrap { padding: 40px 20px 48px; }
  .cta-banner-sub { margin-bottom: 24px; }
  .cta-banner-ghost { padding: 10px 28px; font-size: 14px; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
  .cta-banner-btn, .cta-banner-ghost { width: 100%; justify-content: center; text-align: center; box-sizing: border-box; }
  .cta-trust { flex-direction: column; gap: 6px; margin-top: 16px; }
  .cta-trust-dot { display: none; }
  .product-card { padding: 22px 20px 20px; }
  .product-title { font-size: 20px; }
  .product-meta { gap: 8px; font-size: 12px; }
  .product-foot { flex-direction: column; align-items: stretch; }
  .product-fake-btn { justify-content: center; }
  .product-chrome-url { font-size: 11px; padding: 3px 12px; }
  .pricing-badge { position: static; align-self: flex-start; margin-bottom: -8px; }
  .pricing-card-premium .pricing-tier { padding-right: 0; }
  .footer-light { padding: 40px 20px 28px; }
  .footer-links { flex-wrap: wrap; justify-content: flex-start; }

  .aside-note { font-size: 13px; margin-top: 16px; }
  .section-center { margin-bottom: 40px; }
  .footer-col { flex: 1 1 140px; min-width: 0; }
  .cta-banner { padding: 36px 20px; }
}

/* Waitlist launch: preserve the current landing-page layout while replacing
   app-entry actions with a single email-only conversion path. */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.waitlist-form {
  width: min(100%, 700px);
  margin: 0 auto;
}

#waitlist { scroll-margin-top: 100px; }

.waitlist-fields {
  display: flex;
  gap: 10px;
  align-items: center;
}

.waitlist-input {
  flex: 1 1 75%;
  min-width: 0;
  width: 100%;
  min-height: 48px;
  box-sizing: border-box;
  border: 1.5px solid #E0E0E0;
  border-radius: 100px;
  background: #FFFFFF;
  color: #1A1A1A;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 0 18px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.waitlist-input::placeholder { color: #767676; }

.waitlist-input:focus-visible {
  border-color: #E8735A;
  box-shadow: 0 0 0 3px rgba(232, 115, 90, 0.18);
}

.waitlist-form .btn-primary {
  flex: 0 0 25%;
  width: auto;
  max-width: 172px;
  min-height: 48px;
  box-sizing: border-box;
  padding: 0 14px;
  font-size: 14px;
  white-space: nowrap;
}

.waitlist-form .btn-primary:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.waitlist-message {
  min-height: 20px;
  margin: 10px 0 0;
  color: #6B6B6B;
  font-size: 13px;
  font-weight: 600;
}

.waitlist-message.success { color: #256B48; }
.waitlist-message.error { color: #A63D2F; }

.cta-waitlist-form { margin-top: 4px; }
.cta-waitlist-form .waitlist-message { color: #6B6B6B; }
.cta-waitlist-form .waitlist-message.success { color: #256B48; }
.cta-waitlist-form .waitlist-message.error { color: #A63D2F; }

@media (max-width: 640px) {
  .waitlist-fields {
    flex-direction: column;
    max-width: 420px;
    margin: 0 auto;
  }

  .waitlist-input,
  .waitlist-form .btn-primary {
    flex-basis: auto;
    width: 100%;
    max-width: none;
  }
}
