:root {
  --bg: #0A0A12;
  --bg-2: #11111c;
  --fg: #F0EDE8;
  --fg-muted: #8A8699;
  --accent: #F5A623;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --border: rgba(240, 237, 232, 0.08);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Figtree', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* HERO */
.hero {
  padding: 80px 64px 64px;
  border-bottom: 1px solid var(--border);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(245, 166, 35, 0.25);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-weight: 600;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 420px;
  font-weight: 400;
}
.hero-right {
  position: relative;
}
.hero-image-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.7) brightness(0.9);
}
.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,18,0.5) 0%, transparent 60%);
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1200px;
  margin: 56px auto 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-2);
  overflow: hidden;
}
.stat {
  flex: 1;
  padding: 24px 32px;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}
.stat-sep {
  width: 1px;
  height: 56px;
  background: var(--border);
}

/* HOW IT WORKS */
.works {
  padding: 96px 64px;
  border-bottom: 1px solid var(--border);
}
.works-header {
  max-width: 1200px;
  margin: 0 auto 64px;
}
.section-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 12px;
}
.section-sub {
  font-size: 17px;
  color: var(--fg-muted);
}
.loop-track {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}
.loop-step {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  background: var(--bg-2);
}
.loop-arrow {
  display: flex;
  align-items: center;
  padding: 0 20px;
  color: var(--fg-muted);
  flex-shrink: 0;
}
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-muted);
}

/* PRINCIPLES */
.principles {
  padding: 96px 64px;
  border-bottom: 1px solid var(--border);
}
.principles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.principle {
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-2);
}
.principle-icon {
  color: var(--accent);
  margin-bottom: 20px;
}
.principle-title {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.principle-body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--fg-muted);
}
.principles-pull {
  max-width: 800px;
  margin: 64px auto 0;
  text-align: center;
}
.pull-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 500;
  color: var(--fg-muted);
  font-style: italic;
  line-height: 1.4;
}

/* CLOSING */
.closing {
  padding: 96px 64px;
  border-bottom: 1px solid var(--border);
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.closing-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 24px;
}
.closing-body {
  font-size: 19px;
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 640px;
  margin: 0 auto 56px;
}
.closing-visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  height: 48px;
}
.signal-bar {
  width: 4px;
  background: var(--accent);
  border-radius: 2px;
  animation: wave 1.4s ease-in-out infinite;
}
.signal-bar:nth-child(1) { height: 20%; animation-delay: 0s; }
.signal-bar:nth-child(2) { height: 60%; animation-delay: 0.15s; }
.signal-bar:nth-child(3) { height: 100%; animation-delay: 0.3s; }
.signal-bar:nth-child(4) { height: 60%; animation-delay: 0.45s; }
.signal-bar:nth-child(5) { height: 20%; animation-delay: 0.6s; }
@keyframes wave {
  0%, 100% { opacity: 0.4; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* FOOTER */
.footer {
  padding: 40px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-name {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
}
.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
}
.footer-note {
  font-size: 12px;
  color: var(--fg-muted);
}

/* MOBILE */
@media (max-width: 768px) {
  .hero { padding: 48px 24px 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { order: -1; }
  .hero-image-wrap { aspect-ratio: 16/9; }
  .hero-stats { flex-direction: column; gap: 0; }
  .stat-sep { width: 100%; height: 1px; }
  .works { padding: 64px 24px; }
  .loop-track { flex-direction: column; gap: 16px; }
  .loop-arrow { display: none; }
  .principles { padding: 64px 24px; }
  .principles-grid { grid-template-columns: 1fr; }
  .closing { padding: 64px 24px; }
  .footer { flex-direction: column; align-items: flex-start; padding: 32px 24px; }
}