scroll-margin-top:root {
  --ink: #101010;
  --muted: #66645f;
  --gold: #d99a1d;
  --gold-dark: #b97800;
  --gold-soft: #fff6df;
  --paper: #fbfaf7;
  --white: #ffffff;
  --line: rgba(16, 16, 16, 0.09);
  --shadow: 0 24px 70px rgba(25, 20, 10, 0.12);
  --radius: 30px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section { padding: 110px 0; }
.soft-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(217,154,29,.12), transparent 27%),
    linear-gradient(180deg, #fff, #f7f3ea);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(16,16,16,.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-weight: 800;
  letter-spacing: .02em;
}
.brand img {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  object-fit: cover;
  box-shadow: 0 4px 18px rgba(217,154,29,.2);
}
.brand span { line-height: 1.1; }
.brand b { display: block; color: #f6b52c; }

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  color: rgba(255,255,255,.8);
  font-size: .92rem;
  font-weight: 600;
}
.main-nav a:hover { color: white; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f0b438, #c98209);
  color: white;
  font-weight: 800;
  box-shadow: 0 14px 35px rgba(217,154,29,.28);
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(217,154,29,.36); }
.btn-small { min-height: 44px; padding-inline: 18px; font-size: .9rem; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(255,255,255,.98), rgba(252,249,241,.9)),
    url("assets/brand-artwork.png") center/cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(217,154,29,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217,154,29,.055) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, black, transparent 72%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  align-items: center;
  gap: 70px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .76rem;
  color: var(--gold-dark);
  font-weight: 800;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin: 18px 0 24px;
  font-size: clamp(3rem, 6vw, 5.7rem);
  line-height: .98;
  letter-spacing: -.055em;
  max-width: 760px;
}
h1 span { color: var(--gold); }
.hero-lead {
  color: var(--muted);
  font-size: 1.13rem;
  max-width: 640px;
}
.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 32px;
}
.store-button {
  min-width: 180px;
  min-height: 60px;
  padding: 9px 16px;
  border-radius: 14px;
  background: #111;
  color: white;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(0,0,0,.16);
}
.store-button small { display: block; font-size: .68rem; line-height: 1.2; }
.store-button strong { display: block; font-size: 1.06rem; line-height: 1.2; }
.store-icon { font-size: 2rem; line-height: 1; }
.play-triangle { color: #f5b52e; font-size: 1.55rem; }

.hero-proof {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-proof div { display: grid; }
.hero-proof strong { font-size: 1rem; }
.hero-proof span { color: var(--muted); font-size: .82rem; }

.phones-stage {
  position: relative;
  min-height: 630px;
}
.phone {
  position: absolute;
  width: min(310px, 48%);
  padding: 10px;
  border-radius: 42px;
  background: #111;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.phone img {
  width: 100%;
  border-radius: 32px;
}
.phone-left {
  left: 7%;
  top: 3%;
  transform: rotate(-5deg);
}
.phone-right {
  right: 3%;
  top: 10%;
  transform: rotate(6deg);
}
.floating-card {
  position: absolute;
  padding: 14px 18px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 18px;
  box-shadow: 0 14px 35px rgba(23,18,7,.14);
  font-weight: 700;
  font-size: .88rem;
}
.card-live { left: 0; bottom: 12%; }
.card-smart { right: 2%; bottom: 2%; color: var(--gold-dark); }
.status-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 50%;
  background: #2bb673;
  box-shadow: 0 0 0 6px rgba(43,182,115,.13);
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 55px;
}
.section-heading h2,
.join-copy h2,
.about-card h2,
.final-cta h2 {
  margin: 14px 0 16px;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}
.section-heading p,
.join-copy > p,
.about-card p { color: var(--muted); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card {
  padding: 32px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(35,27,10,.07);
}
.feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--gold-soft);
  font-size: 1.5rem;
  margin-bottom: 22px;
}
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { margin-bottom: 0; color: var(--muted); }

.join-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 72px;
}
.steps { list-style: none; padding: 0; margin: 34px 0 0; }
.steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  margin-bottom: 22px;
}
.steps li > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: #111;
  color: white;
  font-weight: 800;
}
.steps p { margin: 3px 0 0; color: var(--muted); }

