/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #080808;
  --dark:  #111111;
  --dark2: #1a1a1a;
  --gold:  #ffffff;
  --white: #ffffff;
  --gray:  #999999;
  --light: #f4f4f4;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── NAV ────────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo img { height: 44px; }

.nav-links {
  display: flex;
  gap: 36px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-stores {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-stores img { height: 32px; transition: opacity 0.2s; }
.nav-stores img:hover { opacity: 0.8; }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu a {
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s, background 0.2s;
}
.mobile-menu a:hover { color: var(--white); background: rgba(255,255,255,0.04); }
.mobile-menu.open { display: flex; }

.mobile-stores {
  display: flex;
  gap: 12px;
  padding: 20px 32px;
}
.mobile-stores img { height: 36px; }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 120px 80px 60px;
  max-width: 1280px;
  margin: 0 auto;
  gap: 40px;
  position: relative;
}

.hero-content {
  flex: 0 0 auto;
  max-width: 560px;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(80px, 10vw, 140px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  margin-bottom: 40px;
  letter-spacing: 0.01em;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.store-btn img {
  height: 46px;
  border-radius: 8px;
  transition: opacity 0.2s, transform 0.2s;
}
.store-btn:hover img {
  opacity: 0.85;
  transform: translateY(-2px);
}

.hero-mockup {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  max-width: 560px;
  width: 100%;
}
.hero-mockup img {
  width: 100%;
  max-width: 520px;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.7));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

/* ── STRIP ──────────────────────────────────────────────────── */
.strip {
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.strip-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 36px 20px;
  transition: background 0.25s;
  cursor: default;
}
.strip-item:hover { background: rgba(200,151,58,0.06); }

.strip-item img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.strip-item span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.strip-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

/* ── SECTION LABELS & TITLES ────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding-left: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--black);
  margin-bottom: 40px;
}

.section-title.light { color: var(--white); }

/* ── APP SCREENS ────────────────────────────────────────────── */
.screens-section {
  background: var(--light);
  padding: 100px 0 80px;
  overflow: hidden;
}

.screens-header {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
  margin-bottom: 56px;
}

.screens-track-wrap {
  overflow: hidden;
  cursor: grab;
  user-select: none;
}
.screens-track-wrap:active { cursor: grabbing; }

.screens-track {
  display: flex;
  gap: 24px;
  padding: 20px 80px;
  width: max-content;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.screen-card {
  flex-shrink: 0;
  width: 220px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
  background: #fff;
}
.screen-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 36px 80px rgba(0,0,0,0.22);
}
.screen-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top;
}

.screens-nav {
  display: flex;
  gap: 12px;
  padding: 32px 80px 0;
  max-width: 1280px;
  margin: 0 auto;
}

.screens-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.15);
  background: var(--black);
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.screens-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.05);
}

/* ── FEATURES ───────────────────────────────────────────────── */
.features-section {
  background: var(--dark);
  padding: 100px 80px;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 80px;
  overflow: hidden;
}

.features-text { flex: 1; max-width: 560px; }

.features-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s;
}
.feature-card:first-child { border-top: 1px solid rgba(255,255,255,0.07); }

.feature-num {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}
.feature-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

.features-img {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.features-img img {
  max-height: 600px;
  width: auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
}

/* ── VIDEO SECTION ──────────────────────────────────────────── */
.video-section {
  position: relative;
  height: 80vh;
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.video-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,8,8,0.5) 0%, rgba(8,8,8,0.7) 100%);
}

.video-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.video-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.92;
  color: var(--white);
  letter-spacing: 0.02em;
}

.play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.4);
  animation: pulse 2.5s ease-in-out infinite;
}
.play-btn:hover {
  transform: scale(1.1);
  background: rgba(255,255,255,0.85);
  animation: none;
}
.play-triangle {
  font-size: 28px;
  color: var(--black);
  margin-left: 4px;
  line-height: 1;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,151,58,0.5); }
  50%       { box-shadow: 0 0 0 20px rgba(200,151,58,0); }
}

