:root {
  --bg: #0b0a09;
  --bg-elevated: #141210;
  --ink: #f7f1ea;
  --muted: #b7aaa0;
  --accent: #ff5a1f;
  --accent-deep: #c41e1e;
  --accent-glow: rgba(255, 90, 31, 0.35);
  --line: rgba(247, 241, 234, 0.12);
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --max: 1120px;
  --radius-phone: 28px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(255, 90, 31, 0.18), transparent 55%),
    radial-gradient(900px 500px at 10% 20%, rgba(196, 30, 30, 0.12), transparent 50%),
    linear-gradient(180deg, #120e0c 0%, var(--bg) 40%, #080706 100%);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: #ffd2bf;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--ink);
  color: var(--bg);
  padding: 0.6rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

/* Header */
body.share-open-active {
  overflow: hidden;
}

body.share-open-active .site-header,
body.share-open-active .site-nav {
  pointer-events: none;
}

.share-open {
  position: fixed;
  inset: 0;
  z-index: 400;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 4.75rem 1rem 1.25rem;
  pointer-events: auto;
}

.share-open::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 7, 6, 0.78);
  pointer-events: none;
}

.share-open__poster {
  display: block;
  width: min(100%, 160px);
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 14px;
  margin: 0 auto 0.85rem;
  background: #1a1614;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.share-open__card {
  position: relative;
  z-index: 1;
  max-width: 26rem;
  width: 100%;
  text-align: center;
  background: rgba(20, 18, 16, 0.96);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.35rem 1.25rem 1.2rem;
  margin: 0 auto 1rem;
  pointer-events: auto;
}

.share-open__card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 6vw, 2.4rem);
  letter-spacing: 0.04em;
  margin: 0.25rem 0 0.55rem;
  line-height: 1.05;
}

.share-open__card p {
  color: var(--muted);
  margin: 0 0 1rem;
}

.share-open__actions {
  position: sticky;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  padding-top: 0.4rem;
}

.share-open__actions .btn {
  width: 100%;
  pointer-events: auto;
  position: relative;
  z-index: 2;
}

.share-open__store {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 0.85rem 1.25rem;
  background: linear-gradient(180deg, rgba(11, 10, 9, 0.92), rgba(11, 10, 9, 0.55) 70%, transparent);
  backdrop-filter: blur(8px);
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-mark img {
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.95rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
}

.site-nav a:hover {
  color: var(--ink);
}

.nav-cta {
  color: var(--ink) !important;
  border: 1px solid var(--line);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
}

.nav-cta:hover {
  border-color: rgba(255, 90, 31, 0.55);
  background: rgba(255, 90, 31, 0.12);
}

.site-header.is-solid {
  background: rgba(11, 10, 9, 0.92);
  border-bottom: 1px solid var(--line);
}

/* Hero — one composition, brand-first, full-bleed media */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__backdrop {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.06);
  animation: hero-drift 18s var(--ease) infinite alternate;
  filter: saturate(1.05) contrast(1.05);
}

.hero__wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 10, 9, 0.35) 0%, rgba(11, 10, 9, 0.2) 35%, rgba(11, 10, 9, 0.88) 72%, #0b0a09 100%),
    linear-gradient(90deg, rgba(11, 10, 9, 0.75) 0%, rgba(11, 10, 9, 0.25) 55%, rgba(11, 10, 9, 0.55) 100%),
    radial-gradient(ellipse at 70% 40%, transparent 0%, rgba(11, 10, 9, 0.45) 70%);
}

.hero__content {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 7.5rem 1.5rem 4.5rem;
}

.hero__brand {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 10vw, 6.5rem);
  letter-spacing: 0.04em;
  line-height: 0.92;
  color: #ff8a4c;
  background: linear-gradient(115deg, #fff 10%, #ffb089 45%, #ff5a1f 85%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 18px 40px var(--accent-glow));
}

@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero__brand {
    color: #ff8a4c;
    -webkit-text-fill-color: currentColor;
    background: none;
    filter: none;
    text-shadow: 0 20px 60px var(--accent-glow);
  }
}

.hero__headline {
  margin: 0 0 1rem;
  max-width: 14ch;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  letter-spacing: 0.03em;
  line-height: 1.05;
  font-weight: 400;
}

