/* ── Page fade transition ────────────────────────── */
@keyframes pageFadeIn { from { opacity: 0; } to { opacity: 1; } }

body.page-ready { animation: pageFadeIn 0.18s ease both; }

body.page-leaving {
  opacity: 0;
  transition: opacity 0.16s ease;
}

/* ── Scroll progress bar ─────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(to right, var(--gold), var(--gold-dark));
  z-index: 500;
  pointer-events: none;
  box-shadow: 0 0 8px rgba(200,134,10,0.45);
  transition: width 0.05s linear;
}

/* ── Reset & tokens ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --espresso:     #2c1810;
  --espresso-mid: #4a2c1a;
  --gold:         #c8860a;
  --gold-dark:    #a06808;
  --cream:        #f9f5f0;
  --teal:         #2c7873;

  --serif: 'Playfair Display', serif;
  --sans:  'DM Sans', sans-serif;

  --container: 1100px;
  --radius: 16px;
}

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

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--espresso);
  overflow-x: clip;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: transparent;
}

.hidden { display: none; }

/* ── Nav ─────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.nav.scrolled {
  background: rgba(44, 24, 16, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-logo-link { text-decoration: none; }

.nav-logo {
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  color: #fff;
  letter-spacing: 5px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.nav.scrolled .nav-logo { opacity: 1; }

/* Centre nav links */
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  align-items: center;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  letter-spacing: 0.3px;
  padding: 7px 12px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: #fff; }
.nav-link--active { color: rgba(255,255,255,0.9); }

.nav-link--cta {
  color: var(--gold);
  border: 1px solid rgba(200,134,10,0.45);
  padding: 8px 16px;
  border-radius: 10px;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

/* Nav right slot */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hamburger button */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.7);
  padding: 4px;
  line-height: 0;
  transition: color 0.2s;
}
.nav-hamburger:hover { color: #fff; }

/* ── Mobile nav drawer ───────────────────────────── */
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: #1e100a;
  z-index: 300;
  padding: 72px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.nav-drawer.open { transform: translateX(0); }

.nav-drawer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.5);
  padding: 4px;
  line-height: 0;
  transition: color 0.2s;
}
.nav-drawer-close:hover { color: #fff; }

.nav-drawer-link {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
}
.nav-drawer-link:hover { color: #fff; }
.nav-drawer-link--active { color: rgba(255,255,255,0.9); }
.nav-drawer-link--cta {
  margin-top: 16px;
  border: none;
  color: var(--gold);
  font-weight: 600;
  padding-bottom: 0;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ── Hero ────────────────────────────────────────── */
.hero {
  position: sticky;
  top: 0;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--espresso);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 35% 55%, #3d2210 0%, #1e100a 70%);
}

.blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}
.blob-1 {
  width: 700px; height: 700px;
  top: -180px; right: -120px;
  background: radial-gradient(circle, rgba(200,134,10,0.18) 0%, transparent 68%);
  filter: blur(50px);
}
.blob-2 {
  width: 500px; height: 500px;
  bottom: -80px; left: 5%;
  background: radial-gradient(circle, rgba(44,120,115,0.14) 0%, transparent 68%);
  filter: blur(60px);
}
.blob-3 {
  width: 360px; height: 360px;
  top: 25%; left: 55%;
  background: radial-gradient(circle, rgba(160,82,45,0.1) 0%, transparent 68%);
  filter: blur(50px);
}

.grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.045;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 660px;
  will-change: transform;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
  margin-bottom: 24px;
  animation: fadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.1s both;
}

.hero-logo {
  font-family: var(--serif);
  font-size: clamp(64px, 10vw, 108px);
  font-weight: 400;
  font-style: italic;
  color: #fff;
  letter-spacing: 10px;
  line-height: 1;
  margin-bottom: 28px;
  animation: heroIn 1.1s cubic-bezier(0.16,1,0.3,1) 0.2s both;
}

