/* ============================================================
   Inkora — marketing landing
   Dark studio aesthetic · gold accent · editorial serif display
   ============================================================ */

:root {
  --bg:        #1a1b20;
  --bg-2:      #202127;
  --surface:   #24252c;
  --surface-2: #2c2d35;
  --border:    #34353d;
  --border-2:  #42434d;
  --text:      #f4f4f6;
  --muted:     #aeaeba;
  --faint:     #7a7a86;
  --gold:      #d6b25e;
  --gold-h:    #ecc978;
  --gold-ink:  #1a1408;
  --maxw:      1120px;
  --serif:     "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans:      -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Fine film grain over the whole page for a studio-print feel */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: .5; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
}
.nav, .hero-copy, .hero-visual, section > .wrap, .footer > .wrap { position: relative; z-index: 2; }

/* Visible keyboard focus */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}

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

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.serif { font-family: var(--serif); font-weight: 600; }
.gold  { color: var(--gold); }

/* Section rhythm */
section { position: relative; padding: 100px 0; }
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 18px;
}
.section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
}
.section-lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 620px;
  margin: 0;
}
.center { text-align: center; }
.center .section-lead { margin-inline: auto; }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 30px;
  border-radius: 999px;
  font-size: 0.98rem; font-weight: 600;
  font-family: var(--sans);
  cursor: pointer; border: 1px solid transparent;
  transition: transform .16s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(180deg, var(--gold-h), var(--gold));
  color: var(--gold-ink);
  box-shadow: 0 10px 34px -12px rgba(214,178,94,.6);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(214,178,94,.75); }
.btn-ghost {
  background: rgba(255,255,255,.02);
  color: var(--text);
  border-color: var(--border-2);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-lg { padding: 17px 38px; font-size: 1.02rem; }

/* ── App-store badges ──────────────────────────────────── */
.store-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.store-badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 20px 10px 17px; min-width: 188px;
  border-radius: 14px;
  background: linear-gradient(180deg, #23242b, #141519);
  border: 1px solid var(--border-2);
  color: var(--text);
  box-shadow: 0 12px 30px -18px rgba(0,0,0,.9), 0 0 0 1px rgba(255,255,255,.02) inset;
  transition: transform .16s ease, border-color .2s ease, box-shadow .2s ease;
}
.store-badge:hover { transform: translateY(-2px); border-color: var(--gold); box-shadow: 0 18px 38px -18px rgba(214,178,94,.4); }
.store-badge .logo { width: 27px; height: 27px; flex: 0 0 auto; }
.store-badge .logo svg { width: 100%; height: 100%; display: block; }
.store-badge .txt { display: flex; flex-direction: column; line-height: 1.12; }
.store-badge .txt small {
  font-size: .64rem; letter-spacing: .6px; text-transform: uppercase;
  color: var(--faint); font-weight: 600;
}
.store-badge .txt b { font-size: 1.05rem; font-weight: 600; letter-spacing: .2px; }
.store-badge.soon { opacity: .62; cursor: default; }
.store-badge.soon:hover { transform: none; border-color: var(--border-2); box-shadow: 0 12px 30px -18px rgba(0,0,0,.9); }
.store-badge .pill-soon {
  margin-left: 4px; font-size: .58rem; letter-spacing: .5px; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(214,178,94,.4); border-radius: 999px;
  padding: 2px 7px; font-weight: 700; align-self: center;
}

/* ── Nav ───────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  background: rgba(26,27,32,.66);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background .28s ease, border-color .28s ease, box-shadow .28s ease;
}
/* Compact, more defined bar once the page is scrolled */
.nav.scrolled {
  background: rgba(20,21,26,.86);
  border-bottom-color: rgba(255,255,255,.09);
  box-shadow: 0 12px 34px -20px rgba(0,0,0,.85);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; transition: height .28s ease; }
.nav.scrolled .nav-inner { height: 62px; }

/* Brand */
.brand { display: flex; align-items: center; gap: 11px; font-weight: 700; letter-spacing: .3px; }
.brand-mark {
  width: 36px; height: 36px; padding: 5px; border-radius: 11px;
  background: linear-gradient(160deg, rgba(214,178,94,.18), rgba(214,178,94,.02));
  border: 1px solid rgba(214,178,94,.24);
  box-shadow: 0 6px 18px -10px rgba(214,178,94,.55);
  transition: transform .22s ease, box-shadow .22s ease;
}
.brand:hover .brand-mark { transform: translateY(-1px) rotate(-3deg); box-shadow: 0 10px 24px -10px rgba(214,178,94,.75); }
.brand-name { font-size: 1.18rem; }
.brand-name .serif { font-size: 1.4rem; letter-spacing: .5px; }

/* Desktop link rail */
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a.navlink {
  position: relative;
  color: var(--muted); font-size: .93rem; font-weight: 500;
  padding: 9px 13px; border-radius: 999px; white-space: nowrap;
  transition: color .18s ease, background .18s ease;
}
.nav-links a.navlink:hover { color: var(--text); background: rgba(255,255,255,.05); }
.nav-links a.navlink.active { color: var(--gold); }
.nav-links a.navlink.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  border-radius: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.nav-links .nav-cta { margin-left: 10px; }
.nav-cta { padding: 10px 22px; font-size: .9rem; }

/* Burger — animates into an X when open */
.nav-burger {
  display: none;
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,.04); border: 1px solid var(--border-2);
  color: var(--text); cursor: pointer;
  align-items: center; justify-content: center;
  transition: background .2s ease, border-color .2s ease;
}
.nav-burger:hover { background: rgba(255,255,255,.08); border-color: var(--gold); }
.nav-burger svg { width: 24px; height: 24px; }
.nav-burger .bar { transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .18s ease; transform-origin: center; }
.nav-burger[aria-expanded="true"] .bar-t { transform: translateY(4px) rotate(45deg); }
.nav-burger[aria-expanded="true"] .bar-m { opacity: 0; }
.nav-burger[aria-expanded="true"] .bar-b { transform: translateY(-4px) rotate(-45deg); }

