/* === Lysto Website — v2 === */

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

:root {
  /* brand */
  --lilac: #7F8BF4;
  --lilac-dark: #6674EE;
  --lilac-soft: #EDF0FF;
  --lilac-deep: #4A57D6;
  --yellow: #FFF794;
  --yellow-soft: #FFFBD9;
  --ink: #05043A;
  --ink-2: #2A2A55;
  --muted: #6B6B8A;
  --muted-2: #9898B5;
  --line: #EEEEF6;

  /* pastel section zones */
  --bg: #FAFAFE;
  --surface: #FFFFFF;
  --cream: #FFF8E7;
  --mint: #E9F3ED;
  --sky: #EDF1FF;
  --peach: #FFEEE4;
  --rose: #FFE6EE;

  /* type */
  --display: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* radii */
  --r-sm: 12px;
  --r: 20px;
  --r-lg: 32px;
  --r-xl: 44px;

  --container: 1200px;
  --section-py: 140px;
}

html { scroll-behavior: smooth; }

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

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lilac-deep);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--lilac);
  border-radius: 2px;
}

h1, h2, h3 { font-family: var(--display); color: var(--ink); letter-spacing: -0.035em; }
h1 { font-weight: 800; line-height: 1.02; }
h2 { font-weight: 800; line-height: 1.05; }
h3 { font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }

