/* ============================================================
   Oriva landing — design tokens from coffee-mobile premiumTheme
   ============================================================ */
:root {
  --espresso: #10251B;
  --forest: #173D2A;
  --ivory: #F8F3EA;
  --porcelain: #FFFDF8;
  --brass: #B88643;
  --brass-light: #D4A662;
  --clay: #B96F4A;
  --cacao: #3A261D;
  --sage: #DDE8DD;
  --oat: #ECE2D4;
  --linen: #F4EFE7;
  --ink: #191613;
  --muted: #695F55;
  --soft: #9B9084;
  --border: #E8DED0;
  --white: #FFFFFF;

  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 30px;

  --shadow-soft: 0 8px 18px rgba(25, 22, 19, 0.06);
  --shadow-deep: 0 12px 34px rgba(16, 37, 27, 0.22);
  --shadow-card: 0 2px 8px rgba(25,22,19,.04), 0 16px 40px rgba(25,22,19,.08);

  --container: 1160px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
}

section[id] { scroll-margin-top: 84px; }

body {
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--espresso);
}

h1 { font-size: clamp(2.5rem, 5.4vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.28rem; margin-bottom: 0.5rem; }

h1 em, h2 em {
  font-style: italic;
  color: var(--brass);
}

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
[hidden] { display: none !important; }

main:focus { outline: none; }

:where(a, button, input, summary):focus-visible {
  outline: 3px solid var(--brass-light);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--espresso);
  color: var(--porcelain);
  font-size: 0.88rem;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 0.2s var(--ease-out);
}
.skip-link:focus { transform: translateY(0); }

::selection { background: var(--brass); color: var(--porcelain); }

/* ============ Reveal animations ============ */
.reveal-load {
  opacity: 0;
  transform: translateY(14px);
  animation: rise 0.62s var(--ease-out) forwards;
  animation-delay: calc(var(--d, 0) * 70ms + 40ms);
}
@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
  transition-delay: calc(var(--d, 0) * 80ms);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-load { opacity: 1; transform: none; }
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border: none;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn:disabled { cursor: default; opacity: 0.82; transform: none; }

.btn-primary {
  background: var(--espresso);
  color: var(--porcelain);
  box-shadow: 0 4px 14px rgba(16, 37, 27, 0.25);
}
.btn-primary:hover {
  background: var(--forest);
  box-shadow: 0 8px 22px rgba(16, 37, 27, 0.32);
}

.btn-brass {
  background: var(--brass);
  color: var(--porcelain);
  box-shadow: 0 4px 14px rgba(184, 134, 67, 0.35);
}
.btn-brass:hover {
  background: var(--brass-light);
  box-shadow: 0 8px 22px rgba(184, 134, 67, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--espresso);
  box-shadow: inset 0 0 0 1.5px var(--border);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--brass); color: var(--brass); }

.btn-sm { padding: 10px 20px; font-size: 0.88rem; }