.hero-tagline {
  font-size: clamp(19px, 2.5vw, 25px);
  font-weight: 400;
  color: rgba(255,255,255,0.68);
  line-height: 1.55;
  margin-bottom: 44px;
  animation: fadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.45s both;
}

/* App store badges */
.app-badges {
  margin-top: 8px;
  animation: fadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.65s both;
}

.badges-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 14px;
}

.badges-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.badge-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 13px;
  padding: 11px 20px;
  cursor: default;
  transition: background 0.25s, border-color 0.25s, transform 0.2s, box-shadow 0.25s;
}

.badge-icon {
  width: 28px;
  height: 28px;
  color: #fff;
  flex-shrink: 0;
}

.badge-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.badge-sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
  line-height: 1;
}

.badge-main {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.2px;
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: fadeIn 1s ease 1.4s both;
}

.scroll-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.28), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

/* ── Shared layout ───────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-label.light { color: rgba(200,134,10,0.85); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 700;
  color: var(--espresso);
  line-height: 1.14;
  margin-bottom: 60px;
  max-width: 560px;
}
.section-title.light { color: #fff; }

/* ── Scroll-reveal animations ────────────────────── */
@keyframes heroIn  { from { opacity:0; transform:translateY(36px) } to { opacity:1; transform:none } }
@keyframes fadeUp  { from { opacity:0; transform:translateY(22px) } to { opacity:1; transform:none } }
@keyframes fadeIn  { from { opacity:0 } to { opacity:1 } }
@keyframes scrollPulse { 0%,100% { opacity:1 } 50% { opacity:0.25; transform:scaleY(0.6) } }

.animate {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity  0.75s cubic-bezier(0.16,1,0.3,1) var(--delay, 0s),
    transform 0.75s cubic-bezier(0.16,1,0.3,1) var(--delay, 0s);
}
.animate.visible { opacity: 1; transform: none; }

/* ── How it works ────────────────────────────────── */
.how {
  position: sticky;
  top: 0;
  z-index: 2;
  min-height: 100vh;
  padding: 130px 0;
  background: var(--cream);
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -12px 48px rgba(0,0,0,0.1);
}

.steps {
  display: flex;
  align-items: flex-start;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 28px;
}

.step-num {
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.step-icon {
  display: block;
  width: 48px;
  height: 48px;
  margin: 0 auto 18px;
  color: var(--gold);
  filter: drop-shadow(0 6px 16px rgba(200,134,10,0.22));
}

.step-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--espresso);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 15px;
  color: #888;
  line-height: 1.7;
  max-width: 210px;
  margin: 0 auto;
}

.step-connector {
  flex-shrink: 0;
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, rgba(200,134,10,0.25), rgba(200,134,10,0.6), rgba(200,134,10,0.25));
  margin-top: 60px;
  align-self: flex-start;
}

/* ── Features ────────────────────────────────────── */
.features {
  position: sticky;
  top: 0;
  z-index: 3;
  min-height: 100vh;
  padding: 130px 0;
  background: var(--espresso);
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -12px 48px rgba(0,0,0,0.2);
}

.features-glow {
  position: absolute;
  top: -250px; right: -250px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(200,134,10,0.07) 0%, transparent 68%);
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px 26px;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.feature-icon {
  display: block;
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
  color: var(--gold);
}

.feature-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 9px;
}

.feature-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.48);
  line-height: 1.65;
}

/* ── Partner / Cafe CTA ──────────────────────────── */
.partner {
  position: sticky;
  top: 0;
  z-index: 5;
  min-height: 100vh;
  padding: 130px 0;
  background: var(--espresso);
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -12px 48px rgba(0,0,0,0.2);
}

.partner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.partner-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 30px;
}

.partner-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.partner-benefits li {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 12px;
}

