/* ============================================================
   Kat Web Design · June 2026 Landing
   Mobile-first. Desktop overrides at the bottom.
   ============================================================ */

/* ───── tokens ───── */
:root {
  --paper:    #faf6ee;
  --paper-2:  #f3ecdf;
  --paper-3:  #e9dfcc;
  --ink:      #1c1815;
  --ink-2:    #4a423a;
  --ink-3:    #8b8276;
  --ink-4:    #c2b8a6;
  --gold:     #c19a5b;
  --gold-2:   #a4803f;
  --gold-soft:#ede0c6;
  --blush:    #c6877a;
  --line:     #d8cdb8;

  --display: 'Instrument Serif', 'Cormorant Garamond', Georgia, serif;
  --body:    'Manrope', -apple-system, system-ui, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, monospace;

  --pad-x: 22px;
  --pad-section: 56px;
  /* Content cap for wide screens. --gutter grows past --pad-x once the
     viewport exceeds --maxw, centering content instead of stretching it.
     Floor is --pad-x, so phone/tablet layout is unchanged. */
  --maxw: 1200px;
  --gutter: max(var(--pad-x), calc((100% - var(--maxw)) / 2));
  --radius-card: 16px;
  --radius-scene: 24px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --nav-bg:        rgba(250,246,238,0.85);
  --nav-bg-scroll: rgba(250,246,238,0.94);
}

[data-theme="dark"] {
  --paper:    #14110f;
  --paper-2:  #1c1815;
  --paper-3:  #241d17;
  --ink:      #f1ebe0;
  --ink-2:    #c2b8a6;
  --ink-3:    #8b8276;
  --ink-4:    #4a423a;
  --line:     #3a322a;
  --gold-soft:#3a2d1a;

  --nav-bg:        rgba(20,17,15,0.78);
  --nav-bg-scroll: rgba(20,17,15,0.94);

  color-scheme: dark;
}

html, body, .sticky-cta-inner, .nav,
.section, .order-scene, .order, .scene-bg,
.video-wrap, .video, .video-play,
input, textarea, button {
  transition: background-color 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
  /* `overflow-x: hidden` would create a scroll container that breaks
     pinch-zoom panning on mobile — when the user zooms in, the
     visual viewport can't pan to the visually-clipped sides because
     the layout viewport thinks it's already at the edge. `clip`
     gives us the same visual containment (no horizontal scrollbar)
     without creating a scroll container, so zoom works naturally.
     Fall back to `hidden` on older Safari (< 16). */
  overflow-x: hidden;
  overflow-x: clip;
}

body { min-height: 100vh; padding-bottom: 96px; } /* room for sticky cta */

main { counter-reset: chapter; } /* editorial section index (.section-eyebrow::before) */

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

button { font: inherit; color: inherit; }

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

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0;
}

p { margin: 0; }

.italic { font-style: italic; }
.gold { color: var(--gold-2); }
.muted { color: var(--ink-3); }
.mono { font-family: var(--mono); }
.all-caps {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-3);
}

/* ───── scroll progress bar ───── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: transparent;
  z-index: 100;
  pointer-events: none;
}
.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-2), var(--gold), var(--gold-soft));
  transition: width 0.08s linear;
  box-shadow: 0 0 12px rgba(193,154,91,0.5);
}

/* ───── reveal on scroll ───── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: transform, opacity;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }

/* ───── hero scroll cue (mobile nudge into the funnel) ─────
   Fixed, bottom-center, visible at the very top of the page; fades the
   instant the visitor starts scrolling. Lives at body level (not inside
   .hero-text) because .reveal's transform would trap a fixed child. */
.scroll-cue {
  position: fixed;
  left: 50%;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  z-index: 40;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 9px 16px 11px;
  border-radius: 999px;
  background: var(--nav-bg);
  border: 1px solid var(--line);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  color: var(--ink-3);
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 9.5px;
  box-shadow: 0 8px 24px -14px rgba(28,24,21,0.5);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.scroll-cue.hide {
  opacity: 0;
  transform: translateX(-50%) translateY(10px);
  pointer-events: none;
}
.scroll-cue-chev {
  width: 13px; height: 13px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  animation: cueBob 1.8s var(--ease) infinite;
}
@keyframes cueBob {
  0%, 100% { transform: rotate(45deg) translate(-1.5px, -1.5px); opacity: 0.4; }
  50%      { transform: rotate(45deg) translate(1.5px, 1.5px);   opacity: 1; }
}

/* ───── tactile press feedback (snappy on touch) ───── */
.addon:active,
.upgrade-pill:active,
.uploader:active,
.social-chip:active,
.swatch:active,
.video:active,
.help-trigger:active,
.nav-pill:active {
  transform: scale(0.97);
}

/* ───── nav ───── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--gutter);
  background: var(--nav-bg);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.nav.scrolled {
  border-bottom-color: var(--line);
  background: var(--nav-bg-scroll);
}
.nav-logo {
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  color: var(--ink);
}
.nav-logo em { font-style: italic; color: var(--gold); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-month { display: none; }
.nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.nav-pill:hover { transform: translateY(-1px); box-shadow: 0 8px 20px -8px rgba(28,24,21,0.5); }
.nav-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: glow 2.4s ease infinite; }

@keyframes glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(193,154,91,0.7); }
  50% { box-shadow: 0 0 0 6px rgba(193,154,91,0); }
}

/* ───── buttons ───── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
  letter-spacing: -0.005em;
  text-align: center;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn:hover { transform: translateY(-1px); box-shadow: 0 8px 24px -8px rgba(28,24,21,0.4); }
.btn-gold { background: var(--gold); border-color: var(--gold-2); color: var(--ink); }
.btn-gold:hover { box-shadow: 0 12px 28px -8px rgba(193,154,91,0.65); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-outline {
  background: transparent;
  border-color: var(--gold-2);
  color: var(--gold-2);
}
.btn-outline:hover {
  background: var(--gold);
  border-color: var(--gold-2);
  color: var(--ink);
}
.btn-lg { padding: 16px 22px; font-size: 15px; }
.btn-block { width: 100%; }
.arrow { display: inline-block; transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* Mini "chapter" CTA — catches convinced buyers before the order block. */
.chapter-cta {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

/* ───── hero ───── */
.hero {
  display: flex;
  flex-direction: column-reverse;
  gap: 36px;
  padding: 32px var(--gutter) 52px;
}
.hero-text { display: flex; flex-direction: column; }
.hero-eyebrow {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 10px;
  padding: 6px 12px 6px 6px;
  background: var(--gold-soft);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 18px;
}
.hero-eyebrow .tag {
  background: var(--gold);
  color: var(--ink);
  padding: 3px 10px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
}
.hero-h1 {
  font-size: 52px;
  line-height: 1.02;
  margin: 4px 0 20px;
}
.hero-h1 .underline-band {
  background-image: linear-gradient(transparent 65%, var(--gold-soft) 65%);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  padding: 0 4px;
  transition: background-size 0.75s var(--ease) 0.45s;
}
/* Gold band wipes in left→right once the hero reveals. Reduced-motion
   kills the transition (global rule), so it just shows filled. */
.hero-text.in .hero-h1 .underline-band { background-size: 100% 100%; }

/* One-time gold-foil sheen across the primary hero CTA on reveal — a
   single sweep (not an infinite loop) draws the eye to the main action. */
.hero-ctas .btn-gold { position: relative; overflow: hidden; }
.hero-ctas .btn-gold::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: -60%;
  width: 45%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(-18deg);
  pointer-events: none;
  opacity: 0;
}
.hero-text.in .hero-ctas .btn-gold::after {
  animation: ctaSheen 1.1s var(--ease) 0.7s 1;
}
@keyframes ctaSheen {
  0%   { left: -60%; opacity: 0; }
  18%  { opacity: 1; }
  100% { left: 130%; opacity: 0; }
}
.hero-sub {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0 0 28px;
}
.hero-priceline {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}
.hero-price {
  font-family: var(--display);
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: baseline;
}
.hero-price .cents { font-size: 26px; opacity: 0.7; margin-left: 2px; }
.hero-strike {
  font-family: var(--display);
  font-size: 26px;
  color: var(--ink-3);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}
.hero-save-pill {
  display: inline-block;
  background: var(--blush);
  color: var(--paper);
  padding: 4px 11px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.hero-meta {
  list-style: none;
  margin: 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-3);
}
.hero-meta b { color: var(--ink); font-weight: 600; }

/* hero photo */
.hero-photo-wrap {
  position: relative;
  aspect-ratio: 3/4;
  align-self: stretch;
}
/* Restrained ambient gold haze behind the photo for depth. z-index -1
   sits below the photo/frame within the wrap's stacking context (the
   .reveal transform establishes it). Purely static — reduced-motion safe. */
.hero-photo-wrap::before {
  content: "";
  position: absolute;
  inset: -14% -10%;
  z-index: -1;
  background: radial-gradient(58% 50% at 50% 42%, rgba(193,154,91,0.28), transparent 72%);
  filter: blur(34px);
  pointer-events: none;
}
.hero-photo {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 10px;
  overflow: hidden;
  background: var(--paper-3);
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-photo-frame {
  position: absolute;
  inset: -10px;
  border: 1px solid var(--gold);
  border-radius: 12px;
  pointer-events: none;
}
.hero-photo-tag {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  padding: 10px 14px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-photo-tag .who {
  font-family: var(--body);
  font-weight: 600;
  font-size: 15px;
}
.hero-photo-tag .role {
  color: var(--ink-3);
  font-size: 11px;
}
.stamp-june {
  position: absolute;
  top: -12px; right: -12px;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  line-height: 0.95;
  transform: rotate(-12deg);
  box-shadow: 0 12px 32px -8px rgba(28,24,21,0.45);
  border: 1px solid var(--gold);
  font-family: var(--display);
  animation: stamp-bob 5s ease-in-out infinite;
}
@keyframes stamp-bob {
  0%, 100% { transform: rotate(-12deg) translateY(0); }
  50% { transform: rotate(-9deg) translateY(-3px); }
}
.stamp-june .big { font-size: 24px; font-style: italic; color: var(--gold); }
.stamp-june .small {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--mono);
  margin-top: 3px;
  opacity: 0.85;
}

/* ───── section base ───── */
.section {
  padding: 52px var(--gutter);
}
.section-flush {
  padding-left: 0;
  padding-right: 0;
}
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  counter-increment: chapter;
}
/* Editorial chapter index (01, 02, …) auto-numbered down the page. */
.section-eyebrow::before {
  content: counter(chapter, decimal-leading-zero);
  font-family: var(--display);
  font-style: italic;
  font-size: 20px;
  line-height: 1;
  color: var(--gold);
}
.section-eyebrow .num {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
}
.section-eyebrow .num.gold { color: var(--gold); }
.section-title {
  font-size: 38px;
  line-height: 1.04;
  margin: 0 0 16px;
  max-width: 760px;
}
.section-sub {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 580px;
}

/* ───── video block ───── */
.video {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 14px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 40%, rgba(193,154,91,0.22), transparent 60%),
    linear-gradient(135deg, #1c1815 0%, #2a221b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid var(--line);
  width: 100%;
  padding: 0;
  margin-top: 32px;
}
.video::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 4px);
  pointer-events: none;
}
.video-play {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(250,246,238,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.6);
  position: relative;
  z-index: 2;
  transition: transform 0.2s ease;
}
.video-play::after {
  content: "";
  width: 0; height: 0;
  border-left: 20px solid var(--ink);
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  margin-left: 6px;
}
.video:hover .video-play { transform: scale(1.06); }
.video-label {
  position: absolute;
  top: 16px; left: 16px;
  display: flex; align-items: center; gap: 8px;
  color: var(--paper);
  font-size: 11px;
  font-family: var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}