/* Dim backdrop behind the open mobile menu */
.nav-backdrop {
  position: fixed; inset: 0; z-index: 48;
  background: rgba(10,10,13,.55); -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.nav-backdrop.open { opacity: 1; pointer-events: auto; }

/* Mobile menu is hidden on desktop; the media query below turns it on */
.nav-menu { display: none; }
body.nav-open { overflow: hidden; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }

  /* Slide-down mobile menu — sits under the sticky bar, above the backdrop */
  .nav-menu {
    position: fixed; inset: 0 0 auto 0; z-index: 49;
    background: linear-gradient(180deg, rgba(25,26,31,.99), rgba(19,20,24,.99));
    -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 28px 54px -26px rgba(0,0,0,.9);
    display: flex; flex-direction: column; gap: 2px;
    padding: 88px 22px 28px;
    transform: translateY(-100%); pointer-events: none;
    transition: transform .34s cubic-bezier(.4,0,.2,1);
  }
  .nav-menu.open { transform: none; pointer-events: auto; }

  /* Links & controls fade in with a gentle stagger once the sheet is open */
  .nav-menu > * {
    opacity: 0; transform: translateY(-8px);
    transition: opacity .3s ease, transform .3s ease;
  }
  .nav-menu.open > * { opacity: 1; transform: none; }
  .nav-menu.open > *:nth-child(1) { transition-delay: .05s; }
  .nav-menu.open > *:nth-child(2) { transition-delay: .09s; }
  .nav-menu.open > *:nth-child(3) { transition-delay: .13s; }
  .nav-menu.open > *:nth-child(4) { transition-delay: .17s; }
  .nav-menu.open > *:nth-child(5) { transition-delay: .21s; }
  .nav-menu.open > *:nth-child(6) { transition-delay: .25s; }
  .nav-menu.open > *:nth-child(7) { transition-delay: .29s; }
  .nav-menu.open > *:nth-child(8) { transition-delay: .33s; }

  .nav-menu a.navlink {
    display: flex; align-items: center; justify-content: space-between;
    color: var(--text); font-size: 1.08rem; font-weight: 500;
    padding: 15px 6px; border-bottom: 1px solid var(--border);
    transition: color .18s ease;
  }
  .nav-menu a.navlink::after {
    content: "→"; color: var(--faint); font-size: .95rem;
    opacity: 0; transform: translateX(-6px); transition: opacity .18s ease, transform .18s ease;
  }
  .nav-menu a.navlink:hover, .nav-menu a.navlink:active { color: var(--gold); }
  .nav-menu a.navlink:hover::after { opacity: 1; transform: none; }
  .nav-menu .btn { margin-top: 18px; width: 100%; padding: 15px 24px; font-size: 1rem; }
}

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  padding: 84px 0 90px;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 55% at 78% 18%, rgba(214,178,94,.14), transparent 60%),
    radial-gradient(50% 45% at 12% 8%, rgba(214,178,94,.06), transparent 60%);
  pointer-events: none;
  animation: heroGlow 12s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  from { opacity: .75; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.06); }
}
@media (prefers-reduced-motion: reduce) { .hero::before { animation: none; } }
.hero-grid {
  position: relative;
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 56px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px; border-radius: 999px;
  border: 1px solid var(--border-2);
  background: rgba(255,255,255,.02);
  font-size: .8rem; color: var(--muted); margin-bottom: 26px;
}
.hero-badge b { color: var(--gold); font-weight: 600; }
.hero h1 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(2.6rem, 5.4vw, 4.3rem);
  line-height: 1.04; letter-spacing: -0.015em;
  margin: 0 0 22px;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  color: var(--muted); font-size: 1.16rem; max-width: 500px; margin: 0 0 34px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 30px; display: flex; gap: 26px; flex-wrap: wrap;
  color: var(--faint); font-size: .84rem;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust .dot { color: var(--gold); }
