/* ── Tokens ── */
:root {
  --bg: #0e1210;
  --bg-card: #161c18;
  --bg-card-hover: #1c241e;
  --surface: #1e261f;
  --border: #2a342c;
  --text: #e8e4dc;
  --text-muted: #9ca898;
  --accent: #8bb04f;
  --accent-hover: #9ec462;
  --accent-dark: #6e8f3d;
  --cta: #e8a838;
  --cta-hover: #f0b848;
  --cta-dark: #c48a28;
  --trax: #e8a838;
  --cast: #4fc3f7;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-w: 1140px;
  --radius: 10px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-y: scroll; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 14px;
  padding: 10px 24px;
}
.btn-primary {
  background: var(--cta);
  color: #111;
  border-color: var(--cta);
}
.btn-primary:hover { background: var(--cta-hover); border-color: var(--cta-hover); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--cta); color: var(--cta); }
.btn-lg { font-size: 16px; padding: 14px 36px; }
.btn-block { width: 100%; }
.btn-nav { padding: 8px 20px; font-size: 13px; }

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(14, 18, 16, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.08em;
  color: var(--accent);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a:not(.btn) {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:not(.btn):hover { color: var(--text); }
.nav-mobile { display: none; background: none; border: none; color: var(--text); cursor: pointer; }

/* ── Hero ── */
.hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}
.hero-note {
  font-size: 13px;
  color: var(--text-muted);
  opacity: 0.7;
}
.hero-screenshot {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
.hero-screenshot img {
  width: 100%;
  border-radius: var(--radius);
}

/* ── Proof strip ── */
.proof {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}
.proof-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 32px 24px;
  display: flex;
  justify-content: space-around;
  gap: 24px;
}
.proof-stat { text-align: center; }
.proof-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
}
.proof-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Section headers ── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}

/* ── Features ── */
.features {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 96px 24px;
}
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 96px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row--reversed { grid-template-columns: 1.3fr 1fr; }
.feature-row--reversed .feature-text { order: 2; }
.feature-row--reversed .feature-image { order: 1; }

.feature-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  background: rgba(139, 176, 79, 0.15);
  color: var(--accent);
  margin-bottom: 16px;
}
.feature-badge--trax { background: rgba(232, 168, 56, 0.15); color: var(--trax); }
.feature-badge--cast { background: rgba(79, 195, 247, 0.15); color: var(--cast); }

.feature-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.2;
}
.feature-desc {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 24px;
  line-height: 1.7;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--text);
}
.feature-list li svg { flex-shrink: 0; margin-top: 3px; }

.feature-image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 16px 60px rgba(0,0,0,0.4);
}
.feature-image img { width: 100%; }

/* ── How it works (manage grid) ── */
.manage {
  background: var(--bg-card);
  padding: 96px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manage .section-header { margin-bottom: 48px; }
.manage-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.manage-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.2s;
}
.manage-card:hover { border-color: var(--accent); }
.manage-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 176, 79, 0.1);
  border-radius: 10px;
  color: var(--accent);
  margin-bottom: 16px;
}
.manage-card h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.manage-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Pricing ── */
.pricing {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 96px 24px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
}
.pricing-card--featured {
  border-color: var(--cta);
  box-shadow: 0 0 40px rgba(232, 168, 56, 0.12);
  transform: scale(1.03);
}
.pricing-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--cta);
  color: #111;
  padding: 4px 16px;
  border-radius: 20px;
}
.pricing-tier {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.pricing-price {
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.pricing-amount {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
}
.pricing-period {
  font-size: 16px;
  color: var(--text-muted);
}
.pricing-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}
.pricing-features {
  margin-bottom: 28px;
}
.pricing-features li {
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li strong { color: var(--text); }

/* ── CTA ── */
.cta {
  text-align: center;
  padding: 96px 24px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}
.cta-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 32px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 24px 24px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 36px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
}
.footer-links {
  display: flex;
  gap: 56px;
}
.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 12px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  opacity: 0.6;
}

