:root {
  --bg: #faf9f5;
  --bg-alt: #f0ede5;
  --fg: #1a2e1a;
  --fg-muted: #5a6e5a;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --green: #1a3a0f;
  --green-light: #2d5a1e;
  --border: #e0dbd0;
  --shadow: rgba(26, 58, 15, 0.08);
}

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

html { scroll-behavior: smooth; }

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

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-brand { display: flex; align-items: center; gap: 10px; }

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--green);
  color: var(--accent);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  border-radius: 6px;
}

.brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.15em;
  color: var(--green);
}

.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: calc(100vh - 77px);
  background: var(--green);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 70%;
  height: 130%;
  background: radial-gradient(ellipse at center, rgba(245,158,11,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  padding: 80px 64px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.95;
  color: #fff;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-stat-row {
  display: flex;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

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

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* DISC VISUAL */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px;
  position: relative;
}

.disc-orbit {
  width: 360px;
  height: 360px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.disc-glow-ring {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(245,158,11,0.2);
  animation: pulse-ring 3s ease-in-out infinite;
}

.disc-glow-ring::after {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(245,158,11,0.08);
}

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

.disc-core {
  position: relative;
  z-index: 2;
}

.disc-body {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #c49a3a, #8b6914 60%, #5a4010);
  box-shadow:
    0 0 0 4px rgba(245,158,11,0.4),
    0 0 0 8px rgba(245,158,11,0.1),
    inset 0 -8px 20px rgba(0,0,0,0.3),
    inset 0 4px 10px rgba(255,255,255,0.1);
  position: relative;
}

.disc-body::after {
  content: '';
  position: absolute;
  top: 20%; left: 20%;
  width: 30%;
  height: 20%;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  filter: blur(4px);
}

.disc-hawk-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.orbit-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.orbit-1 { top: 10%; left: 50%; transform: translateX(-50%); animation: orbit-pulse 3s 0s ease-in-out infinite; }
.orbit-2 { bottom: 15%; right: 10%; animation: orbit-pulse 3s 0.5s ease-in-out infinite; }
.orbit-3 { top: 40%; right: 5%; animation: orbit-pulse 3s 1s ease-in-out infinite; }

@keyframes orbit-pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.5); }
}

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

.section-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  color: var(--green);
  line-height: 1.05;
  letter-spacing: 0.02em;
}

/* THE PROBLEM */
.the-problem {
  padding: 100px 80px;
  background: var(--bg);
}

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

.problem-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}

.problem-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  border-radius: 10px;
  margin-bottom: 20px;
}

.problem-text {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

.problem-quote {
  background: var(--green);
  border-radius: 12px;
  padding: 32px 40px;
  text-align: center;
}

.problem-quote blockquote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: #fff;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.problem-quote cite {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* HOW IT WORKS */
.how-it-works {
  padding: 100px 80px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-top: 56px;
  margin-bottom: 56px;
}

.step {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}

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

.step-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--green);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

.step-connector {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin-top: 48px;
  flex-shrink: 0;
  opacity: 0.4;
}

.specs-row {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--green);
  border-radius: 12px;
  overflow: hidden;
}

.spec {
  flex: 1;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.spec-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
}

.spec-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: var(--accent);
}

.spec-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
}

/* THE EDGE */
.the-edge {
  padding: 100px 80px;
  background: var(--bg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.edge-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 32px;
  max-width: 460px;
}

.edge-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.edge-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--fg);
  font-weight: 500;
}

.edge-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(34,197,94,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.comparison-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.comparison-header {
  background: var(--green);
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.08em;
  padding: 16px 24px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.comparison-table td {
  padding: 12px 16px;
  font-size: 13px;
  color: var(--fg-muted);
  border-bottom: 1px solid var(--border);
}

.comparison-table tr:last-child td { border-bottom: none; }

.comparison-table td:first-child { font-weight: 500; color: var(--fg); }

.comparison-table th:not(:first-child) { text-align: center; }
.comparison-table td:not(:first-child) { text-align: center; }

.comparison-table td.yes { color: #16a34a; font-weight: 600; }
.comparison-table td.partial { color: var(--accent-dark); font-size: 12px; }
.comparison-table td.no { color: #9ca3af; }

/* CLOSING */
.closing {
  background: var(--green);
  padding: 120px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.1) 0%, transparent 70%);
}

.closing-content { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }

.closing-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  color: #fff;
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.closing-body {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 40px;
}

.closing-vibe {
  display: flex;
  justify-content: center;
}

.vibe-tag {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 8px 20px;
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 100px;
}

/* FOOTER */
.footer {
  background: #111;
  padding: 32px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.8);
}

.brand-mark-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: var(--accent);
  color: var(--green);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  border-radius: 4px;
}

.footer-tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.08em;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .nav-tagline { display: none; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-content { padding: 60px 32px; }
  .hero-visual { display: none; }
  .hero-stat-row { gap: 24px; }
  .stat-num { font-size: 28px; }

  .the-problem, .how-it-works, .the-edge { padding: 64px 24px; }
  .problem-grid { grid-template-columns: 1fr; }
  .steps-row { flex-direction: column; }
  .step-connector { display: none; }
  .specs-row { flex-direction: column; }
  .spec-divider { width: 80%; height: 1px; }
  .the-edge { grid-template-columns: 1fr; }
  .closing { padding: 80px 24px; }
  .footer { flex-direction: column; gap: 12px; text-align: center; padding: 24px; }
}