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

:root {
  --fire: #FF3D2E;
  --ember: #FF8A00;
  --gold: #F5C842;
  --night: #0A0A0F;
  --deep: #12121A;
  --card: #1A1A26;
  --muted: #2E2E42;
  --text: #F0EDE8;
  --soft: #9D9BB0;
  --fire-glow: rgba(255,61,46,0.12);
}

html { scroll-behavior: smooth; }

body {
  background: var(--night);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--night); }
::-webkit-scrollbar-thumb { background: var(--muted); border-radius: 3px; }

/* ── TYPOGRAPHY HELPERS ── */
.italic { font-family: 'Playfair Display', serif; font-style: italic; }
em { font-style: italic; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 48px;
  background: linear-gradient(to bottom, rgba(10,10,15,0.96) 0%, transparent 100%);
  backdrop-filter: blur(6px);
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.12em;
  color: var(--text);
}
.logo span { color: var(--fire); }

.nav-right { display: flex; align-items: center; gap: 16px; }

.nav-tag {
  background: rgba(255,61,46,0.12);
  border: 1px solid rgba(255,61,46,0.25);
  color: var(--fire);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 40px;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 0 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
}

.city-grid {
  position: absolute; right: -60px; top: 50%; transform: translateY(-50%);
  width: 52%; height: 110%; opacity: 0.08;
  background-image:
    radial-gradient(circle, var(--ember) 1px, transparent 1px),
    radial-gradient(circle, var(--fire) 1.2px, transparent 1px);
  background-size: 28px 28px, 56px 56px;
  background-position: 0 0, 14px 14px;
  mask-image: radial-gradient(ellipse 80% 90% at 70% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 90% at 70% 50%, black 20%, transparent 80%);
  animation: gridPulse 7s ease-in-out infinite;
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.08; }
  50% { opacity: 0.18; }
}

.glow-orb {
  position: absolute; border-radius: 50%; filter: blur(80px);
}

.glow-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,61,46,0.15) 0%, transparent 70%);
  top: 10%; right: 20%;
  animation: orbFloat 10s ease-in-out infinite;
}

.glow-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(255,138,0,0.1) 0%, transparent 70%);
  bottom: 20%; right: 35%;
  animation: orbFloat 14s ease-in-out infinite reverse;
}

.glow-3 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(245,200,66,0.06) 0%, transparent 70%);
  top: 55%; left: 5%;
  animation: orbFloat 18s ease-in-out infinite 3s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(20px, -15px); }
  66% { transform: translate(-10px, 10px); }
}

.hero-content { position: relative; z-index: 2; max-width: 640px; padding-top: 100px; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,61,46,0.1);
  border: 1px solid rgba(255,61,46,0.3);
  color: var(--fire);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 36px;
  animation: fadeUp 0.7s ease both;
}

.dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--fire);
  animation: blink 1.6s ease-in-out infinite;
}

@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.1; } }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.8rem, 8.5vw, 7rem);
  line-height: 0.93;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 32px;
  animation: fadeUp 0.7s 0.1s ease both;
}

.line2 {
  background: linear-gradient(90deg, var(--fire) 0%, var(--ember) 50%, var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

h1 .line3.italic {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--soft);
  font-size: 0.72em;
  -webkit-text-fill-color: var(--soft);
}

.lede {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--soft);
  max-width: 480px;
  margin-bottom: 48px;
  font-weight: 300;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-meta {
  display: flex; gap: 40px;
  animation: fadeUp 0.7s 0.3s ease both;
}

.stat { display: flex; flex-direction: column; gap: 4px; }

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.04em;
  color: var(--fire);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--soft);
  line-height: 1.4;
  max-width: 160px;
  font-weight: 300;
}

/* ── EYEBROW ── */
.eyebrow {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 16px;
}

/* ── HOW ── */
.how {
  padding: 120px 48px;
  background: var(--deep);
  position: relative;
}