.partner-benefits li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.partner-cta-card {
  background: rgba(255,255,255,0.055);
  border-radius: 22px;
  padding: 44px 38px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.partner-cta-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.partner-cta-heading {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}

.partner-cta-body {
  font-size: 15px;
  color: rgba(255,255,255,0.52);
  line-height: 1.72;
  margin-bottom: 28px;
}

.partner-cta-note {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ── Buttons ─────────────────────────────────────── */
.btn-gold {
  height: 54px;
  padding: 0 26px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: none;
  border-radius: 13px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.15s;
  box-shadow: 0 6px 24px rgba(200,134,10,0.38);
}
.btn-gold.full { width: 100%; height: 50px; margin-top: 4px; }

a.btn-gold,
.btn-gold-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.nav-cta-pill {
  padding: 9px 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 11px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(200,134,10,0.32);
  white-space: nowrap;
}

/* ── User FAQ (light) ────────────────────────────── */
.user-faq-section {
  position: sticky;
  top: 0;
  z-index: 4;
  min-height: 100vh;
  padding: 130px 0;
  background: var(--cream);
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -12px 48px rgba(0,0,0,0.1);
}

.user-faq-section .faq-item { border-color: rgba(44,24,16,0.12); }
.user-faq-section .faq-item:first-child { border-top-color: rgba(44,24,16,0.12); }
.user-faq-section .faq-question { color: var(--espresso); }
.user-faq-section .faq-question:hover,
.user-faq-section .faq-question.open { color: var(--gold-dark); }
.user-faq-section .faq-answer p { color: #777; }

/* ── About (light) ───────────────────────────────── */
.about {
  position: sticky;
  top: 0;
  z-index: 6;
  min-height: 100vh;
  padding: 130px 0 180px;
  background: var(--cream);
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -12px 48px rgba(0,0,0,0.1);
}

.about-intro {
  font-size: 18px;
  color: #777;
  line-height: 1.8;
  max-width: 620px;
  margin-bottom: 40px;
}

/* ── Story pull-quote (home about teaser) ─────────── */
.about--quote {
  min-height: 0;
  padding: 110px 0;
}

.story-pull {
  font-family: var(--serif);
  font-size: clamp(22px, 2.8vw, 36px);
  font-style: italic;
  font-weight: 400;
  color: var(--espresso);
  line-height: 1.5;
  max-width: 640px;
  border: none;
  margin: 0 0 28px;
  padding: 0;
}

.story-pull-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
.story-pull-link:hover { color: #a8710a; }

.founder-order {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  border: 1px solid rgba(200,134,10,0.35);
  border-radius: 20px;
  padding: 5px 13px;
  letter-spacing: 0.2px;
}
.founder-order::before {
  content: '☕';
  font-size: 12px;
}

/* ── Full founder cards (about page) ─────────────── */
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
}

.founder-card {
  display: flex;
  flex-direction: column;
  padding: 36px 36px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e8ddd5;
  box-shadow: 0 4px 24px rgba(44,24,16,0.07);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.founder-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.founder-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--espresso);
  margin-bottom: 4px;
}

.founder-role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.founder-bio {
  font-size: 15px;
  color: #777;
  line-height: 1.75;
  margin-bottom: 20px;
  flex: 1;
}

/* ── Story section ───────────────────────────────── */
.story {
  position: relative;
  z-index: 2;
  padding: 130px 0;
  background: var(--cream);
}

.story-body {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.story-body p {
  font-size: 17px;
  color: #666;
  line-height: 1.85;
}

.story-body p strong {
  color: var(--espresso);
  font-weight: 600;
}

/* ── About dark variant ──────────────────────────── */
.about.dark {
  background: var(--espresso);
}

.about.dark .section-label { color: rgba(200,134,10,0.85); }
.about.dark .section-title { color: #fff; }

.about.dark .founder-card {
  background: rgba(255,255,255,0.055);
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.about.dark .founder-name  { color: #fff; }
.about.dark .founder-bio   { color: rgba(255,255,255,0.52); }

.about.dark .contact-block {
  background: rgba(255,255,255,0.055);
  border-color: rgba(255,255,255,0.1);
}
.about.dark .contact-block-label   { color: rgba(200,134,10,0.85); }
.about.dark .contact-block-heading { color: #fff; }
.about.dark .contact-block-email   { color: var(--gold); }

/* ── Contact CTA block ───────────────────────────── */
.contact-block {
  margin-top: 48px;
  padding: 32px 36px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e8ddd5;
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  max-width: 420px;
}

.contact-block-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-block-heading {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--espresso);
}

.contact-block-email {
  font-size: 15px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.contact-block-email:hover { color: var(--gold-dark); }

/* ── FAQ page ─────────────────────────────────────── */
.faq-block {
  position: sticky;
  top: 0;
  padding: 130px 0;
  background: var(--cream);
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -12px 48px rgba(0,0,0,0.1);
}

.faq-block.dark {
  background: var(--espresso);
  box-shadow: 0 -12px 48px rgba(0,0,0,0.2);
}

.faq-block.dark .faq-item { border-color: rgba(255,255,255,0.1); }
.faq-block.dark .faq-item:first-child { border-top-color: rgba(255,255,255,0.1); }
.faq-block.dark .faq-question { color: #fff; }
.faq-block.dark .faq-question:hover,
.faq-block.dark .faq-question.open { color: var(--gold); }
.faq-block.dark .faq-answer p { color: rgba(255,255,255,0.52); }

/* ── Page hero (interior pages) ─────────────────── */
.page-hero {
  position: sticky;
  top: 0;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--espresso);
  overflow: hidden;
  padding: 120px 24px 90px;
  text-align: center;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  will-change: transform;
}

.page-hero-title {
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: heroIn 1.1s cubic-bezier(0.16,1,0.3,1) 0.2s both;
}

.page-hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto 40px;
  animation: fadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.45s both;
}

.page-hero-content .btn-gold-link {
  animation: fadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.65s both;
}

/* ── Perks section (cafe page) ───────────────────── */
.perks {
  position: sticky;
  top: 0;
  z-index: 2;
  min-height: 100vh;
  padding: 130px 0;
  background: var(--cream);
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -12px 48px rgba(0,0,0,0.1);
}

.perk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.perk-grid--six { grid-template-columns: repeat(3, 1fr); }

.perk-card {
  background: #fff;
  border: 1px solid #f2ece4;
  border-radius: var(--radius);
  padding: 36px 30px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.perk-icon {
  display: block;
  width: 36px;
  height: 36px;
  margin-bottom: 20px;
  color: var(--gold);
  filter: drop-shadow(0 4px 12px rgba(200,134,10,0.22));
}

.perk-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--espresso);
  margin-bottom: 12px;
  line-height: 1.2;
}

.perk-title--sm { font-size: 18px; }

.perk-desc {
  font-size: 15px;
  color: #777;
  line-height: 1.75;
}

/* ── Cafe how it works ───────────────────────────── */
.cafe-how {
  position: sticky;
  top: 0;
  z-index: 3;
  min-height: 100vh;
  padding: 130px 0;
  background: var(--espresso);
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -12px 48px rgba(0,0,0,0.2);
}

.cafe-how .step-title { color: #fff; }
.cafe-how .step-desc  { color: rgba(255,255,255,0.48); }

/* ── Cafe features ───────────────────────────────── */
.cafe-features {
  position: sticky;
  top: 0;
  z-index: 4;
  min-height: 100vh;
  padding: 130px 0;
  background: var(--cream);
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -12px 48px rgba(0,0,0,0.1);
}

.cafe-features .section-title { margin-bottom: 40px; }
.cafe-features .perk-card     { padding: 24px 22px; }

/* ── FAQ accordion ───────────────────────────────── */
.faq-section {
  position: sticky;
  top: 0;
  z-index: 5;
  min-height: 100vh;
  padding: 130px 0;
  background: var(--espresso);
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -12px 48px rgba(0,0,0,0.2);
}

.faq-list { max-width: 740px; }

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.faq-item:first-child {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 0;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: color 0.2s;
}
.faq-question:hover       { color: var(--gold); }
.faq-question.open        { color: var(--gold); }

.faq-chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: currentColor;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.faq-question.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1);
}
.faq-answer.open { max-height: 260px; }

.faq-answer p {
  font-size: 15px;
  color: rgba(255,255,255,0.52);
  line-height: 1.78;
  padding-bottom: 24px;
}

/* ── Apply section ───────────────────────────────── */
.apply-section {
  position: sticky;
  top: 0;
  z-index: 6;
  min-height: 100vh;
  padding: 130px 0;
  background: #fff;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -12px 48px rgba(0,0,0,0.1);
}

.apply-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: start;
}

.apply-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.75;
  margin-bottom: 30px;
}

.trust-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trust-list li {
  font-size: 15px;
  font-weight: 500;
  color: var(--espresso);
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

/* ── Form components ─────────────────────────────── */
.partner-form-wrap {
  background: #f2ece4;
  border-radius: 22px;
  padding: 38px;
  box-shadow: 0 8px 40px rgba(44,24,16,0.1);
  border: 1px solid #ddd4c8;
}

.form-card-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--espresso);
  margin-bottom: 28px;
}

.field-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 7px;
}

