:root {
  --bg: #0d0d0d;
  --bg-elev: rgba(23, 23, 23, 0.82);
  --panel: rgba(28, 28, 28, 0.88);
  --panel-strong: rgba(18, 18, 18, 0.94);
  --text: #f4f4f4;
  --muted: #b6b6b6;
  --border: rgba(255,255,255,0.08);
  --accent: #e0291c;
  --accent-dark: #b91e14;
  --max: 1160px;
  --shadow: 0 16px 48px rgba(0,0,0,.35);
}

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-bg {
  background:
    linear-gradient(rgba(8,8,8,.82), rgba(8,8,8,.9)),
    url('../images/texture-bg.png') center/cover fixed no-repeat;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8,8,8,.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand img {
  width: 170px;
  max-width: 42vw;
  height: auto;
}
.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.nav a {
  color: var(--muted);
  font-size: 14px;
}
.nav a:hover,
.nav a.active {
  color: var(--text);
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: .02em;
  transition: transform .15s ease, opacity .15s ease, background .2s ease;
}
.button:hover,
.button-secondary:hover { transform: translateY(-1px); }
.button {
  color: #fff;
  background: linear-gradient(180deg, #f23e30, var(--accent-dark));
  box-shadow: 0 12px 30px rgba(224,41,28,.28);
}
.button-secondary {
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  color: var(--text);
}

.hero {
  position: relative;
  overflow: clip;
  background:
    linear-gradient(90deg, rgba(5,5,5,.86) 0%, rgba(7,7,7,.78) 42%, rgba(7,7,7,.58) 100%),
    url('../images/hero-bg.png') center/cover no-repeat;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 40px;
  align-items: center;
  padding: 72px 0;
}
.hero-copy {
  max-width: 640px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d8d8d8;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.03);
}
.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: .95;
  margin: 18px 0 16px;
  text-transform: uppercase;
}
.hero p {
  font-size: clamp(18px, 2vw, 22px);
  color: #d0d0d0;
  margin: 0 0 28px;
  max-width: 560px;
}
.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-card {
  background: linear-gradient(180deg, rgba(20,20,20,.72), rgba(12,12,12,.92));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.hero-card img {
  border-radius: 16px;
}

.section {
  padding: 72px 0;
}
.section-title {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
  margin: 0 0 14px;
  text-transform: uppercase;
}
.section-subtitle {
  margin: 0 0 30px;
  color: var(--muted);
  max-width: 720px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.card {
  background: linear-gradient(180deg, rgba(26,26,26,.8), rgba(14,14,14,.92));
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}
.card p {
  margin: 0;
  color: var(--muted);
}
.card .index {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(224,41,28,.18);
  color: #ff796e;
  font-weight: 800;
  margin-bottom: 14px;
}

.philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.quote-box {
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(31,31,31,.78), rgba(12,12,12,.94));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.quote-box .big {
  font-size: clamp(32px, 4vw, 54px);
  line-height: .95;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.quote-box p {
  margin: 0;
  color: var(--muted);
}

.cta-panel {
  text-align: center;
  padding: 42px 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(30,30,30,.82), rgba(10,10,10,.96));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.cta-panel h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: .98;
  text-transform: uppercase;
}
.cta-panel p {
  margin: 0 auto 22px;
  color: var(--muted);
  max-width: 640px;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 26px 0 38px;
  color: var(--muted);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.legal-hero,
.support-hero {
  padding: 54px 0 18px;
}
.legal-shell {
  padding-bottom: 64px;
}
.legal-card {
  background: linear-gradient(180deg, rgba(25,25,25,.84), rgba(12,12,12,.96));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.legal-card h1 {
  margin: 0 0 8px;
  font-size: clamp(34px, 5vw, 56px);
  text-transform: uppercase;
}
.legal-card .updated {
  color: var(--muted);
  margin: 0 0 24px;
}
.legal-card h2 {
  margin: 26px 0 10px;
  font-size: 24px;
}
.legal-card p,
.legal-card li {
  color: #d2d2d2;
}
.legal-card ul {
  padding-left: 20px;
}
.note {
  color: var(--muted);
  font-size: 14px;
}
.contact-box {
  margin-top: 20px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
}
.contact-box strong { color: #fff; }
.faq-grid {
  display: grid;
  gap: 14px;
}
.faq-item {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
}
.faq-item h3 {
  margin: 0 0 8px;
  font-size: 18px;
}
.faq-item p {
  margin: 0;
  color: var(--muted);
}
.badge {
  display: inline-block;
  color: #ffc6c1;
  background: rgba(224,41,28,.12);
  border: 1px solid rgba(224,41,28,.28);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}

@media (max-width: 980px) {
  .hero-inner,
  .philosophy,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .hero-inner { padding: 56px 0; }
}

@media (max-width: 760px) {
  .topbar-inner { align-items: flex-start; }
  .nav { gap: 12px; }
  .section { padding: 56px 0; }
  .hero h1 { font-size: clamp(34px, 12vw, 52px); }
  .button,
  .button-secondary { width: 100%; }
  .cta-row { flex-direction: column; }
}