.video-shell {
  border-radius: 30px;
  padding: 12px;
  background: #121212;
  box-shadow: var(--shadow);
}
.video-shell video {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 22px;
}
.video-note {
  color: rgba(255,255,255,.68);
  font-size: .78rem;
  padding: 10px 8px 2px;
}
.video-note code { color: #f5b52e; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review-card {
  padding: 32px;
  background: white;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(25,20,10,.06);
}
.stars { color: var(--gold); letter-spacing: .12em; margin-bottom: 18px; }
.review-card p { font-size: 1.03rem; }
.review-card strong, .review-card span { display: block; }
.review-card span { color: var(--muted); font-size: .9rem; }

.about-section { padding-top: 90px; }
.about-card {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 34px;
  align-items: center;
  padding: 42px;
  border-radius: 32px;
  background: linear-gradient(135deg, #171717, #2a251c);
  color: white;
  box-shadow: var(--shadow);
}
.about-card img {
  width: 110px;
  height: 110px;
  border-radius: 28px;
  object-fit: cover;
}
.about-card p { margin-bottom: 0; color: rgba(255,255,255,.7); }

.faq-wrap { max-width: 900px; }
.faq-list details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0 22px;
  margin-bottom: 14px;
  box-shadow: 0 12px 28px rgba(30,25,15,.04);
}
.faq-list summary {
  cursor: pointer;
  padding: 20px 0;
  font-weight: 800;
}
.faq-list p { color: var(--muted); padding-bottom: 20px; margin: 0; }

.final-cta {
  padding: 72px 0;
  background:
    linear-gradient(120deg, rgba(16,16,16,.96), rgba(16,16,16,.84)),
    url("assets/brand-artwork.png") center/cover;
  color: white;
}
.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.final-cta p { margin-bottom: 0; color: rgba(255,255,255,.7); }
.btn-light { background: white; color: #111; box-shadow: none; }

footer {
  background: #0e0e0e;
  color: white;
  padding: 72px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 50px;
}
.footer-grid h4 { margin-bottom: 16px; }
.footer-grid a:not(.brand) {
  display: block;
  color: rgba(255,255,255,.65);
  margin: 9px 0;
}
.footer-grid a:hover { color: white; }
.footer-brand p { color: rgba(255,255,255,.56); max-width: 280px; }
.footer-bottom {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.5);
  font-size: .88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }

@media (max-width: 980px) {
  .nav-download { display: none; }
  .menu-toggle {
    display: grid;
    gap: 5px;
    margin-left: auto;
    border: 0;
    background: transparent;
    padding: 8px;
  }
  .menu-toggle span { width: 24px; height: 2px; background: white; }
  .main-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 84px;
    display: none;
    padding: 20px;
    border-radius: 20px;
    background: #161616;
    box-shadow: 0 22px 50px rgba(0,0,0,.26);
  }
  .main-nav.open { display: grid; gap: 16px; }
  .hero-grid, .join-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 90px; }
  .phones-stage { min-height: 620px; }
  .features-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .about-card { grid-template-columns: 90px 1fr; }
  .about-card .btn { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, 1180px); }
  .section { padding: 80px 0; }
  .hero { padding-top: 58px; }
  h1 { font-size: clamp(2.8rem, 14vw, 4.5rem); }
  .hero-lead { font-size: 1rem; }
  .store-button { width: 100%; }
  .hero-proof { gap: 18px; }
  .phones-stage { min-height: 510px; margin-top: 10px; }
  .phone { width: 53%; border-radius: 30px; padding: 7px; }
  .phone img { border-radius: 23px; }
  .phone-left { left: 1%; top: 4%; }
  .phone-right { right: 0; top: 10%; }
  .floating-card { font-size: .72rem; padding: 10px 12px; }
  .features-grid, .reviews-grid { grid-template-columns: 1fr; }
  .feature-card, .review-card { padding: 26px; }
  .join-grid { gap: 40px; }
  .about-card { grid-template-columns: 1fr; text-align: left; padding: 28px; }
  .about-card img { width: 88px; height: 88px; }
  .final-cta-inner { display: grid; }
  .footer-grid { grid-template-columns: 1fr; }
}


/* Offset anchor links to account for the fixed header */
section,
#download {
    scroll-margin-top: 110px;
}