/* ========== Header ========== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  background: rgba(250, 250, 254, 0.78);
  border-bottom: 1px solid rgba(5, 4, 58, 0.04);
  transition: background 0.3s;
}
.site-header .inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.site-header .logo img { height: 32px; width: auto; }
.site-header nav {
  display: flex; gap: 36px;
}
.site-header nav a {
  font-size: 14px; font-weight: 600; color: var(--ink-2);
  transition: color 0.2s;
}
.site-header nav a:hover { color: var(--lilac); }
.site-header .cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700;
  padding: 11px 20px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  transition: background 0.2s, transform 0.1s;
}
.site-header .cta:hover { background: var(--lilac-deep); }
.site-header .cta:active { transform: scale(0.97); }

/* ========== Buttons ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--display);
  font-size: 15px; font-weight: 700;
  padding: 16px 28px;
  border-radius: 999px;
  transition: background 0.2s, transform 0.12s, box-shadow 0.2s, color 0.2s;
  cursor: pointer;
  border: none;
  letter-spacing: -0.01em;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 10px 30px -8px rgba(5, 4, 58, 0.3);
}
.btn-primary:hover { background: var(--lilac-deep); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(5, 4, 58, 0.12);
}
.btn-ghost:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* ========== Hero (shared) ========== */
.hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
}
.hero h1 {
  font-size: clamp(48px, 7.2vw, 104px);
  font-weight: 800;
  margin-bottom: 28px;
}
.hero h1 .em {
  font-style: italic;
  font-weight: 800;
  background: linear-gradient(120deg, var(--lilac) 0%, var(--lilac-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero h1 .underline {
  position: relative;
  white-space: nowrap;
}
.hero h1 .underline::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%; bottom: -2px;
  height: 16%;
  background: var(--yellow);
  border-radius: 999px;
  z-index: -1;
  opacity: 0.9;
}
.hero .sub {
  font-size: clamp(16px, 1.25vw, 19px);
  color: var(--muted);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-trust {
  margin-top: 40px;
  display: flex; align-items: center; gap: 18px;
  font-size: 13px; color: var(--muted-2); font-weight: 500;
}
.hero-trust .avatars {
  display: flex;
}
.hero-trust .avatar {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
  background-size: cover;
}
.hero-trust .avatar:first-child { margin-left: 0; }
.hero-trust .stars { color: #F4B400; letter-spacing: 2px; font-size: 14px; }

/* ---- Hero v1: Stacked phones right, gradient wash ---- */
.hero-v1 {
  background: linear-gradient(180deg, #FFFFFF 0%, var(--lilac-soft) 100%);
}
.hero-v1 .hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-v1 .phone-stage {
  position: relative;
  height: 680px;
}
.hero-v1 .phone {
  position: absolute;
  width: 300px;
  aspect-ratio: 9 / 19.5;
  border-radius: 46px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.8) inset,
    0 40px 80px -20px rgba(74, 87, 214, 0.35),
    0 12px 24px -8px rgba(5, 4, 58, 0.15);
  border: 10px solid #0B0B24;
  background: #0B0B24;
}
.hero-v1 .phone img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 36px;
}
.hero-v1 .phone-a {
  left: 8%; top: 20px;
  transform: rotate(-6deg);
  z-index: 2;
}
.hero-v1 .phone-b {
  right: 0; top: 80px;
  transform: rotate(7deg);
  z-index: 1;
  width: 280px;
}
.hero-v1 .chip {
  position: absolute;
  background: #fff;
  border-radius: 18px;
  padding: 12px 18px;
  font-size: 13px; font-weight: 700;
  box-shadow: 0 12px 28px -8px rgba(5, 4, 58, 0.18);
  display: flex; align-items: center; gap: 10px;
  color: var(--ink);
  z-index: 3;
}
.hero-v1 .chip .ico {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--yellow);
  font-size: 15px;
}
.hero-v1 .chip-1 { left: -10px; top: 80px; animation: bob 5s ease-in-out infinite; }
.hero-v1 .chip-2 { right: 8%; bottom: 120px; animation: bob 5s ease-in-out infinite 1.5s; }
.hero-v1 .chip-3 { left: 28%; bottom: 40px; animation: bob 5s ease-in-out infinite 3s; }

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ---- Hero v2: Centered text, three phones below ---- */
.hero-v2 {
  background: linear-gradient(180deg, #FFFFFF 0%, #F3EFFF 60%, var(--lilac-soft) 100%);
  text-align: center;
  padding-bottom: 0;
}
.hero-v2 .hero-text { max-width: 900px; margin: 0 auto; }
.hero-v2 .sub { margin-left: auto; margin-right: auto; }
.hero-v2 .hero-actions { justify-content: center; }
.hero-v2 .hero-trust { justify-content: center; }
.hero-v2 .phone-row {
  margin-top: 60px;
  display: flex; justify-content: center;
  gap: 28px;
  padding: 0 40px;
  position: relative;
}
.hero-v2 .phone {
  width: clamp(200px, 22vw, 280px);
  aspect-ratio: 9 / 19.5;
  border-radius: 42px;
  border: 9px solid #0B0B24;
  background: #0B0B24;
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(74, 87, 214, 0.4);
  transition: transform 0.3s;
}
.hero-v2 .phone img { width: 100%; height: 100%; object-fit: cover; border-radius: 32px; }
.hero-v2 .phone:nth-child(1) { transform: translateY(60px) rotate(-5deg); }
.hero-v2 .phone:nth-child(3) { transform: translateY(60px) rotate(5deg); }
.hero-v2 .phone:nth-child(2) { transform: translateY(0) scale(1.08); z-index: 2; }

/* ---- Hero v3: Editorial — huge word, single phone ---- */
.hero-v3 {
  background: var(--cream);
}
.hero-v3 .hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-v3 h1 {
  font-size: clamp(60px, 10vw, 148px);
  letter-spacing: -0.05em;
  line-height: 0.92;
}
.hero-v3 h1 .em { font-family: 'Fraunces', Georgia, serif; font-weight: 400; font-style: italic; background: none; color: var(--lilac-deep); -webkit-text-fill-color: var(--lilac-deep); }
.hero-v3 .phone-stage {
  position: relative;
  height: 680px;
  display: flex; justify-content: center; align-items: center;
}
.hero-v3 .phone {
  width: 420px;
}
.hero-v3 .phone img {
  width: 100%;
  height: auto;
  display: block;
  image-rendering: high-quality;
}
.hero-v3 .sticker {
  position: absolute;
  background: var(--ink);
  color: var(--yellow);
  font-family: var(--display);
  font-weight: 800;
  font-size: 14px;
  padding: 12px 18px;
  border-radius: 999px;
  transform: rotate(-8deg);
  top: 40px; left: 0;
  letter-spacing: 0.02em;
}

/* ========== Metric strip ========== */
.metrics {
  padding: 60px 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.metrics .row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1040px;
  margin: 0 auto;
}
.metric { text-align: center; }
.metric .num {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(32px, 3.5vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}
.metric .num .sup { color: var(--lilac); }
.metric .label {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.5;
}

/* ========== Screenshot Story ========== */
.story {
  padding: var(--section-py) 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.story .heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}
.story h2 {
  font-size: clamp(36px, 5vw, 64px);
  margin-top: 20px;
  margin-bottom: 18px;
}
.story .heading p {
  font-size: 17px; color: var(--muted); line-height: 1.6;
}

.story-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  margin-bottom: clamp(80px, 10vw, 140px);
  position: relative;
}
.story-row:nth-child(even) .story-text { order: 2; }
.story-row:nth-child(even) .story-phone-wrap { order: 1; }
.story-row:last-child { margin-bottom: 0; }

.story-text .kicker {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--lilac-deep);
  margin-bottom: 16px;
}
.story-text h3 {
  font-size: clamp(32px, 3.5vw, 44px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.story-text p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 420px;
  margin-bottom: 22px;
}
.story-text ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}
.story-text ul li {
  font-size: 15px;
  color: var(--ink-2);
  font-weight: 500;
  display: flex; align-items: flex-start; gap: 12px;
}
.story-text ul li::before {
  content: "";
  flex: 0 0 auto;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--lilac-soft);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234A57D6' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 12px; background-position: center; background-repeat: no-repeat;
  margin-top: 2px;
}

.story-phone-wrap {
  position: relative;
  display: flex; justify-content: center;
  padding: 20px;
}
.story-phone {
  width: 360px;
  transform: rotate(-3deg);
  transition: transform 0.4s ease;
}
.story-row:nth-child(even) .story-phone { transform: rotate(3deg); }
.story-phone:hover { transform: rotate(0) scale(1.02); }
.story-phone img {
  width: 100%;
  height: auto;
  display: block;
  image-rendering: high-quality;
}

.story-phone-wrap .blob {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: var(--r-xl);
  filter: blur(40px);
  opacity: 0.5;
}

.story-phone-wrap .sticker {
  position: absolute;
  background: #fff;
  box-shadow: 0 16px 40px -10px rgba(5, 4, 58, 0.18);
  border-radius: 18px;
  padding: 14px 18px;
  font-size: 13px; font-weight: 700;
  color: var(--ink);
  display: flex; align-items: center; gap: 12px;
  z-index: 2;
}
.story-phone-wrap .sticker .dot-ico {
  width: 32px; height: 32px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
}

/* ========== Features grid ========== */
.features {
  padding: var(--section-py) 0;
  background: var(--surface);
}
.features .heading { text-align: center; max-width: 720px; margin: 0 auto 72px; }
.features .heading h2 { font-size: clamp(36px, 5vw, 60px); margin-top: 18px; margin-bottom: 16px; }
.features .heading p { color: var(--muted); font-size: 17px; }

.feat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.feat {
  background: var(--lilac-soft);
  border-radius: 28px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}
.feat:hover { transform: translateY(-4px); }
.feat-lg { grid-column: span 4; min-height: 360px; }
.feat-sm { grid-column: span 2; min-height: 360px; }
.feat-wide { grid-column: span 3; min-height: 280px; }

.feat .tag {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--lilac-deep);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.feat h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  margin-bottom: 10px;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.feat p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 380px;
  opacity: 0.75;
}