.hero__lead {
  margin: 0 0 1.75rem;
  max-width: 36rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 300;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.25s ease;
}

.btn--primary {
  color: #1a0b06;
  background: linear-gradient(135deg, #ffb088 0%, #ff5a1f 45%, #c41e1e 100%);
  box-shadow: 0 14px 40px var(--accent-glow);
}

.btn--primary:hover {
  color: #1a0b06;
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(255, 90, 31, 0.5);
}

.btn--ghost {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(11, 10, 9, 0.35);
  backdrop-filter: blur(6px);
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--ink);
}

.btn--large {
  min-height: 3.4rem;
  padding-inline: 1.7rem;
  font-size: 1.05rem;
}

.btn__icon {
  display: inline-flex;
}

/* Sections */
.section {
  padding: 5.5rem 1.5rem;
}

.section__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section__inner--narrow {
  max-width: 720px;
}

.section__head {
  max-width: 38rem;
  margin-bottom: 2.5rem;
}

.section__head h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: 0.03em;
  line-height: 1.05;
  font-weight: 400;
}

.section__head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 300;
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 2.5rem;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}

.feature-list h3 {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
  font-weight: 600;
}

.feature-list p {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
}

/* Phone rail — product imagery, not card chrome */
.phone-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 260px);
  gap: 1.25rem;
  overflow-x: auto;
  padding: 0.5rem 0 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.phone-rail::-webkit-scrollbar {
  height: 6px;
}

.phone-rail::-webkit-scrollbar-thumb {
  background: rgba(255, 90, 31, 0.45);
  border-radius: 999px;
}

.phone {
  margin: 0;
  scroll-snap-align: start;
}

.phone img {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-phone);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  background: #000;
}

.phone figcaption {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.genre-strip {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 0.75rem;
}

.genre-strip li {
  font-size: 0.95rem;
  color: var(--ink);
  border-bottom: 1px solid rgba(255, 90, 31, 0.55);
  padding: 0.15rem 0;
  letter-spacing: 0.02em;
}

/* CTA band */
.cta-band {
  position: relative;
  isolation: isolate;
  text-align: center;
  overflow: hidden;
}

.cta-band__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.cta-band__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1);
}

.cta-band__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 10, 9, 0.82), rgba(11, 10, 9, 0.9)),
    radial-gradient(circle at 50% 30%, rgba(255, 90, 31, 0.28), transparent 55%);
}

.cta-band__inner {
  display: grid;
  justify-items: center;
  gap: 1rem;
}

.cta-band h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 0.03em;
  line-height: 1.05;
  max-width: 16ch;
}

.cta-band p {
  margin: 0 0 0.5rem;
  color: var(--muted);
  max-width: 34rem;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 0.35rem 0 1rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  list-style: none;
  padding: 0.5rem 0;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-weight: 500;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.faq-item code {
  font-size: 0.88em;
  color: #ffc4a8;
}

/* Footer */
.site-footer {
  padding: 3rem 1.5rem 2.5rem;
  border-top: 1px solid var(--line);
  background: #080706;
}

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.site-footer__brand {
  display: flex;
  gap: 0.9rem;
  align-items: center;
}

.site-footer__brand img {
  border-radius: 12px;
}

.site-footer__brand strong {
  display: block;
  font-size: 1.1rem;
}

.site-footer__brand p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
}

.site-footer__links a {
  color: var(--muted);
  text-decoration: none;
}

.site-footer__links a:hover {
  color: var(--ink);
}

.site-footer__meta {
  margin: 0;
  color: #7f746c;
  font-size: 0.88rem;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

@keyframes hero-drift {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-1.5%, -1.5%, 0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero__backdrop { animation: none; }
  .btn { transition: none; }
}

@media (max-width: 900px) {
  .feature-list {
    grid-template-columns: 1fr 1fr;
  }

  .site-nav a:not(.nav-cta) {
    display: none;
  }
}

@media (max-width: 640px) {
  .feature-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero__content {
    padding-bottom: 3.25rem;
  }

  .section {
    padding: 4rem 1.15rem;
  }
}
