/* ==========================================================================
   Someday — Shared Design System (v2)
   ========================================================================== */

/* 1. Design tokens
   ========================================================================== */

:root {
  /* Color */
  --color-page: #fbf8f0;
  --color-surface: #fffdf8;
  --color-surface-soft: #e8eee7;
  --color-surface-warm: #fff7e8;
  --color-text: #0d1830;
  --color-text-muted: #6d7068;
  --color-text-secondary: #4c564e;
  --color-brand: #48624c;
  --color-brand-strong: #314736;
  --color-accent-warm: #c09a55;
  --color-border: rgba(13, 24, 48, .12);
  --color-danger: #a23a2a;
  --color-focus: rgba(72, 98, 76, .18);
  --color-ink-soft: #344033;
  --color-dark-bg: #101827;
  --color-dark-text: #fff8e8;
  --color-dark-text-muted: rgba(255, 255, 255, .78);

  /* Typography */
  --font-display: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --text-xs: 12px;
  --text-sm: 13px;
  --text-base: 14px;
  --text-lg: 15px;
  --text-xl: 16px;
  --text-2xl: clamp(20px, 2.1vw, 26px);
  --text-3xl: clamp(28px, 3.8vw, 44px);
  --text-4xl: clamp(36px, 5.2vw, 62px);
  --leading-tight: 1.02;
  --leading-body: 1.5;

  /* Space */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;

  /* Shape and depth */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-soft: 0 10px 30px rgba(32, 42, 35, .05);
  --shadow-card: 0 24px 70px rgba(32, 42, 35, .14);

  /* Layout */
  --container-wide: 1120px;
  --container-copy: 600px;
  --header-height: 60px;
}


/* 2. Reset and base elements
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background:
    radial-gradient(circle at 18% 8%, rgba(232, 238, 231, .9), transparent 28%),
    radial-gradient(circle at 78% 4%, rgba(244, 239, 228, .9), transparent 30%),
    var(--color-page);
  line-height: var(--leading-body);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, a.button { font: inherit; }


/* 3. Typography
   ========================================================================== */

h1, h2, h3 {
  margin: 0;
  letter-spacing: -.04em;
  line-height: var(--leading-tight);
}

h1 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  max-width: 540px;
  line-height: 1.0;
}

h1 em { color: var(--color-brand); font-style: normal; }

h2 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
}

h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
}


/* 4. Layout primitives
   ========================================================================== */

.container {
  width: min(var(--container-wide), calc(100% - var(--space-8)));
  margin: 0 auto;
}

.copy-width {
  max-width: var(--container-copy);
}


/* 5. Shared components
   ========================================================================== */

/* ---------- Brand ---------- */

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -.02em;
  text-decoration: none;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
}

.brand__icon {
  width: 20px;
  height: 20px;
  border-radius: 22%;
  object-fit: cover;
  flex: 0 0 auto;
  display: block;
}

/* ---------- Site header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(251, 248, 240, .74);
  border-bottom: 1px solid rgba(13, 24, 48, .08);
}

.site-header > .container {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}

/* ---------- Site nav ---------- */

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #273129;
  font-size: var(--text-sm);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--color-brand);
}

.site-nav__dropdown {
  position: relative;
}

.site-nav__dropdown > button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.site-nav__dropdown > button::after {
  content: "";
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform .2s ease;
}

.site-nav__dropdown[data-open] > button::after {
  transform: rotate(180deg);
}

.site-nav__menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-2);
  box-shadow: var(--shadow-card);
}

.site-nav__dropdown[data-open] .site-nav__menu {
  display: block;
}

.site-nav__menu a {
  display: block;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  font-size: var(--text-base);
  transition: background .15s ease;
}

.site-nav__menu a:hover,
.site-nav__menu a:focus-visible {
  background: var(--color-surface-soft);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.site-header__menu-btn {
  display: none;
  background: none;
  border: none;
  padding: var(--space-2);
  cursor: pointer;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}

.site-header__menu-btn span,
.site-header__menu-btn span::before,
.site-header__menu-btn span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
  position: relative;
}

.site-header__menu-btn span::before,
.site-header__menu-btn span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
}

.site-header__menu-btn span::before { top: -6px; }
.site-header__menu-btn span::after { top: 6px; }

.site-header__menu-btn[aria-expanded="true"] span { background: transparent; }
.site-header__menu-btn[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.site-header__menu-btn[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.site-header__mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(251, 248, 240, .96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-4) 0;
}

.site-header__mobile-nav[data-open] {
  display: block;
}

.site-header__mobile-nav a,
.site-header__mobile-nav button {
  display: block;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-lg);
  color: var(--color-text);
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.site-header__mobile-nav a:hover,
.site-header__mobile-nav a:focus-visible {
  color: var(--color-brand);
}

.site-header__mobile-nav .site-nav__submenu {
  padding-left: var(--space-6);
}

.site-header__mobile-nav .site-nav__submenu a {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
}

/* ---------- Button ---------- */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 40px;
  padding: 0 var(--space-4);
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-weight: 700;
  font-size: var(--text-base);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  text-decoration: none;
}