/* feature visuals */
.feat .visual {
  position: absolute;
}

.feat-link { background: var(--lilac-soft); }
.feat-link .visual {
  right: -20px; bottom: -20px;
  width: 60%;
  display: flex; flex-direction: column; gap: 10px;
}
.feat-link .visual .url-bar {
  background: #fff;
  border-radius: 14px;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  box-shadow: 0 10px 25px -8px rgba(5, 4, 58, 0.12);
}
.feat-link .visual .url-bar .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lilac); flex: 0 0 auto; }
.feat-link .visual .shop-chips {
  display: flex; flex-wrap: wrap; gap: 10px;
  align-items: center;
}
.feat-link .visual .shop-bubble {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px -6px rgba(5, 4, 58, 0.18);
  font-size: 16px;
  overflow: hidden;
  flex-shrink: 0;
}
.feat-link .visual .shop-bubble-more {
  background: var(--lilac);
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  font-size: 13px;
}
.feat-link .visual .result {
  background: #fff;
  border-radius: 14px;
  padding: 12px;
  display: flex; gap: 12px;
  box-shadow: 0 16px 40px -10px rgba(5, 4, 58, 0.15);
  align-items: center;
}
.feat-link .visual .result .thumb {
  width: 46px; height: 46px; border-radius: 10px;
  background: var(--yellow-soft);
  flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.feat-link .visual .result .info { flex: 1; min-width: 0; }
.feat-link .visual .result .info .title { font-size: 12px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.feat-link .visual .result .info .price { font-size: 11px; color: var(--muted); }

.feat-reserve { background: var(--cream); }
.feat-reserve .visual {
  right: 24px; bottom: 24px;
  display: flex; gap: 8px;
}
.feat-reserve .visual .tile {
  background: #fff;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  display: flex; align-items: center; gap: 6px;
  box-shadow: 0 8px 20px -6px rgba(5, 4, 58, 0.12);
}
.feat-reserve .visual .tile .dot { width: 7px; height: 7px; border-radius: 50%; }
.feat-reserve .visual .private-badge {
  background: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700;
  color: var(--ink);
  box-shadow: 0 10px 25px -8px rgba(5, 4, 58, 0.14);
}
.feat-reserve .visual .private-badge .lock { font-size: 16px; }

.feat-qr { background: var(--mint); }
.feat-qr .visual {
  right: 20px; bottom: 20px;
  width: 140px; height: 140px;
  background: #fff;
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 16px 40px -10px rgba(5, 4, 58, 0.15);
  display: flex; align-items: center; justify-content: center;
}
.feat-qr .visual .qr-img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}

.feat-bell { background: var(--peach); }
.feat-bell .visual {
  right: 24px; bottom: 24px;
  display: flex; flex-direction: column; gap: 6px;
}
.feat-bell .visual .notif {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 11px;
  color: var(--ink);
  font-weight: 600;
  box-shadow: 0 12px 24px -6px rgba(5, 4, 58, 0.1);
  display: flex; align-items: center; gap: 8px;
}
.feat-bell .visual .notif .when { color: var(--muted); font-weight: 500; font-size: 10px; display: block; }

.feat-msg { background: var(--rose); }
.feat-msg .visual {
  right: 24px; bottom: 24px;
  display: flex; flex-direction: column; gap: 6px;
  align-items: flex-end;
}
.feat-msg .visual .bubble {
  background: #fff;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 11px;
  color: var(--ink);
  font-weight: 500;
  max-width: 180px;
  box-shadow: 0 8px 20px -6px rgba(5, 4, 58, 0.1);
  line-height: 1.4;
}
.feat-msg .visual .bubble:nth-child(2) {
  background: var(--ink);
  color: #fff;
}

.feat-privacy {
  background: var(--ink);
  color: #fff;
  grid-column: span 6;
  min-height: 240px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 48px;
}
.feat-privacy .tag { color: var(--yellow); }
.feat-privacy h3 { color: #fff; font-size: clamp(28px, 3.2vw, 40px); }
.feat-privacy p { color: rgba(255,255,255,0.7); max-width: 600px; font-size: 16px; }
.feat-privacy .badge-wrap {
  display: flex; gap: 12px;
}
.feat-privacy .pbadge {
  width: 96px; height: 96px; border-radius: 24px;
  background: rgba(255, 247, 148, 0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  color: var(--yellow);
  border: 1px solid rgba(255, 247, 148, 0.2);
}

/* ========== Occasions ribbon ========== */
.occasions {
  padding: var(--section-py) 0;
  background: var(--bg);
  overflow: hidden;
}
.occasions .heading { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.occasions .heading h2 { font-size: clamp(36px, 5vw, 60px); margin-top: 18px; margin-bottom: 16px; }
.occasions .heading p { color: var(--muted); font-size: 17px; }

.occ-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}
.occ-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px 20px 28px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
  cursor: default;
  position: relative;
}
.occ-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -16px rgba(74, 87, 214, 0.22);
  background: #fff;
}
.occ-card:nth-child(1):hover { background: var(--cream); }
.occ-card:nth-child(2):hover { background: var(--mint); }
.occ-card:nth-child(3):hover { background: var(--lilac-soft); }
.occ-card:nth-child(4):hover { background: var(--yellow-soft); }
.occ-card:nth-child(5):hover { background: var(--sky); }
.occ-card:nth-child(6):hover { background: var(--peach); }
.occ-card:nth-child(7):hover { background: var(--rose); }
.occ-card:nth-child(8):hover { background: var(--cream); }

.occ-card img { width: 64px; height: 64px; }
.occ-card .label { font-size: 15px; font-weight: 600; color: var(--ink); }

/* ========== CTA / download ========== */
.cta-section {
  padding: var(--section-py) 0;
  background: var(--peach);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: var(--peach);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0,80 L0,40 C180,80 360,0 720,30 C1080,60 1260,10 1440,50 L1440,80 Z' fill='black'/%3E%3C/svg%3E") no-repeat top center / 100% 100%;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0,80 L0,40 C180,80 360,0 720,30 C1080,60 1260,10 1440,50 L1440,80 Z' fill='black'/%3E%3C/svg%3E") no-repeat top center / 100% 100%;
  transform: translateY(-80px);
  pointer-events: none;
}
.cta-card {
  max-width: 1100px; margin: 0 auto;
  background: linear-gradient(135deg, var(--lilac) 0%, var(--lilac-deep) 100%);
  border-radius: 48px;
  padding: clamp(56px, 8vw, 96px) clamp(40px, 8vw, 80px);
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
}
.cta-card::before {
  content: "";
  position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,247,148,0.35) 0%, transparent 70%);
  top: -200px; right: -100px;
}
.cta-card::after {
  content: "";
  position: absolute;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 70%);
  bottom: -150px; left: -80px;
}
.cta-card > * { position: relative; z-index: 1; }
.cta-card .smiley {
  display: inline-block;
  margin-bottom: 24px;
  animation: bob 4s ease-in-out infinite;
}
.cta-card h2 {
  color: #fff;
  font-size: clamp(36px, 5vw, 60px);
  margin-bottom: 14px;
}
.cta-card p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  margin: 0 auto 40px;
}