.video-label .rec {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blush);
  animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%,100% { opacity: 1 } 50% { opacity: 0.4 } }
.video-duration {
  position: absolute;
  bottom: 16px; right: 16px;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  background: rgba(0,0,0,0.4);
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
}

/* ───── included grid ───── */
.included-grid {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.included-item {
  background: var(--paper);
  padding: 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  column-gap: 16px;
  row-gap: 0;
  align-items: flex-start;
}
.included-item .ico {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-family: var(--display);
  font-size: 17px;
  font-style: italic;
  grid-column: 1; grid-row: 1;
}
.included-item .included-body { grid-column: 2; grid-row: 1; min-width: 0; }
.included-item h4 {
  font-family: var(--body);
  font-weight: 600;
  font-size: 17px;
  margin: 0 0 4px;
}
.included-item p {
  font-size: 14.5px;
  color: var(--ink-3);
  line-height: 1.5;
  margin: 0;
}

/* ───── "?" help button + animated popover ─────
   Small gold-tinted button sits in column 3. Click expands an
   inline .help-pop panel that spans the full row width below the
   item content, with a unique CSS-only animation per item. */
.help-trigger {
  grid-column: 3; grid-row: 1;
  flex: 0 0 auto;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink-3);
  font-family: var(--body);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}
.help-trigger:hover,
.help-trigger:focus-visible {
  border-color: var(--gold);
  color: var(--gold-2);
  background: var(--gold-soft);
  outline: none;
}
.included-item.help-open .help-trigger {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
  transform: rotate(45deg); /* ? → ✕ visual cue */
}
.help-pop {
  grid-column: 1 / -1;
  grid-row: 2;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), opacity 0.3s ease, margin-top 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--gold-soft) 0%, var(--paper-2) 100%);
  border: 1px solid var(--line);
  padding: 0;
}
.included-item.help-open .help-pop {
  max-height: 340px;
  opacity: 1;
  margin-top: 14px;
  padding: 14px;
}
.help-anim {
  width: 100%;
  min-height: 120px;
  border-radius: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.help-text {
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--ink-2);
  margin: 0;
}
.help-text code {
  font-family: var(--mono);
  font-size: 12.5px;
  background: var(--paper-3);
  padding: 1px 5px;
  border-radius: 4px;
  color: var(--gold-2);
}

/* ── 01 one-page: a real one-page site scrolling inside a phone ── */
.help-anim-onepage { gap: 14px; }
.help-anim-onepage .phone {
  width: 72px; height: 116px;
  border: 2px solid var(--ink);
  border-radius: 13px;
  position: relative;
  background: var(--ink);
  padding: 6px 4px;
  flex: 0 0 auto;
}
.help-anim-onepage .phone-notch {
  position: absolute; top: 4px; left: 50%;
  transform: translateX(-50%);
  width: 18px; height: 3px;
  border-radius: 2px;
  background: var(--ink-3);
  z-index: 2;
}
.help-anim-onepage .phone-screen {
  width: 100%; height: 100%;
  background: var(--paper);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.help-anim-onepage .site-scroll {
  display: flex;
  flex-direction: column;
  animation: onepage-scroll 6.5s ease-in-out infinite;
}
.help-anim-onepage .s-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 4px 5px; background: var(--ink); flex: 0 0 auto;
}
.help-anim-onepage .s-logo { width: 13px; height: 4px; border-radius: 2px; background: var(--gold); }
.help-anim-onepage .s-dots { display: inline-flex; gap: 2px; }
.help-anim-onepage .s-dots i { width: 4px; height: 2px; border-radius: 1px; background: rgba(250,246,238,0.45); }
.help-anim-onepage .s-hero {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 9px 6px; background: var(--gold-soft); flex: 0 0 auto;
}
.help-anim-onepage .s-h1 { width: 76%; height: 5px; border-radius: 2px; background: var(--ink); }
.help-anim-onepage .s-h2 { width: 50%; height: 3px; border-radius: 2px; background: var(--ink-3); }
.help-anim-onepage .s-btn { width: 34%; height: 7px; border-radius: 4px; background: var(--gold); margin-top: 2px; }
.help-anim-onepage .s-img {
  height: 32px; margin: 5px; border-radius: 3px;
  background: linear-gradient(135deg, var(--gold-soft), var(--ink-4)); flex: 0 0 auto;
}
.help-anim-onepage .s-row { display: flex; gap: 4px; padding: 0 5px; flex: 0 0 auto; }
.help-anim-onepage .s-card { flex: 1; height: 24px; border-radius: 3px; background: var(--paper-2); border: 1px solid var(--line); }
.help-anim-onepage .s-lines { display: flex; flex-direction: column; gap: 3px; padding: 7px 6px; flex: 0 0 auto; }
.help-anim-onepage .s-lines span { height: 2px; border-radius: 1px; background: var(--ink-4); }
.help-anim-onepage .s-lines span:nth-child(2) { width: 82%; }
.help-anim-onepage .s-lines span:nth-child(3) { width: 60%; }
.help-anim-onepage .s-foot { height: 14px; background: var(--ink); flex: 0 0 auto; }
@keyframes onepage-scroll {
  0%, 14%   { transform: translateY(0); }
  86%, 100% { transform: translateY(-64px); }
}
.help-anim-onepage .scroll-hint {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--ink-3);
  letter-spacing: 0.05em;
  animation: scroll-hint-bob 1.6s ease-in-out infinite;
}
@keyframes scroll-hint-bob {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50%      { transform: translateY(3px); opacity: 1; }
}