.button--primary {
  background: var(--color-brand);
  color: #fff;
  box-shadow: 0 10px 22px rgba(72, 98, 76, .16);
}

.button--primary:hover {
  transform: translateY(-1px);
  background: var(--color-brand-strong);
  box-shadow: 0 16px 34px rgba(72, 98, 76, .22);
}

.button--secondary {
  background: var(--color-surface);
  color: var(--color-text);
  border-color: var(--color-border);
  box-shadow: none;
}

.button--secondary:hover {
  background: #fff;
}

.button--on-dark {
  background: rgba(255, 255, 255, .15);
  color: #fff;
  border-color: rgba(255, 255, 255, .25);
}

.button--on-dark:hover {
  background: rgba(255, 255, 255, .25);
}

.button:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 2px;
}

/* ---------- Eyebrow ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 11px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: rgba(255, 253, 248, .72);
  color: var(--color-brand-strong);
  font-size: var(--text-xs);
  font-weight: 650;
}

/* ---------- Waitlist form ---------- */

.waitlist-form {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-6);
  max-width: 460px;
}

.waitlist-form input[type="email"] {
  flex: 1 1 220px;
  min-height: 44px;
  padding: 0 var(--space-4);
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  font: inherit;
  font-size: var(--text-base);
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.waitlist-form input[type="email"]:focus {
  border-color: var(--color-brand);
  box-shadow: 0 0 0 3px var(--color-focus);
}

.waitlist-form .button { min-height: 44px; }
.waitlist-form .honeypot { position: absolute; left: -9999px; }

.waitlist-status {
  margin: 10px 0 0;
  font-size: var(--text-sm);
  color: var(--color-brand-strong);
  min-height: 18px;
}

.waitlist-status.error { color: var(--color-danger); }

.cta-microcopy {
  margin: var(--space-3) 0 0;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: .01em;
}


/* 6. Page-section patterns
   ========================================================================== */

/* ---------- Section ---------- */

.section {
  padding: clamp(44px, 6vw, 80px) 0;
}

.section--sage {
  background: var(--color-surface-soft);
}

.section--warm {
  background: var(--color-surface-warm);
}

.section--dark {
  background: var(--color-dark-bg);
  color: #fff;
}

.section--dark h2,
.section--dark h3 { color: var(--color-dark-text); }
.section--dark p { color: var(--color-dark-text-muted); }

/* ---------- Statement block ---------- */

.statement-block {
  padding: clamp(56px, 8vw, 96px) 0;
}

.statement-block__copy {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.statement-block__copy h3 {
  font-size: clamp(28px, 4.5vw, 48px);
  line-height: 1.1;
  letter-spacing: -.03em;
  margin: 0 0 var(--space-4);
}

.statement-block__copy p {
  font-size: var(--text-xl);
  margin: 0 auto;
}

.section-heading {
  margin-bottom: var(--space-8);
}

.section-heading p {
  margin: var(--space-3) 0 0;
  color: var(--color-text-secondary);
  font-size: var(--text-xl);
  max-width: var(--container-copy);
}

/* ---------- Hero ---------- */

.hero {
  padding: 36px 0 48px;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}

.hero__copy {
  max-width: 520px;
}

.hero__copy .eyebrow { margin-bottom: var(--space-4); }

.hero__copy .lede {
  margin: 18px 0 0;
  font-size: clamp(15px, 1.6vw, 18px);
  color: #3a4239;
  line-height: var(--leading-body);
  max-width: 440px;
}

.hero__product-desc {
  margin: var(--space-3) 0 0;
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 440px;
  line-height: 1.45;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__visual > .product-screenshot {
  position: relative;
  z-index: 2;
}

/* ---------- Hero logo scatter ---------- */

.hero__logo-scatter {
  position: absolute;
  inset: -8% -20%;
  z-index: 1;
  pointer-events: none;
}

.hero__logo,
.hero__logo-text {
  position: absolute;
  opacity: .09;
  filter: grayscale(1) brightness(0);
  transform: translateY(0) rotate(var(--r, 0deg));
  animation: hero-logo-drift 9s ease-in-out infinite;
}

.hero__logo {
  display: block;
  width: 30px;
  height: auto;
}

.hero__logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: #000;
  white-space: nowrap;
}

.hero__logo--amazon        { top: -2%;  left: 4%;   width: 32px; --r: -14deg; animation-delay: -1s; }
.hero__logo--etsy          { top: 8%;   right: 0%;  width: 26px; --r: 9deg;   animation-delay: -3.4s; }
.hero__logo--facebook      { top: 18%;  left: -6%;  width: 24px; --r: -7deg;  animation-delay: -5.8s; }
.hero__logo--google        { top: 4%;   left: 40%;  width: 22px; --r: 5deg;   animation-delay: -2.2s; }
.hero__logo--instagram     { top: 26%;  right: 12%; width: 28px; --r: -17deg; animation-delay: -6.6s; }
.hero__logo--pinterest     { top: 40%;  left: 2%;   width: 26px; --r: 11deg;  animation-delay: -0.6s; }
.hero__logo--ticketmaster  { top: 48%;  right: -8%; width: 72px; --r: -6deg;  animation-delay: -4.2s; }
.hero__logo--tiktok        { top: 62%;  left: -4%;  width: 24px; --r: 8deg;   animation-delay: -7.4s; }
.hero__logo--x              { top: 68%;  right: 4%;  width: 22px; --r: -11deg; animation-delay: -2.8s; }
.hero__logo--airbnb        { top: 34%;  left: 18%;  width: 26px; --r: -5deg;  animation-delay: -8.1s; }
.hero__logo--tripadvisor   { top: 76%;  right: 22%; width: 26px; --r: -8deg;  animation-delay: -1.6s; }

.hero__logo-text--photos   { top: 54%;  left: 36%;  --r: 6deg;  animation-delay: -3.9s; }

@keyframes hero-logo-drift {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(10px) rotate(var(--r, 0deg)); }
}

/* ---------- Hero proof rail ---------- */

.hero-proof-rail {
  display: flex;
  gap: var(--space-6);
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
  flex-wrap: wrap;
}

.hero-proof-rail__item {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  font-weight: 600;
  position: relative;
  padding-left: 18px;
}

.hero-proof-rail__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-brand);
}