/* ── STEPS ──────────────────────────────────────────────────── */
.steps-section {
  background: var(--black);
  padding: 100px 80px;
}

.steps-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.step {
  background: var(--dark2);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}
.step:hover { background: #222; }
.step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.step:hover::before { transform: scaleX(1); }

.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 60px;
  color: rgba(255,255,255,0.2);
  line-height: 1;
  margin-bottom: 20px;
}

.step h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.step p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

/* ── ABOUT ──────────────────────────────────────────────────── */
.about-section {
  background: var(--light);
  padding: 100px 80px;
  display: flex;
  align-items: center;
  gap: 80px;
  overflow: hidden;
  max-width: 100%;
}

.about-img {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-img img {
  max-height: 580px;
  width: auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.15));
}

.about-text { flex: 1; max-width: 500px; }

.about-text p {
  font-size: 17px;
  color: rgba(0,0,0,0.55);
  margin-bottom: 36px;
  line-height: 1.7;
  font-weight: 300;
}

.about-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: #060606;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 80px 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
}

.footer-logo { height: 48px; margin-bottom: 20px; }

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 24px;
}

.footer-socials { display: flex; gap: 14px; }
.footer-socials img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  opacity: 0.55;
  transition: opacity 0.2s, transform 0.2s;
}
.footer-socials a:hover img {
  opacity: 1;
  transform: translateY(-2px);
}

.footer-links h5,
.footer-download h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  padding: 6px 0;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-download {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-download img {
  height: 38px;
  border-radius: 6px;
  transition: opacity 0.2s;
}
.footer-download img:hover { opacity: 0.8; }

.footer-copy {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 80px;
  max-width: 1280px;
  margin: 0 auto;
}
.footer-copy p {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}

/* ── MODAL ──────────────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}
.modal-overlay.open { display: flex; }

.modal-box {
  position: relative;
  width: 90%;
  max-width: 860px;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7);
}

.modal-close {
  position: absolute;
  top: 14px; right: 18px;
  background: rgba(255,255,255,0.12);
  border: none;
  color: var(--white);
  font-size: 22px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.modal-close:hover { background: rgba(255,255,255,0.22); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { padding: 120px 48px 60px; }
  .features-section { padding: 80px 48px; flex-direction: column; }
  .features-img img { max-height: 400px; }
  .about-section { padding: 80px 48px; flex-direction: column; }
  .steps-section { padding: 80px 48px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { padding: 60px 48px 40px; }
  .footer-copy { padding: 20px 48px; }
  .screens-header { padding: 0 48px; }
  .screens-track { padding: 20px 48px; }
  .screens-nav { padding: 32px 48px 0; }
}

@media (max-width: 768px) {
  .nav-links  { display: none; }
  .nav-stores { display: none; }
  .hamburger  { display: block; }

  .hero {
    flex-direction: column;
    padding: 100px 28px 60px;
    text-align: center;
    align-items: center;
    min-height: auto;
    padding-bottom: 0;
  }
  .hero-eyebrow { text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-mockup { max-width: 340px; }
  .hero-mockup img { animation: none; }

  .strip { flex-wrap: wrap; }
  .strip-divider { display: none; }
  .strip-item { flex: 0 0 50%; border-bottom: 1px solid rgba(255,255,255,0.06); }

  .screens-header { padding: 0 28px; }
  .screens-track { padding: 20px 28px; }
  .screens-nav { padding: 24px 28px 0; }
  .screen-card { width: 180px; }
  .screen-card img { height: 340px; }

  .features-section { padding: 60px 28px; gap: 48px; }
  .features-img { display: none; }

  .steps-section { padding: 60px 28px; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .step { padding: 32px 24px; }

  .about-section { padding: 60px 28px; flex-direction: column; gap: 40px; }
  .about-img { display: none; }
  .about-text { max-width: 100%; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 28px 32px;
  }
  .footer-copy { padding: 16px 28px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 72px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step { padding: 28px 20px; }
}
