/* ── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --cream:      #F7F0EA;
  --cream-d:    #EDE0D0;
  --amber:      #E8943A;
  --amber-pale: #FEF3E8;
  --amber-dim:  #C4721A;
  --brown:      #2D1F0E;
  --brown-mid:  #6B5040;
  --brown-soft: #9A8070;
  --brown-lt:   #C4A882;
  --dark:       #1A0E08;
  --white:      #FFFFFF;
  --shadow:     rgba(45,31,14,0.10);
}

/* ── BASE ───────────────────────────────────────────── */
body {
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  color: var(--brown);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 64px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(247,240,234,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--cream-d);
  transition: box-shadow 0.2s;
}
nav.scrolled { box-shadow: 0 4px 24px var(--shadow); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-wordmark {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--brown);
  line-height: 1;
}
.nav-wordmark span { color: var(--amber); }

.nav-cta {
  background: var(--amber);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--amber-dim); }

/* ── MARK SVG component, reusable ─────────────────── */
/* Used in nav, hero phone, card, tabs */

/* ── HERO ───────────────────────────────────────────── */
.hero {
  padding-top: 64px;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: var(--cream);
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px 80px 80px;
}

.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
}

.hero-h1 {
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -2px;
  color: var(--brown);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 17px;
  font-weight: 400;
  color: var(--brown-mid);
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 44px;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--brown);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 22px;
  border-radius: 14px;
  text-decoration: none;
  transition: background 0.15s, transform 0.12s;
}
.btn-dark:hover { background: var(--dark); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  color: var(--brown);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 22px;
  border-radius: 14px;
  text-decoration: none;
  border: 1.5px solid var(--cream-d);
  box-shadow: 0 2px 12px var(--shadow);
  transition: border-color 0.15s, transform 0.12s;
}
.btn-outline:hover { border-color: var(--amber); transform: translateY(-2px); }

.hero-note {
  font-size: 12px;
  color: var(--brown-soft);
}

/* ── HERO PHONE ─────────────────────────────────────── */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  padding: 80px 40px;
  overflow: hidden;
  position: relative;
}

/* ── iPhone 15 Pro mockup ─────────────────────────── */
.iphone-wrap {
  position: relative;
  width: 300px;
  flex-shrink: 0;
}

/* Ambient amber glow behind phone */
.iphone-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,148,58,0.16) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* Outer shell, drop shadow */
.iphone-shell {
  position: relative;
  z-index: 1;
  width: 300px;
  height: 650px;
  filter:
    drop-shadow(0 2px 1px rgba(45,31,14,0.06))
    drop-shadow(0 12px 32px rgba(45,31,14,0.22))
    drop-shadow(0 40px 80px rgba(45,31,14,0.18));
}

/* SVG frame sits on top of everything */
.iphone-frame-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

/* App screen, fills the shell, clipped by inner screen rect */
.iphone-screen {
  margin: 5px;
  border-radius: 47px;
  overflow: hidden;
  background: #F7F0EA;
  line-height: 0;
  /* Aspect ratio matches source: 1179x2556 = 0.4613 */
  aspect-ratio: 1179 / 2556;
}

.iphone-screenshot {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 47px;
}

.p-status {
  display: flex;
  justify-content: space-between;
  padding: 0 18px 6px;
  font-size: 9px;
  font-weight: 600;
  color: var(--brown);
}

.p-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px 10px;
}

.p-logo {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 700;
  color: var(--brown);
}
.p-logo span { color: var(--amber); }

.p-avatar {
  width: 28px;
  height: 28px;
  border-radius: 14px;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: white;
}

/* Ritual row */
.p-ritual {
  padding: 0 14px 10px;
}
.p-ritual-label {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brown-soft);
  margin-bottom: 8px;
}
.p-ritual-row {
  display: flex;
  gap: 12px;
}
.p-ritual-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.p-ring {
  width: 42px;
  height: 42px;
  border-radius: 21px;
  border: 2px solid var(--amber);
  padding: 2px;
  position: relative;
}
.p-ring.add {
  border-style: dashed;
  border-color: var(--brown-lt);
  background: var(--amber-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--amber);
  line-height: 1;
}
.p-ring-inner {
  width: 100%;
  height: 100%;
  border-radius: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: white;
}
.p-vdot {
  position: absolute;
  bottom: -1px; right: -1px;
  width: 11px; height: 11px;
  border-radius: 6px;
  border: 1.5px solid var(--cream);
}
.p-rname {
  font-size: 8px;
  font-weight: 500;
  color: var(--brown-soft);
}

