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

:root {
  --black: #000000;
  --white: #FFFFFF;
  --gold: #E5A020;
  --gold-dark: #B8800E;
  --gold-dim: rgba(229, 160, 32, 0.12);
  --gray-100: #F5F5F5;
  --gray-200: #E8E8E8;
  --gray-400: #888888;
  --gray-600: #444444;
  --gray-800: #1A1A1A;
  --gray-900: #0D0D0D;
  --font-display: 'Darker Grotesque', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--gold-dark);
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--gray-400);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: var(--white);
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--gold-dim) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  border: 1px solid var(--gold-dark);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero h1 .accent {
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--gray-400);
  max-width: 520px;
  margin-bottom: 3rem;
  line-height: 1.5;
}

.store-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--gray-600);
  border-radius: 12px;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  transition: border-color 0.2s, background 0.2s;
}

.store-badge:hover {
  border-color: var(--gold-dark);
  background: rgba(229, 160, 32, 0.06);
  color: var(--white);
}

.store-badge svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* ---- NOTIFY CTA ---- */
.notify-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.notify-text {
  color: var(--gray-400);
  font-size: 0.95rem;
}

.notify-btn {
  display: inline-block;
  padding: 0.875rem 2.5rem;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 12px;
  transition: background 0.2s;
}

.notify-btn:hover {
  background: var(--gold-dark);
  color: var(--black);
}

/* ---- SCREENSHOTS ---- */
.screenshots {
  padding: 4rem 2rem 6rem;
  text-align: center;
}

.screenshots-grid {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.screenshot-slot {
  width: 200px;
  height: 430px;
  border-radius: 24px;
  border: 2px dashed var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  font-size: 0.8rem;
  font-weight: 500;
}

.screenshot-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}

/* ---- FEATURES ---- */
.features {
  padding: 6rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.features-heading {
  text-align: center;
  margin-bottom: 4rem;
}

.features-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.features-heading p {
  color: var(--gray-400);
  font-size: 1.1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--gray-900);
  transition: border-color 0.2s;
}

.feature-card:hover {
  border-color: rgba(229, 160, 32, 0.3);
}

.feature-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--gray-400);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ---- HOW IT WORKS ---- */
.how-it-works {
  padding: 6rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.how-it-works h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 4rem;
}

.steps {
  display: flex;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.step {
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold-dark);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step p {
  color: var(--gray-400);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ---- FOOTER ---- */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--gray-400);
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-copy {
  color: var(--gray-600);
  font-size: 0.8rem;
}

/* ---- LEGAL PAGES ---- */
.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
}

.legal h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.legal .meta {
  color: var(--gray-400);
  font-size: 0.9rem;
  margin-bottom: 3rem;
}

.legal h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.legal h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal p {
  color: var(--gray-200);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.legal ul {
  color: var(--gray-200);
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  line-height: 1.7;
}

.legal li {
  margin-bottom: 0.375rem;
}

.legal table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}

.legal th,
.legal td {
  text-align: left;
  padding: 0.625rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gray-200);
  font-size: 0.95rem;
}

.legal th {
  color: var(--white);
  font-weight: 600;
}

.legal strong {
  color: var(--white);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 640px) {
  .nav {
    padding: 1rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .hero {
    padding: 6rem 1.5rem 3rem;
  }

  .screenshot-slot {
    width: 160px;
    height: 345px;
  }

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

  .steps {
    flex-direction: column;
    align-items: center;
  }

  .legal {
    padding: 6rem 1.5rem 3rem;
  }
}
