/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0c0c0c;
  --bg-2: #141414;
  --bg-3: #1c1c1c;
  --fg: #f2f2f2;
  --fg-2: #a0a0a0;
  --accent: #ff4400;
  --accent-dim: #b33000;
  --font-head: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-body: 'DM Sans', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(255,68,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.line {
  position: absolute;
  background: rgba(255,68,0,0.04);
  top: 0;
  bottom: 0;
}

.l1 { left: 8%; width: 1px; }
.l2 { left: 22%; width: 1px; }
.l3 { left: 52%; width: 1px; }
.l4 { left: 80%; width: 1px; }

.hero-spray {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  pointer-events: none;
}

.spray {
  position: absolute;
  bottom: 0;
  background: linear-gradient(to top, rgba(255,68,0,0.05), transparent);
  transform-origin: bottom center;
}

.s1 { left: 5%; width: 120px; height: 180px; transform: rotate(-15deg); }
.s2 { left: 20%; width: 80px; height: 120px; transform: rotate(-5deg); opacity: 0.7; }
.s3 { right: 25%; width: 100px; height: 150px; transform: rotate(10deg); }
.s4 { right: 8%; width: 60px; height: 90px; transform: rotate(20deg); opacity: 0.5; }

/* Horizontal rule lines across hero */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,68,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,68,0,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 48px 100px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(48px, 8vw, 96px);
  line-height: 1.0;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 32px;
  max-width: 700px;
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-2);
  max-width: 520px;
  line-height: 1.7;
}

/* ─── SHARED SECTION ─── */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 48px;
}

/* ─── MARKETS ─── */
.markets {
  background: var(--bg-2);
  padding: 100px 0;
}

.markets-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
}

.market-card {
  background: var(--bg-3);
  padding: 36px 32px;
  border-left: 2px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}

.market-card:hover {
  border-left-color: var(--accent);
  background: #222;
}

.market-icon {
  color: var(--accent);
  margin-bottom: 20px;
}

.market-card h3 {
  font-family: var(--font-head);
  font-size: 22px;
  letter-spacing: 0.05em;
  color: var(--fg);
  margin-bottom: 12px;
}

.market-card p {
  font-size: 15px;
  color: var(--fg-2);
  line-height: 1.65;
}

/* ─── STANDARDS ─── */
.standards {
  background: var(--bg);
  padding: 100px 0;
}

.standards-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.standards-left .section-title { margin-bottom: 20px; }

.standards-desc {
  font-size: 16px;
  color: var(--fg-2);
  line-height: 1.7;
  max-width: 380px;
}

.standards-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.standard-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.standard-item:first-child { border-top: 1px solid rgba(255,255,255,0.06); }

.standard-marker {
  font-family: var(--font-head);
  font-size: 20px;
  color: var(--accent);
  letter-spacing: 0.05em;
  padding-top: 2px;
}

.standard-body h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
}

.standard-body p {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.6;
}

/* ─── MANIFESTO ─── */
.manifesto {
  background: var(--bg-2);
  padding: 100px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.manifesto-quote {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.5vw, 42px);
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: var(--fg);
  max-width: 900px;
  margin: 0 0 36px 0;
  position: relative;
  padding-left: 32px;
  border-left: 3px solid var(--accent);
}

.manifesto-attr {
  font-size: 14px;
  color: var(--fg-2);
  padding-left: 32px;
  line-height: 1.8;
}

/* ─── CLOSING ─── */
.closing {
  background: var(--bg);
  padding: 120px 0;
}

.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--fg);
  max-width: 800px;
  margin-bottom: 28px;
}

.closing-body {
  font-size: 17px;
  color: var(--fg-2);
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 60px;
}

.closing-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.stat {}

.stat-value {
  font-family: var(--font-head);
  font-size: 36px;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: var(--fg-2);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 28px;
  letter-spacing: 0.05em;
  color: var(--fg);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--fg-2);
  max-width: 280px;
  line-height: 1.6;
}

.footer-meta p {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  line-height: 1.8;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .hero-content { padding: 100px 24px 80px; }
  .markets-inner, .standards-inner, .manifesto-inner, .closing-inner, .footer-inner { padding: 0 24px; }
  .markets { padding: 72px 0; }
  .standards { padding: 72px 0; }
  .manifesto { padding: 72px 0; }
  .closing { padding: 72px 0; }

  .standards-inner { grid-template-columns: 1fr; gap: 48px; }
  .closing-stats { gap: 32px; }
  .footer-inner { flex-direction: column; }

  .market-grid { gap: 2px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 42px; }
  .closing-stats { flex-direction: column; gap: 24px; }
}