/* ── 02 three images: photos dropping into a live page layout ── */
.help-anim-images { padding: 0; }
.help-anim-images .img-site {
  width: 152px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 6px 16px -8px rgba(28,24,21,0.22);
}
.help-anim-images .img-bar { display: flex; gap: 4px; align-items: center; }
.help-anim-images .img-bar span { height: 4px; border-radius: 2px; background: var(--ink-4); }
.help-anim-images .img-bar span:nth-child(1) { width: 38%; background: var(--ink-3); }
.help-anim-images .img-bar span:nth-child(2) { width: 22%; }
.help-anim-images .img-slot {
  background: var(--paper-2);
  border: 1px dashed var(--line);
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
.help-anim-images .img-slot.s1 { height: 44px; }
.help-anim-images .img-grid { display: flex; gap: 6px; }
.help-anim-images .img-grid .img-slot { flex: 1; height: 34px; }
.help-anim-images .img-ph {
  position: absolute; inset: 0;
  border-radius: 4px;
  opacity: 0;
  transform: scale(0.55) translateY(-10px);
  animation: img-place 5s ease-in-out infinite;
}
.help-anim-images .s1 .img-ph { background: linear-gradient(135deg, #d8b98a, #b98e57); animation-delay: 0.2s; }
.help-anim-images .s2 .img-ph { background: linear-gradient(135deg, #a9bd92, #6f8f6a); animation-delay: 1.0s; }
.help-anim-images .s3 .img-ph { background: linear-gradient(135deg, #d29a8d, #a85f55); animation-delay: 1.8s; }
@keyframes img-place {
  0%, 4%    { opacity: 0; transform: scale(0.55) translateY(-10px); }
  16%, 82%  { opacity: 1; transform: scale(1) translateY(0); }
  94%, 100% { opacity: 0; transform: scale(0.9) translateY(0); }
}

/* ── 03 about: portrait card + typewriter lines ── */
.help-anim-about { padding: 0 14px; }
.help-anim-about .about-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  width: 100%;
  max-width: 240px;
  box-shadow: 0 3px 10px -4px rgba(28,24,21,0.12);
}
.help-anim-about .about-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold-soft), var(--gold));
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
  overflow: hidden;
}
.help-anim-about .about-body { display: flex; flex-direction: column; gap: 3px; flex: 1; min-width: 0; }
.help-anim-about .about-head {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  color: var(--ink-3);
}
.help-anim-about .about-line {
  display: block;
  height: 4px;
  background: var(--ink-4);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: type-line 3.6s ease-in-out infinite;
}
.help-anim-about .t1 { width: 100%;  animation-delay: 0.0s; }
.help-anim-about .t2 { width: 80%;   animation-delay: 0.35s; }
.help-anim-about .t3 { width: 60%;   animation-delay: 0.7s; }
@keyframes type-line {
  0%, 5%    { transform: scaleX(0); }
  40%, 80%  { transform: scaleX(1); }
  95%, 100% { transform: scaleX(0); }
}

/* ── 04 services: a "Services" title with turning gears + descriptions ── */
.help-anim-services {
  flex-direction: column;
  align-items: stretch;
  gap: 9px;
  padding: 12px 16px;
}
.help-anim-services .srv-top { display: flex; align-items: center; }
.help-anim-services .srv-gear { display: inline-flex; flex: 0 0 auto; }
.help-anim-services .g-big {
  width: 22px; height: 22px; color: var(--gold-2);
  animation: gear-spin 7s linear infinite;
}
.help-anim-services .g-small {
  width: 14px; height: 14px; margin-left: -3px; color: var(--gold);
  animation: gear-spin-rev 5s linear infinite;
}
.help-anim-services .srv-title {
  margin-left: 9px;
  font-family: var(--display);
  font-style: italic;
  font-size: 19px;
  line-height: 1;
  color: var(--ink);
}
.help-anim-services .srv-list { display: flex; flex-direction: column; gap: 5px; }
.help-anim-services .srv-item {
  display: flex; align-items: center; gap: 7px;
  opacity: 0; transform: translateX(-7px);
  animation: srv-in 4.5s ease-in-out infinite;
}
.help-anim-services .srv-item:nth-child(1) { animation-delay: 0.3s; }
.help-anim-services .srv-item:nth-child(2) { animation-delay: 0.65s; }
.help-anim-services .srv-item:nth-child(3) { animation-delay: 1.0s; }
.help-anim-services .srv-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex: 0 0 auto; }
.help-anim-services .srv-txt { font-size: 11px; color: var(--ink-2); }
.help-anim-services .srv-txt b { color: var(--ink); font-weight: 600; }
.help-anim-services .srv-txt i { color: var(--ink-3); font-style: normal; }
@keyframes gear-spin     { to { transform: rotate(360deg); } }
@keyframes gear-spin-rev { to { transform: rotate(-360deg); } }
@keyframes srv-in {
  0%, 8%    { opacity: 0; transform: translateX(-7px); }
  26%, 84%  { opacity: 1; transform: translateX(0); }
  96%, 100% { opacity: 0; transform: translateX(5px); }
}

/* ── 05 responsive: one site that reflows from desktop → phone ── */
.help-anim-responsive { flex-direction: column; gap: 9px; }
.help-anim-responsive .rsp-frame {
  border: 2px solid var(--ink);
  border-radius: 9px;
  background: var(--ink);
  padding: 4px;
  width: 210px;
  overflow: hidden;
  animation: rsp-resize 5.5s ease-in-out infinite;
}
@keyframes rsp-resize {
  0%, 16%   { width: 210px; border-radius: 9px; }
  50%, 66%  { width: 92px;  border-radius: 13px; }
  100%      { width: 210px; border-radius: 9px; }
}
.help-anim-responsive .rsp-bar { display: flex; padding: 2px 4px 4px; }
.help-anim-responsive .rsp-dots { display: inline-flex; gap: 3px; }
.help-anim-responsive .rsp-dots i { width: 4px; height: 4px; border-radius: 50%; background: rgba(250,246,238,0.4); }
.help-anim-responsive .rsp-body {
  background: var(--paper);
  border-radius: 5px;
  padding: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-content: flex-start;
}
.help-anim-responsive .rsp-block {
  height: 15px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--gold-soft), var(--ink-4));
  flex: 1 1 64px;
}
.help-anim-responsive .b1 { flex-basis: 100%; height: 19px; background: linear-gradient(135deg, var(--gold), var(--gold-2)); }
.help-anim-responsive .rsp-tag {
  position: relative;
  height: 12px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.help-anim-responsive .rsp-tag span {
  position: absolute; left: 50%; top: 0;
  transform: translateX(-50%);
  white-space: nowrap;
}
.help-anim-responsive .rsp-tag-d { animation: rsp-lbl-d 5.5s ease-in-out infinite; }
.help-anim-responsive .rsp-tag-m { opacity: 0; animation: rsp-lbl-m 5.5s ease-in-out infinite; }
@keyframes rsp-lbl-d { 0%, 18% { opacity: 1; } 34%, 82% { opacity: 0; } 100% { opacity: 1; } }
@keyframes rsp-lbl-m { 0%, 22% { opacity: 0; } 50%, 64% { opacity: 1; } 80%, 100% { opacity: 0; } }

/* ── 06 domain: browser bar typing + FREE badge ── */
.help-anim-domain { padding: 0 14px; gap: 8px; flex-direction: column; }
.help-anim-domain .dom-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  width: 100%;
  max-width: 240px;
}
.help-anim-domain .dom-dots { display: inline-flex; gap: 3px; flex-shrink: 0; }
.help-anim-domain .dom-dots i {
  width: 5px; height: 5px;
  border-radius: 50%;
  display: inline-block;
}
.help-anim-domain .dom-dots i:nth-child(1) { background: #e8826c; }
.help-anim-domain .dom-dots i:nth-child(2) { background: #f0c050; }
.help-anim-domain .dom-dots i:nth-child(3) { background: #79b96a; }
.help-anim-domain .dom-lock { color: #79b96a; display: inline-flex; }
.help-anim-domain .dom-url {
  flex: 1;
  font-family: var(--mono);
  font-size: 10px;
  overflow: hidden;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}
.help-anim-domain .dom-proto { color: var(--ink-3); }
.help-anim-domain .dom-typed {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  vertical-align: bottom;
  color: var(--gold-2);
  font-weight: 700;
  width: 0;
  animation: dom-type 4.2s steps(12, end) infinite;
}
.help-anim-domain .dom-caret {
  display: inline-block;
  width: 1px;
  height: 11px;
  background: var(--ink-2);
  margin-left: 1px;
  animation: dom-caret 1s steps(1) infinite;
}
@keyframes dom-type {
  0%       { width: 0; }
  40%, 85% { width: 68px; }
  100%     { width: 0; }
}
@keyframes dom-caret {
  0%, 50%  { opacity: 1; }
  50.1%, 100% { opacity: 0; }
}
.help-anim-domain .dom-free {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: var(--ink);
  background: var(--gold);
  padding: 3px 8px;
  border-radius: 999px;
  opacity: 0;
  transform: scale(0.6);
  animation: dom-free-pop 4.2s ease-in-out infinite;
}
@keyframes dom-free-pop {
  0%, 50%  { opacity: 0; transform: scale(0.6); }
  60%      { opacity: 1; transform: scale(1.15); }
  70%, 90% { opacity: 1; transform: scale(1); }
  95%, 100% { opacity: 0; transform: scale(0.6); }
}

@media (prefers-reduced-motion: reduce) {
  .help-anim *, .help-anim::before, .help-anim::after { animation: none !important; }
}

/* ───── hosting note ───── */
.hosting {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  margin-top: 22px;
}
.hosting-ico {
  width: 44px; height: 44px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--gold);
  color: var(--gold-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 22px;
  font-style: italic;
}
.hosting h4 {
  font-family: var(--display);
  font-size: 22px;
  margin: 0 0 6px;
  font-weight: 400;
}
.hosting p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0;
}
.hosting p b { color: var(--ink); }
.hosting-pill {
  display: inline-block;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 4px 12px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  margin-top: 12px;
  color: var(--ink-2);
}

/* ───── about ───── */
.about {
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: var(--paper-2);
  border-radius: var(--radius-scene);
  padding: 32px 24px;
  margin: 0 var(--gutter);
}
.about-photo {
  aspect-ratio: 3/4;
  border-radius: 16px;
  overflow: hidden;
  background: var(--paper-3);
  max-height: 460px;
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-text { display: flex; flex-direction: column; }
.about-h2 {
  font-size: 36px;
  line-height: 1.05;
  margin: 8px 0 18px;
}
.about-text p {
  font-size: 15.5px;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0 0 12px;
}
.about-text p b { color: var(--ink); }
.about-sig {
  font-family: var(--display);
  font-style: italic;
  font-size: 26px;
  color: var(--gold-2);
  margin-top: 16px;
}
.about-stats {
  list-style: none;
  padding: 22px 0 0;
  margin: 22px 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 22px;
}
.about-stats li { display: flex; flex-direction: column; gap: 2px; }
.about-stats .num {
  font-family: var(--display);
  font-size: 30px;
  color: var(--ink);
  line-height: 1;
}
.about-stats .label {
  font-size: 11px;
  color: var(--ink-3);
  font-family: var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ───── addons ───── */
.addons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 32px;
}
.addon {
  text-align: left;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              border-color 0.2s ease, background 0.25s ease;
  font: inherit;
  color: inherit;
}
.addon:hover,
.addon:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -16px rgba(28,24,21,0.18);
  border-color: var(--gold);
  outline: none;
}
.addon.selected {
  background: var(--gold-soft);
  border-color: var(--gold);
}
.addon-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.addon-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.addon-price {
  font-family: var(--display);
  font-size: 32px;
  line-height: 1;
}
.addon-price .plus {
  font-size: 16px;
  color: var(--ink-3);
  margin-right: 2px;
  vertical-align: top;
}
.addon h3 {
  font-family: var(--body);
  font-weight: 600;
  font-size: 19px;
  margin: 0 0 8px;
}
.addon p {
  font-size: 14.5px;
  color: var(--ink-2);
  margin: 0 0 14px;
  line-height: 1.55;
}
.addon-why {
  border-top: 1px dashed var(--line);
  padding-top: 14px;
  margin-top: auto;
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.55;
}
.addon-why .label {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--gold-2);
  display: block;
  margin-bottom: 4px;
}
.addon-add {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 14px;
  border: 1px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-top: auto;
  font-family: var(--body);
  transition: background 0.2s ease, color 0.2s ease;
}
.addon.selected .addon-add {
  background: var(--ink);
  color: var(--paper);
}

/* ── add-on "View example / How it works" button ── */
.example-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 4px 0 2px;
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink-2);
  font-family: var(--body);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}