/* Post card in phone */
.p-card {
  margin: 0 10px 10px;
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--cream-d);
  box-shadow: 0 2px 12px var(--shadow);
}
.p-card-top {
  padding: 10px 10px 0;
  display: flex;
  align-items: center;
  gap: 7px;
}
.p-card-av {
  width: 28px; height: 28px;
  border-radius: 14px;
  background: #C4845A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.p-card-name { font-size: 10px; font-weight: 600; color: var(--brown); }
.p-card-meta { font-size: 8px; color: var(--brown-soft); margin-top: 1px; }
.p-vibe {
  margin-left: auto;
  font-size: 8px;
  font-weight: 500;
  color: var(--amber);
  background: var(--amber-pale);
  padding: 3px 8px;
  border-radius: 50px;
  border: 1px solid rgba(232,148,58,0.2);
}
.p-img {
  margin: 8px 10px;
  border-radius: 10px;
  height: 110px;
  background: linear-gradient(145deg, #8B5030, #C4845A);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  position: relative;
}
.p-temp {
  position: absolute;
  top: 6px; left: 6px;
  background: rgba(255,255,255,0.92);
  border-radius: 50px;
  padding: 2px 7px;
  font-size: 7px;
  font-weight: 600;
  color: var(--brown);
}
.p-strip {
  margin: 0 10px;
  background: var(--amber-pale);
  border-radius: 7px;
  padding: 5px 8px;
  font-size: 8px;
  font-weight: 500;
  color: var(--brown-mid);
}
.p-strip .vs { color: var(--amber); font-weight: 600; }
.p-caption {
  padding: 6px 10px 10px;
  font-size: 8px;
  color: var(--brown-mid);
  line-height: 1.5;
}
.p-caption strong { color: var(--brown); }
.p-actions {
  display: flex;
  gap: 10px;
  padding: 7px 10px 8px;
  border-top: 1px solid var(--cream-d);
}
.p-action {
  font-size: 7px;
  color: var(--brown-lt);
  display: flex;
  align-items: center;
  gap: 3px;
}

/* Tab bar */
.p-tabs {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 8px 0 4px;
  background: var(--white);
  border-top: 1px solid var(--cream-d);
}
.p-tab { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.p-tab-dot { width: 18px; height: 18px; border-radius: 9px; background: var(--cream-d); }
.p-tab-dot.on { background: var(--amber); }
.p-tab-btn {
  width: 40px; height: 40px;
  border-radius: 20px;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -12px;
  box-shadow: 0 4px 14px rgba(232,148,58,0.45);
}

/* ── SECTION: RECOGNITION ────────────────────────────── */
.section-recognition {
  background: var(--dark);
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.recog-quote {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.8px;
  color: var(--white);
}
.recog-quote em {
  font-style: normal;
  color: var(--amber);
}

.recog-body p {
  font-size: 16px;
  color: rgba(247,240,234,0.65);
  line-height: 1.78;
  margin-bottom: 20px;
}
.recog-body p:last-child { margin-bottom: 0; }

/* ── SECTION: PORTRAIT ───────────────────────────────── */
.section-portrait {
  padding: 100px 80px;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.portrait-h2 {
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--brown);
  margin-bottom: 22px;
}

.portrait-body {
  font-size: 16px;
  color: var(--brown-mid);
  line-height: 1.75;
  margin-bottom: 18px;
}
.portrait-body:last-child { margin-bottom: 0; }

/* Brewprint portrait card */
.bp-card {
  background: linear-gradient(135deg, #E8943A 0%, #F5B87A 100%);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 24px 64px rgba(232,148,58,0.35);
}

.bp-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.bp-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.bp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.bp-tag {
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 600;
  color: var(--white);
}

.bp-section {
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.18);
}

.bp-section-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 7px;
}

.bp-section-text {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.96);
}

/* word-by-word reveal */
.bp-section-text .w {
  display: inline;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.bp-section-text.shown .w { opacity: 1; }

/* ── SECTION: FEED ───────────────────────────────────── */
.section-feed {
  background: var(--dark);
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.feed-h2 {
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 22px;
}

.feed-body {
  font-size: 16px;
  color: rgba(247,240,234,0.65);
  line-height: 1.75;
  margin-bottom: 18px;
}

/* Ritual row in feed section */
.ritual-row {
  display: flex;
  gap: 14px;
  margin-top: 40px;
}

.r-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }

.r-ring {
  width: 48px; height: 48px;
  border-radius: 24px;
  border: 2px solid var(--amber);
  padding: 2px;
  position: relative;
}
.r-ring.dim { border-color: rgba(247,240,234,0.15); }

.r-inner {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: white;
}
.r-add {
  width: 48px; height: 48px;
  border-radius: 24px;
  border: 2px dashed rgba(232,148,58,0.4);
  background: rgba(232,148,58,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--amber);
  line-height: 1;
}
.r-dot {
  position: absolute;
  bottom: -1px; right: -1px;
  width: 12px; height: 12px;
  border-radius: 6px;
  border: 2px solid var(--dark);
}
.r-name {
  font-size: 9px;
  font-weight: 500;
  color: rgba(247,240,234,0.4);
}

/* Feed post card stack */
.feed-cards {
  position: relative;
  padding-bottom: 24px;
  padding-right: 24px;
}

.feed-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.feed-card.behind {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 24px;
  top: 24px;
  z-index: 0;
  opacity: 0.45;
  transform: scale(0.97);
  transform-origin: bottom center;
  border-radius: 20px;
  overflow: hidden;
}

.feed-card.front { position: relative; z-index: 1; }

.fc-header {
  padding: 14px 16px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.fc-av {
  width: 36px; height: 36px;
  border-radius: 18px;
  background: #C4845A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.fc-av2 { background: #5A8070; }
.fc-name { font-size: 13px; font-weight: 600; color: var(--brown); }
.fc-meta { font-size: 10px; color: var(--brown-soft); margin-top: 1px; }
.fc-vibe {
  margin-left: auto;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 11px;
  border-radius: 50px;
  white-space: nowrap;
}
.vp { color: var(--amber); background: var(--amber-pale); border: 1px solid rgba(232,148,58,0.25); }
.vc { color: #5A8A7A; background: #EAF3F0; border: 1px solid rgba(90,138,122,0.22); }

.fc-img {
  margin: 12px 14px;
  border-radius: 14px;
  height: 190px;
  background: linear-gradient(145deg, #8B5030, #C4845A);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
}
.fc-img2 { background: linear-gradient(145deg, #1A0C04, #4A2010); }

.fc-temp {
  position: absolute;
  top: 10px; left: 10px;
  background: rgba(255,255,255,0.93);
  border-radius: 50px;
  padding: 3px 10px;
  font-size: 9px;
  font-weight: 600;
  color: var(--brown);
}

.fc-strip {
  margin: 0 14px;
  background: var(--amber-pale);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 500;
  color: var(--brown-mid);
  border: 1px solid rgba(232,148,58,0.18);
}

.fc-caption {
  padding: 10px 14px 12px;
  font-size: 13px;
  color: var(--brown-mid);
  line-height: 1.55;
}
.fc-caption strong { color: var(--brown); }

.fc-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 14px 14px;
  border-top: 1px solid var(--cream-d);
}
.fc-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: var(--brown-lt);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

/* ── SECTION: DOWNLOAD ───────────────────────────────── */
.section-download {
  background: var(--cream);
  padding: 140px 80px;
  text-align: center;
}

.dl-h2 {
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -2px;
  color: var(--brown);
  margin-bottom: 20px;
}

.dl-sub {
  font-size: 18px;
  color: var(--brown-mid);
  line-height: 1.65;
  max-width: 460px;
  margin: 0 auto 52px;
}

.dl-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.dl-note {
  font-size: 12px;
  color: var(--brown-soft);
}

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--brown);
  padding: 44px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  row-gap: 16px;
}

.footer-logo {
  font-size: 16px;
  font-weight: 700;
  color: rgba(247,240,234,0.65);
  text-decoration: none;
  flex-shrink: 0;
}
.footer-logo span { color: var(--amber); }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(247,240,234,0.4);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: rgba(247,240,234,0.8); }

.footer-copy {
  font-size: 12px;
  color: rgba(247,240,234,0.25);
  flex-shrink: 0;
}

/* ── SCROLL REVEAL ───────────────────────────────────── */
.r {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.r.in {
  opacity: 1;
  transform: translateY(0);
}
.r.d1 { transition-delay: 0.1s; }
.r.d2 { transition-delay: 0.2s; }
.r.d3 { transition-delay: 0.3s; }
.r.d4 { transition-delay: 0.4s; }


/* ── SECTION: SCREENSHOTS ────────────────────────────── */
.section-screenshots {
  background: var(--dark);
  padding: 100px 0 80px;
  overflow: hidden;
}

.screenshots-header {
  text-align: center;
  padding: 0 80px 60px;
}

.screenshots-h2 {
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 16px;
}

.screenshots-sub {
  font-size: 16px;
  color: rgba(247,240,234,0.55);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Horizontal scroll strip */
.screenshots-track-wrap {
  position: relative;
}

/* Fade edges */
.screenshots-track-wrap::before,
.screenshots-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.screenshots-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, #1A0E08, transparent);
}
.screenshots-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, #1A0E08, transparent);
}

.screenshots-track {
  display: flex;
  gap: 24px;
  padding: 20px 120px 40px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.screenshots-track:active { cursor: grabbing; }
.screenshots-track::-webkit-scrollbar { display: none; }

.screenshot-item {
  flex-shrink: 0;
  scroll-snap-align: center;
  width: 220px;
  position: relative;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.5));
  transition: transform 0.3s ease;
}
.screenshot-item:hover { transform: translateY(-8px); }

/* iPhone mini frame around each screenshot */
.screenshot-item::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 36px;
  background: linear-gradient(135deg, #C0B8AE, #726A62, #C0B8AE);
  z-index: 1;
}
.screenshot-item::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 35px;
  background: #0A0806;
  z-index: 2;
}

.screenshot-img {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 32px;
  display: block;
}

.screenshot-label {
  margin-top: 20px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: rgba(247,240,234,0.4);
  letter-spacing: 0.5px;
}

/* Scroll hint dots */
.scroll-hint {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding-top: 8px;
}
.scroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(247,240,234,0.2);
  transition: all 0.3s;
}
.scroll-dot.active {
  width: 20px;
  background: var(--amber);
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 960px) {
  nav { padding: 0 24px; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left {
    padding: 60px 24px 48px;
    text-align: center;
    align-items: center;
  }
  .hero-sub { max-width: 100%; }
  .btn-row { justify-content: center; }

  .hero-right {
    padding: 48px 24px 48px;
    height: auto;
    align-items: center;
  }
  .iphone-wrap { width: 240px; }
  .iphone-shell { width: 240px; height: 520px; }

  .section-recognition,
  .section-portrait,
  .section-feed {
    grid-template-columns: 1fr;
    padding: 72px 24px;
    gap: 48px;
  }

  .section-portrait .portrait-card-col { order: -1; }
  .bp-card { max-width: 100%; }

  .feed-cards { max-width: 400px; }

  .section-download { padding: 100px 24px; }

  footer {
    padding: 40px 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .screenshots-header { padding: 0 24px 48px; }
  .screenshots-track  { padding: 20px 40px 40px; gap: 16px; }
  .screenshot-item    { width: 160px; }
  .screenshots-track-wrap::before,
  .screenshots-track-wrap::after { width: 40px; }
}

@media (max-width: 480px) {
  .btn-dark, .btn-outline {
    width: 100%;
    justify-content: center;
  }
  .dl-buttons { flex-direction: column; align-items: center; }
  .dl-buttons .btn-dark,
  .dl-buttons .btn-outline {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .r { opacity: 1; transform: none; transition: none; }
  .bp-section-text .w { opacity: 1; transition: none; }
}