.how::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--muted), transparent);
}

.section-header { margin-bottom: 80px; }

.section-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--text);
}

.section-header h2 em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--ember);
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 900px;
}

.step { flex: 1; padding-right: 40px; }

.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--fire);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 16px;
}

.step h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 12px;
}

.step p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--soft);
  font-weight: 300;
}

.step-divider {
  width: 1px;
  min-height: 160px;
  background: linear-gradient(to bottom, transparent, var(--muted) 20%, var(--muted) 80%, transparent);
  margin: 0 32px;
  flex-shrink: 0;
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 120px 48px;
  background: var(--night);
  position: relative;
}

.manifesto::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--muted), transparent);
}

.manifesto-inner { max-width: 700px; }

.manifesto-eyebrow { margin-bottom: 28px; }

blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 40px;
  border-left: 3px solid var(--fire);
  padding-left: 28px;
}

.manifesto p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--soft);
  font-weight: 300;
  margin-bottom: 24px;
}

.manifesto p em { color: var(--text); font-style: italic; }

.manifesto-close {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ember) !important;
  margin-top: 40px;
}

/* ── EXPERIENCE ── */
.experience {
  padding: 120px 48px;
  background: var(--deep);
  position: relative;
}

.experience::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--muted), transparent);
}

.experience .eyebrow { margin-bottom: 16px; }

.experience h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 64px;
}

.experience h2 em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--ember);
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
}

.exp-card {
  background: var(--card);
  border: 1px solid var(--muted);
  border-radius: 12px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.exp-card:hover { border-color: rgba(255,61,46,0.4); transform: translateY(-4px); }

.exp-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--fire), var(--ember), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.exp-card:hover::after { opacity: 1; }

.exp-icon {
  margin-bottom: 20px;
  display: flex;
}

.exp-card h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 10px;
}

.exp-card p {
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--soft);
  font-weight: 300;
}

/* ── CLOSING ── */
.closing {
  padding: 140px 48px;
  background: var(--night);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--muted), transparent);
}

.closing-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }

.closing h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 28px;
}

.closing h2 em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--fire);
}

.closing-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--soft);
  font-weight: 300;
  margin-bottom: 48px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.closing-tag {
  display: inline-block;
  background: rgba(255,61,46,0.08);
  border: 1px solid rgba(255,61,46,0.25);
  color: var(--soft);
  font-size: 0.8rem;
  line-height: 1.5;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 300;
  max-width: 420px;
}

/* ── FOOTER ── */
footer {
  padding: 64px 48px 48px;
  background: var(--deep);
  text-align: center;
  border-top: 1px solid var(--muted);
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.12em;
  color: var(--text);
  margin-bottom: 12px;
}
.footer-logo span { color: var(--fire); }

.footer-tagline {
  font-size: 0.82rem;
  color: var(--soft);
  font-weight: 300;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-links a {
  color: var(--soft);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }

.footer-sep { color: var(--muted); }

.footer-copy {
  font-size: 0.72rem;
  color: var(--muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 18px 24px; }
  .hero { padding: 0 24px 60px; }
  .hero-content { padding-top: 80px; }
  h1 { font-size: clamp(3rem, 14vw, 5rem); }
  .lede { font-size: 0.95rem; }
  .hero-meta { flex-direction: column; gap: 24px; }
  .how { padding: 80px 24px; }
  .steps { flex-direction: column; gap: 40px; }
  .step-divider { width: 40px; min-height: 1px; height: 1px; margin: 0; background: var(--muted); }
  .manifesto, .experience, .closing { padding: 80px 24px; }
  .exp-grid { grid-template-columns: 1fr; gap: 20px; }
  footer { padding: 48px 24px 36px; }
  .closing h2 { font-size: clamp(2.2rem, 10vw, 4rem); }
}

@media (max-width: 480px) {
  .hero-meta { display: none; }
  .city-grid { display: none; }
}