.field-label-opt {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: #ccc;
  font-size: 10px;
}

.field-input {
  display: block;
  width: 100%;
  height: 50px;
  background: #fff;
  border: 1px solid #e8e0d8;
  border-radius: 12px;
  padding: 0 18px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--espresso);
  outline: none;
  margin-bottom: 18px;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.field-input:focus-visible { border-color: var(--gold); }
.field-input::placeholder { color: #ccc; }

.form-note {
  font-size: 12px;
  color: rgba(255,255,255,0.32);
  text-align: center;
}
.form-note.dark { color: #bbb; margin-top: 12px; text-align: center; }

.form-area { position: relative; }

.form-success {
  display: none;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}
.form-success.visible { display: block; }

.success-msg {
  font-size: 15px;
  font-weight: 500;
  color: var(--gold);
  text-align: center;
  padding: 18px 24px;
  background: rgba(200,134,10,0.1);
  border: 1px solid rgba(200,134,10,0.28);
  border-radius: 13px;
  max-width: 460px;
  margin: 0 auto;
}
.success-msg.dark {
  color: var(--espresso);
  background: rgba(200,134,10,0.08);
  border-color: rgba(200,134,10,0.25);
}

/* ── Waitlist / signup form ──────────────────────── */
.hero-signup { margin-top: 32px; }

.form-row {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto 14px;
}

.email-input {
  flex: 1;
  height: 54px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 13px;
  padding: 0 20px;
  font-family: var(--sans);
  font-size: 15px;
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.email-input::placeholder { color: rgba(255,255,255,0.38); }
.email-input:focus-visible { border-color: var(--gold); }

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.45);
  font-family: inherit;
  font-size: 13px;
  padding: 0;
  transition: color 0.2s;
}
.share-btn:hover { color: var(--gold); }
.share-btn svg { flex-shrink: 0; }

/* Cream variant (download CTA section) */
.download-cta .email-input {
  background: #fff;
  border-color: rgba(44,24,16,0.15);
  color: var(--espresso);
}
.download-cta .email-input::placeholder { color: rgba(44,24,16,0.35); }
.download-cta .email-input:focus-visible { border-color: var(--gold); }
.download-cta .share-btn { color: rgba(44,24,16,0.35); }
.download-cta .share-btn:hover { color: var(--gold); }
.download-cta .success-msg { color: var(--espresso); background: rgba(200,134,10,0.08); }

/* ── Download CTA ────────────────────────────────── */
.download-cta {
  position: sticky;
  top: 0;
  z-index: 4;
  min-height: 100vh;
  padding: 120px 0;
  background: var(--cream);
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -12px 48px rgba(44,24,16,0.08);
  overflow: hidden;
}

.download-cta-glow {
  display: none;
}

.download-sub {
  font-size: 15px;
  color: #9a7a6e;
  margin-bottom: 44px;
  margin-top: -24px;
  max-width: 400px;
}

.download-cta .badge-btn {
  background: #fff;
  border-color: rgba(44,24,16,0.12);
  box-shadow: 0 2px 8px rgba(44,24,16,0.07);
}
.download-cta .badge-btn:hover {
  background: #fff;
  border-color: rgba(44,24,16,0.22);
  box-shadow: 0 4px 16px rgba(44,24,16,0.1);
}
.download-cta .badge-icon { color: var(--espresso); }
.download-cta .badge-sub { color: rgba(44,24,16,0.4); }
.download-cta .badge-main { color: var(--espresso); }

/* ── Footer ──────────────────────────────────────── */
.footer {
  position: sticky;
  top: 0;
  z-index: 5;
  background: var(--espresso);
  padding: 28px 0 24px;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 -12px 48px rgba(0,0,0,0.2);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  color: rgba(255,255,255,0.45);
  letter-spacing: 5px;
}

.footer-social {
  display: flex;
  gap: 18px;
}

.footer-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  text-align: center;
}

