:root {
  --bg: #070707;
  --panel: rgba(15, 15, 15, 0.72);
  --panel-strong: rgba(12, 12, 12, 0.92);
  --gold: #c9a84c;
  --gold-2: #f4d97a;
  --gold-soft: rgba(201, 168, 76, 0.18);
  --text: #f7f2e8;
  --muted: #b4ada1;
  --faint: #746d63;
  --line: rgba(201, 168, 76, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
}
a { color: inherit; }

.site-bg {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.28), rgba(0,0,0,0.78) 62%, #070707 100%),
    url('/assets/road-bg.jpg') center top / cover fixed no-repeat;
}

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

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(7,7,7,0.78);
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.logo { display: block; width: 136px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 22px; color: var(--muted); font-size: 14px; }
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--gold-2); }

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  padding: 72px 0 96px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 54px;
  align-items: center;
}
.eyebrow {
  color: var(--gold-2);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 18px;
}
h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.045em;
  font-size: clamp(58px, 9vw, 124px);
  margin: 0 0 24px;
}
.lead {
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.45;
  color: var(--muted);
  max-width: 680px;
  margin: 0 0 34px;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 24px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 750;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.13);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #090909;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  border-color: rgba(244,217,122,0.8);
  box-shadow: 0 18px 60px rgba(201,168,76,0.24);
}
.btn-secondary { color: var(--text); background: rgba(255,255,255,0.06); }
.small-note { color: var(--faint); font-size: 14px; }

.phone-card {
  justify-self: center;
  width: min(390px, 100%);
  border: 1px solid rgba(201,168,76,0.34);
  background: linear-gradient(160deg, rgba(18,18,18,0.9), rgba(5,5,5,0.94));
  border-radius: 38px;
  padding: 16px;
  box-shadow: 0 36px 110px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.08);
}
.phone-screen {
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 28px;
  padding: 26px;
  background: radial-gradient(circle at 30% 15%, rgba(244,217,122,.22), transparent 26%), #0b0b0b;
  min-height: 560px;
  display: flex;
  flex-direction: column;
}
.app-logo { width: 170px; margin: 0 auto 18px; }
.card-pill { align-self: flex-start; padding: 7px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--gold-2); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.media-card {
  margin-top: 18px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
}
.media-art {
  height: 220px;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.1), rgba(0,0,0,0.5)),
    url('/assets/road-bg.jpg') center / cover no-repeat;
}
.media-body { padding: 20px; }
.media-body h3 { margin: 0 0 6px; font-size: 30px; font-family: Georgia, 'Times New Roman', serif; font-weight: 500; }
.media-body p { margin: 0; color: var(--muted); }
.match-strip { margin-top: auto; display: grid; gap: 12px; }
.match-card { display: flex; align-items: center; gap: 12px; border: 1px solid rgba(255,255,255,.11); border-radius: 18px; padding: 12px; background: rgba(255,255,255,.05); }
.avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: rgba(201,168,76,.16); border: 1px solid var(--line); }
.match-card strong { display: block; }
.match-card span { color: var(--muted); font-size: 13px; }

.section { padding: 94px 0; background: #070707; }
.section.alt { background: #0c0c0c; }
.section h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1;
  margin: 0 0 18px;
}
.section-intro { color: var(--muted); font-size: 19px; line-height: 1.6; max-width: 760px; margin: 0 0 38px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  min-height: 260px;
  background: linear-gradient(160deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
}
.step-num { color: var(--gold-2); font-weight: 800; letter-spacing: .14em; text-transform: uppercase; font-size: 12px; margin-bottom: 18px; }
.step h3 { font-size: 28px; font-family: Georgia, 'Times New Roman', serif; font-weight: 500; margin: 0 0 12px; }
.step p { color: var(--muted); line-height: 1.6; margin: 0; }

.panel {
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: clamp(28px, 5vw, 56px);
  background: linear-gradient(145deg, rgba(201,168,76,.12), rgba(255,255,255,.035)), rgba(10,10,10,.92);
  box-shadow: 0 30px 100px rgba(0,0,0,.35);
}
.panel-row { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; }
.panel p { color: var(--muted); font-size: 19px; line-height: 1.55; margin: 0; }

.footer { padding: 32px 0; border-top: 1px solid rgba(201,168,76,0.16); background: #050505; color: var(--faint); font-size: 13px; }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px; }
.footer-links { display: flex; gap: 20px; }
.footer a { color: var(--muted); text-decoration: none; }
.footer a:hover { color: var(--gold-2); }

.legal-page { background: #070707; min-height: 100vh; }
.legal-main { max-width: 840px; padding: 64px 0 90px; }
.legal-main h1 { font-size: clamp(46px, 8vw, 80px); margin-bottom: 12px; }
.legal-main h2 { font-family: Georgia, 'Times New Roman', serif; font-size: 30px; font-weight: 500; color: var(--text); margin: 42px 0 12px; }
.legal-main p, .legal-main li { color: var(--muted); line-height: 1.75; }
.legal-main ul { padding-left: 22px; }
.legal-card { border: 1px solid var(--line); border-radius: 22px; padding: 22px; background: rgba(255,255,255,.04); }

@media (max-width: 880px) {
  .hero-grid, .panel-row { grid-template-columns: 1fr; }
  .phone-card { margin-top: 18px; }
  .steps { grid-template-columns: 1fr; }
  .nav-links { gap: 12px; font-size: 13px; }
  .logo { width: 118px; }
  .site-bg { background-attachment: scroll; }
}

/* store badges — non-interactive, "coming soon" */
.store-row { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid rgba(201,168,76,0.34);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  cursor: default;
  user-select: none;
}
.store-badge svg { width: 26px; height: 26px; flex: none; color: var(--text); }
.store-text { display: flex; flex-direction: column; line-height: 1.12; text-align: left; }
.store-top {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 700;
}
.store-name { font-size: 18px; font-weight: 700; }

/* phone map: white roads + orange location pins */
:root { --pin: #ff7a45; }
.media-card { position: relative; }
.media-art { filter: grayscale(1) brightness(1.18) contrast(1.06); }
.map-pin {
  position: absolute;
  width: 26px;
  height: 26px;
  transform: translate(-50%, -100%);
  color: var(--pin);
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.65));
  pointer-events: none;
}
.map-pin svg { width: 100%; height: 100%; display: block; }
/* SVG icons inside the match-card avatars (replaces unicode glyphs) */
.avatar svg { width: 20px; height: 20px; color: var(--gold-2); }