.hero-rating {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 22px;
  padding: 8px 15px; border-radius: 999px;
  background: rgba(214,178,94,.07); border: 1px solid rgba(214,178,94,.2);
}
.hero-rating .stars { color: var(--gold); letter-spacing: 1px; font-size: .95rem; }
.hero-rating .rate-txt { color: var(--muted); font-size: .82rem; }
.hero-rating .rate-txt b { color: var(--text); font-weight: 600; }

/* Hero visual — phone-ish stacked cards */
.hero-visual { position: relative; }
.hero-frame {
  position: relative; border-radius: 26px; overflow: hidden;
  border: 1px solid var(--border-2);
  background: var(--surface);
  box-shadow: 0 40px 90px -40px rgba(0,0,0,.9), 0 0 0 1px rgba(255,255,255,.02) inset;
  aspect-ratio: 1 / 1;
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-frame-cap {
  position: absolute; left: 16px; bottom: 16px; right: 16px;
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 15px; border-radius: 14px;
  background: rgba(26,27,32,.62); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.08);
  font-size: .82rem;
}
.hero-frame-cap b { color: var(--gold); font-weight: 600; }
.hero-chip {
  position: absolute; z-index: 3;
  background: var(--surface-2); border: 1px solid var(--border-2);
  border-radius: 14px; padding: 12px 16px;
  box-shadow: 0 20px 50px -22px rgba(0,0,0,.85);
  font-size: .84rem; font-weight: 600;
  display: flex; align-items: center; gap: 9px;
}
.hero-chip small { display: block; color: var(--muted); font-weight: 400; font-size: .74rem; }
.hero-chip .ic { color: var(--gold); font-size: 1.1rem; }
.hero-chip.c1 { top: 22px; left: -26px; animation: floaty 6s ease-in-out infinite; }
.hero-chip.c2 { bottom: 60px; right: -22px; animation: floaty 6s ease-in-out infinite 1.4s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@media (prefers-reduced-motion: reduce) { .hero-chip.c1, .hero-chip.c2 { animation: none; } }
/* Soft gold ring behind the hero frame for depth */
.hero-visual::before {
  content: ""; position: absolute; z-index: 0;
  inset: -14% -10% -10% -6%;
  background: radial-gradient(closest-side, rgba(214,178,94,.18), transparent 72%);
  filter: blur(8px); pointer-events: none;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero { padding: 56px 0 70px; }
  .hero-chip.c1 { left: 8px; }
  .hero-chip.c2 { right: 8px; }
  .hero-sub { margin-inline: 0; }
}

/* ── Marquee stats ─────────────────────────────────────── */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  padding: 34px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat .num { font-family: var(--serif); font-weight: 600; font-size: 2.2rem; color: var(--gold); line-height: 1; }
.stat .lbl { color: var(--muted); font-size: .86rem; margin-top: 8px; }
@media (max-width: 620px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; } }