.footer-sep {
  margin: 0 8px;
  opacity: 0.4;
}

.footer-social-link {
  color: rgba(255,255,255,0.32);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.footer-contact {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact:active { color: var(--gold); }

/* ── Floating CTA ────────────────────────────────── */
.float-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(44,24,16,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 24px;
  padding-bottom: calc(14px + env(safe-area-inset-bottom));
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.07);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.float-cta.visible { transform: translateY(0); }

.float-cta-label {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.float-cta-btn {
  flex-shrink: 0;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(200,134,10,0.35);
  transition: opacity 0.2s, transform 0.15s;
}

/* ── Steps dots ──────────────────────────────────── */
.steps-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.steps-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(200,134,10,0.28);
  transition: background 0.25s, transform 0.25s;
}
.steps-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

/* ── Privacy page ────────────────────────────────── */
.privacy-hero {
  background: var(--espresso);
  padding: 140px 0 80px;
  text-align: center;
}

.privacy-body {
  background: var(--cream);
  padding: 80px 0 100px;
}

.privacy-content {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 48px;
}

.privacy-content h2 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--espresso);
  margin: 48px 0 12px;
}

.privacy-content h2:first-child { margin-top: 0; }

.privacy-content p {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 14px;
}

.privacy-content ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

.privacy-content li {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
}