.hero-proof-rail__privacy {
  width: 100%;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: 400;
  padding-left: 0;
  margin-top: var(--space-1);
}

.hero-proof-rail__privacy::before { display: none; }

/* ---------- Product frame ---------- */

.product-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.product-frame--primary img {
  width: 100%;
  max-width: 520px;
  height: auto;
}

.product-frame--supporting {
  max-width: 280px;
}

.product-frame--supporting img {
  width: 100%;
  height: auto;
}

.page--home .hero__visual .product-frame--primary img {
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 11%, #000 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 11%, #000 100%);
}

/* ---------- ProductScreenshot component ---------- */

.product-screenshot {
  display: block;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  background: var(--color-surface);
  overflow: hidden;
}

.product-screenshot img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.product-screenshot--hero {
  max-width: 320px;
}

.product-screenshot--standard {
  max-width: 340px;
}

.product-screenshot--compact {
  max-width: 300px;
}

.product-screenshot--frameless {
  border: none;
  box-shadow: none;
  background: none;
  border-radius: 0;
}

/* ---------- Screenshot pair (two-step sequence) ---------- */

.screenshot-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: start;
}

.screenshot-pair__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.screenshot-pair__label {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-brand-strong);
  text-align: center;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.screenshot-pair__label .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-brand);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 800;
  flex-shrink: 0;
}

.screenshot-pair__item .product-screenshot {
  max-width: 320px;
  width: 100%;
}

/* ---------- Two-image section (people + profile, etc.) ---------- */

.two-image-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: var(--space-6);
  align-items: start;
}

.two-image-section__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.two-image-section__item .product-screenshot {
  width: 100%;
}

.two-image-section__item:first-child .product-screenshot {
  max-width: 300px;
}

.two-image-section__item:last-child .product-screenshot {
  max-width: 360px;
}

/* ---------- Screenshot with copy layout ---------- */

.screenshot-with-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.screenshot-with-copy--reverse {
  direction: rtl;
}

.screenshot-with-copy--reverse > * {
  direction: ltr;
}

.screenshot-with-copy__visual {
  display: flex;
  justify-content: center;
}

.screenshot-with-copy__visual .product-screenshot {
  max-width: 360px;
  width: 100%;
}

.photo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  max-width: 440px;
  width: 100%;
}

.photo-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-frame-group {
  position: relative;
  max-width: 440px;
  width: 100%;
}

.photo-frame-group__detail {
  display: block;
  position: absolute;
  top: 50%;
  right: -8%;
  width: 42%;
  height: auto;
  transform: translateY(-50%);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 40px rgba(16, 24, 39, .28);
  border: 3px solid var(--color-surface);
}

/* ---------- Comparison with screenshots ---------- */

.comparison-screenshots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.comparison-screenshots__side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.comparison-screenshots__side .product-screenshot {
  max-width: 340px;
  width: 100%;
}

.comparison-screenshots__label {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-brand-strong);
  text-align: center;
}

