/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #080808;
  --fg: #F0EBE0;
  --accent: #E8952A;
  --accent-dim: rgba(232, 149, 42, 0.12);
  --muted: #7A7570;
  --surface: #111111;
  --surface2: #191919;
  --border: #222222;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--accent);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border: 1px solid var(--accent);
}

.nav-name {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg);
}

.nav-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 4px 10px;
  background: var(--accent-dim);
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 40px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 80%, rgba(232, 149, 42, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 20%, rgba(232, 149, 42, 0.04) 0%, transparent 60%);
}

.hero-soundwave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 20%, var(--accent) 40%, transparent 45%, transparent 55%, var(--accent) 60%, var(--accent) 80%, transparent 100%);
  opacity: 0.3;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
}

.hero-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  line-height: 0.88;
  margin-bottom: 32px;
}

.hero-headline-top {
  display: block;
  font-size: clamp(80px, 14vw, 160px);
  color: var(--accent);
  letter-spacing: 0.02em;
}

.hero-headline-mid {
  display: block;
  font-size: clamp(36px, 6vw, 72px);
  color: var(--muted);
  letter-spacing: 0.08em;
}

.hero-headline-bot {
  display: block;
  font-size: clamp(72px, 12vw, 144px);
  color: var(--fg);
  letter-spacing: 0.01em;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* === STATS === */
.stats {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}

.stat {
  flex: 1;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-sep {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
  line-height: 1.3;
}

/* === OVERVIEW === */
.overview {
  padding: 120px 40px;
}

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

.overview-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.overview-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 0.95;
  color: var(--fg);
}

.overview-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.overview-body p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
}

.overview-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.overview-meta span {
  font-size: 13px;
  color: var(--muted);
}

/* === MANIFESTO === */
.manifesto {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 40px;
}

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

.manifesto-quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
  color: var(--fg);
  max-width: 900px;
  margin-bottom: 28px;
  font-style: normal;
}

.manifesto-attr {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 72px;
}

.manifesto-name {
  font-weight: 700;
  font-size: 16px;
  color: var(--accent);
}

.manifesto-role {
  font-size: 14px;
  color: var(--muted);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.manifesto-pillar h3 {
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
  margin-bottom: 12px;
}

.manifesto-pillar p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

.manifesto-icon {
  width: 32px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 16px;
}

/* === SERVICES === */
.services {
  padding: 100px 40px;
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.services-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  background: var(--bg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border: 1px solid rgba(232, 149, 42, 0.3);
}

.service-icon {
  width: 24px;
  height: 2px;
  background: var(--accent);
}

.service-card h3 {
  font-weight: 700;
  font-size: 17px;
  color: var(--fg);
}

.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* === CLOSING === */
.closing {
  padding: 120px 40px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--accent));
}

.closing-inner {
  position: relative;
  z-index: 1;
}

.closing-line {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 48px;
}

.closing-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 8vw, 112px);
  line-height: 0.92;
  color: var(--fg);
  margin-bottom: 32px;
}

.closing-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.closing-vibe {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 10px 24px;
  background: var(--accent-dim);
}

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 40px;
  background: var(--surface);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--accent);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(232, 149, 42, 0.4);
}

.footer-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg);
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-links span {
  font-size: 14px;
  color: var(--muted);
}

.footer-copy {
  font-size: 12px;
  color: var(--muted);
  opacity: 0.6;
  letter-spacing: 0.04em;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 100px 24px 60px; }
  .stats-inner { flex-direction: column; }
  .stat-sep { width: 100%; height: 1px; }
  .stat { padding: 24px 24px; }
  .overview { padding: 80px 24px; }
  .overview-inner { grid-template-columns: 1fr; gap: 40px; }
  .manifesto { padding: 80px 24px; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 32px; }
  .services { padding: 80px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .closing { padding: 80px 24px 60px; }
  .footer { padding: 40px 24px; }
  .footer-links { flex-direction: column; gap: 8px; }
}

@media (max-width: 480px) {
  .hero-headline-top { font-size: 80px; }
  .hero-headline-bot { font-size: 72px; }
  .stat-num { font-size: 32px; }
}