.privacy-content a {
  color: var(--gold);
  text-decoration: none;
}

.privacy-updated {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-top: 8px;
}

/* ── Tap / press feedback ────────────────────────── */
@media (hover: hover) {
  .feature-card:hover    { background: rgba(255,255,255,0.075); border-color: rgba(200,134,10,0.32); transform: translateY(-5px); }
  .perk-card:hover       { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(44,24,16,0.08); border-color: rgba(200,134,10,0.35); }
  .founder-card:hover    { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(44,24,16,0.1); border-color: rgba(200,134,10,0.3); }
  .partner-cta-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(44,24,16,0.12); border-color: rgba(200,134,10,0.3); }
  .badge-btn:hover       { background: rgba(255,255,255,0.11); border-color: rgba(255,255,255,0.22); }
  .btn-gold:hover        { opacity: 0.88; transform: translateY(-2px); }
  .nav-link:hover        { color: #fff; }
  .nav-link--cta:hover   { color: var(--gold); background: rgba(200,134,10,0.12); border-color: rgba(200,134,10,0.75); }
  .nav-cta-pill:hover    { opacity: 0.88; transform: translateY(-1px); }
  .footer-social-link:hover { color: var(--gold); }
  .footer-contact:hover  { color: var(--gold); }
  .faq-question:hover    { color: var(--gold); }
  .float-cta-btn:hover   { opacity: 0.9; }
  .contact-block-email:hover { color: var(--gold-dark); }
}

.feature-card:active,
.founder-card:active {
  transform: scale(0.98);
  background: rgba(255,255,255,0.1);
  border-color: rgba(200,134,10,0.45);
  transition-duration: 0.08s;
}