.btn-arrow { width: 15px; height: 15px; transition: transform 0.25s var(--ease-out); }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ============ Nav ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.35s, box-shadow 0.35s, backdrop-filter 0.35s;
}
.nav.scrolled {
  background: rgba(248, 243, 234, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-name {
  color: var(--espresso);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  gap: 26px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 1.5px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--espresso); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { display: flex; gap: 10px; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 8px;
  margin-left: auto;
}
.nav-burger span {
  width: 24px; height: 2px;
  background: var(--espresso);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.nav-burger.open span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-burger.open span:last-child { transform: translateY(-4px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 24px;
  background: rgba(248, 243, 234, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-mobile a {
  padding: 12px 4px;
  font-weight: 500;
  color: var(--espresso);
  border-bottom: 1px solid var(--linen);
}
.nav-mobile a.btn { justify-content: center; margin-top: 12px; border-bottom: none; color: var(--porcelain); }
.nav-mobile.open { display: flex; }

/* ============ Hero ============ */
.hero {
  padding: 148px 24px 0;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(221, 232, 221, 0.55), transparent 65%),
    radial-gradient(800px 420px at -10% 30%, rgba(236, 226, 212, 0.7), transparent 60%),
    var(--ivory);
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 60px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--porcelain);
  border: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 26px;
  box-shadow: var(--shadow-soft);
}
.pill-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brass);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184, 134, 67, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(184, 134, 67, 0); }
}

.hero-sub {
  font-size: 1.13rem;
  color: var(--muted);
  max-width: 34rem;
  margin: 22px 0 30px;
}

.waitlist-form {
  max-width: 470px;
  position: relative;
}
.waitlist-fields {
  display: flex;
  gap: 10px;
}
.waitlist-form input[type="email"] {
  flex: 1;
  min-width: 0;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--porcelain);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.waitlist-form input[type="email"]::placeholder { color: var(--soft); }
.waitlist-form input[type="email"]:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 4px rgba(184, 134, 67, 0.14);
}
.waitlist-form input[type="email"].error {
  border-color: #9E4434;
  animation: shake 0.4s;
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

.form-note {
  font-size: 0.8rem;
  color: var(--soft);
  margin-top: 12px;
}
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 11px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
  text-align: left;
  cursor: pointer;
}
.consent-row input {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin: 1px 0 0;
  accent-color: var(--forest);
}
.consent-row input:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}
.consent-row.error {
  color: #9E4434;
}
.consent-row a {
  color: inherit;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.form-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.form-trap input {
  position: absolute !important;
  inset: 0 !important;
  width: 1px !important;
  min-width: 0 !important;
  height: 1px !important;
  padding: 0 !important;
  border: 0 !important;
}
.form-status {
  min-height: 1.35rem;
  margin-top: 10px;
  color: var(--forest);
  font-size: 0.86rem;
  font-weight: 700;
}
.form-status:empty { min-height: 0; margin-top: 0; }
.form-status-light { color: var(--brass-light) !important; }
.waitlist-form.is-complete input[type="email"],
.waitlist-form.is-complete .consent-row { display: none; }
.waitlist-form.is-complete .waitlist-fields { justify-content: flex-start; }
.waitlist-form.is-complete .btn { min-width: min(100%, 280px); justify-content: center; }

.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}
.hero-proof p { font-size: 0.9rem; color: var(--muted); }
.hero-proof strong { color: var(--espresso); }
.avatars { display: flex; }
.avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg, var(--forest));
  color: var(--porcelain);
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2.5px solid var(--ivory);
  margin-left: -10px;
}
.avatar:first-child { margin-left: 0; }

/* ---- Phone mockup ---- */
.hero-visual { display: flex; justify-content: center; }
.phone-scene {
  position: relative;
  width: 320px;
  perspective: 1200px;
  touch-action: pan-y;
}
.phone {
  width: 300px;
  border-radius: 44px;
  background: var(--espresso);
  padding: 10px;
  box-shadow: var(--shadow-deep), 0 40px 80px rgba(16, 37, 27, 0.25);
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.35s var(--ease-out);
  animation: phone-float 7s ease-in-out infinite;
}
.phone.is-dragging { transition: none; }
@keyframes phone-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}
.phone-screen {
  background: var(--ivory);
  border-radius: 36px;
  padding: 0;
  overflow: hidden;
  height: 560px;
}
.hero-phone-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  user-select: none;
  -webkit-user-drag: none;
}

/* Floating cards */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--porcelain);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 11px 15px;
  box-shadow: var(--shadow-card);
  animation: card-float 6s ease-in-out infinite;
  z-index: 4;
  pointer-events: none;
}
.fc-title { font-size: 0.76rem; font-weight: 700; color: var(--ink); line-height: 1.3; }
.fc-sub { font-size: 0.68rem; color: var(--soft); line-height: 1.3; }
.fc-big { font-size: 0.95rem; font-weight: 800; color: var(--forest); font-family: var(--serif); }
.fc-icon { font-size: 1.1rem; }
.stamp {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--sage);
  color: #22573D;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.float-passport { top: 60px; right: -68px; animation-delay: 0.8s; }
