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

:root {
  --black: #0D0D0D;
  --amber: #F5A623;
  --amber-dim: #c8841a;
  --white: #F5F5F0;
  --gray: #888888;
  --dark-gray: #1A1A1A;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

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

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: rgba(13, 13, 13, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245, 166, 35, 0.15);
}
.nav-inner { max-width: 1200px; margin: 0 auto; }
.nav-logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--amber);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-overline {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
  font-weight: 500;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 96px);
  line-height: 1.0;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--gray);
  max-width: 420px;
  line-height: 1.7;
}
.hero-right { display: flex; align-items: center; justify-content: center; }
.hero-visual {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.visual-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245,166,35,0.2);
}
.ring-1 { width: 120px; height: 120px; animation: pulse 3s ease-in-out infinite; }
.ring-2 { width: 200px; height: 200px; animation: pulse 3s ease-in-out infinite 0.5s; }
.ring-3 { width: 280px; height: 280px; animation: pulse 3s ease-in-out infinite 1s; }
.visual-center {
  width: 80px;
  height: 80px;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(245,166,35,0.3);
}
.visual-icon { font-size: 28px; color: var(--black); }
@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

/* MANIFESTO */
.manifesto {
  background: var(--dark-gray);
  padding: 100px 40px;
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
  letter-spacing: 1px;
  color: var(--amber);
  margin-bottom: 40px;
}
.manifesto-body {
  font-size: 18px;
  color: var(--gray);
  line-height: 1.8;
}

/* FEATURES */
.features { padding: 100px 40px; }
.features-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 48px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(245,166,35,0.1);
}
.feature-card {
  background: var(--black);
  padding: 48px 40px;
  transition: background 0.3s;
}
.feature-card:hover { background: #111; }
.feature-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--amber);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  margin-bottom: 24px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: var(--white);
}
.feature-card p { font-size: 15px; color: var(--gray); line-height: 1.7; }

/* PROCESS */
.process {
  background: var(--dark-gray);
  padding: 100px 40px;
}
.process-inner { max-width: 1200px; margin: 0 auto; }
.process-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: 2px;
  margin-bottom: 80px;
  margin-top: 16px;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 56px;
  color: rgba(245,166,35,0.15);
  display: block;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: var(--white);
}
.step p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* NICHES */
.niches { padding: 100px 40px; }
.niches-inner { max-width: 1200px; margin: 0 auto; }
.niches-list { margin-top: 48px; }
.niche-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(245,166,35,0.1);
}
.niche-item:first-child { border-top: 1px solid rgba(245,166,35,0.1); }
.niche-arrow { color: var(--amber); font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.niche-item p { font-size: 18px; color: var(--gray); line-height: 1.6; }
.niche-item strong { color: var(--white); font-weight: 600; }

/* CLOSING */
.closing {
  background: var(--amber);
  padding: 120px 40px;
}
.closing-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.05;
  letter-spacing: 2px;
  color: var(--black);
  margin-bottom: 32px;
}
.closing-body {
  font-size: 18px;
  color: rgba(13,13,13,0.7);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* FOOTER */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(245,166,35,0.1);
  padding: 48px 40px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer-logo { font-family: var(--font-display); font-size: 24px; letter-spacing: 2px; color: var(--amber); }
.footer-sub { font-size: 14px; color: var(--gray); }

/* MOBILE */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 100px 24px 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  .hero-headline { font-size: 52px; }
  .features-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .manifesto, .features, .process, .niches, .closing, .footer { padding: 80px 24px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}