.stores { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 26px;
  background: #0B0B24;
  color: #fff;
  border-radius: 16px;
  transition: transform 0.1s, background 0.2s;
}
.store-btn:hover { background: #000; transform: translateY(-2px); }
.store-btn svg { width: 28px; height: 28px; }
.store-btn .txt { text-align: left; }
.store-btn .txt .sm { display: block; font-size: 11px; opacity: 0.8; line-height: 1; }
.store-btn .txt .lg { display: block; font-size: 16px; font-weight: 700; line-height: 1.3; }

/* ========== Footer ========== */
.site-footer {
  padding: 80px 0 50px;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.site-footer .row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
.site-footer .brand img { height: 28px; margin-bottom: 16px; }
.site-footer .brand p { font-size: 14px; color: var(--muted); max-width: 300px; line-height: 1.6; }
.site-footer .col h4 {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 16px;
}
.site-footer .col a {
  display: block;
  font-size: 14px;
  color: var(--muted);
  padding: 4px 0;
  transition: color 0.2s;
}
.site-footer .col a:hover { color: var(--lilac-deep); }
.site-footer .col a.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.site-footer .bottom {
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
  color: var(--muted-2);
}

/* ========== Falling gifts parallax ========== */
.gift-rain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
  z-index: 0;
}
.gift-rain img {
  position: absolute;
  opacity: 0.08;
  filter: saturate(0.8);
  will-change: transform;
}

/* ========== Reveal animations ========== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(.22,.61,.36,1), transform 0.8s cubic-bezier(.22,.61,.36,1);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.7s, transform 0.7s; }
.reveal-stagger.in > * { opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.40s; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: 0.47s; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: 0.54s; }

/* ========== Responsive ========== */
@media (max-width: 960px) {
  :root { --section-py: 96px; }
  .hero-v1 .hero-grid,
  .hero-v3 .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-v1 .phone-stage { height: 540px; }
  .hero-v2 .phone-row { gap: 12px; padding: 0 16px; }
  .story-row { grid-template-columns: 1fr; gap: 40px; }
  .story-row:nth-child(even) .story-text,
  .story-row:nth-child(even) .story-phone-wrap { order: initial; }
  .hero-v3 .phone { width: 320px; }
  .story-phone { width: 300px; }
  .feat-lg, .feat-sm, .feat-wide, .feat-privacy { grid-column: span 6; }
  .feat-qr .visual { position: static; right: auto; bottom: auto; margin: 24px auto 0; }
  .metrics .row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .occ-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer .row { grid-template-columns: 1fr 1fr; }
  .site-header nav { display: none; }
}

@media (max-width: 640px) {
  .hero { padding-top: 120px; }
  .hero h1 { font-size: 44px; }
  .store-btn { width: 100%; max-width: 280px; }
  .hero-v2 .phone-row { flex-direction: column; align-items: center; }
  .hero-v2 .phone:nth-child(1), .hero-v2 .phone:nth-child(3) { transform: none; }
  .occ-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .site-footer .bottom { flex-direction: column; gap: 12px; }
  .site-footer .row { grid-template-columns: 1fr 1fr; }
}
