/* === Flipbook landing — design tokens === */
:root {
  --cream: #FFF8F3;
  --cream-2: #FCEFE6;
  --peach: #FFE0D2;
  --peach-2: #FFD0BB;
  --blush: #FFC8C8;
  --blush-2: #FFB8C5;
  --coral: #FF6B7A;
  --coral-deep: #E85667;
  --rose-ink: #6B3A40;
  --ink: #2A1F1A;
  --ink-soft: #5C4A40;
  --muted: #9B8579;
  --line: rgba(42, 31, 26, 0.08);
  --line-strong: rgba(42, 31, 26, 0.14);

  --shadow-sm: 0 1px 2px rgba(42, 31, 26, 0.04), 0 2px 6px rgba(42, 31, 26, 0.04);
  --shadow-md: 0 4px 14px rgba(232, 86, 103, 0.08), 0 12px 32px rgba(42, 31, 26, 0.06);
  --shadow-lg: 0 8px 24px rgba(232, 86, 103, 0.12), 0 24px 60px rgba(42, 31, 26, 0.10);
  --shadow-xl: 0 12px 36px rgba(232, 86, 103, 0.18), 0 40px 80px rgba(42, 31, 26, 0.14);

  --r-sm: 14px;
  --r-md: 20px;
  --r-lg: 24px;
  --r-xl: 28px;
  --r-2xl: 36px;

  --serif: "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  --sans: "Geist", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", sans-serif;
  --mono: "Geist Mono", "JetBrains Mono", ui-monospace, monospace;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  line-height: 1.55;
}

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

/* === Loading screen === */
.loader {
  position: fixed; inset: 0;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  z-index: 1000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-book {
  width: 64px; height: 80px;
  position: relative;
  perspective: 600px;
}
.loader-book::before, .loader-book::after {
  content: ""; position: absolute; inset: 0;
  border-radius: 4px 10px 10px 4px;
  background: linear-gradient(135deg, var(--coral), var(--blush-2));
  box-shadow: var(--shadow-md);
  transform-origin: left center;
  animation: bookflip 1.6s ease-in-out infinite;
}
.loader-book::after { animation-delay: 0.4s; opacity: 0.6; }
@keyframes bookflip {
  0%, 100% { transform: rotateY(0deg); }
  50% { transform: rotateY(-160deg); }
}

/* === Nav === */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-bottom 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255, 248, 243, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
}
.brand-mark {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: url('assets/app-icon.png') center/cover no-repeat,
              linear-gradient(135deg, var(--coral) 0%, #FF8FA3 100%);
  position: relative;
  box-shadow: 0 6px 14px rgba(232, 86, 103, 0.32);
  overflow: hidden;
}
.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--coral); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px;
  background: linear-gradient(135deg, var(--coral) 0%, #FF8FA3 100%);
  color: #fff;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  box-shadow: 0 6px 14px rgba(232, 86, 103, 0.28);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(232, 86, 103, 0.36); filter: brightness(1.04); }

@media (max-width: 720px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* === Hero === */
.hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
  background:
    radial-gradient(60% 50% at 50% 20%, var(--peach) 0%, transparent 70%),
    radial-gradient(80% 60% at 80% 80%, rgba(255, 184, 197, 0.4) 0%, transparent 60%),
    radial-gradient(70% 50% at 10% 60%, rgba(255, 224, 210, 0.5) 0%, transparent 60%),
    var(--cream);
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
  opacity: 0.4;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  text-align: center;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px 7px 8px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 28px;
  animation: floatIn 1s ease forwards;
}
.hero-pill-dot {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: var(--coral);
  border-radius: 50%;
  color: #fff; font-size: 11px;
  position: relative;
}
.hero-pill-dot::after {
  content: ""; position: absolute; inset: -3px;
  border: 2px solid var(--coral);
  border-radius: 50%;
  opacity: 0.4;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.8); opacity: 0; }
}

