:root {
  --bg: #07080b;
  --bg-2: #0c0f14;
  --panel: #11151c;
  --border: #1e2630;
  --text: #e6e8ec;
  --muted: #8a93a0;
  --gold: #c8a44e;
  --gold-bright: #e7c068;
  --green: #4ec46e;
  --danger: #c44e4e;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Oswald', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Texture overlays */
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
}
.scanlines {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.35;
  background: repeating-linear-gradient(to bottom, transparent 0 2px, rgba(0,0,0,0.18) 2px 4px);
}

a { color: inherit; text-decoration: none; }
strong { color: var(--gold-bright); font-weight: 600; }

/* Buttons */
.btn {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--gold);
  color: #0a0a0a;
  padding: 0.7em 1.4em;
  border: 1px solid var(--gold);
  border-radius: 3px;
  transition: all 0.18s ease;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(200,164,78,0);
}
.btn:hover {
  background: var(--gold-bright);
  box-shadow: 0 0 28px rgba(200,164,78,0.35);
  transform: translateY(-1px);
}
.btn-lg { font-size: 1.05rem; padding: 0.9em 1.8em; }
.btn-sm { font-size: 0.8rem; padding: 0.55em 1.1em; }
.btn-ghost {
  background: transparent; color: var(--text); border-color: var(--border);
  box-shadow: none;
}
.btn-ghost:hover { background: rgba(255,255,255,0.04); border-color: var(--gold); box-shadow: none; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem clamp(1rem, 5vw, 4rem);
  background: rgba(7,8,11,0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.brand { display: flex; align-items: center; gap: 0.55rem; }
.brand-mark { color: var(--gold); font-size: 1.4rem; }
.brand-name { font-weight: 700; letter-spacing: 0.12em; font-size: 1.15rem; }
.brand-accent { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: clamp(0.8rem, 2vw, 2rem); }
.nav-links a { font-size: 0.92rem; letter-spacing: 0.05em; color: var(--muted); transition: color 0.15s; text-transform: uppercase; }
.nav-links a:hover { color: var(--text); }
.nav-links a.btn { color: #0a0a0a; }

/* Hero */
.hero {
  position: relative; z-index: 2;
  min-height: 88vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 4rem clamp(1rem, 5vw, 4rem) 6rem;
  overflow: hidden;
}
.hero-glow {
  position: absolute; top: -10%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(200,164,78,0.14), transparent 65%);
  pointer-events: none;
}
.skyline { position: absolute; bottom: 0; left: 0; right: 0; height: 320px; opacity: 0.9; }
.skyline svg { width: 100%; height: 100%; display: block; }
.hero-inner { position: relative; max-width: 880px; z-index: 3; }
.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem; letter-spacing: 0.32em; color: var(--gold);
  margin-bottom: 1.4rem;
}
.hero h1 {
  font-size: clamp(2.4rem, 6.5vw, 5rem);
  line-height: 1.02; font-weight: 700; letter-spacing: -0.01em;
  text-transform: uppercase;
}
.hero h1 .accent { color: var(--gold); text-shadow: 0 0 40px rgba(200,164,78,0.3); }
.lede {
  margin-top: 1.6rem; max-width: 640px;
  font-size: clamp(1rem, 1.6vw, 1.2rem); color: var(--muted); line-height: 1.7;
}
.hero-cta { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero-sub {
  margin-top: 1.4rem; font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem; color: var(--muted); letter-spacing: 0.04em;
}

/* Ticker */
.ticker {
  position: relative; z-index: 3;
  background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  overflow: hidden; padding: 0.6rem 0;
}
.ticker-track {
  display: inline-flex; gap: 3rem; white-space: nowrap;
  font-family: 'JetBrains Mono', monospace; font-size: 0.78rem; color: var(--green);
  letter-spacing: 0.08em;
  animation: ticker 40s linear infinite;
}
.ticker-track span { opacity: 0.85; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Sections */
.section { position: relative; z-index: 2; padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 4rem); max-width: 1200px; margin: 0 auto; }
.section-alt { background: linear-gradient(180deg, var(--bg-2), var(--bg)); max-width: none; }
.section-alt > * { max-width: 1200px; margin-left: auto; margin-right: auto; }
.section-head { margin-bottom: 3rem; }
.kicker {
  font-family: 'JetBrains Mono', monospace; font-size: 0.75rem;
  letter-spacing: 0.28em; color: var(--gold); display: block; margin-bottom: 0.8rem;
}
.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; text-transform: uppercase;
  letter-spacing: -0.01em; max-width: 720px;
}

/* Cards */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; }
.card {
  background: var(--panel); border: 1px solid var(--border); border-radius: 6px;
  padding: 2rem 1.6rem; transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: var(--gold); transform: translateY(-3px); }