/* ── Features ──────────────────────────────────────────── */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 54px;
}
.feature {
  padding: 30px 26px; border-radius: 18px;
  background: var(--surface); border: 1px solid var(--border);
  transition: border-color .2s, transform .2s, background .2s;
}
.feature:hover { border-color: var(--border-2); transform: translateY(-3px); background: var(--surface-2); }
.feature-ic {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 18px;
  background: rgba(214,178,94,.1); border: 1px solid rgba(214,178,94,.24);
  color: var(--gold);
}
.feature-ic svg { width: 23px; height: 23px; }
.feature h3 { margin: 0 0 8px; font-size: 1.14rem; font-weight: 600; }
.feature p { margin: 0; color: var(--muted); font-size: .95rem; }
@media (max-width: 860px) { .features-grid { grid-template-columns: 1fr; } }

/* ── How it works ──────────────────────────────────────── */
.how { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px;
}
.step {
  border-radius: 20px; overflow: hidden;
  background: var(--surface); border: 1px solid var(--border);
}
.step-media { aspect-ratio: 1 / 1; background: #f4f2ee; position: relative; overflow: hidden; }
.step-media img { width: 100%; height: 100%; object-fit: cover; }
.step-media.dark { background: var(--surface-2); }
.step-badge {
  position: absolute; top: 14px; left: 14px;
  width: 34px; height: 34px; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(26,27,32,.72); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--gold); font-weight: 700; font-family: var(--serif); font-size: 1.15rem;
}
.step-tag {
  position: absolute; bottom: 12px; right: 12px;
  padding: 5px 11px; border-radius: 999px; font-size: .72rem; font-weight: 600;
  background: rgba(26,27,32,.72); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.12); color: var(--text);
}
.step-body { padding: 22px 22px 26px; }
.step-body h3 { margin: 0 0 7px; font-size: 1.16rem; }
.step-body p { margin: 0; color: var(--muted); font-size: .93rem; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } }

/* ── Split (artists / clients) ─────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 54px; }
.panel {
  padding: 40px 36px; border-radius: 22px;
  border: 1px solid var(--border); background: var(--surface);
  position: relative; overflow: hidden;
}
.panel.artists { background: linear-gradient(160deg, rgba(214,178,94,.09), var(--surface) 55%); border-color: rgba(214,178,94,.2); }
.panel h3 { font-family: var(--serif); font-weight: 600; font-size: 1.7rem; margin: 0 0 6px; }
.panel .who { color: var(--gold); font-size: .8rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; margin-bottom: 16px; }
.panel ul { list-style: none; margin: 20px 0 0; padding: 0; }
.panel li { display: flex; gap: 12px; padding: 10px 0; color: var(--muted); font-size: .97rem; border-top: 1px solid var(--border); }
.panel li:first-child { border-top: none; }
.panel li .tick { color: var(--gold); flex: 0 0 auto; margin-top: 3px; }
.panel li b { color: var(--text); font-weight: 600; }
@media (max-width: 780px) { .split { grid-template-columns: 1fr; } }

/* ── Gallery ───────────────────────────────────────────── */
.gallery {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin-top: 52px;
}
.gcard {
  border-radius: 16px; overflow: hidden; background: #f4f2ee;
  border: 1px solid var(--border); aspect-ratio: 1 / 1;
  transition: transform .25s ease, box-shadow .25s ease;
}
.gcard img { width: 100%; height: 100%; object-fit: cover; }
.gcard:hover { transform: translateY(-4px) scale(1.015); box-shadow: 0 24px 50px -26px rgba(0,0,0,.8); }
.gcard.span2 { grid-column: span 2; grid-row: span 2; }
@media (max-width: 860px) {
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .gcard.span2 { grid-column: span 2; grid-row: span 2; }
}
@media (max-width: 520px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gcard.span2 { grid-column: span 2; grid-row: auto; aspect-ratio: 1/1; }
}