.float-match { bottom: 158px; left: -74px; flex-direction: column; align-items: flex-start; gap: 2px; animation-delay: 1.9s; }
.float-fresh { bottom: 34px; right: -48px; animation-delay: 3s; }
@keyframes card-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Steam */
.steam {
  position: absolute;
  top: -46px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  overflow: visible;
  pointer-events: none;
}
.steam path {
  fill: none;
  stroke: var(--soft);
  stroke-width: 3;
  stroke-linecap: round;
  opacity: 0;
  animation: steam-rise 3.6s ease-in-out infinite;
}
.steam-2 { animation-delay: 1.2s !important; }
.steam-3 { animation-delay: 2.4s !important; }
@keyframes steam-rise {
  0% { opacity: 0; transform: translateY(8px); }
  35% { opacity: 0.5; }
  100% { opacity: 0; transform: translateY(-14px); }
}

/* ---- Marquee ---- */
.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--porcelain);
  overflow: hidden;
  padding: 16px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee-track span {
  font-family: var(--serif);
  font-size: 1.02rem;
  font-style: italic;
  color: var(--muted);
  white-space: nowrap;
}
.marquee-track i {
  font-style: normal;
  font-size: 0.5rem;
  color: var(--brass);
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ============ Stats ============ */
.stats { padding: 72px 24px 8px; }
.stats-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  /* stats render dynamically (1–4 tiles) — auto-fit keeps any count centered */
  grid-template-columns: repeat(auto-fit, minmax(200px, 260px));
  justify-content: center;
  gap: 20px;
}
.stat { text-align: center; padding: 10px; }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.4vw, 3rem);
  font-weight: 600;
  color: var(--espresso);
  line-height: 1.1;
}
.stat-num em {
  font-size: 0.45em;
  color: var(--brass);
  font-style: normal;
  margin-left: 2px;
}
.stat-label {
  font-size: 0.84rem;
  color: var(--muted);
  margin-top: 6px;
  max-width: 200px;
  margin-inline: auto;
}

/* ============ Sections shared ============ */
.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
  padding: 0 24px;
}
.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brass);
  margin-bottom: 14px;
}
.eyebrow-light { color: var(--brass-light); }
.lead { font-size: 1.08rem; color: var(--muted); margin: 18px 0 26px; }
.lead-light { font-size: 1.08rem; color: rgba(248, 243, 234, 0.75); margin: 18px 0 26px; }
.section-lead { max-width: 620px; margin: 18px auto 0; color: var(--muted); font-size: 1rem; }

/* ============ Product gallery ============ */
.product-tour { padding: 92px 24px 20px; }
.product-gallery {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.product-gallery-controls { display: none; }
.product-gallery-arrow,
.product-gallery-dot {
  border: 0;
  padding: 0;
}
.product-gallery-arrow {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--porcelain);
  color: var(--espresso);
  box-shadow: var(--shadow-soft);
}
.product-gallery-arrow svg { width: 18px; height: 18px; }
.product-gallery-arrow:disabled { opacity: 0.32; cursor: default; }
.product-gallery-dots { display: flex; align-items: center; gap: 7px; }
.product-gallery-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--border);
  transition: width 0.25s var(--ease-out), background 0.25s var(--ease-out);
}
.product-gallery-dot.on {
  width: 20px;
  background: var(--brass);
}
.product-shot {
  min-width: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--porcelain);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), opacity 0.85s var(--ease-out);
}
.product-shot:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.product-shot-frame {
  aspect-ratio: 0.88;
  overflow: hidden;
  background: var(--espresso);
  border-bottom: 1px solid var(--border);
}
.product-shot-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.product-shot figcaption { padding: 18px 18px 20px; }
.product-shot figcaption span {
  display: block;
  margin-bottom: 3px;
  color: var(--brass);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.product-shot figcaption strong {
  display: block;
  font-family: var(--serif);
  color: var(--espresso);
  font-size: 1.18rem;
  line-height: 1.2;
}
.product-shot figcaption p { margin-top: 8px; color: var(--muted); font-size: 0.82rem; line-height: 1.5; }

/* ============ How it works ============ */
.how { padding: 88px 24px 32px; }
.how-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.how-card {
  background: var(--porcelain);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 34px 30px;
  position: relative;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), opacity 0.85s var(--ease-out);
}
.how-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.how-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.6rem;
  color: var(--oat);
  display: block;
  margin-bottom: 14px;
  transition: color 0.35s;
}
.how-card:hover .how-num { color: var(--brass); }
.how-card p { color: var(--muted); font-size: 0.95rem; }