/* ── Product page accent theming ── */
.page-bucktrax { --accent: var(--trax); --accent-hover: #f0b848; --accent-dark: #c48a28; }
.page-buckcast { --accent: var(--cast); --accent-hover: #6fd0f7; --accent-dark: #38a8d8; }
.page-bucktrax .feature-badge { background: rgba(232, 168, 56, 0.15); color: var(--trax); }
.page-buckcast .feature-badge { background: rgba(79, 195, 247, 0.15); color: var(--cast); }

/* ── Product hero ── */
.product-hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 120px 24px 64px;
  text-align: center;
}
.product-hero .feature-badge {
  font-size: 15px;
  padding: 6px 20px;
  margin-bottom: 20px;
}
.product-hero-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}
.product-hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.product-hero .hero-actions { justify-content: center; }
.product-hero-screenshot {
  max-width: 960px;
  margin: 48px auto 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
.product-hero-screenshot img { width: 100%; border-radius: var(--radius); }

/* ── Icon tint modifiers ── */
.page-bucktrax .manage-icon { background: rgba(232, 168, 56, 0.1); color: var(--trax); }
.page-buckcast .manage-icon { background: rgba(79, 195, 247, 0.1); color: var(--cast); }
.page-bucktrax .manage-card:hover { border-color: var(--trax); }
.page-buckcast .manage-card:hover { border-color: var(--cast); }

/* ── Tier callout ── */
.tier-callout {
  text-align: center;
  padding: 48px 24px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.tier-callout p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.tier-callout strong { color: var(--text); }

/* ── Feature learn-more link ── */
.feature-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  transition: gap 0.2s;
}
.feature-more:hover { gap: 10px; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 100px;
    text-align: center;
  }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .feature-row,
  .feature-row--reversed {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .feature-row--reversed .feature-text { order: 1; }
  .feature-row--reversed .feature-image { order: 2; }
  .manage-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .pricing-card--featured { transform: none; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .proof-inner { flex-wrap: wrap; }
  .product-hero { padding-top: 100px; }
  .product-hero-title { font-size: 36px; }
}

@media (max-width: 600px) {
  .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); flex-direction: column; padding: 24px; gap: 16px; }
  .nav-links--open { display: flex; }
  .nav-mobile { display: block; }
  .hero-title { font-size: 32px; }
  .section-title { font-size: 28px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .manage-grid { grid-template-columns: 1fr; }
  .product-hero-title { font-size: 28px; }
}

/* ══════════════════════════════════════════════════════════════
   NEW SECTIONS — Landing page rebuild
   ══════════════════════════════════════════════════════════════ */

/* ── Shared container for new sections ── */
.section-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Kicker label (uppercase small heading) ── */
.kicker {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/* ── Hero eyebrow ── */
.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero-title em {
  font-style: normal;
  color: var(--cta);
}
.hero-subtitle strong {
  color: var(--text);
  font-weight: 600;
}

/* ── Hero background gradient ── */
.hero {
  background:
    radial-gradient(ellipse 80% 50% at 60% 40%, rgba(232, 168, 56, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(139, 176, 79, 0.06) 0%, transparent 60%),
    var(--bg);
}

/* ── Email capture box ── */
.capture-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 8px;
}
.capture-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.capture-label strong {
  color: var(--cta);
  font-weight: 600;
}
.capture-form {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}
.capture-form input[type="email"] {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.capture-form input[type="email"]::placeholder {
  color: var(--text-muted);
}
.capture-form input[type="email"]:focus {
  border-color: var(--cta);
}
.capture-fine {
  font-size: 13px;
  color: var(--text-muted);
}
.capture-fine strong {
  color: var(--cta);
}

/* ── Hero stat cards (right column) ── */
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.stat-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--text-muted);
  opacity: 0.7;
}
.stat-icon svg { width: 32px; height: 32px; }
.stat-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.stat-body {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Hero animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-title   { animation: fadeUp 0.6s ease both; }
.hero-subtitle { animation: fadeUp 0.6s 0.1s ease both; }
.capture-box  { animation: fadeUp 0.6s 0.2s ease both; }
.hero-stats   { animation: fadeUp 0.6s 0.15s ease both; }

/* ── Problem section ── */
.problem-section {
  background: var(--bg-card);
  padding: 96px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.problem-section .section-container {
  padding: 0;
  max-width: var(--max-w);
  margin: 0 auto;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.problem-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.problem-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  color: var(--text-muted);
  opacity: 0.6;
}
.problem-icon svg { width: 36px; height: 36px; }
.problem-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.problem-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── How It Works section ── */
.how-section {
  padding: 96px 24px;
}
.how-section .section-container {
  padding: 0;
  max-width: var(--max-w);
  margin: 0 auto;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 52px;
}
.step {
  text-align: center;
  padding: 0 16px;
}
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(139, 176, 79, 0.15);
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
  margin: 0 auto 20px;
}
.step h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Module panels (mock UI) ── */
.module-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.panel-title {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

/* BuckLens stat bars */
.stat-bar-row { display: flex; flex-direction: column; gap: 8px; }
.stat-bar { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.stat-bar-label { color: var(--text-muted); width: 100px; flex-shrink: 0; }
.stat-bar-track { flex: 1; height: 6px; background: var(--surface); border-radius: 3px; overflow: hidden; }
.stat-bar-fill { height: 6px; background: var(--accent); border-radius: 3px; }
.stat-bar-val { color: var(--accent); font-family: var(--font-heading); font-size: 13px; font-weight: 600; width: 36px; text-align: right; flex-shrink: 0; }

.fusion-tag {
  background: rgba(139, 176, 79, 0.12);
  border: 1px solid rgba(139, 176, 79, 0.25);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--accent);
  margin-top: 4px;
  line-height: 1.6;
}

/* BuckTrax waypoints */
.waypoints { display: flex; flex-direction: column; gap: 0; }
.waypoint { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; }
.waypoint:not(:last-child) { border-bottom: 1px solid var(--border); }
.wp-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(232, 168, 56, 0.15);
  border: 1px solid var(--trax);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  color: var(--trax);
  flex-shrink: 0;
  margin-top: 2px;
}
.wp-info .wp-title { font-size: 14px; color: var(--text); margin-bottom: 2px; }
.wp-info .wp-detail { font-size: 13px; color: var(--text-muted); }

/* BuckCast day cards */
.cast-day {
  background: var(--surface);
  border-radius: 6px;
  padding: 12px 14px;
}
.cast-day + .cast-day { margin-top: 8px; }
.cast-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.cast-date { font-size: 13px; color: var(--text-muted); }
.cast-rating {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: 4px;
}
.cast-prime { background: rgba(139, 176, 79, 0.2); color: var(--accent); border: 1px solid rgba(139, 176, 79, 0.3); }
.cast-good  { background: rgba(232, 168, 56, 0.2); color: var(--trax); border: 1px solid rgba(232, 168, 56, 0.3); }
.cast-fair  { background: rgba(156, 168, 152, 0.15); color: var(--text-muted); border: 1px solid rgba(156, 168, 152, 0.2); }
.cast-rec { font-size: 14px; color: var(--text); }
.cast-why { font-size: 12px; color: var(--text-muted); margin-top: 3px; line-height: 1.5; }

/* Wind compass panel */
.wind-compass-wrap { text-align: center; padding: 8px 0; }
.wind-compass { position: relative; width: 120px; height: 120px; margin: 0 auto 12px; }
.compass-ring {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid var(--border);
  position: relative;
}
.compass-dir {
  position: absolute;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
}
.compass-n { top: 4px; left: 50%; transform: translateX(-50%); }
.compass-s { bottom: 4px; left: 50%; transform: translateX(-50%); }
.compass-e { right: 4px; top: 50%; transform: translateY(-50%); }
.compass-w { left: 4px; top: 50%; transform: translateY(-50%); }
.compass-arrow {
  position: absolute;
  top: 50%; left: 50%;
  width: 2px; height: 46px;
  background: linear-gradient(to top, transparent 0%, var(--accent) 100%);
  transform-origin: bottom center;
  transform: translate(-50%, -100%) rotate(315deg);
  border-radius: 1px;
}
.compass-dot {
  position: absolute; top: 50%; left: 50%;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
}
.wind-reading {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent);
}
.wind-stands { display: flex; flex-direction: column; gap: 7px; margin-top: 8px; }
.wind-stand { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.wind-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.wind-safe { background: var(--accent); }
.wind-risk { background: var(--trax); }
.wind-bust { background: #e04040; }
.wind-stand-name { color: var(--text); flex: 1; }
.wind-stand-status { color: var(--text-muted); font-size: 13px; }

/* ── Feature Grid section ── */
.feat-grid-section {
  background: var(--bg-card);
  padding: 96px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.feat-grid-section .section-container {
  padding: 0;
  max-width: var(--max-w);
  margin: 0 auto;
}
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.feat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.2s;
}
.feat-card:hover { border-color: var(--accent); }
.feat-card-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 10px;
  color: var(--text-muted);
  opacity: 0.6;
}
.feat-card-icon svg { width: 32px; height: 32px; }
.feat-card h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.feat-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Founding member note ── */
.founding-note {
  text-align: center;
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 24px;
}
.founding-note strong { color: var(--cta); }

/* ── Coming Soon section ── */
.coming-section {
  padding: 96px 24px;
}
.coming-section .section-container {
  padding: 0;
  max-width: var(--max-w);
  margin: 0 auto;
}
.coming-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.coming-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.2s;
}
.coming-card:hover { border-color: var(--accent); }
.coming-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 10px;
  color: var(--text-muted);
  opacity: 0.55;
}
.coming-icon svg { width: 28px; height: 28px; }
.coming-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.coming-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Final CTA enhancements ── */
.cta {
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(232, 168, 56, 0.08) 0%, transparent 70%),
    var(--bg-card);
}
.cta-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.cta-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto 14px;
}
.cta-form input[type="email"] {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.cta-form input[type="email"]::placeholder { color: var(--text-muted); }
.cta-form input[type="email"]:focus { border-color: var(--cta); }
.cta-fine {
  font-size: 13px;
  color: var(--text-muted);
}
.cta-fine strong { color: var(--cta); }

/* ── Responsive: new sections ── */
@media (max-width: 900px) {
  .problem-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .coming-grid { grid-template-columns: repeat(2, 1fr); }

  /* Module panels stack below feature text */
  .feature-row .module-panel { margin-top: 0; }
}

@media (max-width: 600px) {
  .problem-section { padding: 64px 24px; }
  .how-section { padding: 64px 24px; }
  .feat-grid-section { padding: 64px 24px; }
  .coming-section { padding: 64px 24px; }

  .feat-grid { grid-template-columns: 1fr; }
  .coming-grid { grid-template-columns: 1fr; }
  .capture-form { flex-direction: column; }
  .cta-form { flex-direction: column; }
  .steps-grid { gap: 40px; }
}
