:root {
  --bg: #040404;
  --bg-soft: #0a0a0a;
  --panel: rgba(255,255,255,0.045);
  --panel-strong: rgba(255,255,255,0.075);
  --text: #ffffff;
  --text-soft: #d9d4cb;
  --text-muted: #9a958d;
  --gold: #d3a63f;
  --gold-bright: #f2c868;
  --gold-deep: #8d6820;
  --line: rgba(255,255,255,0.1);
  --shadow: 0 30px 90px rgba(0,0,0,0.48);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1240px;
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Barlow', sans-serif;
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  background:
    radial-gradient(circle at 20% 0%, rgba(211,166,63,0.14), transparent 24%),
    radial-gradient(circle at 85% 15%, rgba(211,166,63,0.08), transparent 18%),
    linear-gradient(180deg, #060606 0%, #020202 100%);
}

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

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

button {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -50px;
  z-index: 100;
  background: var(--gold-bright);
  color: #111;
  padding: 10px 14px;
  border-radius: 10px;
}

.skip-link:focus {
  top: 16px;
}

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

.section {
  padding: 96px 0;
  position: relative;
}

.section-dark {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(4,4,4,0.8);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-wrapper {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
}

.brand-logo-wrap {
  width: 152px;
  min-height: 88px;
  display: grid;
  place-items: center;
}

.brand-logo {
  max-height: 88px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.4));
}

.fallback-badge {
  display: none;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  place-items: center;
  font-weight: 800;
  font-size: 1.4rem;
  color: #171717;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 16px 34px rgba(211,166,63,0.28);
}

.brand-logo-fallback .fallback-badge {
  display: grid;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: var(--text-soft);
  font-weight: 500;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background: var(--gold-bright);
  transition: width var(--transition);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.is-active::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 16px;
  font-weight: 700;
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #f4ce72, var(--gold));
  color: #111;
  box-shadow: 0 16px 34px rgba(211,166,63,0.24);
}

.btn-secondary {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(211,166,63,0.68);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 12px;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background: white;
  border-radius: 999px;
}

.hero {
  overflow: hidden;
  padding-top: 46px;
  padding-bottom: 74px;
  background: linear-gradient(90deg, rgba(0,0,0,0.82), rgba(0,0,0,0.52));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 48px;
  align-items: center;
}

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

.mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(211,166,63,0.36);
  background: rgba(255,255,255,0.03);
  color: var(--gold-bright);
  font-weight: 700;
  margin-bottom: 22px;
}

.hero-copy h1 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(3.5rem, 7vw, 6.8rem);
  line-height: 0.96;
  letter-spacing: 0.01em;
  text-transform: none;
  margin-bottom: 22px;
  max-width: 8.5ch;
}

.hero-copy h1 span {
  color: var(--gold-bright);
}

.hero-text {
  color: var(--text-soft);
  font-size: 1.12rem;
  max-width: 58ch;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 42px;
}

.usp-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.usp-item {
  padding: 18px 14px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  text-align: center;
}

.usp-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
  border-radius: 14px;
  background: rgba(211,166,63,0.12);
  font-size: 1.3rem;
}

.usp-item p {
  color: var(--text-soft);
  font-weight: 600;
  font-size: 0.96rem;
}

.hero-visual {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-shell {
  position: relative;
  width: min(430px, 100%);
  padding: 16px;
  border-radius: 54px;
  background: linear-gradient(145deg, #151515, #020202);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  transform: rotate(-5deg);
}

.phone-frame-highlight {
  position: absolute;
  inset: 8px;
  border-radius: 46px;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.06);
}

.phone-notch {
  position: absolute;
  left: 50%;
  top: 16px;
  transform: translateX(-50%);
  width: 138px;
  height: 28px;
  border-radius: 0 0 20px 20px;
  background: #050505;
  z-index: 2;
}

.phone-screen {
  min-height: 704px;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  padding: 30px 22px 24px;
  background:
    radial-gradient(circle at top center, rgba(211,166,63,0.14), transparent 24%),
    linear-gradient(180deg, #0d0d0d 0%, #050505 100%);
}

.phone-topbar,
.level-row,
.phone-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-topbar {
  margin-bottom: 34px;
  color: var(--text-soft);
}

.coin-balance {
  color: var(--gold-bright);
  font-weight: 700;
}

.screen-logo-area {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 168px;
  margin-bottom: 28px;
}

.screen-logo {
  max-width: 210px;
  max-height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.35));
}