.perk-card:active,
.partner-cta-card:active {
  transform: scale(0.98);
  border-color: rgba(200,134,10,0.5);
  transition-duration: 0.08s;
}

.badge-btn:active {
  background: rgba(255,255,255,0.14);
  border-color: rgba(200,134,10,0.45);
  transform: scale(0.97);
  transition-duration: 0.08s;
}

.btn-gold:active,
.btn-gold-link:active {
  opacity: 0.88;
  transform: scale(0.97);
  transition-duration: 0.08s;
}

.nav-cta-pill:active {
  opacity: 0.82;
  transform: scale(0.95);
  transition-duration: 0.08s;
}

.nav-link--cta:active {
  background: rgba(200,134,10,0.18);
  border-color: rgba(200,134,10,0.7);
  transition-duration: 0.08s;
}

.footer-social-link:active {
  color: var(--gold);
  transform: scale(0.88);
  transition-duration: 0.08s;
}

.faq-question:active {
  color: var(--gold);
  opacity: 0.75;
  transition-duration: 0.08s;
}

.float-cta-btn:active {
  opacity: 0.82;
  transform: scale(0.96);
  transition-duration: 0.08s;
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1080px) {
  .features-grid  { grid-template-columns: repeat(2, 1fr); }
  .partner-inner  { grid-template-columns: 1fr; gap: 52px; }
  .founders-grid  { grid-template-columns: 1fr; max-width: 500px; }
  .container      { padding: 0 28px; }
  .how, .features, .user-faq-section, .partner, .about { position: relative; padding: 90px 0; min-height: 0; border-radius: 0; box-shadow: none; }
  .features { overflow: visible; }
  .footer { border-radius: 0; box-shadow: none; }
  .section-title  { margin-bottom: 36px; }
  .about-intro    { margin-bottom: 32px; font-size: 16px; }
  .perk-grid, .perk-grid--six { grid-template-columns: repeat(2, 1fr); }
  .apply-inner   { grid-template-columns: 1fr; gap: 52px; }
  .perks, .cafe-how, .cafe-features, .faq-section, .apply-section, .faq-block { position: relative; padding: 90px 0; min-height: 0; border-radius: 0; box-shadow: none; }
  .partners-page .footer { border-radius: 0; box-shadow: none; }
}

@media (max-width: 768px) {
  .how, .features, .user-faq-section, .partner, .about, .story { position: relative; padding: 72px 0; min-height: 0; border-radius: 0; box-shadow: none; }
  .footer { border-radius: 0; box-shadow: none; }
  .features { overflow: visible; }
  .hero { transform: translateZ(0); }
  .blob, .hero-content { will-change: auto; }
  .hero { min-height: 100svh; }
  .scroll-label { color: rgba(255,255,255,0.55); }
  .scroll-line { background: linear-gradient(to bottom, var(--gold), transparent); }
  .scroll-hint { z-index: 5; }
  .steps-dots { display: flex; }
  .hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 90px;
    background: linear-gradient(to bottom, transparent, var(--espresso));
    pointer-events: none;
    z-index: 4;
  }
  .section-label::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 2px;
    background: currentColor;
    vertical-align: middle;
    margin-right: 10px;
    border-radius: 1px;
    opacity: 0.85;
  }
  .partner-form-wrap { border-top: 2px solid rgba(200,134,10,0.45); }
  .float-cta { display: flex; }
  /* Hide desktop nav links, show hamburger */
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-right .nav-link--cta { display: none; }
  .perks, .cafe-how, .cafe-features, .faq-section, .apply-section, .faq-block {
    position: relative;
    min-height: 0;
    padding: 72px 0;
    border-radius: 0;
    box-shadow: none;
  }
  .page-hero { transform: translateZ(0); min-height: 100svh; }
  .page-hero-content { will-change: auto; }
  .page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 90px;
    background: linear-gradient(to bottom, transparent, var(--espresso));
    pointer-events: none;
    z-index: 4;
  }
}