/* ---------- Gift hero with dual screenshots ---------- */

.hero__visual-pair {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: center;
}

.hero__visual-pair .screenshot-pair__item {
  width: 100%;
  max-width: 360px;
}

.hero__visual-pair .product-screenshot {
  max-width: 340px;
  width: 100%;
}

/* ---------- Editorial collage (problem section) ---------- */

.editorial-collage {
  position: relative;
  padding: clamp(32px, 5vw, 64px) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.editorial-collage__copy {
  max-width: 520px;
}

.editorial-collage__copy h2 {
  font-size: var(--text-3xl);
}

.editorial-collage__copy p {
  margin: var(--space-4) 0 0;
  font-size: var(--text-xl);
  color: var(--color-dark-text-muted);
}

.editorial-collage__resolve {
  margin-top: var(--space-6);
  padding: var(--space-5);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .08);
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.15;
  color: var(--color-dark-text);
  max-width: 420px;
}

.editorial-collage__fragments {
  position: relative;
  min-height: 380px;
}

.editorial-fragment {
  position: absolute;
  padding: 11px 14px;
  background: #fffdf6;
  color: var(--color-text);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .22), 0 2px 6px rgba(0, 0, 0, .12);
  font-size: var(--text-sm);
  line-height: 1.4;
  max-width: 200px;
}

.editorial-fragment .src {
  display: block;
  margin-top: 5px;
  font-size: 10.5px;
  color: #8a8378;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.editorial-fragment--text {
  border-radius: 16px 16px 16px 4px;
  background: #e8f0e8;
  color: var(--color-text);
}

.editorial-fragment--social {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0,0,0,.08);
}

.editorial-fragment--bookmark {
  border-radius: 6px;
  font-size: var(--text-xs);
  padding: 8px 12px;
  background: #f5f3ee;
  border-left: 3px solid var(--color-accent-warm);
}

.editorial-fragment--screenshot {
  border-radius: var(--radius-md);
  padding: var(--space-3);
  border: 2px solid rgba(0,0,0,.06);
}

.editorial-fragment--note {
  border-radius: 2px;
  background: #fff9e0;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  transform: rotate(-2deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}

.editorial-fragment--product {
  border-radius: var(--radius-md);
  padding: var(--space-3);
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
}

.editorial-fragment:nth-child(1) { top: 0; left: 0; }
.editorial-fragment:nth-child(2) { top: 5%; right: 5%; }
.editorial-fragment:nth-child(3) { top: 30%; left: 15%; }
.editorial-fragment:nth-child(4) { top: 35%; right: 10%; }
.editorial-fragment:nth-child(5) { bottom: 15%; left: 5%; }
.editorial-fragment:nth-child(6) { bottom: 20%; right: 15%; }
.editorial-fragment:nth-child(7) { bottom: 0; left: 25%; }

/* ---------- Sticky story (product mechanism) ---------- */

.sticky-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 64px);
}

.sticky-story__steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
  padding: var(--space-8) 0;
}

.sticky-story__step {
  opacity: .4;
  transition: opacity .4s ease;
}

.sticky-story__step.active,
.sticky-story__step:first-child {
  opacity: 1;
}

.sticky-story__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-brand);
  color: #fff;
  font-weight: 800;
  font-size: var(--text-sm);
  margin-bottom: var(--space-3);
}

.sticky-story__step h3 {
  font-family: var(--font-body);
  font-size: clamp(18px, 2vw, 22px);
  letter-spacing: -.02em;
  line-height: 1.2;
}

.sticky-story__step p {
  margin: var(--space-2) 0 0;
  color: var(--color-text-secondary);
  font-size: var(--text-xl);
  max-width: 400px;
}

.sticky-story__visual {
  position: sticky;
  top: calc(var(--header-height) + var(--space-8));
  height: fit-content;
  align-self: start;
}

.sticky-story__screen {
  display: none;
}

.sticky-story__screen.active {
  display: block;
}

.no-js .sticky-story__screen,
.sticky-story__screen:only-child {
  display: block;
  margin-bottom: var(--space-4);
}

/* ---------- Story panel (use-case editorial panels) ---------- */

.story-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(32px, 5vw, 64px) 0;
}

.story-panel + .story-panel {
  border-top: 1px solid var(--color-border);
}

.story-panel--reverse {
  direction: rtl;
}

.story-panel--reverse > * {
  direction: ltr;
}

.story-panel__trigger {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: var(--space-3);
}

.story-panel__copy h3 {
  font-size: var(--text-3xl);
  letter-spacing: -.035em;
}

.story-panel__copy p {
  margin: var(--space-3) 0 0;
  color: var(--color-text-secondary);
  font-size: var(--text-xl);
  max-width: 440px;
}

.story-panel__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--space-5);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-brand);
  transition: gap .15s ease;
}

