:root {
  --bg: #0A0E14;
  --bg-alt: #111720;
  --fg: #F5F0E8;
  --fg-muted: #9A9A9A;
  --accent: #FF5C1A;
  --accent-dim: rgba(255, 92, 26, 0.12);
  --border: rgba(245, 240, 232, 0.08);
  --border-strong: rgba(245, 240, 232, 0.16);
  --green: #22C55E;
  --amber: #F59E0B;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Header */
.site-header {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.5px;
}
.logo-mark {
  font-size: 22px;
  color: var(--accent);
  line-height: 1;
}
.logo-name { color: var(--fg); }
.tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.5px;
}

/* Hero */
.hero { position: relative; padding: 80px 0 100px; overflow: hidden; }
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,92,26,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,92,26,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 80% at 0% 50%, black 0%, transparent 100%);
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  background: var(--accent-dim);
  padding: 6px 14px;
  border-radius: 2px;
  border: 1px solid rgba(255, 92, 26, 0.25);
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -3px;
  margin-bottom: 28px;
  color: var(--fg);
}
.strike { text-decoration: line-through; text-decoration-color: var(--accent); opacity: 0.5; }
.hero-sub {
  font-size: 18px;
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 36px;
}
.hero-pricing { display: flex; align-items: baseline; gap: 12px; }
.price-tag {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--fg);
}
.price-note { font-size: 14px; color: var(--fg-muted); }

/* Schedule Widget */
.hero-visual { display: flex; align-items: center; justify-content: center; }
.schedule-widget {
  background: var(--bg-alt);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 24px;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.widget-date { font-family: 'Syne', sans-serif; font-weight: 600; font-size: 16px; }
.widget-badge {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(255,92,26,0.15);
  color: var(--accent);
  font-weight: 500;
}
.widget-crews { display: flex; flex-direction: column; gap: 10px; }
.crew-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
}
.crew-active { border-color: rgba(34, 197, 94, 0.3); }
.crew-changed { border-color: rgba(245, 158, 11, 0.3); }
.crew-name { font-size: 13px; font-weight: 500; }
.crew-time { font-size: 12px; color: var(--fg-muted); }
.crew-time.shifted { color: var(--amber); font-weight: 500; }
.widget-footer {
  margin-top: 16px;
  font-size: 11px;
  color: var(--fg-muted);
  text-align: right;
}

/* Problem section */
.problem { padding: 80px 0; border-top: 1px solid var(--border); }
.problem-stat {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}
.stat-number {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -4px;
  line-height: 1;
  margin-bottom: 16px;
}
.stat-label {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.problem-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-alt);
}
.problem-icon {
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 20px;
}
.problem-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.problem-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Features */
.features { padding: 80px 0; }
.section-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.section-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 64px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.feature {
  padding: 40px 36px;
  background: var(--bg);
  transition: background 0.2s;
}
.feature:hover { background: var(--bg-alt); }
.feature-number {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 20px;
}
.feature h3 {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}
.feature p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Manifesto */
.manifesto {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.manifesto-inner { max-width: 720px; }
.manifesto-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 28px;
}
.manifesto-text {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--fg);
  border-left: 3px solid var(--accent);
  padding-left: 28px;
  margin-bottom: 32px;
}
.manifesto-body {
  font-size: 16px;
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* Closing */
.closing {
  padding: 100px 0 120px;
  border-top: 1px solid var(--border);
}
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.2;
  margin-bottom: 28px;
}
.closing-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 540px;
}

/* Footer */
footer { padding: 48px 0; border-top: 1px solid var(--border); }
.footer-brand { margin-bottom: 12px; }
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--fg-muted);
}
.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.footer-copy { font-size: 12px; color: rgba(154,154,154,0.5); }

/* Responsive */
@media (max-width: 768px) {
  .hero .container { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .container { padding: 0 20px; }
  .hero { padding: 60px 0 80px; }
  .site-header .container { flex-direction: column; align-items: flex-start; gap: 6px; }
}
@media (max-width: 480px) {
  .hero-headline { letter-spacing: -2px; }
  .section-headline { letter-spacing: -1px; }
}