.example-btn:hover,
.example-btn:focus-visible {
  border-color: var(--gold);
  color: var(--gold-2);
  background: var(--gold-soft);
  outline: none;
}
.example-btn:active { transform: scale(0.96); }
.example-btn .ex-arrow { font-size: 12px; transition: transform 0.2s ease; }
.example-btn:hover .ex-arrow { transform: translate(2px, -2px); }

/* ════════ add-on example modal ════════ */
body.ex-lock { overflow: hidden; }
.ex-modal {
  position: fixed; inset: 0; z-index: 200;
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
}
.ex-modal.is-open { display: flex; }
.ex-backdrop {
  position: absolute; inset: 0;
  background: rgba(16,13,11,0.62);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  animation: exFade 0.3s ease both;
}
.ex-dialog {
  position: relative; z-index: 1;
  width: min(560px, 100%);
  max-height: min(88vh, 780px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px 24px 24px;
  box-shadow: 0 40px 90px -28px rgba(16,13,11,0.65);
  animation: exPop 0.4s var(--ease) both;
}
@keyframes exFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes exPop {
  from { opacity: 0; transform: translateY(14px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.ex-close {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--paper); color: var(--ink-2);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.ex-close:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.ex-close:active { transform: scale(0.92); }
.ex-head { margin-bottom: 18px; padding-right: 34px; }
.ex-eyebrow {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-2); display: block; margin-bottom: 8px;
}
.ex-title { font-family: var(--display); font-size: 25px; line-height: 1.1; color: var(--ink); }
.ex-note { font-size: 13px; color: var(--ink-3); line-height: 1.5; margin-top: 16px; }
.ex-panel { animation: exFade 0.45s ease both 0.08s; }
@keyframes exUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ── example · LOGO (brand presentation) ── */
.lx-hero {
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  background: linear-gradient(160deg, var(--gold-soft), var(--paper-2));
  border: 1px solid var(--line); border-radius: 16px;
  padding: 30px 20px;
}
.lx-emblem {
  width: 72px; height: 72px; border-radius: 50%;
  border: 2px solid var(--gold-2);
  background: radial-gradient(circle at 32% 28%, #e7cf9f, var(--gold) 72%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px -10px rgba(193,154,91,0.7);
  transform: scale(0) rotate(-14deg);
  animation: lxPop 0.7s var(--ease) 0.15s both;
}
.lx-mono { font-family: var(--display); font-size: 40px; color: var(--ink); line-height: 1; }
.lx-emblem.sm { width: 40px; height: 40px; box-shadow: none; transform: none; animation: none; }
.lx-emblem.sm .lx-mono { font-size: 22px; }
.lx-word { font-family: var(--display); font-size: 32px; color: var(--ink); opacity: 0; animation: exUp 0.6s var(--ease) 0.4s both; }
.lx-word .amp { color: var(--gold-2); font-style: italic; }
.lx-tag { font-family: var(--mono); font-size: 9px; letter-spacing: 0.2em; color: var(--ink-3); opacity: 0; animation: exUp 0.6s var(--ease) 0.55s both; }
.lx-variants { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 12px; }
.lx-var {
  border: 1px solid var(--line); border-radius: 12px; padding: 16px 6px 10px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: exUp 0.5s var(--ease) both;
}
.lx-var:nth-child(1) { animation-delay: 0.6s; }
.lx-var:nth-child(2) { animation-delay: 0.7s; }
.lx-var:nth-child(3) { animation-delay: 0.8s; }
.lx-var.v-dark { background: var(--ink); border-color: var(--ink); }
.lx-var.v-dark .lx-emblem.sm { background: transparent; border-color: var(--paper); }
.lx-var.v-dark .lx-mono { color: var(--paper); }
.lx-var.v-mark .lx-emblem.sm { background: var(--ink); border-color: var(--ink); }
.lx-var.v-mark .lx-mono { color: var(--gold); }
.lx-var-cap { font-family: var(--mono); font-size: 8px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); }
.lx-var.v-dark .lx-var-cap { color: var(--ink-4); }
.lx-foot { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.lx-formats { display: flex; gap: 6px; flex-wrap: wrap; }
.lx-formats span {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em;
  background: var(--paper-2); border: 1px solid var(--line); color: var(--ink-2);
  padding: 4px 10px; border-radius: 999px;
}
@keyframes lxPop { from { transform: scale(0) rotate(-14deg); } to { transform: scale(1) rotate(0); } }

/* ── example · SEO (Google search — hardcoded light palette to read as Google) ── */
.gx-search { display: flex; flex-direction: column; gap: 14px; align-items: center; background: #fff; border: 1px solid #e6e6e6; border-radius: 16px; padding: 22px 16px; }
.gx-logo { font-family: Arial, var(--body); font-size: 30px; font-weight: 500; letter-spacing: -1px; }
.gx-logo .c-b { color: #4285F4; } .gx-logo .c-r { color: #EA4335; } .gx-logo .c-y { color: #FBBC05; } .gx-logo .c-g { color: #34A853; }
.gx-input { display: flex; align-items: center; gap: 9px; width: min(360px, 100%); border: 1px solid #dfe1e5; border-radius: 999px; padding: 9px 16px; background: #fff; box-shadow: 0 2px 8px -5px rgba(16,13,11,0.25); }
.gx-query { font-size: 14px; color: #202124; }
.gx-caret { display: inline-block; width: 1.5px; height: 15px; background: #202124; margin-left: 1px; vertical-align: -2px; animation: gxCaret 1.1s steps(1) infinite; }
@keyframes gxCaret { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }
.gx-results { display: flex; flex-direction: column; gap: 14px; margin-top: 16px; }
.gx-result { opacity: 0; animation: exUp 0.5s var(--ease) both; }
.gx-results .gx-result:nth-child(1) { animation-delay: 0.4s; }
.gx-results .gx-result:nth-child(2) { animation-delay: 0.55s; }
.gx-results .gx-result:nth-child(3) { animation-delay: 0.7s; }
.gx-top { position: relative; padding: 13px 15px; border: 1px solid #e8c889; background: #fffaf0; border-radius: 12px; }
.gx-badge { position: absolute; top: -9px; left: 15px; background: var(--gold-2); color: #fff; font-family: var(--mono); font-size: 9px; font-weight: 700; letter-spacing: 0.04em; padding: 2px 8px; border-radius: 999px; }
.gx-url { font-size: 12px; color: #5f6368; margin-bottom: 2px; }
.gx-title { font-size: 16px; color: #1a0dab; line-height: 1.3; margin-bottom: 3px; }
.gx-snippet { font-size: 12.5px; color: #4d5156; line-height: 1.45; }
.gx-ghost { padding: 2px 4px; }
.gx-ghost .gx-url-line { height: 8px; width: 38%; border-radius: 3px; background: #e6e6e6; margin-bottom: 6px; }
.gx-ghost .gx-title-line { height: 11px; width: 68%; border-radius: 3px; background: #c9d3ee; margin-bottom: 7px; }
.gx-ghost .gx-snip-line { height: 7px; border-radius: 3px; background: #ededed; margin-bottom: 5px; }
.gx-ghost .gx-snip-line.s { width: 82%; }

/* ── example · GBP (Google Maps profile — hardcoded light palette) ── */
.mx-wrap { border: 1px solid #e6e6e6; border-radius: 16px; overflow: hidden; background: #fff; }
.mx-map { position: relative; height: 122px; background: #e8eef0; overflow: hidden; }
.mx-road { position: absolute; background: #fff; }
.mx-road.r1 { top: 36%; left: -5%; right: -5%; height: 11px; transform: rotate(-5deg); }
.mx-road.r2 { top: -5%; bottom: -5%; left: 34%; width: 9px; transform: rotate(7deg); }
.mx-road.r3 { bottom: 24%; left: 0; right: 0; height: 7px; }
.mx-block { position: absolute; background: #dde7e1; border-radius: 2px; }
.mx-block.b1 { width: 42px; height: 26px; left: 11%; top: 13%; }
.mx-block.b2 { width: 34px; height: 32px; right: 13%; bottom: 12%; }
.mx-pin { position: absolute; left: 50%; top: 30%; transform: translate(-50%, -100%); filter: drop-shadow(0 4px 4px rgba(0,0,0,0.3)); animation: mxDrop 0.75s var(--ease) 0.2s both; }
@keyframes mxDrop {
  0%   { transform: translate(-50%, -170%); opacity: 0; }
  60%  { transform: translate(-50%, -90%);  opacity: 1; }
  80%  { transform: translate(-50%, -106%); }
  100% { transform: translate(-50%, -100%); }
}
.mx-card { padding: 14px 16px 16px; background: #fff; }
.mx-photos { display: flex; gap: 4px; margin-bottom: 12px; }
.mx-photos .ph { flex: 1; height: 48px; border-radius: 6px; opacity: 0; animation: exUp 0.5s var(--ease) both; }
.mx-photos .p1 { background: linear-gradient(135deg, #d8b98a, #b98e57); animation-delay: 0.5s; }
.mx-photos .p2 { background: linear-gradient(135deg, #a9bd92, #6f8f6a); animation-delay: 0.6s; }
.mx-photos .p3 { background: linear-gradient(135deg, #d29a8d, #a85f55); animation-delay: 0.7s; }
.mx-name { font-family: var(--display); font-size: 23px; color: #202124; }
.mx-rating { display: flex; align-items: center; gap: 6px; margin: 4px 0; font-size: 13px; color: #202124; }
.mx-stars { color: #fbbc04; letter-spacing: 1px; }
.mx-reviews { color: #1a73e8; font-size: 12px; }
.mx-meta { font-size: 12.5px; color: #5f6368; }
.mx-open { color: #1e8e3e; font-weight: 600; }
.mx-sub { margin-top: 2px; }
.mx-actions { display: flex; gap: 8px; margin-top: 14px; }
.mx-act { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 5px; color: #1a73e8; font-size: 11px; font-weight: 600; }

/* ── example · PREMIUM ANIMATIONS (showcase stage) ── */
.ax-stage { position: relative; height: 210px; border-radius: 16px; overflow: hidden; background: linear-gradient(155deg, #1c1815, #2c2017); display: flex; align-items: center; justify-content: center; }
.ax-blob { position: absolute; width: 150px; height: 150px; background: radial-gradient(circle at 35% 30%, #e7c98f, var(--gold) 58%, var(--gold-2)); filter: blur(2px); opacity: 0.85; border-radius: 42% 58% 63% 37% / 42% 38% 62% 58%; animation: axBlob 9s ease-in-out infinite; }
@keyframes axBlob {
  0%, 100% { border-radius: 42% 58% 63% 37% / 42% 38% 62% 58%; transform: rotate(0) scale(1); }
  33% { border-radius: 62% 38% 42% 58% / 58% 62% 38% 42%; transform: rotate(120deg) scale(1.08); }
  66% { border-radius: 38% 62% 58% 42% / 50% 44% 56% 50%; transform: rotate(240deg) scale(0.95); }
}
.ax-card { position: absolute; border-radius: 10px; background: rgba(250,246,238,0.12); border: 1px solid rgba(250,246,238,0.28); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.ax-card.ac1 { width: 82px; height: 54px; left: 16%; top: 24%; animation: axFloat 5s ease-in-out infinite; }
.ax-card.ac2 { width: 66px; height: 46px; right: 15%; top: 40%; animation: axFloat 5s ease-in-out 0.8s infinite; }
.ax-card.ac3 { width: 48px; height: 48px; left: 46%; bottom: 12%; border-radius: 50%; animation: axFloat 6s ease-in-out 1.4s infinite; }
@keyframes axFloat { 0%, 100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-13px) rotate(2deg); } }
.ax-orbit { position: absolute; left: 50%; top: 50%; width: 0; height: 0; animation: axSpin 4.5s linear infinite; }
.ax-dot { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: #fff; transform: translateX(82px); box-shadow: 0 0 12px 2px rgba(255,255,255,0.6); }
@keyframes axSpin { to { transform: rotate(360deg); } }
.ax-bars { position: absolute; bottom: 16px; left: 18px; display: flex; gap: 4px; align-items: flex-end; height: 30px; }
.ax-bars i { width: 5px; background: var(--gold); border-radius: 2px; transform-origin: bottom; animation: axBar 1s ease-in-out infinite; }
.ax-bars i:nth-child(1) { height: 40%; animation-delay: 0s; }
.ax-bars i:nth-child(2) { height: 75%; animation-delay: 0.15s; }
.ax-bars i:nth-child(3) { height: 100%; animation-delay: 0.3s; }
.ax-bars i:nth-child(4) { height: 55%; animation-delay: 0.45s; }
.ax-bars i:nth-child(5) { height: 85%; animation-delay: 0.6s; }
@keyframes axBar { 0%, 100% { transform: scaleY(0.4); } 50% { transform: scaleY(1); } }
.ax-word { position: relative; z-index: 2; font-family: var(--display); font-style: italic; font-size: 46px; color: #faf6ee; text-shadow: 0 6px 24px rgba(0,0,0,0.45); animation: axWord 4s ease-in-out infinite; }
@keyframes axWord { 0%, 100% { transform: scale(1); opacity: 0.92; } 50% { transform: scale(1.06); opacity: 1; } }
.ax-spark { position: absolute; color: #fff; opacity: 0; }
.ax-spark.k1 { top: 20%; right: 24%; animation: axTwinkle 2.4s ease-in-out infinite; }
.ax-spark.k2 { bottom: 26%; left: 26%; animation: axTwinkle 2.4s ease-in-out 0.9s infinite; }
@keyframes axTwinkle { 0%, 100% { opacity: 0; transform: scale(0.4) rotate(0); } 50% { opacity: 1; transform: scale(1) rotate(45deg); } }

/* ───── brief ───── */
.brief {
  background: var(--paper-2);
  border-radius: var(--radius-scene);
  padding: 32px 24px;
  margin: 0 var(--gutter);
}
.brief-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.brief-h2 {
  font-size: 36px;
  line-height: 1.04;
  margin: 0 0 12px;
}
.brief-lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  color: var(--ink-2);
}
.brief-lang .globe {
  font-style: italic;
  font-family: var(--display);
  color: var(--gold-2);
  font-size: 16px;
}
.brief-field { margin-top: 28px; }
.brief-field label, .brief-label { display: block; margin-bottom: 10px; }
.textarea {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  font-family: inherit;
  font-size: 15.5px;
  color: var(--ink);
  min-height: 130px;
  resize: vertical;
  line-height: 1.55;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.textarea::placeholder { color: var(--ink-3); }
.textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(193,154,91,0.15);
}
.brief-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 28px;
}
.uploaders {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.uploader {
  aspect-ratio: 1;
  background: var(--paper);
  border: 1px dashed var(--ink-3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  color: var(--ink-3);
  font-size: 12px;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
  position: relative;
  overflow: hidden;
}
.uploader:hover, .uploader:focus-within {
  border-color: var(--gold);
  color: var(--gold-2);
  outline: none;
}
.uploader.has-image {
  border-style: solid;
  border-color: var(--gold);
  color: transparent;
  background-size: cover;
  background-position: center;
}
.uploader .plus {
  font-family: var(--display);
  font-size: 24px;
}
.brief-foot { margin-top: 10px; color: var(--ink-3); }

.brief-submit {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.brief-submit .btn { margin-top: 4px; }
.brief-submit-foot {
  margin: 14px auto 0;
  max-width: 360px;
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.5;
}
.brief-submit-status {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 500;
}
.brief-submit-status.ok    { color: var(--gold); }
.brief-submit-status.err   { color: #c14a3a; }
.swatches {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.swatch {
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  position: relative;
  cursor: pointer;
  padding: 0;
  background-color: transparent;
  transition: transform 0.15s ease;
}
.swatch:hover { transform: scale(1.06); }
.swatch.selected {
  box-shadow: 0 0 0 2px var(--paper-2), 0 0 0 4px var(--ink);
}
.swatch.selected::after {
  content: "✓";
  position: absolute;
  top: -8px; right: -8px;
  width: 20px; height: 20px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  border: 1.5px solid var(--paper-2);
}
.swatch-add {
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px dashed var(--ink-3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-3);
  font-family: var(--display);
  font-size: 22px;
}

/* ───── locked brief (pre-payment state) ───── */
.brief-fields-wrap { position: relative; }
.brief-fields-wrap.is-locked > *:not(.brief-lock) {
  filter: blur(2px) saturate(0.95);
  pointer-events: none;
  user-select: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  transition: filter 0.5s var(--ease);
}
.brief-lock {
  position: absolute;
  inset: 0;
  z-index: 3;
  padding: 60px 16px;
  background: linear-gradient(180deg,
    rgba(243,236,223,0.05) 0%,
    rgba(243,236,223,0.4)  20%,
    rgba(243,236,223,0.75) 60%,
    rgba(243,236,223,0.92) 100%);
  border-radius: var(--radius-scene);
  pointer-events: auto;
}
.brief-fields-wrap:not(.is-locked) .brief-lock { display: none; }
.brief-lock-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 22px;
  max-width: 320px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 24px 60px -20px rgba(28,24,21,0.3);
  position: sticky;
  top: 96px;
  animation: lockPop 0.5s var(--ease);
}
@keyframes lockPop {
  from { opacity: 0; transform: translateY(8px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.brief-lock-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 8px 20px -6px rgba(193,154,91,0.5);
}
.brief-lock-msg {
  font-family: var(--display);
  font-size: 21px;
  line-height: 1.18;
  color: var(--ink);
}
.brief-lock-smile { display: inline-block; margin-left: 2px; }
.brief-lock-sub {
  margin-top: 10px;
  color: var(--ink-3);
  font-size: 13px;
}

/* ───── step-by-step brief wizard ─────
   Each section of the brief is wrapped in a .brief-step[data-step=N].
   Steps with data-step > current get blurred + non-interactive (only
   when the wrap itself isn't already in the .is-locked pre-payment or
   .is-sent post-submission state — those have their own overlays).
   Completed steps stay visible but lose their Next button.
   The Next button advances briefStep by 1. */
.brief-step {
  /* Position relative so children animate cleanly during step changes. */
  position: relative;
  transition: filter 0.4s var(--ease), opacity 0.4s ease;
}
.brief-fields-wrap:not(.is-locked):not(.is-sent) .brief-step.locked {
  filter: blur(2px) saturate(0.95);
  opacity: 0.65;
  pointer-events: none;
  user-select: none;
}
.brief-step-next {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  padding: 13px 22px;
  background: var(--ink);
  color: var(--paper);
  border: 0;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 18px -6px rgba(28,24,21,0.45);
}
.brief-step-next:hover {
  background: var(--gold-2);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -8px rgba(193,154,91,0.55);
}
.brief-step-next:active { transform: translateY(0); }
.brief-step-next .arrow { transition: transform 0.2s ease; }
.brief-step-next:hover .arrow { transform: translateX(3px); }
/* Next button only on the active step (not locked, not completed) */
.brief-step.locked .brief-step-next,
.brief-step.complete .brief-step-next { display: none; }
/* The Send to Kate block is hidden until we advance past step 5. */
.brief-submit { display: none; }
.brief-submit.unlocked { display: block; }

/* ───── sent brief (post-submission state) ─────
   Same blur/overlay treatment as the pre-payment lock, but with
   a green check icon and a "got it!" success card. Reuses the
   .is-locked structural rules where possible. */
.brief-fields-wrap.is-sent > *:not(.brief-sent) {
  filter: blur(2px) saturate(0.95);
  pointer-events: none;
  user-select: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  transition: filter 0.5s var(--ease);
}
.brief-sent {
  position: absolute;
  inset: 0;
  z-index: 3;
  padding: 60px 16px;
  background: linear-gradient(180deg,
    rgba(243,236,223,0.05) 0%,
    rgba(243,236,223,0.4)  20%,
    rgba(243,236,223,0.75) 60%,
    rgba(243,236,223,0.92) 100%);
  border-radius: var(--radius-scene);
  pointer-events: auto;
  display: none;
}
.brief-fields-wrap.is-sent .brief-sent { display: block; }
.brief-sent-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 22px;
  max-width: 360px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 24px 60px -20px rgba(28,24,21,0.3);
  position: sticky;
  top: 96px;
  animation: lockPop 0.5s var(--ease);
}
.brief-sent-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #79b96a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 10px 24px -8px rgba(121,185,106,0.55);
}
.brief-sent-msg {
  font-family: var(--display);
  font-size: 21px;
  line-height: 1.22;
  color: var(--ink);
}
.brief-sent-sub {
  margin-top: 10px;
  color: var(--ink-3);
  font-size: 13px;
  line-height: 1.5;
}
.brief-sent-sub a {
  color: var(--gold-2);
  text-decoration: underline;
}
.brief-sent-order {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 14px auto 0;
  padding: 7px 14px;
  background: rgba(193,154,91,0.12);
  border: 1px solid rgba(193,154,91,0.35);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 12px;
}
.brief-sent-order[hidden] { display: none; }
.brief-sent-order-label {
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 10px;
}
.brief-sent-order-id {
  color: var(--gold-2);
  font-weight: 700;
  letter-spacing: 0.05em;
}
/* In dark mode, the cream-tinted overlay would read as a bright
   milky box on the dark page. Re-pin the gradient to use the dark
   page color so the fade reads correctly. */
[data-theme="dark"] .brief-sent,
[data-theme="dark"] .brief-lock {
  background: linear-gradient(180deg,
    rgba(20,17,15,0.05) 0%,
    rgba(20,17,15,0.4)  20%,
    rgba(20,17,15,0.75) 60%,
    rgba(20,17,15,0.92) 100%);
}

.brief-sublabel {
  font-family: var(--body);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-3);
  font-size: 12px;
  margin-left: 6px;
}

/* light single-line input — shares style with .textarea */
.brief-input {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15.5px;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.brief-input::placeholder { color: var(--ink-3); }
.brief-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(193,154,91,0.15);
}

/* ───── contact card (domain / phone / email) ───── */
.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-row { display: flex; flex-direction: column; gap: 8px; }
.contact-label {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.contact-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  background: var(--paper-3);
  color: var(--ink-2);
  border-radius: 4px;
  padding: 3px 7px;
}
.contact-hint {
  font-family: var(--display);
  font-style: italic;
  color: var(--ink-2);
  font-size: 15px;
}

/* faux browser address bar */
.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px 7px 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
  /* Whole bar focuses the input on click — the decorative chrome
     (traffic lights, lock, https://) shouldn't feel un-interactive */
  cursor: text;
}
.browser-bar:hover { border-color: var(--gold); }
.browser-bar:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(193,154,91,0.15);
}
.browser-dots { display: inline-flex; gap: 4px; flex-shrink: 0; }
.browser-dots i {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ink-4);
  display: inline-block;
}
.browser-dots i:nth-child(1) { background: #e8826c; }
.browser-dots i:nth-child(2) { background: #f0c050; }
.browser-dots i:nth-child(3) { background: #79b96a; }
.browser-lock {
  color: #79b96a;
  display: inline-flex;
  margin-left: 4px;
  flex-shrink: 0;
}
.browser-proto {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-3);
  flex-shrink: 0;
}
.browser-url {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  font-family: var(--mono);
  font-size: 14px;
  color: var(--ink);
  padding: 4px 0;
  min-width: 0;
}
.browser-url::placeholder { color: var(--ink-3); }
.browser-url.has-value { color: var(--gold-2); }

/* inline preview chip under phone / email */
.preview-chip {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-soft);
  color: var(--ink);
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12.5px;
  font-family: var(--mono);
  animation: chipPop 0.4s var(--ease);
}
.preview-chip .preview-chip-val { font-weight: 600; }
.preview-chip .arrow { color: var(--gold-2); }
@keyframes chipPop {
  from { opacity: 0; transform: translateY(-4px) scale(0.94); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ───── socials chip rack ───── */
.socials-rack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.social-chip {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  /* Whole chip is the click target — tap anywhere expands + focuses
     the input. The icon span has no click handler of its own. */
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, padding 0.25s var(--ease), box-shadow 0.2s ease;
  max-width: 100%;
  overflow: hidden;
  /* Suppress double-tap highlight on mobile */
  -webkit-tap-highlight-color: transparent;
}
.social-chip:hover { border-color: var(--gold); }
.social-chip:focus-visible {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(193,154,91,0.25);
}
.social-chip.active { cursor: default; }
.social-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 0;
  background: var(--ink);
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease;
  /* Pointer-events off so clicks pass through to the chip handler */
  pointer-events: none;
}
.social-chip[data-social="instagram"] .social-icon { background: linear-gradient(135deg,#f7b733,#fc4a1a 60%,#a043b7); }
.social-chip[data-social="facebook"]  .social-icon { background: #1877f2; }
.social-chip[data-social="tiktok"]    .social-icon { background: #000; }
.social-chip[data-social="x"]         .social-icon { background: #000; }
.social-chip[data-social="linkedin"]  .social-icon { background: #0a66c2; }
.social-chip[data-social="youtube"]   .social-icon { background: #ff0000; }

.social-name {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-2);
  padding: 0 12px;
  white-space: nowrap;
}
.social-input {
  background: transparent;
  border: 0;
  outline: 0;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink);
  width: 0;
  padding: 0;
  transition: width 0.3s var(--ease), padding 0.25s ease;
}
.social-input::placeholder { color: var(--ink-3); }
.social-clear {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 0;
  background: transparent;
  color: var(--ink-3);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1;
  padding: 0;
  margin-right: 2px;
}
.social-clear:hover { color: var(--ink); }
.social-chip.active {
  border-color: var(--gold);
  background: var(--gold-soft);
}
.social-chip.active .social-name { display: none; }
.social-chip.active .social-input { width: 130px; padding: 0 10px 0 12px; }
.social-chip.active .social-clear { display: inline-flex; }

/* ───── image-zone two-up layout ───── */
.image-zones { gap: 28px; }
.image-zone .brief-foot { display: block; margin-top: 8px; }

/* ───── upgrade pills ───── */
.upgrade-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}
.upgrade-pill {
  position: relative;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 14px 12px 12px;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform 0.15s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
  color: inherit;
}
.upgrade-pill:hover { transform: translateY(-2px); border-color: var(--gold); }
.upgrade-burst {
  position: absolute;
  top: -8px; right: 10px;
  background: var(--ink);
  color: var(--gold);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 999px;
  transform: rotate(-3deg);
}
.upgrade-headline {
  font-family: var(--display);
  font-size: 19px;
  color: var(--ink);
  line-height: 1.05;
}
.upgrade-price {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--gold-2);
  font-weight: 600;
}
.upgrade-add {
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.upgrade-pill[aria-pressed="true"] {
  background: var(--ink);
  border-color: var(--gold);
  box-shadow: 0 12px 24px -10px rgba(28,24,21,0.4);
}
.upgrade-pill[aria-pressed="true"] .upgrade-headline { color: var(--paper); }
.upgrade-pill[aria-pressed="true"] .upgrade-add { color: var(--gold); }
.upgrade-pill[aria-pressed="true"] .upgrade-add::before { content: "✓ "; }
.upgrade-pill[aria-pressed="true"] .upgrade-burst { background: var(--gold); color: var(--ink); }

/* ───── draft-saved pill (floating, transient) ───── */
.draft-saved {
  position: fixed;
  left: 50%;
  bottom: 96px;
  transform: translate(-50%, 20px);
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  box-shadow: 0 12px 24px -10px rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  z-index: 70;
  transition: opacity 0.25s ease, transform 0.35s var(--ease);
}
.draft-saved.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
.draft-saved span { color: var(--gold); margin-right: 4px; }

/* ───── order (dark scene) ───── */
.order {
  background: var(--ink);
  color: var(--paper);
  border-radius: 20px;
  padding: 36px 24px;
  margin: 0 var(--gutter);
  position: relative;
  overflow: hidden;
}
.order-glow {
  position: absolute;
  top: -120px; right: -120px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193,154,91,0.25), transparent 70%);
  pointer-events: none;
}
.order-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
}
.order-h2 {
  font-size: 38px;
  margin: 12px 0 16px;
  color: var(--paper);
}
.order .section-sub.muted { color: rgba(250,246,238,0.7); margin-bottom: 28px; }
.order .section-eyebrow .num.gold,
.order .section-eyebrow .all-caps.gold { color: var(--gold); }

.line-items { margin-top: 4px; }
.line-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(250,246,238,0.12);
  cursor: pointer;
  transition: background 0.15s ease;
}
.line-item[hidden] { display: none; }
.line-item:last-child { border-bottom: 0; }
.line-item.locked { cursor: default; }
.line-item-left {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 0;
}
.line-item .name {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--body);
}
.line-item .base-tag {
  color: rgba(250,246,238,0.4);
  font-weight: 400;
  font-size: 12px;
}
.line-item .sub {
  font-size: 13px;
  color: rgba(250,246,238,0.5);
  margin-top: 3px;
}
.line-item .price {
  font-family: var(--display);
  font-size: 22px;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.line-item:not([data-line="logo"]):not(.locked):not(.selected) .price,
.line-item:not(.selected):not(.locked) .price {
  color: rgba(250,246,238,0.35);
}
.line-item.selected .price { color: var(--paper); }

/* checkbox */
.checkbox {
  width: 22px; height: 22px;
  border: 1.5px solid rgba(250,246,238,0.35);
  border-radius: 6px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
  background: transparent;
  position: relative;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.checkbox.on,
.line-item.selected .checkbox {
  background: var(--gold);
  border-color: var(--gold);
}
.checkbox.on::after,
.line-item.selected .checkbox::after {
  content: "";
  width: 6px; height: 11px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(45deg) translate(-1px, -1px);
}
.checkbox.locked {
  background: rgba(193,154,91,0.3);
  border-color: rgba(193,154,91,0.5);
}
.checkbox.locked::after {
  content: "";
  width: 6px; height: 11px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg) translate(-1px, -1px);
}

/* deposit summary */
.deposit {
  background: rgba(250,246,238,0.05);
  border: 1px solid rgba(250,246,238,0.1);
  border-radius: 14px;
  padding: 18px 20px;
  margin: 22px 0 0;
}
.deposit-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 6px 0;
  gap: 12px;
}
.deposit-row.total {
  border-top: 1px solid rgba(250,246,238,0.15);
  margin-top: 8px;
  padding-top: 12px;
}
.deposit-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.6);
}
.deposit-amt {
  font-family: var(--display);
  font-size: 26px;
}
.deposit-amt.gold { color: var(--gold); }
.deposit-amt.muted { color: rgba(250,246,238,0.4); font-size: 18px; }
.total-amt { color: var(--paper); font-size: 13px; }

/* Tabular figures so the live-updating totals don't shift width as
   the digits animate (deposit / total / line items / pay button). */
.line-item .price,
.deposit-amt,
.total-amt,
#payAmt,
.hero-price { font-variant-numeric: tabular-nums; }

/* form inputs (dark) */
.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.55);
  margin-bottom: 8px;
}
.input {
  width: 100%;
  background: rgba(250,246,238,0.06);
  border: 1px solid rgba(250,246,238,0.15);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: inherit;
  color: var(--paper);
  font-size: 15px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.input::placeholder { color: rgba(250,246,238,0.35); }
.input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(250,246,238,0.09);
  box-shadow: 0 0 0 3px rgba(193,154,91,0.2);
}
.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stripe-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: 12px;
  padding: 2px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
}
.stripe-card .field-cell {
  padding: 14px 0;
  flex: 1;
  border-right: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-2);
}
.stripe-card .field-cell:last-child { border-right: none; }
.stripe-card .field-cell.small { flex: 0 0 76px; padding-left: 10px; }
.stripe-card .brands { display: none; gap: 4px; padding-left: 8px; }
.card-brand {
  width: 32px; height: 22px;
  border-radius: 3px;
  background: var(--paper-3);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-3);
  letter-spacing: 0.05em;
}
.card-brand.visa { background: #1a1f71; color: #fff; }
.card-brand.mc { background: #eb001b; color: #fff; }

.btn-pay { margin-top: 18px; font-size: 16px; padding: 19px 20px; }
.btn-pay:hover { animation: subtle-pulse 0.8s ease; }
@keyframes subtle-pulse {
  0%, 100% { box-shadow: 0 12px 28px -8px rgba(193,154,91,0.65); }
  50% { box-shadow: 0 12px 36px -8px rgba(193,154,91,0.9); }
}

.stripe-foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(250,246,238,0.5);
  text-align: center;
}
.stripe-foot .powered b { color: #635bff; }
.stripe-foot .powered { color: var(--paper); font-weight: 700; }

/* The order section is an intentionally-dark scene in both themes
   (CLAUDE.md spec). Without this override, dark mode flips --ink
   and --paper so .order becomes a light box, while its children
   still use hardcoded cream-tinted rgba colors → washed-out text.
   Re-pin the tokens at the .order scope so descendants resolve
   to the original ink-bg + cream-fg values. */
[data-theme="dark"] .order {
  --paper:   #faf6ee;
  --paper-2: #f3ecdf;
  --paper-3: #e9dfcc;
  --ink:     #1c1815;
  --ink-2:   #4a423a;
  --ink-3:   #8b8276;
  --line:    #d8cdb8;
}

/* ───── guarantee ───── */
.guarantee {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  background: var(--paper);
  border: 1px solid var(--gold);
  border-radius: var(--radius-scene);
  padding: 36px 24px;
  margin: 0 var(--gutter);
}
.seal {
  width: 130px; height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold-soft), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex: 0 0 auto;
  position: relative;
  border: 2px solid var(--gold-2);
  box-shadow: inset 0 0 0 6px var(--paper-2), inset 0 0 0 7px var(--gold);
  animation: seal-spin 22s linear infinite;
}
@keyframes seal-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.seal .pct, .seal .lbl { animation: seal-spin-rev 22s linear infinite; }
@keyframes seal-spin-rev {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}
.seal .pct {
  font-family: var(--display);
  font-size: 38px;
  font-style: italic;
  line-height: 1;
  color: var(--ink);
}
.seal .lbl {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 4px;
  color: var(--ink);
}
.guarantee h3 {
  font-family: var(--display);
  font-size: 28px;
  margin: 0 0 8px;
  font-weight: 400;
}
.guarantee p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 540px;
  margin: 0;
}
.guarantee p b { color: var(--ink); }
.kate-promise {
  display: none;
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--gold-2);
  line-height: 1.05;
}

/* ───── next steps ───── */
.next {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 32px;
}
.next-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.next-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -16px rgba(28,24,21,0.18);
}
.next-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 44px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
}
.next-card h4 {
  font-family: var(--body);
  font-weight: 600;
  font-size: 18px;
  margin: 0 0 6px;
}
.next-card p {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0;
}

/* ───── footer ───── */
.footer {
  padding: 32px var(--gutter);
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
  font-size: 13px;
  color: var(--ink-3);
}
.footer-logo { font-size: 18px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.footer-links a:hover { color: var(--ink); }
.dot-sep { color: var(--ink-4); }

/* ───── sticky bottom CTA (mobile) ───── */
.sticky-cta {
  position: fixed;
  left: 12px; right: 12px;
  bottom: 12px;
  z-index: 60;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.3s ease;
  pointer-events: none;
}
.sticky-cta.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
/* Once deposit clears, the "Start →" CTA is redundant — they've
   started. Hide it and shrink the bar to fit-content anchored
   left so the bottom-right corner is free for the GHL chat
   widget. The theme toggle stays accessible. */
.sticky-cta.paid {
  right: auto;
  width: fit-content;
}
.sticky-cta.paid .sticky-cta-btn {
  display: none;
}
.sticky-cta-inner {
  background: #1c1815;
  color: #faf6ee;
  border-radius: 999px;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  box-shadow: 0 16px 32px -8px rgba(28,24,21,0.5);
  border: 1px solid var(--gold);
}
[data-theme="dark"] .sticky-cta-inner {
  background: #0c0a08;
}
.theme-toggle {
  --tt-h: 48px;
  --tt-pad: 4px;
  --tt-thumb: calc(var(--tt-h) - var(--tt-pad) * 2);
  position: relative;
  width: calc(var(--tt-thumb) * 2 + var(--tt-pad) * 2);
  height: var(--tt-h);
  border-radius: 999px;
  background: rgba(250,246,238,0.08);
  border: 1px solid rgba(250,246,238,0.18);
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.theme-toggle:hover { background: rgba(250,246,238,0.13); }
.theme-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.theme-thumb {
  position: absolute;
  top: var(--tt-pad); left: var(--tt-pad);
  width: var(--tt-thumb);
  height: var(--tt-thumb);
  border-radius: 50%;
  background: linear-gradient(160deg, #d8b375 0%, var(--gold) 50%, var(--gold-2) 100%);
  box-shadow: 0 2px 8px -1px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.25);
  transition: transform 0.35s var(--ease);
  pointer-events: none;
}
[data-theme="dark"] .theme-thumb {
  transform: translateX(var(--tt-thumb));
}
.theme-slot {
  position: absolute;
  z-index: 1;
  top: var(--tt-pad);
  width: var(--tt-thumb);
  height: var(--tt-thumb);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(250,246,238,0.45);
  transition: color 0.3s ease;
  pointer-events: none;
}
.theme-slot.sun  { left: var(--tt-pad); }
.theme-slot.moon { left: calc(var(--tt-pad) + var(--tt-thumb)); }
.theme-slot svg { width: 20px; height: 20px; display: block; }
.theme-toggle:not([aria-checked="true"]) .theme-slot.sun  { color: #1c1815; }
.theme-toggle[aria-checked="true"]      .theme-slot.moon { color: #1c1815; }
.sticky-cta-btn { padding: 12px 18px; font-size: 13px; }

/* ───── chat bubble ───── */
.chat {
  position: fixed;
  right: 16px;
  bottom: 86px; /* sits above sticky cta */
  z-index: 55;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.chat-tooltip {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px 14px 0 14px;
  padding: 12px 14px;
  font-size: 13px;
  box-shadow: 0 16px 40px -16px rgba(28,24,21,0.35);
  max-width: 240px;
  color: var(--ink-2);
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  transform-origin: bottom right;
  transition: opacity 0.22s ease, transform 0.3s var(--ease);
  pointer-events: none;
}
.chat.open .chat-tooltip {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.chat-tooltip .name {
  font-family: var(--display);
  font-size: 14px;
  font-style: italic;
  color: var(--gold-2);
}
.chat-tooltip .msg { margin-top: 2px; line-height: 1.45; }
.chat-tooltip .msg a { color: var(--gold-2); text-decoration: underline; text-underline-offset: 2px; }
.chat-bubble {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 32px -8px rgba(28,24,21,0.5);
  cursor: pointer;
  border: 2px solid var(--gold);
  position: relative;
  padding: 0;
  transition: transform 0.2s ease;
}
.chat-bubble:hover { transform: translateY(-2px) scale(1.05); }
.chat-bubble::after {
  content: "";
  position: absolute;
  top: 2px; right: 2px;
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  border: 2px solid var(--ink);
  animation: pulse 2s ease infinite;
}

/* ============================================================
   TABLET (>=640)
   ============================================================ */
@media (min-width: 640px) {
  :root { --pad-x: 32px; }

  .hero-h1 { font-size: 64px; }
  .section-title { font-size: 44px; }

  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .addons { grid-template-columns: repeat(2, 1fr); }
  .next { grid-template-columns: repeat(2, 1fr); }
  .brief-grid { grid-template-columns: 1fr 1fr; }

  /* Staggered reveal — right-column card cascades after its left neighbor
     (mobile stays one-by-one via natural scroll, so no stagger there). */
  .included-grid .reveal:nth-child(even),
  .addons .reveal:nth-child(even),
  .next .reveal:nth-child(even) { transition-delay: 0.09s; }
}

/* ============================================================
   DESKTOP (>=900)
   ============================================================ */
@media (min-width: 900px) {
  :root {
    --pad-x: 56px;
  }
  body { padding-bottom: 0; }

  .nav { padding: 22px var(--gutter); }
  .nav-logo { font-size: 24px; }
  .nav-month { display: inline; }
  .nav-pill .nav-pill-text::before { content: ""; }

  .hero {
    flex-direction: row;
    align-items: center;
    gap: 56px;
    padding: 72px var(--gutter) 96px;
  }
  .hero-text { flex: 1.05; }
  .hero-photo-wrap { flex: 1; }
  .hero-h1 { font-size: 88px; margin: 22px 0 24px; line-height: 1.05; }
  .hero-sub { font-size: 18px; max-width: 480px; margin-bottom: 32px; }
  .hero-price { font-size: 76px; }
  .hero-price .cents { font-size: 32px; }
  .hero-strike { font-size: 30px; }
  .hero-ctas { flex-direction: row; gap: 12px; }
  .hero-meta { flex-direction: row; gap: 24px; padding-top: 22px; }
  .hero-photo-frame { inset: -16px; }
  .hero-photo-tag { bottom: 20px; left: 20px; }
  .hero-photo-tag .who { font-family: var(--display); font-size: 18px; font-weight: 400; }
  .stamp-june { width: 110px; height: 110px; top: -14px; right: -14px; }
  .stamp-june .big { font-size: 26px; }
  .stamp-june .small { font-size: 10px; }

  /* Bump vertical rhythm only — leave inline padding to the base rule so
     .section-flush's zeroed inline padding still wins (flush cards supply
     their own --gutter, capping them at --maxw like the text sections). */
  .section { padding-block: 80px; }
  .section-title { font-size: 52px; }
  .section-sub { font-size: 17px; }

  .video-play { width: 88px; height: 88px; }
  .video-play::after { border-left-width: 22px; border-top-width: 14px; border-bottom-width: 14px; }

  .included-item { padding: 28px; }
  .included-item h4 { font-size: 16px; font-family: var(--display); font-weight: 400; }

  .hosting { flex-direction: row; gap: 20px; padding: 24px 28px; }
  .hosting p { font-size: 14px; }

  .addons { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .addon { padding: 28px; }
  .addon h3 { font-size: 18px; }
  .addon p { font-size: 13.5px; }

  .about {
    flex-direction: row;
    align-items: center;
    padding: 56px;
    gap: 56px;
  }
  .about-photo { flex: 0 0 42%; max-height: none; }
  .about-text { flex: 1; }
  .about-h2 { font-size: 44px; }
  .about-text p { font-size: 16px; }
  .about-sig { font-size: 28px; }
  .about-stats { gap: 32px; }
  .about-stats .num { font-size: 32px; }

  .brief { padding: 56px; }
  .brief-head { flex-direction: row; align-items: flex-start; justify-content: space-between; gap: 24px; }
  .brief-h2 { font-size: 44px; }

  .order { padding: 64px; border-radius: var(--radius-scene); }
  .order-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .order-h2 { font-size: 56px; }
  .stripe-card .brands { display: flex; }
  .stripe-card .field-cell { font-size: 14px; }
  .stripe-foot { flex-direction: row; justify-content: space-between; }

  .guarantee {
    flex-direction: row;
    text-align: left;
    padding: 40px 48px;
    gap: 32px;
    align-items: center;
  }
  .guarantee-text { flex: 1; }
  .guarantee h3 { font-size: 32px; }
  .kate-promise {
    display: block;
    border-left: 1px solid var(--line);
    padding-left: 28px;
    align-self: stretch;
    display: flex;
    align-items: center;
  }

  .next { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .next-card { padding: 28px; }
  .next-card h4 { font-size: 17px; }

  /* stagger: next stays 3-col; addons are a 4-across row */
  .next .reveal:nth-child(3n+2) { transition-delay: 0.07s; }
  .next .reveal:nth-child(3n) { transition-delay: 0.14s; }
  .addons .reveal:nth-child(1) { transition-delay: 0s; }
  .addons .reveal:nth-child(2) { transition-delay: 0.06s; }
  .addons .reveal:nth-child(3) { transition-delay: 0.12s; }
  .addons .reveal:nth-child(4) { transition-delay: 0.18s; }

  .footer {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 48px var(--gutter);
  }

  /* hide sticky cta + scroll cue on desktop */
  .sticky-cta { display: none; }
  .scroll-cue { display: none; }

  .chat { right: 32px; bottom: 32px; }
  .chat-bubble { width: 60px; height: 60px; }
}
