:root {
  --wine: #7a1f3d;
  --wine-dark: #4d1228;
  --cream: #fff8ee;
  --ink: #272329;
  --muted: #756a70;
  --gold: #c89b3c;
  --line: #f0e4d2;
  --radius: 18px;
  --shadow-sm: 0 2px 10px rgba(77, 18, 40, 0.07);
  --shadow-md: 0 10px 28px rgba(77, 18, 40, 0.12);
  --shadow-lg: 0 24px 60px rgba(77, 18, 40, 0.18);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
::selection { background: var(--wine); color: #fff; }
body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 22px; }
.eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--wine);
  background: rgba(122, 31, 61, 0.08);
  border-radius: 999px;
}
h1 { font-size: clamp(42px, 6vw, 68px); line-height: 1.05; margin: 0 0 18px; letter-spacing: -1px; }
h2 { font-size: clamp(26px, 3.4vw, 36px); margin: 0 0 26px; letter-spacing: -0.5px; }
.lede { font-size: 18px; color: var(--muted); max-width: 52ch; }

/* header */
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(255, 248, 238, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 18px rgba(77, 18, 40, 0.06);
}
.header-inner { display: flex; align-items: center; gap: 26px; min-height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark {
  display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: 11px;
  background: var(--wine); color: var(--gold);
}
.brand-name { font-size: 24px; font-weight: 800; color: var(--wine-dark); letter-spacing: -0.5px; }
.site-header nav { display: flex; gap: 20px; margin-left: auto; }
.skip-link { position: absolute; left: -9999px; top: 0; padding: 10px 16px; background: var(--wine); color: #fff; border-radius: 0 0 8px 0; z-index: 100; }
.skip-link:focus { left: 0; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, .store-btn:focus-visible {
  outline: 2px solid var(--wine);
  outline-offset: 3px;
}
.site-header nav a { color: var(--ink); text-decoration: none; font-weight: 600; font-size: 15px; }
.site-header nav a:hover { color: var(--wine); }

/* buttons */
.btn {
  display: inline-block; padding: 14px 28px;
  border-radius: 999px; font-weight: 700; text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--wine); color: #fff; box-shadow: 0 8px 22px rgba(122, 31, 61, 0.3); }
.btn-primary:hover { background: var(--wine-dark); box-shadow: 0 12px 28px rgba(77, 18, 40, 0.4); }
.btn-ghost { border: 2px solid var(--wine); color: var(--wine); background: transparent; }
.btn-ghost:hover { background: rgba(122, 31, 61, 0.08); }
.btn-small { padding: 9px 18px; font-size: 14px; background: var(--wine); color: #fff; }
.btn-small:hover { background: var(--wine-dark); }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin: 26px 0 14px; }
.age-note { font-size: 14px; color: var(--muted); }

/* hero */
.hero {
  padding: 70px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(600px 320px at 85% 20%, rgba(200, 155, 60, 0.14), transparent 70%),
    radial-gradient(700px 380px at 10% 90%, rgba(122, 31, 61, 0.08), transparent 70%);
}
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; }
.hero-visual { display: flex; justify-content: center; }
.phone {
  width: 270px; border-radius: 38px; padding: 18px 16px 22px;
  background: #fff; border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  transform: rotate(3deg);
  animation: phone-float 6s ease-in-out infinite;
}
@keyframes phone-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}
.phone-notch { width: 110px; height: 22px; margin: 0 auto 16px; border-radius: 999px; background: var(--ink); }
.phone-card {
  border-radius: var(--radius); padding: 22px 16px; text-align: center;
  background: linear-gradient(150deg, var(--wine-dark), var(--wine));
  color: #fff;
}
.phone-avatar {
  width: 64px; height: 64px; margin: 0 auto 10px; border-radius: 50%;
  display: grid; place-items: center; font-size: 28px; font-weight: 800;
  background: var(--cream); color: var(--wine);
}
.phone-name { margin: 0; font-size: 20px; font-weight: 800; }
.phone-city { margin: 2px 0 12px; font-size: 13px; opacity: 0.85; }
.phone-tags { display: flex; gap: 6px; justify-content: center; }
.phone-tags span { font-size: 11px; padding: 4px 10px; border-radius: 999px; background: rgba(255, 255, 255, 0.18); }
.phone-actions { display: flex; justify-content: center; gap: 16px; margin-top: 16px; }
.pa {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; font-size: 22px;
  background: #fff; border: 1px solid var(--line); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.pa-no { color: var(--ink); }
.pa-star { color: var(--gold); }
.pa-yes { color: var(--wine); }

/* sections */
.section { padding: 70px 0; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card {
  position: relative;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.22s ease;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--wine), var(--gold));
  opacity: 0;
  transition: opacity 0.22s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card:hover::before { opacity: 1; }
.card h3 { margin: 0 0 8px; color: var(--wine); }
.card p { margin: 0; color: var(--muted); font-size: 15px; }
.section-dark {
  background: linear-gradient(160deg, #3a0d1f, var(--wine-dark) 60%, #5c1830);
  color: #f7e9e5;
  border-radius: 28px;
  margin: 0 14px;
}
.section-dark .eyebrow { color: var(--gold); }
.section-dark h2 { color: #fff; }
.checks { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; max-width: 70ch; }
.checks li {
  padding: 12px 16px 12px 48px;
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
}
.checks li::before {
  content: "✓"; position: absolute; left: 14px; top: 12px;
  width: 24px; height: 24px; border-radius: 50%;
  display: grid; place-items: center; font-size: 13px; font-weight: 800;
  background: var(--gold); color: var(--wine-dark);
}
.checks strong { color: #fff; }

/* download */
.download { display: grid; gap: 26px; }
.store-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.store-btn {
  display: flex; flex-direction: column; justify-content: center;
  gap: 2px; padding: 18px 20px; border-radius: var(--radius);
  background: var(--ink); color: #fff; text-decoration: none;
  border: 1px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: transform 0.16s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.store-btn:hover { background: var(--wine); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.store-btn:active { transform: translateY(0); }
.store-primary { background: var(--wine); box-shadow: 0 8px 22px rgba(122, 31, 61, 0.3); }
.store-primary:hover { background: var(--wine-dark); }
.store-os { display: block; font-size: 12px; opacity: 0.7; }
.store-name { display: block; font-weight: 800; font-size: 17px; }

/* footer */
.site-footer { border-top: 3px solid var(--wine); padding: 34px 0; background: #fff; }
.footer-grid { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.muted { color: var(--muted); font-size: 14px; margin: 4px 0 0; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.policy { max-width: 780px; padding-top: 40px; padding-bottom: 60px; }
.policy .eyebrow, .policy h1, .policy h2, .policy p {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 20px 24px;
  margin: 0 0 14px;
}
.policy h1 { font-size: clamp(30px, 4vw, 42px); color: var(--wine-dark); }
.policy h2 { font-size: 22px; color: var(--wine); border-left: 5px solid var(--gold); border-radius: 0 var(--radius) var(--radius) 0; }
.policy p { color: var(--ink); }
.policy a { color: var(--wine); }
.footer-links a { color: var(--wine); font-weight: 600; text-decoration: none; font-size: 15px; }

/* responsive */
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .phone { width: 240px; transform: none; }
  .grid { grid-template-columns: 1fr 1fr; }
  .store-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .site-header nav { display: flex; gap: 12px; margin-left: auto; overflow-x: auto; }
  .site-header nav a { white-space: nowrap; font-size: 14px; }
  .header-inner { gap: 14px; }
  .grid { grid-template-columns: 1fr; }
  .hero { padding: 44px 0 54px; }
  .section { padding: 48px 0; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
  .phone { animation: none; }
}