.story-panel__link::after {
  content: "\2192";
}

.story-panel__link:hover {
  gap: 12px;
}

.story-panel__visual {
  display: flex;
  justify-content: center;
}

.story-panel__visual .product-screenshot--compact {
  max-width: 280px;
  width: 100%;
}

/* ---------- Manifesto ---------- */

.manifesto {
  max-width: 720px;
}

.manifesto__line {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 36px);
  line-height: 1.15;
  letter-spacing: -.03em;
  margin: 0 0 var(--space-6);
  color: var(--color-text);
}

.manifesto__line:last-of-type {
  margin-bottom: var(--space-10);
}

.manifesto__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--color-border);
}

.manifesto__list li {
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border);
  font-size: var(--text-xl);
  color: var(--color-text-secondary);
  padding-left: var(--space-5);
  position: relative;
}

.manifesto__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-brand);
  opacity: .5;
}

/* ---------- Manifesto icon scatter ---------- */

.manifesto-section {
  overflow: hidden;
}

.manifesto-section .container {
  position: relative;
}

.manifesto-scatter {
  position: absolute;
  top: -6%;
  bottom: -6%;
  left: 760px;
  right: 0;
  pointer-events: none;
}

.manifesto-scatter__icon {
  position: absolute;
  display: block;
  width: 28px;
  height: auto;
  opacity: .09;
  filter: grayscale(1) brightness(0);
  transform: translateY(0) rotate(var(--r, 0deg));
  animation: hero-logo-drift 9s ease-in-out infinite;
}

.manifesto-scatter__icon--gift      { top: 2%;  left: 8%;   width: 30px; --r: -10deg; animation-delay: -1s; }
.manifesto-scatter__icon--cake      { top: 12%; right: 10%; width: 26px; --r: 8deg;   animation-delay: -3.4s; }
.manifesto-scatter__icon--etsy      { top: 20%; left: 32%;  width: 22px; --r: -9deg;  animation-delay: -5.6s; }
.manifesto-scatter__icon--heart     { top: 30%; right: 30%; width: 18px; --r: -6deg;  animation-delay: -2.2s; }
.manifesto-scatter__icon--family    { top: 38%; left: 4%;   width: 34px; --r: 5deg;   animation-delay: -6.8s; }
.manifesto-scatter__icon--pinterest { top: 46%; right: 4%;  width: 24px; --r: 10deg;  animation-delay: -0.6s; }
.manifesto-scatter__icon--ring      { top: 54%; left: 26%;  width: 20px; --r: 12deg;  animation-delay: -4.2s; }
.manifesto-scatter__icon--hugging   { top: 62%; right: 18%; width: 30px; --r: -8deg;  animation-delay: -7.4s; }
.manifesto-scatter__icon--christmas { top: 70%; left: 10%;  width: 26px; --r: 6deg;   animation-delay: -2.8s; }
.manifesto-scatter__icon--link      { top: 78%; right: 34%; width: 20px; --r: -14deg; animation-delay: -8.1s; }
.manifesto-scatter__icon--instagram { top: 86%; left: 34%;  width: 24px; --r: -5deg;  animation-delay: -1.6s; }
.manifesto-scatter__icon--menu      { top: 94%; right: 6%;  width: 24px; --r: 9deg;   animation-delay: -5s; }

/* ---------- Product sequence (connected workflow) ---------- */

.product-sequence {
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--space-4);
}

.product-sequence__stage {
  flex: 0 0 auto;
  width: 260px;
  padding: var(--space-5);
  position: relative;
}

.product-sequence__stage::after {
  content: "\2192";
  position: absolute;
  right: -12px;
  top: var(--space-5);
  font-size: 20px;
  color: var(--color-brand);
  font-weight: 700;
  z-index: 1;
}

.product-sequence__stage:last-child::after {
  display: none;
}

.product-sequence__stage-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-brand);
  color: #fff;
  font-weight: 800;
  font-size: var(--text-xs);
  margin-bottom: var(--space-3);
}

.product-sequence__stage h4 {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 700;
  letter-spacing: -.02em;
}

.product-sequence__stage p {
  margin: var(--space-1) 0 0;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

/* ---------- Timeline ---------- */

.timeline {
  position: relative;
  padding-left: var(--space-10);
}

.timeline::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-brand), var(--color-accent-warm));
  border-radius: 1px;
}

.timeline__step {
  position: relative;
  padding-bottom: var(--space-8);
}

.timeline__step:last-child {
  padding-bottom: 0;
}

.timeline__step::before {
  content: "";
  position: absolute;
  left: calc(-1 * var(--space-10) + 8px);
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-brand);
  border: 2px solid var(--color-page);
  z-index: 1;
}

.timeline__step h4 {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 700;
  letter-spacing: -.02em;
}