/* ── Download / mobile app band ────────────────────────── */
.download {
  background:
    radial-gradient(75% 120% at 84% 20%, rgba(214,178,94,.13), transparent 62%),
    var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.download-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.download-copy .eyebrow { margin-bottom: 16px; }
.download-copy h2 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem); line-height: 1.08; letter-spacing: -0.01em; margin: 0 0 16px;
}
.download-copy p { color: var(--muted); font-size: 1.08rem; max-width: 500px; margin: 0 0 30px; }
.download .store-badges { margin-bottom: 20px; }
.download-perks { display: flex; gap: 22px; flex-wrap: wrap; color: var(--faint); font-size: .84rem; }
.download-perks span { display: inline-flex; align-items: center; gap: 7px; }
.download-perks .dot { color: var(--gold); }

/* Phone mockup */
.phone-wrap { position: relative; display: flex; justify-content: center; }
.phone-wrap::before {
  content: ""; position: absolute; inset: -8% -4% -6% -4%; z-index: 0;
  background: radial-gradient(closest-side, rgba(214,178,94,.2), transparent 72%);
  filter: blur(10px); pointer-events: none;
}
.phone {
  position: relative; z-index: 1;
  width: 270px; max-width: 78vw; aspect-ratio: 9 / 19;
  border-radius: 40px; padding: 11px;
  background: linear-gradient(160deg, #2c2d35, #17181c);
  border: 1px solid var(--border-2);
  box-shadow: 0 50px 100px -40px rgba(0,0,0,.95), 0 0 0 1px rgba(255,255,255,.03) inset;
}
.phone-screen {
  position: relative; width: 100%; height: 100%; border-radius: 30px; overflow: hidden;
  background: #f4f2ee; border: 1px solid rgba(0,0,0,.4);
}
.phone-screen img { width: 100%; height: 100%; object-fit: cover; }
.phone-notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%); z-index: 2;
  width: 92px; height: 22px; border-radius: 999px; background: #0d0e11;
  border: 1px solid rgba(255,255,255,.06);
}
.phone-cap {
  position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 2;
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 14px; border-radius: 14px;
  background: rgba(20,21,25,.66); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.09); font-size: .78rem; color: var(--text);
}
.phone-cap b { color: var(--gold); font-weight: 600; }
@media (max-width: 900px) {
  .download-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .download-copy p { margin-inline: auto; }
  .download .store-badges, .download-perks { justify-content: center; }
}

/* ── CTA band ──────────────────────────────────────────── */
.cta {
  text-align: center;
  background:
    radial-gradient(70% 120% at 50% 0%, rgba(214,178,94,.16), transparent 60%),
    var(--bg-2);
  border-top: 1px solid var(--border);
}
.cta h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(2.1rem, 4.6vw, 3.4rem); line-height: 1.06; margin: 0 auto 18px; max-width: 720px; }
.cta p { color: var(--muted); font-size: 1.1rem; max-width: 520px; margin: 0 auto 34px; }
.cta .btn-gold { }
.cta-note { margin-top: 20px; color: var(--faint); font-size: .84rem; }