/* ============ Features bento ============ */
.features { padding: 84px 24px 32px; }
.bento {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.bento-card {
  background: var(--porcelain);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), opacity 0.85s var(--ease-out);
}
.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}
.bento-card p { color: var(--muted); font-size: 0.96rem; }
.bento-map {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 36px;
  align-items: center;
}

.map-visual {
  position: relative;
  height: 250px;
  border-radius: var(--r-lg);
  background: linear-gradient(150deg, var(--sage), #cfdccf 60%, var(--oat));
  overflow: hidden;
}
.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 37, 27, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 37, 27, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
}
.map-pin {
  position: absolute;
  width: 16px; height: 16px;
}
.map-pin i {
  position: absolute;
  inset: 0;
  border-radius: 50% 50% 50% 0;
  background: var(--forest);
  transform: rotate(-45deg);
  border: 2.5px solid var(--porcelain);
  box-shadow: 0 3px 8px rgba(16, 37, 27, 0.3);
}
.map-pin::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1.5px solid var(--forest);
  opacity: 0;
  animation: ping 2.6s ease-out infinite;
}
@keyframes ping {
  0% { transform: scale(0.4); opacity: 0.7; }
  80%, 100% { transform: scale(1.5); opacity: 0; }
}
.map-pin.p1 { top: 34%; left: 26%; }
.map-pin.p2 { top: 58%; left: 58%; }
.map-pin.p2::after { animation-delay: 0.9s; }
.map-pin.p2 i { background: var(--clay); }
.map-pin.p3 { top: 22%; left: 72%; }
.map-pin.p3::after { animation-delay: 1.7s; }
.map-tooltip {
  position: absolute;
  top: 42%; left: 50%;
  background: var(--porcelain);
  border-radius: 12px;
  padding: 9px 14px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  animation: card-float 5s ease-in-out infinite;
}
.map-tooltip strong { font-size: 0.8rem; color: var(--ink); }
.map-tooltip span { font-size: 0.7rem; color: var(--soft); }

.fav-visual { margin-bottom: 26px; display: flex; flex-direction: column; gap: 9px; }
.fav-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--linen);
  border-radius: 12px;
  padding: 11px 15px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}
.fav-heart { color: var(--soft); font-size: 1rem; }
.fav-heart.on { color: var(--clay); animation: heart-beat 2.8s ease-in-out infinite; }
.fav-row:nth-child(2) .fav-heart.on { animation-delay: 1.4s; }
@keyframes heart-beat {
  0%, 20%, 100% { transform: scale(1); }
  6% { transform: scale(1.35); }
  12% { transform: scale(1); }
  16% { transform: scale(1.2); }
}

.spec-visual { margin-bottom: 26px; display: flex; flex-direction: column; gap: 8px; }
.spec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--linen);
  border-radius: 12px;
  padding: 11px 15px;
}
.spec-key {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brass);
}
.spec-val {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  text-align: right;
}

/* ============ Taste (interactive) ============ */
.taste {
  padding: 92px 24px;
  background: linear-gradient(180deg, var(--ivory), var(--linen) 30%, var(--ivory));
}
.taste-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.flavor-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  padding: 11px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--porcelain);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.25s var(--ease-out);
}
.chip:hover { border-color: var(--brass); transform: translateY(-2px); }
.chip.on {
  background: var(--espresso);
  border-color: var(--espresso);
  color: var(--porcelain);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(16, 37, 27, 0.25);
}