.timeline__step p {
  margin: var(--space-1) 0 0;
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  max-width: 480px;
}

/* ---------- Comparison ---------- */

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.comparison__side {
  padding: clamp(24px, 4vw, 48px);
}

.comparison__side:first-child {
  background: var(--color-surface);
  border-right: 1px solid var(--color-border);
}

.comparison__side:last-child {
  background: var(--color-surface-soft);
}

.comparison__label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

.comparison .big-quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 32px);
  line-height: 1.15;
  letter-spacing: -.03em;
  margin: 0;
}

/* ---------- Masonry examples ---------- */

.masonry-examples {
  columns: 3;
  column-gap: var(--space-4);
}

.masonry-examples__item {
  break-inside: avoid;
  margin-bottom: var(--space-4);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}

.masonry-examples__item b {
  display: block;
  font-size: var(--text-lg);
  margin-bottom: var(--space-1);
}

.masonry-examples__item p {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.masonry-examples__item--tall {
  padding: var(--space-6);
}

/* ---------- Quote panel ---------- */

.quote-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  align-items: stretch;
}

.quote-panel__soft {
  background: var(--color-surface-soft);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(72, 98, 76, .14);
}

.quote-panel__warm {
  background: var(--color-surface-warm);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(192, 154, 85, .2);
}

.big-quote {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: var(--leading-tight);
  letter-spacing: -.035em;
  margin: 0;
}

.big-quote em { color: var(--color-brand); font-style: normal; }

/* ---------- Occasion list (editorial alternative to card grid) ---------- */

.occasion-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.occasion-list__item {
  padding: var(--space-5);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.occasion-list__item:nth-child(odd) {
  border-right: 1px solid var(--color-border);
}

.occasion-list__item:nth-last-child(-n+2) {
  border-bottom: none;
}

.occasion-list__icon {
  font-size: 24px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.occasion-list__item b {
  display: block;
  font-size: var(--text-lg);
  margin-bottom: var(--space-1);
}

.occasion-list__item p {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

/* ---------- Lens group (three-panel "ways it fits your life" set) ---------- */

.lens-group__intro {
  text-align: center;
  max-width: 520px;
  margin: 0 auto clamp(40px, 6vw, 64px);
}

.lens-group__intro .eyebrow {
  margin-bottom: var(--space-3);
}

.lens-group__panels {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vw, 64px);
}

.lens-panel__tag {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-brand-strong);
  margin-bottom: var(--space-2);
}

/* ---------- Emotive panel (stock photo + copy) ---------- */

.emotive-panel {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.emotive-panel--reverse {
  direction: rtl;
}

.emotive-panel--reverse > * {
  direction: ltr;
}

.emotive-panel__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.emotive-panel__image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.emotive-panel__copy h3 {
  font-size: var(--text-3xl);
  letter-spacing: -.035em;
}

.emotive-panel__copy p {
  margin: var(--space-3) 0 0;
  color: var(--color-text-secondary);
  font-size: var(--text-xl);
  max-width: 440px;
}

/* ---------- Full-width CTA ---------- */

.full-width-cta {
  background: var(--color-brand-strong);
  color: #fff;
  padding: clamp(48px, 8vw, 100px) 0;
}

.full-width-cta h2 {
  color: #fff;
  max-width: 560px;
}

.full-width-cta p {
  color: rgba(255, 255, 255, .78);
  font-size: var(--text-xl);
  max-width: 460px;
}

.full-width-cta .waitlist-form input[type="email"] {
  background: rgba(255, 255, 255, .96);
  border-color: rgba(255, 255, 255, .3);
  color: var(--color-text);
}

.full-width-cta .waitlist-form input[type="email"]:focus {
  border-color: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .25);
}

.full-width-cta .waitlist-status { color: rgba(255, 255, 255, .8); }
.full-width-cta .waitlist-status.error { color: #ffd7c8; }

.full-width-cta .cta-microcopy {
  color: rgba(255, 255, 255, .6);
}

/* ---------- Pull quote (large editorial statement) ---------- */

.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.12;
  letter-spacing: -.035em;
  max-width: 680px;
  color: var(--color-text);
}

.pull-quote em {
  color: var(--color-brand);
  font-style: normal;
}

/* ---------- Quiet section ---------- */

.quiet-section {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 56px) var(--space-4);
}

.quiet-section h3 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
}

.quiet-section p {
  font-size: var(--text-xl);
  color: var(--color-text-secondary);
}

/* ---------- Privacy panel ---------- */

.privacy-panel {
  scroll-margin-top: calc(var(--header-height) + var(--space-4));
}

.privacy-page-title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  letter-spacing: -.03em;
  color: var(--color-text);
  margin: var(--space-8) 0 var(--space-4);
}

.page--privacy .privacy-panel {
  padding-top: var(--space-8);
}