/* ── Footer ────────────────────────────────────────────── */
.footer { padding: 60px 0 40px; border-top: 1px solid var(--border); background: var(--bg); }
.footer-top { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.footer-brand { max-width: 300px; }
.footer-brand p { color: var(--muted); font-size: .92rem; margin: 14px 0 0; }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h4 { font-size: .78rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--faint); margin: 0 0 14px; font-weight: 600; }
.footer-col a { display: block; color: var(--muted); font-size: .92rem; padding: 5px 0; transition: color .18s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 46px; padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: var(--faint); font-size: .84rem;
}

/* ── Testimonials ──────────────────────────────────────── */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 54px; }
.quote {
  padding: 30px 28px; border-radius: 18px;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; flex-direction: column;
}
.quote .stars { color: var(--gold); letter-spacing: 2px; font-size: .9rem; margin-bottom: 14px; }
.quote p { margin: 0 0 22px; font-size: 1.02rem; color: var(--text); font-family: var(--serif); font-weight: 500; line-height: 1.45; }
.quote .by { margin-top: auto; display: flex; align-items: center; gap: 12px; }
.quote .av {
  width: 42px; height: 42px; border-radius: 50%; flex: 0 0 auto;
  display: grid; place-items: center; font-weight: 700; color: var(--gold-ink);
  background: linear-gradient(180deg, var(--gold-h), var(--gold)); font-size: 1rem;
}
.quote .by .n { font-weight: 600; font-size: .95rem; }
.quote .by .r { color: var(--muted); font-size: .82rem; }
@media (max-width: 860px) { .quotes { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }

/* ── FAQ ───────────────────────────────────────────────── */
.faq { max-width: 760px; margin: 50px auto 0; }
.faq-item {
  border: 1px solid var(--border); border-radius: 14px;
  background: var(--surface); margin-bottom: 12px; overflow: hidden;
  transition: border-color .2s;
}
.faq-item[open] { border-color: var(--border-2); }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 20px 22px; font-weight: 600; font-size: 1.05rem;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  flex: 0 0 auto; width: 24px; height: 24px; position: relative; color: var(--gold);
  transition: transform .25s ease;
}
.faq-item summary .plus::before,
.faq-item summary .plus::after {
  content: ""; position: absolute; background: currentColor; border-radius: 2px;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.faq-item summary .plus::before { width: 14px; height: 2px; }
.faq-item summary .plus::after  { width: 2px; height: 14px; transition: opacity .25s; }
.faq-item[open] summary .plus { transform: rotate(90deg); }
.faq-item[open] summary .plus::after { opacity: 0; }
.faq-item .faq-a { padding: 0 22px 22px; color: var(--muted); font-size: .98rem; }

/* ── Sticky mobile CTA ─────────────────────────────────── */
.mobile-cta {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(26,27,32,0), rgba(26,27,32,.92) 34%);
  /* Скрыта, пока видна hero-кнопка (иначе две одинаковые CTA вверху). */
  transform: translateY(120%); opacity: 0; pointer-events: none;
  transition: transform .35s ease, opacity .35s ease;
}
.mobile-cta.show { transform: none; opacity: 1; pointer-events: auto; }
.mobile-cta .btn { width: 100%; }
@media (max-width: 780px) { .mobile-cta { display: block; } .footer { padding-bottom: 96px; } }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
/* Staggered children inside a revealed grid */
.reveal.stagger.in > * { animation: rise .6s ease both; }
.reveal.stagger.in > *:nth-child(1) { animation-delay: .04s; }
.reveal.stagger.in > *:nth-child(2) { animation-delay: .10s; }
.reveal.stagger.in > *:nth-child(3) { animation-delay: .16s; }
.reveal.stagger.in > *:nth-child(4) { animation-delay: .22s; }
.reveal.stagger.in > *:nth-child(5) { animation-delay: .28s; }
.reveal.stagger.in > *:nth-child(6) { animation-delay: .34s; }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .reveal.stagger.in > * { animation: none; }
  html { scroll-behavior: auto; }
}
