/* Road Dog Social Club — colors from the Production Vector Kit design tokens */
:root {
  --black: #080B0D;
  --charcoal: #1A1A1E;
  --surface: #111417;
  --line: #26282C;
  --gold: #D4AF37;
  --gold-soft: #E3C66E;
  --champagne: #F7E7C5;
  --text: #F5F0E7;
  --muted: #A9A398;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; overflow-wrap: anywhere; }
a:hover { color: var(--gold-soft); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
@media (max-width: 400px) { .wrap { padding: 0 16px; } }

.caps {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 500;
}

/* Header */
header.site {
  position: sticky; top: 0; z-index: 10;
  background: rgba(8, 11, 13, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
header.site .wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--text); }
.brand img { height: 26px; width: auto; display: block; }
.brand span { font-size: 13px; color: var(--champagne); white-space: nowrap; }
nav a { color: var(--muted); font-size: 14px; margin-left: 26px; }
nav a:hover { color: var(--text); }

/* Hero */
.hero {
  position: relative; overflow: hidden;
  padding: 56px 0 96px; text-align: center;
  border-bottom: 1px solid var(--line);
}
/* soft "city lights" glow, drawn in CSS so there's no photo to license */
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(420px 260px at 12% 88%, rgba(212, 175, 55, 0.16), transparent 70%),
    radial-gradient(360px 220px at 88% 80%, rgba(212, 175, 55, 0.12), transparent 70%),
    radial-gradient(900px 400px at 50% 110%, rgba(122, 31, 43, 0.22), transparent 70%);
}
.hero .wrap { position: relative; }
.hero-logo { width: min(440px, 88vw); height: auto; display: block; margin: 0 auto; }
.hero h1 {
  font-family: "Montserrat", sans-serif; font-weight: 600;
  font-size: clamp(28px, 4.6vw, 44px); line-height: 1.2;
  letter-spacing: 0.01em; margin: 12px auto 16px; max-width: 22ch;
}
.hero p.lede { color: var(--muted); font-size: 19px; max-width: 56ch; margin: 0 auto 32px; }

.ctas { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  font-family: "Montserrat", sans-serif; font-weight: 600; font-size: 14px;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.btn.gold { background: var(--gold); color: #14110a; }
.btn.gold:hover { background: var(--gold-soft); color: #14110a; }
.btn.ghost { border: 1px solid rgba(212, 175, 55, 0.55); color: var(--champagne); }
.btn.ghost:hover { border-color: var(--gold); color: var(--text); }
.btn svg { width: 18px; height: 18px; fill: currentColor; }
.soon { margin-top: 18px; font-size: 13px; color: var(--muted); }

/* Sections */
section { padding: 96px 0; border-bottom: 1px solid var(--line); }
.eyebrow { color: var(--gold); font-size: 12px; margin: 0 0 14px; }
section h2 {
  font-family: "Montserrat", sans-serif; font-weight: 600;
  font-size: clamp(26px, 3.6vw, 36px); line-height: 1.2; margin: 0 0 16px;
}
.lead { color: var(--muted); max-width: 60ch; margin: 0 0 44px; }
.rule { width: 56px; height: 2px; background: var(--gold); border: 0; margin: 0 0 28px; }

.grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 14px; padding: 28px;
}
.card h3 { font-family: "Montserrat", sans-serif; font-weight: 600; font-size: 19px; margin: 0 0 8px; }
.card p { color: var(--muted); margin: 0; font-size: 16px; }
.num { font-family: "Montserrat", sans-serif; color: var(--gold); font-size: 13px; letter-spacing: 0.2em; display: block; margin-bottom: 14px; }

.scenes { display: grid; gap: 14px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 900px) { .scenes { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .scenes { grid-template-columns: minmax(0, 1fr); } }
.scene {
  border: 1px solid var(--line); border-radius: 12px; padding: 22px 22px 20px;
  background: linear-gradient(160deg, rgba(212, 175, 55, 0.07), transparent 60%), var(--surface);
}
.scene strong { display: block; font-family: "Montserrat", sans-serif; font-weight: 600; margin-bottom: 4px; }
.scene span { color: var(--muted); font-size: 15px; }

.split { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 56px; align-items: center; }
.checks { list-style: none; padding: 0; margin: 0; }
.checks li { padding: 12px 0 12px 32px; border-bottom: 1px solid var(--line); position: relative; }
.checks li::before {
  content: ""; position: absolute; left: 4px; top: 22px;
  width: 12px; height: 2px; background: var(--gold);
}
.crest { width: min(340px, 80vw); height: auto; display: block; margin: 0 auto; }

.member {
  text-align: center; border-radius: 18px; padding: 56px 28px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: radial-gradient(600px 240px at 50% 0%, rgba(212, 175, 55, 0.12), transparent 70%), var(--surface);
}
.member p { color: var(--muted); max-width: 54ch; margin: 0 auto 28px; }
.member p.eyebrow { color: var(--gold); margin-bottom: 14px; }
.member .fine { font-size: 13px; margin: 20px auto 0; }
.member p.price { margin: 0 auto 4px; color: var(--text); font-family: "Montserrat", sans-serif; }
.member .price .amount { font-size: 48px; font-weight: 600; color: var(--gold); letter-spacing: -0.01em; }
.member .price .per { font-size: 18px; color: var(--muted); margin-left: 4px; }
.member p.trial { color: var(--champagne); font-size: 12px; margin: 0 auto 28px; }
.member p.founding {
  max-width: 560px; margin: 32px auto 0; padding-top: 24px;
  border-top: 1px solid var(--line); font-size: 15px;
}
.member .founding strong { color: var(--champagne); }

/* Launch */
.launch { text-align: center; }
.launch .lead { margin-left: auto; margin-right: auto; }
.launch .lead strong { color: var(--champagne); font-weight: 600; }
.stores { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.store {
  display: flex; align-items: center; gap: 14px; text-align: left;
  min-width: 240px; padding: 14px 22px; border-radius: 14px;
  border: 1px dashed rgba(212, 175, 55, 0.5); background: var(--surface);
}
.store svg { width: 28px; height: 28px; fill: var(--gold); flex: none; }
.store span { display: block; font-size: 10px; color: var(--gold); letter-spacing: 0.22em; }
.store strong { font-family: "Montserrat", sans-serif; font-weight: 600; font-size: 16px; }
.notify { color: var(--muted); margin: 28px 0 0; font-size: 15px; }

/* Footer */
footer { padding: 56px 0 64px; color: var(--muted); font-size: 14px; }
footer .wrap { display: grid; gap: 24px; grid-template-columns: minmax(0, 1fr) auto; align-items: start; }
footer .mark { height: 30px; width: auto; display: block; margin-bottom: 14px; }
footer .links a { color: var(--muted); margin-left: 22px; }
footer .links a:hover { color: var(--text); }
footer p { margin: 0 0 6px; }

@media (max-width: 820px) {
  .split { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .split .crest { order: -1; width: 220px; }
}
@media (max-width: 640px) {
  header.site .wrap { height: 60px; }
  .brand span { display: none; }
  nav a { margin-left: 16px; }
  nav a.hide-sm { display: none; }
  .hero { padding: 36px 0 72px; }
  .hero p.lede { font-size: 17px; }
  section { padding: 72px 0; }
  footer .wrap { grid-template-columns: minmax(0, 1fr); }
  footer .links a { margin: 0 18px 0 0; }
}

.app-icon {
  width: min(280px, 64vw);
  border-radius: 22%;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 30px 80px rgba(212, 175, 55, 0.14), 0 12px 30px rgba(0, 0, 0, 0.6);
}
@media (max-width: 820px) { .split .app-icon { width: 180px; } }

/* Blog / nightlife guides */
a.post-card { display: block; color: var(--text); transition: border-color .15s; }
a.post-card:hover { border-color: rgba(212, 175, 55, 0.6); color: var(--text); }
a.post-card h3 { font-size: 20px; margin: 6px 0 8px; }
a.post-card p { margin: 0; }
.post-card .meta { color: var(--gold); font-size: 12px; letter-spacing: 0.08em; }
.post-list { display: grid; gap: 20px; }
.hero-slim { padding: 72px 0 64px; }
.hero-slim .eyebrow { color: var(--gold); font-size: 12px; margin: 0 0 14px; }
.hero-slim h1 { margin-top: 0; }
.doc.post { padding: 64px 0 88px; }
.post .wrap { max-width: 740px; }
.crumbs { margin: 0 0 16px; font-size: 14px; }
.crumbs a::before { content: "← "; }
.post h1 { font-family: "Montserrat", sans-serif; font-weight: 600; font-size: clamp(30px, 5vw, 42px); line-height: 1.18; margin: 0 0 10px; }
.post .updated { color: var(--muted); font-size: 14px; margin: 0 0 16px; }
.tags { margin: 0 0 36px; display: flex; flex-wrap: wrap; gap: 8px; }
.tags .tag {
  font-family: "Montserrat", sans-serif; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(212, 175, 55, 0.5); border-radius: 999px; padding: 3px 12px;
}
.post h2 { font-family: "Montserrat", sans-serif; font-weight: 600; font-size: 24px; margin: 44px 0 12px; }
.post h3 { font-size: 19px; margin: 28px 0 8px; }
.post p, .post li { font-size: 18px; line-height: 1.75; color: #D9D3C8; }
.post strong { color: var(--text); }
.post ul, .post ol { padding-left: 22px; }
.post li { margin-bottom: 8px; }
.post blockquote { margin: 24px 0; padding-left: 18px; border-left: 3px solid var(--gold); }
.post .cta {
  margin: 56px 0 0; padding: 32px; border-radius: 16px; text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: radial-gradient(500px 200px at 50% 0%, rgba(212, 175, 55, 0.12), transparent 70%), var(--surface);
}
.post .cta .eyebrow { margin-bottom: 10px; font-size: 12px; color: var(--gold); }
.post .cta p { font-size: 16px; color: var(--muted); max-width: 52ch; margin: 0 auto 22px; }
.post .more { margin-top: 48px; padding-top: 8px; border-top: 1px solid var(--line); }
.post .more h2 { margin-top: 24px; }