.page--privacy .privacy-body {
  border-top: none;
  padding: 0 0 var(--space-8);
}

.privacy-details {
  background: rgba(255, 253, 248, .78);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 6px var(--space-6);
  box-shadow: var(--shadow-soft);
}

.privacy-details > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: 22px 0;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  letter-spacing: -.03em;
  color: var(--color-text);
}

.privacy-details > summary::-webkit-details-marker { display: none; }

.privacy-details > summary .chev {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: grid;
  place-items: center;
  color: var(--color-brand-strong);
  transition: transform .2s ease;
}

.privacy-details[open] > summary .chev { transform: rotate(45deg); }

.privacy-body {
  padding: 0 0 22px;
  border-top: 1px solid var(--color-border);
}

.privacy-body h3 {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  letter-spacing: -.01em;
  margin: 22px 0 6px;
}

.privacy-body p,
.privacy-body li {
  color: var(--color-text-secondary);
  font-size: var(--text-base);
}

.privacy-body ul { padding-left: var(--space-5); margin: 6px 0; }
.privacy-body li { margin: var(--space-1) 0; }
.privacy-body .updated { color: var(--color-text-muted); font-size: var(--text-xs); margin: var(--space-4) 0 0; }

/* ---------- Site footer ---------- */

.site-footer {
  padding: var(--space-10) 0;
  border-top: 1px solid var(--color-border);
  color: #505950;
}

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

.site-footer h4 { color: var(--color-text); margin: 0 0 var(--space-3); font-size: var(--text-lg); }
.site-footer a { display: block; margin: 6px 0; color: #505950; font-size: var(--text-sm); }
.site-footer a:hover { color: var(--color-brand); }
.site-footer p { font-size: var(--text-sm); }

.site-footer .button--primary {
  display: flex;
  width: fit-content;
  margin: var(--space-3) auto 0;
  color: #fff;
  min-height: 52px;
  padding: 0 var(--space-6);
  font-size: 17px;
}

.site-footer .button--primary:hover {
  color: #fff;
}

.site-footer__brand-text {
  margin: var(--space-3) 0 0;
  font-size: var(--text-sm);
  color: #505950;
}

.site-footer__bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.verento-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: #505950;
  font-size: var(--text-sm);
  text-decoration: none;
  transition: color .15s ease;
}

.verento-tag:hover { color: var(--color-text); }

.verento-tag img {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  display: block;
  flex-shrink: 0;
}

.site-footer__copyright {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}


/* 7. Page-specific modifiers
   ========================================================================== */

.page--gift-ideas .hero__visual .product-frame--primary img,
.page--important-occasions .hero__visual .product-frame--primary img,
.page--date-ideas .hero__visual .product-frame--primary img,
.page--gift-ideas .hero__visual .product-screenshot img,
.page--important-occasions .hero__visual .product-screenshot img,
.page--date-ideas .hero__visual .product-screenshot img {
  -webkit-mask-image: none;
  mask-image: none;
}


/* 8. Utilities
   ========================================================================== */

.text-center { text-align: center; }
.text-muted { color: var(--color-text-muted); }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.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;
}

.image-placeholder {
  background: var(--color-surface-soft);
  border: 2px dashed rgba(72, 98, 76, .3);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  text-align: center;
  min-height: 300px;
}


/* 9. Responsive rules
   ========================================================================== */