h1.hero-title {
  font-family: var(--serif);
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
h1.hero-title em {
  font-style: italic;
  background: linear-gradient(120deg, var(--coral) 20%, #FF8FA3 50%, #C7869A 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}
.hero-sub {
  font-size: clamp(17px, 1.8vw, 21px);
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.5;
}

.hero-ctas {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 64px;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 24px;
  border-radius: 100px;
  font-size: 15.5px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-family: var(--sans);
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 10px 24px rgba(42, 31, 26, 0.18), inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(42, 31, 26, 0.24); }
.btn-secondary {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-secondary:hover { transform: translateY(-2px); background: #fff; }

/* Ghost button — for Watch Preview alongside store badges */
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  background: transparent;
  border: 1px solid var(--line-strong);
  transition: background 0.2s, transform 0.2s;
  font-family: var(--sans);
  cursor: pointer;
}
.btn-ghost:hover { background: rgba(255,255,255,0.5); transform: translateY(-1px); }

/* Official App Store / Google Play badges */
.store-badge {
  display: inline-flex; align-items: center;
  height: 54px;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.store-badge img {
  height: 54px; width: auto; display: block;
}
.store-badge:hover { transform: translateY(-2px); }
.store-badge-lg { height: 62px; }
.store-badge-lg img { height: 62px; }
.btn-play-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--coral);
  display: inline-flex; align-items: center; justify-content: center;
}
.btn-play-icon::before {
  content: ""; width: 0; height: 0;
  border-left: 5px solid #fff;
  border-top: 3.5px solid transparent;
  border-bottom: 3.5px solid transparent;
  margin-left: 2px;
}

/* === Flipbook 3D stage === */
.flipbook-stage {
  position: relative;
  width: 100%;
  height: 480px;
  perspective: 2400px;
  margin: 0 auto;
}
.flipbook {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotateX(8deg) rotateY(-6deg);
  width: 320px;
  height: 420px;
  transform-style: preserve-3d;
}
.flipbook-spine {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 14px;
  background: linear-gradient(90deg, #2A1F1A 0%, #4A3530 50%, #2A1F1A 100%);
  border-radius: 4px 0 0 4px;
  transform: translateZ(0);
  box-shadow: -2px 0 6px rgba(0,0,0,0.2);
}
.flipbook-stack {
  position: absolute;
  right: 0; top: 4px; bottom: 4px;
  width: 6px;
  background: linear-gradient(90deg, #fff, #f5e8de, #fff, #f5e8de);
  background-size: 2px 100%;
  border-radius: 0 3px 3px 0;
  box-shadow: 2px 2px 8px rgba(42,31,26,0.18);
}
.page {
  position: absolute;
  left: 14px; top: 0;
  width: calc(100% - 14px);
  height: 100%;
  background: #fff;
  border-radius: 0 14px 14px 0;
  transform-origin: left center;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  box-shadow: 4px 4px 20px rgba(42, 31, 26, 0.12);
  overflow: hidden;
  will-change: transform;
}
.page-back {
  position: absolute;
  left: 14px; top: 0;
  width: calc(100% - 14px);
  height: 100%;
  background: #fff;
  border-radius: 0 14px 14px 0;
  transform-origin: left center;
  transform: rotateY(180deg);
  backface-visibility: hidden;
}
.page-inner {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  padding: 16px;
  position: relative;
}
/* Page photo with real image — image absolute-fills the .page-photo */
.page-photo {
  flex: 1;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.page-caption {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  color: var(--rose-ink);
  margin-top: 10px;
  text-align: center;
  line-height: 1.1;
}
.page-date {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  text-align: center;
  margin-top: 2px;
}
.page-num {
  position: absolute;
  bottom: 10px; right: 14px;
  font-family: var(--mono);
  font-size: 9px;
  color: var(--muted);
}

/* Photo placeholder gradients — soft "memory" colors */
.photo-fam { background: linear-gradient(135deg, #FFD4C2 0%, #FFB8A8 40%, #E89F8C 100%); }
.photo-travel { background: linear-gradient(135deg, #FFD8B8 0%, #FFB689 50%, #C8B5E0 100%); }
.photo-pet { background: linear-gradient(135deg, #FCE4C8 0%, #E8B98A 60%, #A88062 100%); }
.photo-couple { background: linear-gradient(135deg, #FFC0CB 0%, #FF9FAF 50%, #B87C8E 100%); }
.photo-birthday { background: linear-gradient(135deg, #FFE6D2 0%, #FFB4C8 40%, #FFD082 100%); }
.photo-beach { background: linear-gradient(135deg, #FFE4B8 0%, #FFD4A3 30%, #B8D4E8 100%); }

.photo-shape {
  position: absolute;
  inset: 0;
}
.photo-shape::before, .photo-shape::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
}
.photo-shape::before {
  width: 50%; height: 50%;
  top: 15%; left: 25%;
  background: rgba(255,255,255,0.35);
}
.photo-shape::after {
  width: 35%; height: 35%;
  bottom: 12%; right: 18%;
  background: rgba(255,255,255,0.2);
}

/* Floating photos around flipbook */
.float-photo {
  position: absolute;
  border-radius: 6px;
  background: #fff;
  padding: 8px 8px 24px;
  box-shadow: var(--shadow-lg);
  z-index: 1;
  transition: transform 0.4s ease;
}
.float-photo-inner {
  width: 100%; height: 100%;
  border-radius: 3px;
}
.float-1 { top: 20%; left: 8%; width: 110px; height: 130px; transform: rotate(-8deg); animation: float1 8s ease-in-out infinite; }
.float-2 { top: 12%; right: 10%; width: 100px; height: 120px; transform: rotate(6deg); animation: float2 9s ease-in-out infinite; }
.float-3 { bottom: 15%; left: 6%; width: 95px; height: 115px; transform: rotate(4deg); animation: float3 7s ease-in-out infinite; }
.float-4 { bottom: 8%; right: 8%; width: 115px; height: 135px; transform: rotate(-5deg); animation: float4 10s ease-in-out infinite; }

@keyframes float1 { 0%,100% { transform: rotate(-8deg) translateY(0); } 50% { transform: rotate(-6deg) translateY(-14px); } }
@keyframes float2 { 0%,100% { transform: rotate(6deg) translateY(0); } 50% { transform: rotate(8deg) translateY(-10px); } }
@keyframes float3 { 0%,100% { transform: rotate(4deg) translateY(0); } 50% { transform: rotate(2deg) translateY(-12px); } }
@keyframes float4 { 0%,100% { transform: rotate(-5deg) translateY(0); } 50% { transform: rotate(-7deg) translateY(-8px); } }

/* Particles */
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.heart {
  position: absolute;
  color: var(--blush-2);
  font-size: 18px;
  z-index: 1;
  opacity: 0.6;
  animation: floatHeart 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes floatHeart {
  0%, 100% { transform: translateY(0) rotate(-10deg); opacity: 0.4; }
  50% { transform: translateY(-30px) rotate(8deg); opacity: 0.7; }
}

@keyframes floatIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === Stats row beneath hero === */
.hero-stats {
  display: flex; justify-content: center; gap: 48px;
  margin-top: 72px;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
}
.stat-num {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--ink);
  line-height: 1;
}
.stat-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* === Section general === */
section {
  padding: 120px 0;
  position: relative;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 24px; height: 1px;
  background: var(--coral); opacity: 0.5;
}
h2.section-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 16px;
}
h2.section-title em {
  font-style: italic;
  color: var(--coral);
}
.section-sub {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 580px;
  margin-bottom: 64px;
  line-height: 1.5;
}
.section-head {
  text-align: center;
}
.section-head .section-sub { margin-left: auto; margin-right: auto; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* === How It Works === */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 28px 24px 24px;
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.step-illo {
  width: 100%; height: 160px;
  border-radius: var(--r-md);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.step-num {
  position: absolute;
  top: 12px; right: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.18);
  padding: 4px 8px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  z-index: 2;
}
.step-title {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.step-desc {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.illo-1 { background: linear-gradient(135deg, #FFE0D2 0%, #FFC8C8 100%); }
.illo-2 { background: linear-gradient(135deg, #FFD8E8 0%, #E8C9F0 100%); }
.illo-3 { background: linear-gradient(135deg, #FFE6C8 0%, #FFCBA8 100%); }
.illo-4 { background: linear-gradient(135deg, #FFD4D4 0%, #FFB8C5 100%); }

/* Step graphic objects */
.illo-stack {
  position: relative;
  width: 90px; height: 100px;
}
.illo-stack i {
  position: absolute;
  width: 70px; height: 90px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.illo-stack i:nth-child(1) { top: 0; left: 0; transform: rotate(-8deg); background: linear-gradient(180deg, #FFB8C5 0%, #FF8FA3 100%); }
.illo-stack i:nth-child(2) { top: 4px; left: 12px; transform: rotate(2deg); background: linear-gradient(180deg, #FFCBA8 0%, #E89F8C 100%); }
.illo-stack i:nth-child(3) { top: 8px; left: 22px; transform: rotate(10deg); background: linear-gradient(180deg, #FFE0D2 0%, #FFB689 100%); }

.illo-palette {
  display: flex; gap: 8px;
}
.illo-palette span {
  width: 28px; height: 64px;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.illo-palette span:nth-child(1) { background: #FF6B7A; }
.illo-palette span:nth-child(2) { background: #FFB689; height: 80px; }
.illo-palette span:nth-child(3) { background: #C7869A; height: 56px; }
.illo-palette span:nth-child(4) { background: #E8B98A; height: 72px; }
.illo-palette span:nth-child(5) { background: #B8C4E0; height: 50px; }

.illo-phone {
  width: 80px; height: 130px;
  background: var(--ink);
  border-radius: 16px;
  padding: 4px;
  box-shadow: 0 8px 20px rgba(42,31,26,0.18);
  position: relative;
}
.illo-phone::before {
  content: ""; position: absolute;
  top: 8px; left: 50%; transform: translateX(-50%);
  width: 32px; height: 4px;
  background: #000; border-radius: 4px;
  z-index: 3;
}
.illo-phone-screen {
  width: 100%; height: 100%;
  background: linear-gradient(180deg, #FFE0D2, #FFB8C5);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.illo-phone-screen::after {
  content: ""; width: 36px; height: 50px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 2px 2px 0 rgba(232, 86, 103, 0.4);
}

.illo-share {
  position: relative;
  width: 110px; height: 100px;
}
.illo-share i {
  position: absolute;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-weight: 600;
  color: #fff;
  font-size: 11px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.illo-share i:nth-child(1) { width: 44px; height: 44px; background: var(--coral); top: 0; left: 50%; transform: translateX(-50%); }
.illo-share i:nth-child(2) { width: 36px; height: 36px; background: #E89F8C; bottom: 4px; left: 8px; }
.illo-share i:nth-child(3) { width: 36px; height: 36px; background: #C7869A; bottom: 4px; right: 8px; }
.illo-share i:nth-child(4) { width: 30px; height: 30px; background: #FFB689; top: 24px; left: 4px; }

/* === Feature showcase === */
.features {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 18px;
}
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  min-height: 320px;
  display: flex; flex-direction: column;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feature-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.feature-title {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-bottom: 22px;
  max-width: 340px;
}
.feature-visual {
  margin-top: auto;
  flex: 1;
  position: relative;
  display: flex; align-items: flex-end; justify-content: center;
  min-height: 160px;
}

.feature.big {
  grid-row: span 2;
  background: linear-gradient(160deg, var(--peach) 0%, var(--blush) 100%);
  border: none;
  color: var(--ink);
}
.feature.big .feature-title { font-size: 40px; }

/* Theme chips */
.theme-chips {
  display: flex; gap: 10px; flex-wrap: wrap;
  justify-content: center;
}
.theme-chip {
  width: 64px; height: 84px;
  border-radius: 10px;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 8px;
  font-family: var(--serif);
  font-style: italic;
  color: #fff;
  font-size: 13px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  position: relative;
  transition: transform 0.3s ease;
}
.feature:hover .theme-chip { transform: translateY(-4px); }
.theme-chip:nth-child(1) { background: linear-gradient(160deg, #FFD4C2, #E89F8C); transform: rotate(-6deg); }
.theme-chip:nth-child(2) { background: linear-gradient(160deg, #C7869A, #6B3A40); transform: rotate(2deg); margin-top: -8px; }
.theme-chip:nth-child(3) { background: linear-gradient(160deg, #FFE0D2, #C8A088); transform: rotate(-2deg); }
.theme-chip:nth-child(4) { background: linear-gradient(160deg, #B8D4E8, #6B7C8F); transform: rotate(6deg); margin-top: -4px; }
.theme-chip:nth-child(5) { background: linear-gradient(160deg, #FFCBA8, #FF8FA3); transform: rotate(-4deg); }

/* Export formats visual */
.export-formats {
  display: flex; gap: 14px; justify-content: center;
}
.fmt-pill {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  background: var(--cream-2);
  color: var(--ink);
  border: 1px solid var(--line);
}
.fmt-pill.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* Print-quality visual */
.print-vis {
  display: flex; flex-direction: column; gap: 6px; align-items: center;
}
.print-doc {
  width: 130px; height: 100px;
  background: #fff;
  border-radius: 6px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.print-doc::before {
  content: ""; position: absolute; inset: 12px;
  background: linear-gradient(135deg, #FFC8C8, #FFB689);
  border-radius: 4px;
}
.print-doc::after {
  content: "300 DPI";
  position: absolute; bottom: 6px; left: 8px;
  font-family: var(--mono); font-size: 8px;
  color: var(--ink);
  letter-spacing: 0.1em;
}

/* Dark mode mini */
.dark-mini {
  width: 100%; max-width: 220px;
  height: 130px;
  background: #1A1410;
  border-radius: 16px;
  padding: 14px;
  display: flex; flex-direction: column; gap: 8px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.dark-mini::before {
  content: "";
  width: 56px; height: 76px;
  background: linear-gradient(135deg, #FFB689, #C7869A);
  border-radius: 6px;
  position: absolute; left: 14px; top: 14px;
}
.dark-mini::after {
  content: "✦";
  position: absolute; top: 14px; right: 18px;
  color: #FFB689; font-size: 14px;
}

/* Share platforms */
.share-platforms {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
}
.platform-pill {
  padding: 8px 14px;
  border-radius: 100px;
  background: var(--cream-2);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  border: 1px solid var(--line);
}

/* === Social proof masonry === */
.masonry {
  columns: 4;
  column-gap: 16px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.masonry-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
/* Masonry photos cover the gradient when image loads */
.masonry-photo {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.masonry-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.masonry-photo.tall { aspect-ratio: 3/4; }
.masonry-photo.square { aspect-ratio: 1/1; }
.masonry-photo.wide { aspect-ratio: 4/3; }
.masonry-photo.xtall { aspect-ratio: 2/3; }
.masonry-label {
  position: absolute;
  bottom: 12px; left: 12px; right: 12px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  z-index: 2;
}
.masonry-label-tag {
  font-family: var(--serif);
  font-style: italic;
}
.masonry-label-by {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
}

@media (max-width: 1024px) {
  .masonry { columns: 3; }
  .features { grid-template-columns: 1fr 1fr; }
  .feature.big { grid-row: auto; grid-column: span 2; min-height: 280px; }
  .steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .masonry { columns: 2; }
  .features { grid-template-columns: 1fr; }
  .feature.big { grid-column: auto; }
  .steps { grid-template-columns: 1fr; }
  section { padding: 80px 0; }
  .hero { padding: 110px 0 40px; }
  .float-photo { display: none; }
  .hero-stats { gap: 28px; }
}

/* === Buzz section === */
.buzz {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}
.buzz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.buzz-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 36px 28px 28px;
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  min-height: 220px;
  display: flex; flex-direction: column;
}
.buzz-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.buzz-quote-mark {
  position: absolute;
  top: 8px; left: 22px;
  font-family: var(--serif);
  font-size: 80px;
  line-height: 1;
  color: var(--blush);
  font-style: italic;
  pointer-events: none;
  user-select: none;
}
.buzz-body {
  position: relative; z-index: 1;
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.35;
  letter-spacing: -0.005em;
  flex: 1;
}
.buzz-body em {
  font-style: italic;
  color: var(--coral);
  background: none;
}
.buzz-glyph {
  margin-top: 18px;
  font-size: 14px;
  color: var(--coral);
  opacity: 0.7;
}

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

/* === App preview === */
.app-preview-wrap {
  position: relative;
  padding: 60px 0 0;
}
.phones {
  display: flex; justify-content: center;
  gap: 24px;
  perspective: 2000px;
}
.phone {
  width: 240px;
  height: 500px;
  background: #1A1410;
  border-radius: 38px;
  padding: 6px;
  box-shadow: 0 30px 60px rgba(42, 31, 26, 0.22), inset 0 0 0 2px #2A1F1A;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.phone::before {
  content: ""; position: absolute;
  top: 14px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 26px;
  background: #000;
  border-radius: 100px;
  z-index: 4;
}
.phone-screen {
  width: 100%; height: 100%;
  background: var(--cream);
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}
.phone:nth-child(1) { transform: translateY(20px) rotateY(8deg); }
.phone:nth-child(2) { transform: translateY(0) scale(1.05); z-index: 2; }
.phone:nth-child(3) { transform: translateY(20px) rotateY(-8deg); }

.screen-status {
  display: flex; justify-content: space-between;
  padding: 14px 22px 8px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
}
.screen-content {
  padding: 18px 16px;
  font-size: 11px;
}
.screen-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.screen-brand {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--coral);
}
.screen-avatar {
  width: 24px; height: 24px;
  background: linear-gradient(135deg, var(--coral), #FF8FA3);
  border-radius: 50%;
}
.screen-h {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--ink);
  line-height: 1.05;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.screen-card {
  background: #fff;
  border-radius: 14px;
  padding: 10px;
  margin-bottom: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
  border: 1px solid var(--line);
}
.screen-card-photo {
  width: 100%; height: 96px;
  border-radius: 10px;
  margin-bottom: 8px;
}
.screen-card-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.screen-card-sub {
  font-size: 9.5px;
  color: var(--muted);
}

.theme-row {
  display: flex; gap: 6px;
  overflow: hidden;
}
.theme-thumb {
  width: 56px; height: 70px;
  border-radius: 10px;
  flex-shrink: 0;
  position: relative;
}
.theme-thumb span {
  position: absolute;
  bottom: 4px; left: 4px; right: 4px;
  font-size: 8px;
  color: #fff;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
}

.screen-tab-bar {
  position: absolute;
  bottom: 12px; left: 12px; right: 12px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 100px;
  display: flex; justify-content: space-around;
  padding: 10px 12px;
}
.tab-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--line-strong);
}
.tab-dot.on { background: var(--coral); }

@media (max-width: 900px) {
  .phones { flex-direction: column; align-items: center; }
  .phone:nth-child(1), .phone:nth-child(2), .phone:nth-child(3) {
    transform: none;
  }
}

/* === FAQ === */
.faq-wrap {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line-strong);
  padding: 22px 0;
  cursor: pointer;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  font-family: var(--serif);
  font-size: 24px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.faq-toggle {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--cream-2);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
}
.faq-toggle::before, .faq-toggle::after {
  content: "";
  position: absolute;
  background: var(--ink);
  border-radius: 1px;
}
.faq-toggle { position: relative; }
.faq-toggle::before { width: 12px; height: 1.5px; }
.faq-toggle::after { width: 1.5px; height: 12px; transition: transform 0.3s ease; }
.faq-item.open .faq-toggle { background: var(--coral); }
.faq-item.open .faq-toggle::before { background: #fff; }
.faq-item.open .faq-toggle::after { background: #fff; transform: rotate(90deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin 0.4s ease;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
  max-width: 580px;
}
.faq-item.open .faq-a {
  max-height: 200px;
  margin-top: 14px;
}

/* === Final CTA === */
.final-cta {
  background: linear-gradient(160deg, #FFE0D2 0%, #FFC8C8 60%, #FFB8C5 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.final-cta::before, .final-cta::after {
  content: ""; position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
}
.final-cta::before { width: 400px; height: 400px; background: #FFB689; top: -100px; left: -100px; }
.final-cta::after { width: 400px; height: 400px; background: var(--coral); bottom: -100px; right: -100px; }
.final-cta .container { position: relative; z-index: 2; }
.final-cta h2 {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 24px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta h2 em { font-style: italic; color: var(--coral-deep); }
.final-cta p {
  font-size: 19px;
  color: var(--ink-soft);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* === Footer === */
footer {
  background: var(--cream);
  padding: 80px 0 36px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--ink);
  margin-bottom: 12px;
}
.footer-tag {
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 280px;
  line-height: 1.5;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14.5px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--coral); }
.footer-bot {
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
  flex-wrap: wrap;
  gap: 14px;
}

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

/* === Parallax decorative === */
.deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.deco-heart {
  width: 28px; height: 28px;
  background: var(--blush-2);
  position: relative;
  transform: rotate(-45deg);
  border-radius: 4px 0 0 0;
}
.deco-heart::before, .deco-heart::after {
  content: ""; position: absolute;
  width: 28px; height: 28px;
  background: var(--blush-2);
  border-radius: 50%;
}
.deco-heart::before { top: -14px; left: 0; }
.deco-heart::after { right: -14px; top: 0; }