.card-icon { font-size: 1.8rem; margin-bottom: 0.9rem; }
.card h3 { font-size: 1.25rem; margin-bottom: 0.6rem; text-transform: uppercase; letter-spacing: 0.02em; }
.card p, .feature p, .suburb p { color: var(--muted); font-size: 0.98rem; line-height: 1.65; }

.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.6rem 2.5rem; }
.feature { border-left: 2px solid var(--border); padding-left: 1.3rem; transition: border-color 0.2s; }
.feature:hover { border-color: var(--gold); }
.feature h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }

/* Suburbs */
.suburb-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1rem; }
.suburb {
  background: var(--panel); border: 1px solid var(--border); border-radius: 6px; padding: 1.4rem;
  position: relative; overflow: hidden;
}
.suburb::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--gold);
  opacity: 0.4; transition: opacity 0.2s;
}
.suburb:hover::before { opacity: 1; }
.suburb h4 { font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.4rem; color: var(--gold-bright); }

/* Pricing */
.pricing { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 1.6rem; align-items: stretch; }
.price-card {
  background: var(--panel); border: 1px solid var(--border); border-radius: 8px; padding: 2.2rem;
}
.price-main { border-color: var(--gold); box-shadow: 0 0 40px rgba(200,164,78,0.08); }
.price-tag { font-size: 3rem; font-weight: 700; color: var(--gold); line-height: 1; }
.price-tag span { font-size: 1.1rem; color: var(--muted); font-weight: 400; }
.price-card h3 { text-transform: uppercase; letter-spacing: 0.08em; margin: 0.4rem 0 1.4rem; font-size: 1.1rem; }
.price-card ul { list-style: none; margin-bottom: 1.8rem; }
.price-card li { padding: 0.45rem 0; color: var(--muted); font-size: 0.98rem; border-bottom: 1px solid rgba(255,255,255,0.04); }
.price-aside { background: var(--bg-2); border: 1px solid var(--border); border-radius: 8px; padding: 2.2rem; }
.price-aside > p { color: var(--muted); margin: 0.6rem 0 1.4rem; font-size: 0.95rem; }
.packs { list-style: none; }
.packs li {
  display: flex; justify-content: space-between; padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-family: 'JetBrains Mono', monospace; font-size: 0.85rem;
}
.packs li span:first-child { color: var(--text); }
.packs li span:last-child { color: var(--gold); }

/* Final CTA */
.final-cta {
  position: relative; z-index: 2; text-align: center;
  padding: clamp(5rem, 10vw, 9rem) 1rem; overflow: hidden;
  border-top: 1px solid var(--border);
}
.final-cta h2 { font-size: clamp(2.2rem, 6vw, 4rem); text-transform: uppercase; font-weight: 700; position: relative; }
.final-cta p { color: var(--muted); margin: 1rem 0 2rem; font-size: 1.15rem; position: relative; }
.final-cta .btn { position: relative; }

/* Footer */
.footer { position: relative; z-index: 2; background: var(--bg-2); border-top: 1px solid var(--border); padding: 3rem clamp(1rem, 5vw, 4rem) 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; align-items: flex-start; }
.footer-tag { color: var(--muted); font-size: 0.9rem; margin-top: 0.5rem; max-width: 360px; }
.footer-links { display: flex; gap: 1.6rem; }
.footer-links a { color: var(--muted); text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.05em; transition: color 0.15s; }
.footer-links a:hover { color: var(--gold); }
.footer-fine { max-width: 1200px; margin: 2rem auto 0; color: #4a505a; font-size: 0.78rem; font-family: 'JetBrains Mono', monospace; }

@media (max-width: 720px) {
  .nav-links a:not(.btn) { display: none; }
  .pricing { grid-template-columns: 1fr; }
}