.screen-logo-fallback {
  display: none;
  width: 180px;
  height: 100px;
  place-items: center;
  font-family: 'Anton', sans-serif;
  color: var(--gold-bright);
  font-size: 2rem;
  letter-spacing: 0.04em;
}

.level-box {
  margin-bottom: 24px;
}

.level-row {
  font-size: 0.92rem;
  color: var(--text-soft);
  margin-bottom: 10px;
}

.level-track {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
}

.level-fill {
  width: 64%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
}

.screen-buttons {
  display: grid;
  gap: 14px;
}

.screen-btn {
  width: 100%;
  text-align: left;
  padding: 18px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(211,166,63,0.28);
  font-weight: 700;
}

.screen-btn-primary {
  background: linear-gradient(135deg, #f4ce72, var(--gold));
  color: #111;
}

.phone-nav {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.phone-nav .active {
  color: var(--gold-bright);
  font-weight: 700;
}

.section-head {
  margin-bottom: 40px;
}

.eyebrow {
  color: var(--gold-bright);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-head h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.02;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.section-head p:last-child {
  color: var(--text-soft);
  max-width: 64ch;
}

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

.feature-grid {
  grid-template-columns: 1.4fr 1fr 1fr;
}

.feature-card,
.step-card,
.shot-card,
.faq-list details,
.cta-box {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

.feature-card,
.step-card {
  padding: 30px;
}

.feature-card h3,
.step-card h3,
.cta-box h2,
.faq-list summary {
  font-family: 'Anton', sans-serif;
  letter-spacing: 0.02em;
}

.feature-card p,
.step-card p,
.faq-list p,
.cta-box p,
.footer-links a,
.site-footer p {
  color: var(--text-soft);
}

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

.step-number {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold-bright);
  font-weight: 800;
  letter-spacing: 0.16em;
}

.shots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.shot-card {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

.shot-card.shot-card-image {
  min-height: auto;
  padding: 18px;
  overflow: hidden;
}

.shot-card.shot-card-image::before {
  display: none;
}

.shot-card.shot-card-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background: #0b0b0b;
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}

.shot-card.shot-card-image figcaption {
  padding-top: 14px;
  text-align: center;
  color: var(--gold-bright);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

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

.faq-list details {
  padding: 22px 24px;
}

.faq-list summary {
  cursor: pointer;
  font-size: 1.12rem;
}

.faq-list p {
  padding-top: 12px;
}

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

.cta-box {
  padding: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

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

.footer-row {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-links {
  display: flex;
  gap: 18px;
}

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

@media (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
    padding-bottom: 60px;
  }

  .feature-grid,
  .steps-grid,
  .shots-grid {
    grid-template-columns: 1fr 1fr;
  }

  .usp-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
  }

  .desktop-cta {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
    background: rgba(8,8,8,0.96);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .section {
    padding: 78px 0;
  }

  .feature-grid,
  .steps-grid,
  .shots-grid {
    grid-template-columns: 1fr;
  }

  .cta-box,
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy h1 {
    max-width: 9.5ch;
  }

  .phone-shell {
    transform: none;
  }
}

@media (max-width: 560px) {
  .nav-wrapper {
    min-height: 78px;
  }

  .brand-logo-wrap {
    width: 112px;
    min-height: 64px;
  }

  .brand-logo {
    max-height: 64px;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-copy h1 {
    font-size: clamp(2.9rem, 15vw, 4.7rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .usp-row,
  .feature-grid,
  .steps-grid,
  .shots-grid {
    grid-template-columns: 1fr;
  }

  .phone-shell {
    width: 100%;
    padding: 12px;
    border-radius: 34px;
  }

  .phone-screen {
    min-height: 580px;
    border-radius: 28px;
    padding: 26px 16px 20px;
  }

  .phone-notch {
    width: 104px;
    height: 22px;
    top: 12px;
  }

  .screen-logo {
    max-width: 170px;
    max-height: 118px;
  }

  .hero-visual {
    padding-bottom: 40px;
  }
}