:root {
  --bg: #0f1a3d;
  --bg-alt: #142050;
  --fg: #f5f0e8;
  --fg-muted: rgba(245,240,232,0.6);
  --accent: #ff6b35;
  --accent-warm: #ff9a5c;
  --accent-teal: #3ecfb2;
  --border: rgba(245,240,232,0.1);
  --card-bg: rgba(255,255,255,0.04);
  --font-head: 'Nunito', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 14px;
  --radius-lg: 24px;
}

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

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

/* Nav */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 18px;
  color: var(--accent);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 300;
}

/* Hero */
.hero {
  position: relative;
  padding: 100px 40px 80px;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}
.hero-blob-1 {
  width: 500px; height: 500px;
  background: var(--accent);
  top: -100px; right: -100px;
}
.hero-blob-2 {
  width: 400px; height: 400px;
  background: var(--accent-teal);
  bottom: -50px; left: 10%;
}
.hero-blob-3 {
  width: 300px; height: 300px;
  background: var(--accent-warm);
  top: 40%; left: 40%;
}
.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 28px;
}
.hero-question {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--fg);
  max-width: 800px;
  margin-bottom: 28px;
  font-style: italic;
}
.hero-answer {
  font-size: 20px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 48px;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.proof-stat {
  display: flex;
  flex-direction: column;
  padding: 0 28px;
}
.proof-stat:first-child { padding-left: 0; }
.proof-num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 900;
  color: var(--accent);
}
.proof-label {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}
.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Shift */
.shift {
  padding: 80px 40px;
  background: var(--bg-alt);
}
.shift-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.shift-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-teal);
  font-weight: 600;
  margin-bottom: 20px;
}
.shift-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.shift-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.shift-card-accent {
  border-color: var(--accent);
  background: rgba(255,107,53,0.06);
}
.shift-icon {
  margin-bottom: 20px;
}
.shift-card h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--fg);
}
.shift-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Expeditions */
.expeditions {
  padding: 100px 40px;
}
.expeditions-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  margin-bottom: 60px;
  color: var(--fg);
  max-width: 600px;
}
.expedition-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.expedition-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--accent), var(--accent-teal), var(--accent));
  opacity: 0.3;
}
.expedition-step {
  padding: 0 24px 0 0;
}
.step-num {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 16px;
  line-height: 1;
  opacity: 0.8;
}
.step-content h4 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--fg);
}
.step-content p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* Numbers */
.numbers {
  padding: 80px 40px;
  background: var(--bg-alt);
}
.numbers-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.numbers-title {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  margin-bottom: 48px;
  color: var(--fg);
  max-width: 600px;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.number-item {
  padding: 24px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.number-big {
  display: block;
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 12px;
  line-height: 1;
}
.number-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* Closing */
.closing {
  padding: 100px 40px;
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.closing-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4.5vw, 56px);
  font-weight: 900;
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 28px;
}
.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Footer */
.footer {
  padding: 28px 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 16px;
  color: var(--accent);
}
.footer-sep {
  color: var(--fg-muted);
}
.footer-motto {
  font-size: 14px;
  color: var(--fg-muted);
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .hero { padding: 60px 20px 50px; min-height: auto; }
  .hero-answer { font-size: 17px; }
  .hero-proof { gap: 16px; }
  .proof-divider { display: none; }
  .proof-stat { padding: 0; }
  .shift { padding: 60px 20px; }
  .shift-cards { grid-template-columns: 1fr; gap: 12px; }
  .expeditions { padding: 60px 20px; }
  .expedition-timeline { grid-template-columns: 1fr; gap: 32px; }
  .expedition-timeline::before { display: none; }
  .numbers { padding: 60px 20px; }
  .numbers-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .closing { padding: 60px 20px; }
  .footer { padding: 20px; }
}