@media (max-width: 720px) {
  .steps {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 20px;
    align-items: flex-start;
  }
  .steps::-webkit-scrollbar { display: none; }
  .step {
    flex: 0 0 72vw;
    max-width: 240px;
    scroll-snap-align: start;
    padding: 0 20px;
  }
  .step-connector {
    flex-shrink: 0;
    width: 20px;
    height: 1px;
    background: linear-gradient(to right, rgba(200,134,10,0.3), rgba(200,134,10,0.6), rgba(200,134,10,0.3));
    margin-top: 64px;
    align-self: flex-start;
  }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .nav { padding: 18px 24px; }
  .nav-logo { font-size: 20px; letter-spacing: 4px; }
  .footer-top { flex-direction: column; align-items: center; gap: 12px; text-align: center; }
  .footer-meta-loc { display: block; margin-bottom: 4px; }
  .footer-meta-loc + .footer-sep { display: none; }
  .hero-eyebrow { margin-bottom: 10px; }
  .form-row {
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(255,255,255,0.26);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 12px;
  }
  .form-row:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px rgba(200,134,10,0.38);
  }
  .email-input {
    background: rgba(255,255,255,0.10);
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.16);
    border-radius: 0;
    height: 52px;
    font-size: 16px;
    padding: 10px 18px;
  }
  .email-input:focus { border-color: rgba(255,255,255,0.16); }
  .form-row .btn-gold {
    width: 100%;
    height: 52px;
    border-radius: 0;
    box-shadow: none;
    font-size: 15px;
  }
  .download-cta .form-row {
    border-color: rgba(44,24,16,0.18);
  }
  .download-cta .form-row:focus-within {
    border-color: var(--gold);
  }
  .download-cta .email-input {
    border-bottom-color: rgba(44,24,16,0.12);
  }
  .hero-logo {
    font-size: clamp(40px, 12vw, 108px);
    letter-spacing: 4px;
    margin-bottom: 12px;
  }
  .hero-tagline {
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 24px;
  }
  .app-badges { margin-top: 20px; }
  .badges-row { gap: 10px; }
  .badge-btn { flex: 1; padding: 10px 12px; gap: 8px; }
  .badge-icon { width: 22px; height: 22px; }
  .badge-sub { display: none; }
  .badge-main { font-size: 14px; }
  .how, .features, .user-faq-section, .partner, .about, .story, .download-cta { padding: 56px 0; }
  .download-cta { min-height: auto; }
  .about-intro { font-size: 15px; margin-bottom: 24px; }
  .section-title { margin-bottom: 32px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 18px 16px; }
  .feature-icon { width: 24px; height: 24px; margin-bottom: 10px; }
  .feature-title { font-size: 15px; margin-bottom: 6px; }
  .feature-desc { font-size: 13px; }
  .partner-cta-card { padding: 32px 24px; }
  .partner-cta-heading { font-size: 22px; }
  .partner-desc { font-size: 15px; margin-bottom: 20px; }
  .partner-benefits { gap: 10px; }
  .partner-benefits li { font-size: 14px; }
  .perk-grid, .perk-grid--six { grid-template-columns: 1fr; }
  .perk-card { padding: 26px 20px; }
  .perk-title { font-size: 19px; }
  .perks, .cafe-how, .cafe-features, .faq-section, .apply-section, .faq-block { padding: 56px 0; }
  .faq-question { font-size: 15px; padding: 18px 0; }
  .nav-cta-pill { padding: 8px 14px; font-size: 12px; }
  .nav-link--cta { font-size: 11px; padding: 6px 11px; }
  .privacy-hero { padding: 120px 0 60px; }
  .privacy-body { padding: 56px 0 80px; }
  .privacy-content { padding: 0 24px; }
  .story-body p { font-size: 15px; }
  .contact-block { padding: 24px 24px; }
}

@media (max-width: 400px) {
  .features-grid { grid-template-columns: 1fr; }
}

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