:root {
  --bg: #0C0C14;
  --surface: #13131D;
  --surface-2: #1A1A28;
  --fg: #F0EDE8;
  --fg-muted: #8A8899;
  --accent: #F59E0B;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --blue: #3B82F6;
  --blue-dim: rgba(59, 130, 246, 0.12);
  --border: rgba(240, 237, 232, 0.08);
  --radius: 10px;
  --radius-sm: 6px;
}

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

html { font-size: 16px; }

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

h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 6vw 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-headline {
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 24px;
}

.hero-headline .leak {
  color: var(--accent);
  font-style: italic;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-tagline {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  color: var(--fg);
  font-weight: 600;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  margin-bottom: 32px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--accent);
  color: #0C0C14;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}

.hero-cta:hover {
  background: #D97706;
  transform: translateY(-2px);
}

/* ORB */
.hero-orb {
  position: relative;
  width: 280px;
  height: 280px;
  flex-shrink: 0;
}

.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(245, 158, 11, 0.15);
}

.orb-ring-1 {
  inset: 0;
  animation: pulse-ring 3s ease-in-out infinite;
}

.orb-ring-2 {
  inset: 25px;
  animation: pulse-ring 3s ease-in-out infinite 0.5s;
  border-color: rgba(245, 158, 11, 0.25);
}

.orb-ring-3 {
  inset: 50px;
  animation: pulse-ring 3s ease-in-out infinite 1s;
  border-color: rgba(245, 158, 11, 0.4);
}

.orb-core {
  position: absolute;
  inset: 75px;
  background: radial-gradient(circle, var(--accent) 0%, #d97706 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(245,158,11,0.4), 0 0 80px rgba(245,158,11,0.2);
}

.orb-label {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #0C0C14;
  letter-spacing: 0.1em;
}

@keyframes pulse-ring {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.03); }
}

.hero-scroll-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--fg-muted);
  font-size: 0.8rem;
  margin-top: 80px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.section-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 48px;
}

.section-heading em {
  color: var(--accent);
  font-style: normal;
}

/* HOW / LEAK */
.how {
  padding: 100px 6vw;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.how .section-heading {
  max-width: 600px;
}

.leak-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.leak-stat {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.leak-copy {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.7;
}

/* STACK */
.stack {
  padding: 100px 6vw;
}

.stack .section-heading {
  max-width: 560px;
}

.stack-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1000px;
}

.stack-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: border-color 0.2s;
}

.stack-card:hover {
  border-color: rgba(245,158,11,0.3);
}

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

.stack-card h3 {
  font-size: 1.15rem;
  color: var(--fg);
  margin-bottom: 12px;
}

.stack-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* INDUSTRIES */
.industries {
  padding: 100px 6vw;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.industry-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
  max-width: 800px;
}

.industry-tag {
  background: var(--accent-dim);
  border: 1px solid rgba(245,158,11,0.25);
  color: var(--accent);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 18px;
  border-radius: 100px;
  transition: background 0.2s, border-color 0.2s;
}

.industry-tag:hover {
  background: rgba(245,158,11,0.2);
  border-color: rgba(245,158,11,0.5);
}

.industry-copy {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.7;
}

/* MANIFESTO */
.manifesto {
  padding: 100px 6vw;
  background: linear-gradient(135deg, var(--bg) 0%, #0E0C18 100%);
}

.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-badge {
  margin-bottom: 36px;
}

.manifesto-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-weight: 500;
  color: var(--fg);
  line-height: 1.55;
  margin-bottom: 32px;
  font-style: normal;
}

.manifesto-attr {
  font-size: 0.9rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

/* CLOSING */
.closing {
  padding: 100px 6vw 120px;
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
}

.closing-headline {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  margin-bottom: 28px;
  color: var(--fg);
}

.closing-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.closing-outro {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.outro-line {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--fg);
}

.outro-bullet {
  color: var(--accent);
  font-size: 0.6rem;
  margin-top: 5px;
  flex-shrink: 0;
}

/* FOOTER */
.footer {
  padding: 48px 6vw;
  border-top: 1px solid var(--border);
}

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

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--fg);
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 4px;
}

.footer-meta {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-orb {
    width: 200px;
    height: 200px;
    margin: 0 auto;
  }
  .leak-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .stack-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 60px 5vw 50px;
  }
  .how, .stack, .industries, .manifesto, .closing {
    padding: 60px 5vw;
  }
  .footer {
    padding: 36px 5vw;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .stat-number {
    font-size: 2.2rem;
  }
}