.taste-demo { display: flex; justify-content: center; }
.match-card {
  background: var(--porcelain);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px;
  text-align: center;
  width: 100%;
  max-width: 360px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease-out);
}
.match-card.bump { animation: bump 0.45s var(--ease-out); }
@keyframes bump {
  0% { transform: scale(1); }
  40% { transform: scale(1.03); }
  100% { transform: scale(1); }
}
.match-label {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--brass);
  margin-bottom: 20px;
}
.match-score-ring { position: relative; width: 130px; margin: 0 auto 20px; }
.match-score-ring svg { width: 130px; height: 130px; transform: rotate(-90deg); }
.ring-bg { fill: none; stroke: var(--linen); stroke-width: 9; }
.ring-fg {
  fill: none;
  stroke: var(--forest);
  stroke-width: 9;
  stroke-linecap: round;
  stroke-dasharray: 327;
  stroke-dashoffset: 327;
  transition: stroke-dashoffset 0.9s var(--ease-out);
}
.match-score {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.match-score span {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--espresso);
  line-height: 1;
}
.match-score em {
  font-size: 0.68rem;
  font-style: normal;
  color: var(--soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.match-origin { color: var(--soft); font-size: 0.88rem; margin: 4px 0 16px; }
.match-notes { display: flex; justify-content: center; flex-wrap: wrap; gap: 7px; min-height: 30px; }
.match-notes span {
  font-size: 0.74rem;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 999px;
  background: var(--sage);
  color: #22573D;
  animation: rise 0.4s var(--ease-out) backwards;
}
.match-notes span:nth-child(2) { animation-delay: 0.07s; }
.match-notes span:nth-child(3) { animation-delay: 0.14s; }

/* ============ Passport ============ */
.passport { padding: 92px 24px; }
.passport-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.passport-book {
  background: var(--espresso);
  border-radius: var(--r-xl);
  padding: 34px;
  max-width: 400px;
  margin: 0 auto;
  box-shadow: var(--shadow-deep);
  background-image: radial-gradient(500px 240px at 110% -20%, rgba(184, 134, 67, 0.18), transparent 60%);
}
.pb-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--ivory);
  margin-bottom: 22px;
}
.pb-stamps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 26px;
}
.pb-stamp {
  aspect-ratio: 1;
  border-radius: 16px;
  border: 1.5px dashed rgba(248, 243, 234, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--ivory);
  background: rgba(248, 243, 234, 0.06);
  transition: transform 0.3s var(--ease-out);
}
.pb-stamp span { font-size: 1.35rem; }
.pb-stamp:hover { transform: scale(1.06) rotate(-2deg); }
.pb-stamp.locked {
  color: rgba(248, 243, 234, 0.35);
  font-size: 1.2rem;
  background: transparent;
}
.reveal.in .pb-stamp { animation: stamp-in 0.5s var(--ease-out) backwards; }
.reveal.in .s2 { animation-delay: 0.12s; }
.reveal.in .s3 { animation-delay: 0.24s; }
.reveal.in .s4 { animation-delay: 0.36s; }
.reveal.in .s5 { animation-delay: 0.48s; }
@keyframes stamp-in {
  0% { transform: scale(1.6) rotate(-8deg); opacity: 0; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}
.pb-rank-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(248, 243, 234, 0.7);
  margin-bottom: 9px;
}
.pb-rank-row strong { color: var(--brass-light); font-family: var(--serif); font-size: 0.95rem; }
.pb-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(248, 243, 234, 0.12);
  overflow: hidden;
}
.pb-bar i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brass), var(--brass-light));
  transition: width 1.2s var(--ease-out) 0.5s;
}
.reveal.in .pb-bar i { width: 72%; }
.pb-next { font-size: 0.72rem; color: rgba(248, 243, 234, 0.5); margin-top: 8px; }

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--muted);
  font-size: 0.98rem;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 1px;
  width: 21px; height: 21px;
  border-radius: 50%;
  background: var(--sage);
  color: #22573D;
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.check-list li em { font-style: italic; color: var(--espresso); }
.check-list-light li { color: rgba(248, 243, 234, 0.78); }
.check-list-light li::before { background: rgba(184, 134, 67, 0.25); color: var(--brass-light); }

