/* BeFoundNearMe — brand styles v1.0 */
:root {
  --charcoal: #25242e;
  --charcoal-soft: #2f2e3a;
  --gold: #dda250;
  --light-gold: #f2c96c;
  --bronze: #966233;
  --parchment: #f7f4ec;
  --off-white: #f5f1e8;
  --ink: #1d1c24;
  --muted-on-dark: #b9b6c4;
  --muted-on-light: #5c5a66;
  --radius: 14px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  color: var(--ink);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1em; }

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.container.narrow { width: min(760px, 92%); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--charcoal);
  padding: 0.6em 1em;
  font-weight: 700;
  z-index: 100;
}
.skip-link:focus { left: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(37, 36, 46, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(221, 162, 80, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.8rem 0;
}

.brand img { height: 44px; width: auto; }

.site-nav {
  display: flex;
  gap: 1.6rem;
  margin-left: auto;
}

.site-nav a {
  color: var(--off-white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.site-nav a:hover { color: var(--gold); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--off-white);
  margin: 5px 0;
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.5rem 4% 1rem;
}
.mobile-nav a {
  color: var(--off-white);
  text-decoration: none;
  font-weight: 600;
  padding: 0.7rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-nav .btn { margin-top: 0.6rem; text-align: center; }
.mobile-nav.open { display: flex; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.12s ease, color 0.12s ease;
}
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
  padding: 0.7em 1.6em;
}
.btn-primary:hover { background: var(--light-gold); }

.btn-ghost {
  border-color: rgba(221, 162, 80, 0.6);
  color: var(--gold);
  padding: 0.7em 1.6em;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--light-gold); }

.btn-sm { font-size: 0.9rem; }
.btn-lg { font-size: 1.05rem; }

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

/* ---------- Sections ---------- */
.section { padding: 5rem 0; }

.section-light { background: var(--off-white); }
.section-parchment { background: var(--parchment); }
.section-dark { background: var(--charcoal); color: var(--off-white); }
.section-dark .muted { color: var(--muted-on-dark); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.8em;
}
.eyebrow-dark { color: var(--bronze); }

.section-sub {
  font-size: 1.15rem;
  color: var(--muted-on-light);
  max-width: 44rem;
}
.section-dark .section-sub { color: var(--muted-on-dark); }

.muted { color: var(--muted-on-light); }
.small { font-size: 0.9rem; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(900px 480px at 85% 10%, rgba(221, 162, 80, 0.14), transparent 60%),
    var(--charcoal);
  color: var(--off-white);
  padding: 5.5rem 0 4rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 3rem;
  align-items: center;
}

.hero h1 { color: #fff; }

.lede {
  font-size: 1.2rem;
  color: var(--muted-on-dark);
  max-width: 38rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.8rem 0 1rem;
}

.hero-note {
  font-size: 0.9rem;
  color: var(--muted-on-dark);
}

.hero-art {
  display: flex;
  justify-content: center;
}
.hero-art img {
  width: min(340px, 80%);
  filter: drop-shadow(0 24px 60px rgba(221, 162, 80, 0.25));
}

.platforms-label {
  margin-top: 3.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted-on-dark);
  font-weight: 600;
}

.platforms {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.platforms li {
  border: 1px solid rgba(221, 162, 80, 0.4);
  color: var(--light-gold);
  border-radius: 999px;
  padding: 0.45em 1.1em;
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
}

/* ---------- Steps ---------- */
.steps {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.4rem;
  counter-reset: step;
}
.steps li {
  background: #fff;
  border: 1px solid rgba(37, 36, 46, 0.08);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 0.9rem;
}
.steps h3 { margin-bottom: 0.4em; }
.steps p { color: var(--muted-on-light); font-size: 0.96rem; margin: 0; }

/* ---------- Cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
  margin-top: 2.5rem;
}
.card {
  background: #fff;
  border: 1px solid rgba(37, 36, 46, 0.08);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
}
.card h3 { margin-bottom: 0.4em; }
.card p { color: var(--muted-on-light); margin: 0; }

/* ---------- Split / checklist ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 1.5rem;
}
.checklist {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}
.checklist li {
  position: relative;
  padding-left: 2rem;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 800;
}
.section-light .checklist li::before { color: var(--bronze); }

/* ---------- Pricing ---------- */
.price-card {
  background: #fff;
  border: 1px solid rgba(37, 36, 46, 0.08);
  border-radius: calc(var(--radius) + 4px);
  padding: 2.5rem;
  margin-top: 2rem;
  text-align: center;
  box-shadow: 0 18px 50px rgba(37, 36, 46, 0.08);
}
.price {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--charcoal);
  margin: 0 0 1.2rem;
  letter-spacing: -0.03em;
}
.price-from {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted-on-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.price-per { font-size: 1.2rem; font-weight: 600; color: var(--muted-on-light); }
.price-card .checklist { text-align: left; max-width: 26rem; margin: 0 auto 1.8rem; }
.price-card .muted { margin-top: 1.2rem; }

/* ---------- Waitlist form ---------- */
.waitlist-form {
  display: grid;
  gap: 1.2rem;
  margin-top: 2rem;
}
.field label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--off-white);
}
.field input {
  width: 100%;
  padding: 0.9rem 1.1rem;
  font-size: 1rem;
  font-family: inherit;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  background: var(--charcoal-soft);
  color: #fff;
}
.field input::placeholder { color: #8f8ca0; }
.field input:focus {
  outline: none;
  border-color: var(--gold);
}
.field-error {
  color: var(--light-gold);
  font-size: 0.88rem;
  margin: 0.35rem 0 0;
  font-weight: 600;
}
.field input[aria-invalid="true"] { border-color: #e07a5f; }
.form-status { min-height: 1.5em; font-weight: 600; color: var(--light-gold); }

.waitlist-success {
  text-align: center;
  padding: 2.5rem 1rem;
  border: 1px solid rgba(221, 162, 80, 0.4);
  border-radius: var(--radius);
  margin-top: 2rem;
}
.waitlist-success img { margin: 0 auto 1rem; }
.waitlist-success h3 { color: var(--gold); }

/* ---------- Footer ---------- */
.site-footer {
  background: #1b1a22;
  color: var(--muted-on-dark);
  padding: 3rem 0 2.2rem;
  text-align: center;
}
.wordmark {
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.4em;
}
.wordmark .wm-a { color: var(--off-white); }
.wordmark .wm-b { color: var(--gold); }
.site-footer a { color: var(--gold); }
.site-footer a:hover { color: var(--light-gold); }
.copyright { margin-top: 1.4rem; font-size: 0.88rem; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .hero-art img { width: min(220px, 60%); }
  .split { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 720px) {
  .site-nav, .header-inner .btn { display: none; }
  .nav-toggle { display: block; }
  .section { padding: 3.5rem 0; }
  .hero { padding: 3.5rem 0 3rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}
