:root {
  --bg: #0a1020;
  --bg-2: #111a33;
  --panel: rgba(9, 15, 31, 0.78);
  --panel-strong: #101936;
  --text: #f5f4ec;
  --muted: #b9c2dc;
  --line: rgba(255, 255, 255, 0.1);
  --accent: #f2c14e;
  --accent-2: #44d1c6;
  --danger: #ff6f61;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 15%, rgba(68, 209, 198, 0.2), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(242, 193, 78, 0.18), transparent 25%),
    linear-gradient(180deg, #08101f 0%, #111b34 45%, #08101f 100%);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: #111;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 16px 0;
  background: rgba(8, 16, 31, 0.75);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-shell,
.footer-shell,
.stats-grid,
.hero-proof,
.cta-row,
.cta-stack,
.top-nav,
.audience-list,
.footer-links {
  display: flex;
  gap: 16px;
}

.nav-shell,
.footer-shell {
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent), #ffd98b);
  box-shadow: inset 0 -4px 10px rgba(0, 0, 0, 0.15);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-nav {
  align-items: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.top-nav a:hover,
.footer-links a:hover {
  color: var(--accent);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), #ffd57a);
  color: #111;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  transition: transform 0.2s ease;
}

.store-badge:hover {
  transform: translateY(-2px);
}

.store-badge img {
  display: block;
  width: 180px;
  height: auto;
}

.store-badge-nav img {
  width: 154px;
}

.store-badge-large img {
  width: 200px;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero,
.section {
  padding: 88px 0;
}

.hero {
  padding-top: 72px;
}

.hero-grid,
.split-panel,
.cta-panel {
  display: grid;
  gap: 40px;
  align-items: center;
}

.hero-grid {
  grid-template-columns: 1.05fr 0.95fr;
}

.hero-panel {
  display: grid;
  gap: 18px;
  align-content: center;
  padding: 36px;
  border-radius: 30px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(8, 16, 31, 0.25), rgba(8, 16, 31, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.hero-panel-icon {
  width: 96px;
  height: 96px;
  padding: 8px;
  border-radius: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.hero-panel-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 18px;
}

.hero-panel-label {
  margin: 0;
  color: var(--accent-2);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-panel h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.hero-panel-points {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-panel-points li {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-2);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.4rem;
}

.hero h1 + .hero-lead,
.section-heading p,
.feature-card p,
.step-card p,
.split-panel p,
.cta-panel p,
.faq-list p,
.vote-banner,
.stats-grid span,
.audience-list span,
.site-footer p {
  color: var(--muted);
}

.hero-lead,
.section-heading p,
.split-panel p,
.cta-panel p {
  max-width: 62ch;
  font-size: 1.05rem;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.cta-row,
.cta-stack {
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-proof {
  flex-wrap: wrap;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.hero-proof li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-stage {
  position: relative;
  min-height: 560px;
  border-radius: 36px;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(8, 16, 31, 0.25), rgba(8, 16, 31, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
}

.spotlight {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(242, 193, 78, 0.22), transparent 22%),
    radial-gradient(circle at 68% 72%, rgba(68, 209, 198, 0.12), transparent 28%);
}

.hero-icon-card {
  position: absolute;
  top: 32px;
  left: 32px;
  width: 88px;
  height: 88px;
  padding: 8px;
  border-radius: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.hero-icon-card img,
.hero-shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-shot {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-shot-main {
  z-index: 2;
  top: 52px;
  left: 50%;
  width: 240px;
  height: 490px;
  transform: translateX(-50%);
}

.hero-shot-left {
  z-index: 1;
  left: 24px;
  bottom: 34px;
  width: 170px;
  height: 348px;
  transform: rotate(-7deg);
}

.hero-shot-right {
  z-index: 1;
  right: 24px;
  bottom: 46px;
  width: 170px;
  height: 348px;
  transform: rotate(7deg);
}

.vote-banner {
  position: absolute;
  right: 24px;
  bottom: 22px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

.stats-bar {
  padding: 0 0 12px;
}

.stats-grid {
  flex-wrap: wrap;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-grid > div {
  flex: 1 1 220px;
}

.stats-grid strong,
.audience-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}

.steps-grid,
.feature-grid {
  display: grid;
  gap: 20px;
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card,
.feature-card,
.split-panel,
.cta-panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.step-card,
.feature-card {
  height: 100%;
  padding: 26px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.step-number {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent);
  font-weight: 700;
}

.section-contrast .feature-card {
  background: rgba(12, 21, 41, 0.95);
}

.split-panel,
.cta-panel {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  padding: 36px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
}

.audience-list {
  flex-direction: column;
}

.audience-list > div {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.section-faq {
  padding-top: 40px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.section-gallery {
  padding-top: 48px;
}

.gallery-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.shot-card {
  margin: 0;
  padding: 10px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.shot-card img {
  width: 100%;
  aspect-ratio: 230 / 498;
  object-fit: cover;
  border-radius: 20px;
}

.promo-shot-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  aspect-ratio: 230 / 498;
  padding: 18px 14px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(207, 8, 8, 0.95) 0%, rgba(255, 106, 0, 0.95) 52%, rgba(164, 0, 0, 0.96) 100%);
  text-align: center;
}

.promo-top,
.promo-bottom,
.promo-sub {
  margin: 0;
}

.promo-top {
  color: #fff6e7;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.promo-shot h3 {
  margin-top: 6px;
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  color: #ffffff;
  text-transform: uppercase;
}

.promo-bubbles {
  display: grid;
  gap: 14px;
  margin: 20px 0;
}

.promo-bubbles span {
  display: inline-flex;
  align-self: center;
  justify-self: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.75);
  color: #ffd45c;
  font-weight: 700;
  line-height: 1.1;
}

.promo-bubbles .imposter-badge {
  background: rgba(10, 10, 10, 0.82);
  color: #ff4f8c;
}

.promo-bottom {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
}

.promo-sub {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  text-transform: uppercase;
}

.faq-list details {
  padding: 22px 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 12px 0 0;
}

.section-cta {
  padding-top: 52px;
}

.cta-stack {
  flex-direction: column;
}

.cta-stack .button {
  width: 100%;
}

.site-footer {
  padding: 26px 0 48px;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  flex-wrap: wrap;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero-grid,
  .steps-grid,
  .feature-grid,
  .split-panel,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: none;
  }

  .hero-panel {
    padding: 28px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
  }

  .nav-shell,
  .footer-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-nav {
    flex-wrap: wrap;
  }

  .hero,
  .section {
    padding: 72px 0;
  }

  .split-panel,
  .cta-panel,
  .stats-grid {
    padding: 24px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .top-nav {
    display: none;
  }

  .button,
  .button-small {
    width: 100%;
  }

  .store-badge {
    width: 100%;
    justify-content: center;
  }

  .cta-row {
    flex-direction: column;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