/* ============ Roasters (dark) ============ */
.roasters {
  margin: 84px 24px 0;
}
.roasters-inner {
  max-width: calc(var(--container) + 60px);
  margin: 0 auto;
  background: var(--espresso);
  background-image:
    radial-gradient(900px 420px at 90% -10%, rgba(184, 134, 67, 0.16), transparent 60%),
    radial-gradient(700px 400px at -10% 110%, rgba(23, 61, 42, 0.9), transparent 60%);
  border-radius: 40px;
  padding: clamp(44px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.roasters h2 { color: var(--ivory); }
.roasters h2 em { color: var(--brass-light); }

.dash {
  background: var(--porcelain);
  border-radius: var(--r-lg);
  padding: 26px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  max-width: 420px;
  margin: 0 auto;
  width: 100%;
}
.dash-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.dash-title { font-family: var(--serif); font-weight: 600; color: var(--espresso); }
.dash-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #22573D;
  background: var(--sage);
  padding: 4px 11px;
  border-radius: 999px;
}
.dash-live i {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22573D;
  animation: pulse-dot 1.8s ease-in-out infinite;
}
.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.dash-stat {
  background: var(--linen);
  border-radius: 14px;
  padding: 13px 10px;
  text-align: center;
}
.ds-num { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; color: var(--espresso); }
.ds-label { font-size: 0.66rem; color: var(--soft); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.dash-orders { display: flex; flex-direction: column; gap: 8px; }
.dash-order {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 13px;
  font-size: 0.8rem;
  color: var(--ink);
  font-weight: 600;
}
.dash-order p { flex: 1; }
.dash-order em { font-style: normal; color: var(--soft); font-weight: 500; }
.do-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.do-dot.new { background: var(--clay); animation: pulse-dot 1.8s infinite; }
.do-dot.ship { background: var(--brass); }
.do-dot.done { background: #22573D; }
.do-badge {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 9px;
  border-radius: 999px;
  background: #FAE8E6;
  color: #9E4434;
}
.do-badge.ship { background: #F2E7CF; color: #8A6534; }
.do-badge.done { background: var(--sage); color: #22573D; }

/* ============ FAQ ============ */
.faq { padding: 92px 24px 52px; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 4px;
  font-size: 1.06rem;
  font-weight: 600;
  color: var(--espresso);
  cursor: pointer;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--brass); }
.faq-icon {
  position: relative;
  width: 22px; height: 22px;
  flex-shrink: 0;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 2px;
  background: var(--brass);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease-out);
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-item p {
  padding: 0 40px 24px 4px;
  color: var(--muted);
  font-size: 0.97rem;
}
.faq-item[open] p { animation: rise 0.45s var(--ease-out); }

/* ============ Final CTA ============ */
.cta { padding: 32px 24px 92px; }
.cta-inner {
  max-width: calc(var(--container) + 60px);
  margin: 0 auto;
  background: var(--espresso);
  background-image:
    radial-gradient(800px 400px at 50% -20%, rgba(23, 61, 42, 1), transparent 70%),
    radial-gradient(600px 300px at 85% 110%, rgba(184, 134, 67, 0.2), transparent 60%);
  border-radius: 40px;
  padding: clamp(56px, 8vw, 96px) 24px;
  text-align: center;
}
.cta-wordmark {
  margin: 0 auto 28px;
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
.audience-switch {
  width: fit-content;
  margin: 0 auto 28px;
  padding: 5px;
  display: inline-flex;
  gap: 4px;
  border: 1px solid rgba(248, 243, 234, 0.16);
  border-radius: 999px;
  background: rgba(248, 243, 234, 0.07);
}
.audience-switch button {
  border: 0;
  border-radius: 999px;
  padding: 9px 17px;
  background: transparent;
  color: rgba(248, 243, 234, 0.62);
  font-size: 0.82rem;
  font-weight: 700;
  transition: color 0.2s, background 0.2s;
}
.audience-switch button.on {
  background: var(--ivory);
  color: var(--espresso);
}
.audience-choice {
  display: flex;
  align-items: center;
  gap: 12px;
}
.audience-choice-label {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-audience-choice {
  max-width: 470px;
  margin: -6px 0 14px;
}
.hero-audience-choice .audience-switch {
  margin: 0;
}
.audience-switch-hero {
  padding: 4px;
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow-soft);
}
.audience-switch-hero button {
  padding: 8px 14px;
  color: var(--muted);
}
.audience-switch-hero button.on {
  color: var(--ivory);
  background: var(--forest);
}
.audience-choice-cta {
  flex-direction: column;
  gap: 9px;
  margin-bottom: 28px;
}
.audience-choice-cta .audience-choice-label {
  color: var(--brass-light);
}
.audience-choice-cta .audience-switch {
  margin: 0;
}
.cta h2 { color: var(--ivory); margin-bottom: 16px; }
.cta h2 em { color: var(--brass-light); }
.cta p { color: rgba(248, 243, 234, 0.72); font-size: 1.06rem; }
.waitlist-form-dark {
  margin: 30px auto 0;
}
.waitlist-form-dark .waitlist-fields { justify-content: center; }
.waitlist-form-dark.is-complete .waitlist-fields { justify-content: center; }
.waitlist-form-dark input[type="email"] {
  background: rgba(248, 243, 234, 0.08);
  border-color: rgba(248, 243, 234, 0.22);
  color: var(--ivory);
}
.waitlist-form-dark input[type="email"]::placeholder { color: rgba(248, 243, 234, 0.45); }
.waitlist-form-dark input[type="email"]:focus {
  border-color: var(--brass-light);
  box-shadow: 0 0 0 4px rgba(184, 134, 67, 0.2);
}
.consent-row-light { color: rgba(248, 243, 234, 0.62); }
.consent-row-light input { accent-color: var(--brass-light); }
.form-note-light { color: rgba(248, 243, 234, 0.5); }

/* ============ Footer ============ */
.footer {
  background: var(--espresso);
  color: rgba(248, 243, 234, 0.65);
  margin-top: -1px;
  padding: 0 24px;
}
.cta + .footer, main + .footer { margin-top: 0; }
.footer { background: #0B1B13; }
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 64px 0 44px;
}
.footer .brand-name { color: var(--ivory); }
.footer-brand p { font-size: 0.9rem; margin-top: 14px; }
.footer-head {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brass-light);
  margin-bottom: 16px;
}
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col a {
  font-size: 0.92rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--ivory); }
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  border-top: 1px solid rgba(248, 243, 234, 0.12);
  padding: 22px 0 30px;
  font-size: 0.82rem;
  color: rgba(248, 243, 234, 0.4);
}

/* ============ Toast ============ */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translate(-50%, 80px);
  background: var(--espresso);
  color: var(--ivory);
  padding: 15px 26px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: var(--shadow-deep);
  opacity: 0;
  transition: transform 0.45s var(--ease-out), opacity 0.45s;
  z-index: 200;
  pointer-events: none;
  max-width: min(92vw, 480px);
  text-align: center;
}
.toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
}

