@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=IBM+Plex+Mono:wght@400;600&family=Inter:wght@400;500;600;700&display=swap');

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

:root {
  --black:   #080A0C;
  --coal:    #111418;
  --steel:   #1C2128;
  --wire:    #2A3340;
  --amber:   #E8A020;
  --amber-d: #7A5010;
  --red:     #C0392B;
  --green:   #2ECC71;
  --text:    #D4CFC8;
  --muted:   #6B7280;
  --white:   #F5F1EB;
  --display: 'Bebas Neue', sans-serif;
  --mono:    'IBM Plex Mono', monospace;
  --body:    'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.025) 2px, rgba(0,0,0,0.025) 4px);
  pointer-events: none;
  z-index: 9000;
}

/* ── TICKER ── */
.ticker {
  background: var(--red);
  padding: 6px 0;
  overflow: hidden;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #fff;
}
.ticker-track {
  display: flex;
  animation: tick 32s linear infinite;
  white-space: nowrap;
}
.ticker-track span { padding: 0 48px; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── NAV ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 5vw;
  background: var(--coal);
  border-bottom: 1px solid var(--wire);
  position: sticky;
  top: 0;
  z-index: 500;
}
.logo { font-family: var(--display); font-size: 22px; letter-spacing: 0.12em; color: var(--amber); text-decoration: none; }
.logo span { color: var(--white); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; color: var(--muted); text-decoration: none; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--amber); }
.nav-cta { background: var(--amber); color: var(--black) !important; padding: 9px 20px; font-weight: 600; }
.nav-cta:hover { background: #f5b030 !important; }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--amber); margin: 5px 0; transition: all 0.2s; }

/* ── SHARED SECTION ── */
.section { padding: 80px 5vw; }
.section-inner { max-width: 960px; margin: 0 auto; }
.section-tag { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; color: var(--amber); text-transform: uppercase; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.section-tag::before { content: '//'; color: var(--wire); }
.section h2 { font-family: var(--display); font-size: clamp(38px, 5vw, 64px); color: var(--white); line-height: 0.95; margin-bottom: 20px; letter-spacing: 0.02em; }
.section h2 em { color: var(--amber); font-style: normal; }
.section p.lead { font-size: 17px; color: var(--muted); max-width: 600px; line-height: 1.75; margin-bottom: 40px; }
hr.divider { border: none; border-top: 1px solid var(--wire); }

/* ── BUTTONS ── */
.btn { display: inline-block; font-family: var(--display); font-size: 20px; letter-spacing: 0.08em; padding: 13px 32px; text-decoration: none; cursor: pointer; border: none; transition: all 0.2s; }
.btn-amber { background: var(--amber); color: var(--black); }
.btn-amber:hover { background: #f5b030; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--amber); border: 1px solid var(--amber); }
.btn-outline:hover { background: rgba(232,160,32,0.08); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: #e74c3c; }

/* ── FORMS ── */
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.15em; color: var(--muted); text-transform: uppercase; }
.field input, .field select, .field textarea {
  background: var(--steel); border: 1px solid var(--wire); color: var(--white);
  font-family: var(--body); font-size: 15px; padding: 12px 16px; outline: none;
  transition: border-color 0.2s; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--amber); }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }

/* ── CARDS ── */
.card { background: var(--coal); border: 1px solid var(--wire); padding: 28px; transition: border-color 0.2s; }
.card:hover { border-color: var(--amber-d); }
.card.featured { border-color: var(--amber); background: var(--steel); }

/* ── FOOTER ── */
footer {
  background: var(--coal);
  border-top: 1px solid var(--wire);
  padding: 48px 5vw 28px;
}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo { display: block; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.7; max-width: 240px; }
.footer-col h4 { font-family: var(--mono); font-size: 10px; letter-spacing: 0.15em; color: var(--amber); text-transform: uppercase; margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13px; color: var(--muted); text-decoration: none; margin-bottom: 8px; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--wire); padding-top: 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-legal { font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: 0.06em; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--coal); border-bottom: 1px solid var(--wire); padding: 20px 5vw; gap: 16px; }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: block; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .section { padding: 60px 5vw; }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}