@media (max-width: 980px) {
  .manifesto-scatter {
    display: none;
  }

  .hero__grid,
  .sticky-story,
  .story-panel,
  .story-panel--reverse,
  .quote-panel,
  .comparison,
  .screenshot-with-copy,
  .screenshot-with-copy--reverse,
  .emotive-panel,
  .emotive-panel--reverse,
  .editorial-collage {
    grid-template-columns: 1fr;
  }

  .story-panel--reverse,
  .screenshot-with-copy--reverse,
  .emotive-panel--reverse {
    direction: ltr;
  }

  .comparison__side:first-child {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }

  .site-nav { display: none; }
  .site-header__menu-btn { display: flex; }

  .hero { padding: 24px 0 36px; }

  .hero__copy {
    max-width: none;
    text-align: left;
  }

  .hero__copy .lede { max-width: none; }

  .hero__visual {
    order: -1;
  }

  .hero__visual .product-frame--primary img,
  .hero__visual .product-screenshot--hero img {
    max-width: 320px;
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }

  .hero__visual .product-screenshot--hero {
    max-width: 320px;
  }

  .hero__logo-scatter {
    inset: 0;
  }

  .hero__logo {
    width: 18px;
  }

  .hero__logo.hero__logo--ticketmaster {
    width: 44px;
  }

  .hero__logo-text {
    font-size: 11px;
  }

  /* Below ~980px the visual column shrinks close to the screenshot's own
     width, so the desktop scatter positions (tuned for a much wider column)
     land either behind the screenshot or clipped off the section entirely.
     Pin every icon into the margin strip beside the screenshot instead. */
  .hero__logo--amazon,
  .hero__logo--facebook,
  .hero__logo--pinterest,
  .hero__logo--airbnb,
  .hero__logo--google,
  .hero__logo--tiktok {
    left: -3%;
    right: auto;
  }

  .hero__logo--etsy,
  .hero__logo--instagram,
  .hero__logo--ticketmaster,
  .hero__logo-text--photos,
  .hero__logo--x,
  .hero__logo--tripadvisor {
    right: -3%;
    left: auto;
  }

  .hero__logo--amazon      { top: 4%; }
  .hero__logo--facebook    { top: 20%; }
  .hero__logo--pinterest   { top: 36%; }
  .hero__logo--airbnb      { top: 52%; }
  .hero__logo--google      { top: 68%; }
  .hero__logo--tiktok      { top: 84%; }

  .hero__logo--etsy         { top: 10%; }
  .hero__logo--instagram    { top: 26%; }
  .hero__logo--ticketmaster { top: 42%; }
  .hero__logo-text--photos  { top: 58%; }
  .hero__logo--x            { top: 74%; }
  .hero__logo--tripadvisor  { top: 90%; }

  .sticky-story__visual {
    position: static;
    order: -1;
  }

  .sticky-story__step {
    opacity: 1;
  }

  .sticky-story__screen {
    display: none !important;
  }

  .sticky-story__screen:first-child {
    display: block !important;
  }

  .editorial-collage__fragments {
    min-height: 280px;
  }

  .occasion-list {
    grid-template-columns: 1fr;
  }

  .occasion-list__item:nth-child(odd) {
    border-right: none;
  }

  .masonry-examples {
    columns: 2;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .screenshot-pair {
    grid-template-columns: 1fr;
    max-width: 390px;
    margin: 0 auto;
  }

  .two-image-section {
    grid-template-columns: 1fr;
    max-width: 390px;
    margin: 0 auto;
  }

  .two-image-section__item:first-child .product-screenshot,
  .two-image-section__item:last-child .product-screenshot {
    max-width: 390px;
  }

  .comparison-screenshots {
    grid-template-columns: 1fr;
    max-width: 390px;
    margin-left: auto;
    margin-right: auto;
  }

  .screenshot-with-copy__visual .product-screenshot {
    max-width: 390px;
    margin: 0 auto;
  }

  .screenshot-with-copy__visual .photo-frame-group {
    max-width: 390px;
    margin: 0 auto;
  }

  .photo-frame-group__detail {
    right: 0;
  }

  .hero__visual-pair {
    max-width: 390px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--container-wide));
  }

  .hero { padding: 16px 0 28px; }
  .hero__grid { gap: 18px; }

  .hero__visual .product-frame--primary img,
  .hero__visual .product-screenshot--hero img {
    max-width: 260px;
    filter: drop-shadow(0 20px 36px rgba(32, 42, 35, .16));
  }

  .hero__visual .product-screenshot--hero {
    max-width: 260px;
  }

  .hero__logo-scatter {
    inset: 0;
  }

  .hero__logo {
    width: 14px;
  }

  .hero__logo.hero__logo--ticketmaster {
    width: 22px;
  }

  .hero__logo-text {
    font-size: 9px;
  }

  .hero__logo-text--photos {
    font-size: 7px;
  }

  .screenshot-pair__item .product-screenshot,
  .hero__visual-pair .product-screenshot {
    max-width: 280px;
  }

  h1 { font-size: clamp(32px, 9vw, 44px); }

  .hero-proof-rail {
    flex-direction: column;
    gap: var(--space-2);
  }

  .product-sequence {
    flex-direction: column;
    align-items: stretch;
  }

  .product-sequence__stage {
    width: auto;
  }

  .product-sequence__stage::after {
    content: "\2193";
    position: static;
    display: block;
    text-align: center;
    margin-top: var(--space-3);
  }

  .product-sequence__stage:last-child::after {
    display: none;
  }

  .masonry-examples {
    columns: 1;
  }

  .site-header__actions .button--secondary { display: none; }
  .brand__name { font-size: 20px; }
  .section { padding: 44px 0; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }
}


/* 10. Reduced-motion and accessibility rules
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button,
  .story-panel__link,
  .site-nav__dropdown > button::after,
  .privacy-details > summary .chev,
  .waitlist-form input[type="email"],
  .site-header__menu-btn span,
  .site-header__menu-btn span::before,
  .site-header__menu-btn span::after,
  .sticky-story__step {
    transition: none;
  }

  .hero__logo,
  .hero__logo-text,
  .manifesto-scatter__icon {
    animation: none;
  }
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 2px;
}