/* ============ Legal pages ============ */
.legal-body { background: var(--linen); }
.legal-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 243, 234, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.legal-nav-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 15px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.legal-back { color: var(--forest); font-size: 0.9rem; font-weight: 700; }
.legal-main { padding: 72px 24px 100px; }
.legal-article {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(30px, 6vw, 64px);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  background: var(--porcelain);
  box-shadow: var(--shadow-soft);
}
.legal-article h1 { font-size: clamp(2.3rem, 6vw, 3.7rem); }
.legal-kicker { color: var(--brass); font-size: 0.76rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; }
.legal-updated { margin: 14px 0 30px; color: var(--soft); font-size: 0.88rem; }
.legal-summary {
  margin-bottom: 36px;
  padding: 20px 22px;
  border-left: 3px solid var(--brass);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  background: var(--linen);
  color: var(--muted);
}
.legal-article section + section { margin-top: 34px; }
.legal-article h2 { margin-bottom: 12px; font-size: 1.45rem; }
.legal-article p, .legal-article li { color: var(--muted); font-size: 0.96rem; }
.legal-article p + p { margin-top: 12px; }
.legal-article ul { margin: 12px 0 0 20px; display: grid; gap: 8px; }
.legal-article a { color: var(--forest); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.legal-footer {
  padding: 28px 24px;
  background: var(--espresso);
  color: rgba(248, 243, 234, 0.62);
  text-align: center;
  font-size: 0.82rem;
}

/* ============ Responsive ============ */
@media (max-width: 1080px) {
  .float-passport { right: -30px; }
  .float-match { left: -34px; }
  .float-fresh { right: -18px; }
}

@media (max-width: 940px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav { background: rgba(248, 243, 234, 0.92); backdrop-filter: blur(14px); }

  .hero { padding-top: 120px; }
  .hero-inner { grid-template-columns: 1fr; gap: 70px; }
  .hero-copy { text-align: center; }
  .hero-sub { margin-inline: auto; }
  .hero-audience-choice { justify-content: center; margin-inline: auto; }
  .waitlist-form { margin-inline: auto; }
  .hero-proof { justify-content: center; }

  .stats-inner { grid-template-columns: repeat(auto-fit, minmax(150px, 220px)); gap: 32px; }
  .product-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .how-grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .bento-map { grid-template-columns: 1fr; }
  .taste-inner, .passport-inner, .roasters-inner { grid-template-columns: 1fr; gap: 48px; }
  .passport-visual { order: 2; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .hero {
    padding: 108px 20px 0;
  }
  .hero-inner {
    gap: 54px;
    padding-bottom: 48px;
  }
  .hero-sub {
    margin-top: 18px;
    margin-bottom: 26px;
  }
  .hero-proof {
    margin-top: 28px;
  }
  .hero-audience-choice {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .hero-audience-choice .audience-switch {
    width: 100%;
  }
  .hero-audience-choice .audience-switch button {
    flex: 1;
    padding-inline: 10px;
  }
  .waitlist-fields { flex-direction: column; }
  .waitlist-form .btn { justify-content: center; }
  .phone-scene { width: 280px; }
  .phone { width: 264px; }
  .phone-screen { height: 520px; }
  .float-passport { right: -12px; top: 40px; }
  .float-match { left: -14px; }
  .float-fresh { right: -8px; }
  .product-tour { padding-inline: 0; }
  .product-tour .section-head { padding-inline: 24px; }
  .product-gallery-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: -28px auto 22px;
  }
  .product-gallery {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 0 max(24px, calc((100% - min(82vw, 320px)) / 2)) 18px;
    scroll-padding-inline: max(24px, calc((100% - min(82vw, 320px)) / 2));
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .product-gallery::-webkit-scrollbar { display: none; }
  .product-shot {
    flex: 0 0 min(82vw, 320px);
    min-width: min(82vw, 320px);
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
  .product-shot.is-snap-active {
    animation: product-snap-jump 0.42s var(--ease-out);
  }
  .product-shot:hover { transform: none; }
  .how { padding: 72px 20px 24px; }
  .how-grid { gap: 16px; }
  .how-card { padding: 28px 24px; }
  .features { padding: 70px 20px 24px; }
  .bento { gap: 16px; }
  .bento-card { padding: 28px 24px; }
  .taste { padding: 72px 20px; }
  .taste-inner, .passport-inner, .roasters-inner { gap: 40px; }
  .match-card { padding: 30px 24px; }
  .passport { padding: 72px 20px 58px; }
  .passport-book { padding: 28px 22px; }
  .roasters { margin: 64px 12px 0; }
  .roasters-inner {
    border-radius: 28px;
    padding: 42px 22px;
  }
  .dash { padding: 22px 18px; }
  .faq { padding: 72px 20px 38px; }
  .faq-item summary { padding-block: 21px; }
  .cta { padding: 24px 12px 72px; }
  .cta-inner {
    border-radius: 28px;
    padding: 56px 20px;
  }
  .footer { padding-inline: 20px; }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 52px 0 38px;
  }
  .legal-main { padding: 32px 12px 64px; }
  .legal-article { border-radius: 22px; }
}

@keyframes product-snap-jump {
  0%, 100% { transform: translateY(0) scale(1); }
  45% { transform: translateY(-7px) scale(1.012); }
}
