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

/* CSS Variables */
:root {
  --bg: #f7f6f3;
  --bg-alt: #eeece7;
  --fg: #141414;
  --fg-muted: #6b6b6b;
  --accent: #e8880a;
  --accent-light: rgba(232, 136, 10, 0.12);
  --surface: #ffffff;
  --border: rgba(20, 20, 20, 0.08);
  --hero-bg: #141414;
  --hero-fg: #f7f6f3;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* Base */
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Hero */
.hero {
  background: var(--hero-bg);
  color: var(--hero-fg);
  padding: 96px 48px 80px;
  max-width: 100%;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 28px;
  max-width: 800px;
}
.hero-sub {
  font-size: 18px;
  color: rgba(247, 246, 243, 0.65);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 56px;
  font-weight: 300;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: rgba(247, 246, 243, 0.45);
  letter-spacing: 0.04em;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(247, 246, 243, 0.15);
}

/* Features */
.features {
  padding: 96px 48px;
  background: var(--bg);
}
.features-header {
  margin-bottom: 56px;
}
.features-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(20, 20, 20, 0.08);
}
.feature-icon {
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Proof */
.proof {
  background: var(--hero-bg);
  color: var(--hero-fg);
  padding: 80px 48px;
}
.proof-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 246, 243, 0.4);
  margin-bottom: 40px;
}
.proof-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: #ffffff;
  max-width: 740px;
  margin-bottom: 16px;
  font-style: normal;
}
.proof-attribution {
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 48px;
}
.proof-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
}
.proof-action {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(247, 246, 243, 0.6);
}

/* Mission */
.mission {
  padding: 96px 48px;
  background: var(--bg-alt);
}
.mission-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.mission-content h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 28px;
}
.mission-content p {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.75;
}

/* Closing */
.closing {
  padding: 96px 48px;
  background: var(--accent);
  text-align: center;
}
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 20px;
}
.closing p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Footer */
footer {
  padding: 28px 48px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--fg-muted);
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--fg);
}
.footer-sep { color: var(--border); }

/* VS-Stack Page */
.vs-hero {
  background: var(--hero-bg);
  color: var(--hero-fg);
  padding: 96px 48px 80px;
  max-width: 100%;
  text-align: center;
}
.vs-hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.vs-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 28px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.vs-hero-sub {
  font-size: 18px;
  color: rgba(247, 246, 243, 0.65);
  max-width: 540px;
  line-height: 1.7;
  margin: 0 auto 48px;
  font-weight: 300;
}
.vs-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.vs-nav-btn {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: rgba(247, 246, 243, 0.55);
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid rgba(247, 246, 243, 0.15);
  border-radius: 999px;
  transition: all 0.2s ease;
}
.vs-nav-btn:hover, .vs-nav-btn.active {
  color: #ffffff;
  border-color: rgba(247, 246, 243, 0.4);
  background: rgba(247, 246, 243, 0.06);
}
.vs-nav-btn.cta-main {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}
.vs-nav-btn.cta-main:hover {
  background: #d07a09;
  border-color: #d07a09;
}

/* Comparison Table */
.vs-compare {
  padding: 80px 48px;
  background: var(--bg);
}
.vs-section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.vs-section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.vs-section-sub {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.65;
}
.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.compare-table th {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 16px 20px;
  text-align: left;
  border-bottom: 2px solid rgba(20, 20, 20, 0.08);
  vertical-align: bottom;
}
.compare-table th.stack-header {
  color: var(--fg-muted);
}
.compare-table th.helium-header {
  color: var(--accent);
}
.compare-table td {
  padding: 18px 20px;
  font-size: 14px;
  color: var(--fg);
  border-bottom: 1px solid rgba(20, 20, 20, 0.06);
  vertical-align: middle;
}
.compare-table td.cap-label {
  font-weight: 500;
  color: var(--fg);
  max-width: 180px;
}
.compare-table td.stack-val {
  color: var(--fg-muted);
  line-height: 1.55;
}
.compare-table td.helium-val {
  font-weight: 500;
  color: var(--fg);
  line-height: 1.55;
}
.compare-table td.helium-check {
  color: var(--accent);
  font-size: 18px;
  text-align: center;
}
.helium-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-light);
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  margin-right: 8px;
  flex-shrink: 0;
}
.helium-val-inner {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

/* Pain Block */
.vs-pain {
  padding: 80px 48px;
  background: var(--hero-bg);
  color: var(--hero-fg);
}
.vs-pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.vs-pain-card {
  background: rgba(247, 246, 243, 0.06);
  border: 1px solid rgba(247, 246, 243, 0.1);
  border-radius: 16px;
  padding: 28px;
}
.vs-pain-card-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.vs-pain-card-title .pain-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.vs-pain-card p {
  font-size: 13px;
  color: rgba(247, 246, 243, 0.55);
  line-height: 1.65;
}

/* Helium Answer */
.vs-answer {
  padding: 80px 48px;
  background: var(--bg-alt);
}
.vs-answer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 48px;
}
.vs-answer-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.vs-answer-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.vs-answer-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.vs-answer-point h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}
.vs-answer-point p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.55;
}
.vs-flow-diagram {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}
.vs-flow-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 32px;
  text-align: center;
}
.vs-flow-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
}
.vs-flow-step {
  background: var(--hero-bg);
  color: var(--hero-fg);
  border-radius: 12px;
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 500;
  width: 100%;
  text-align: center;
}
.vs-flow-arrow {
  color: var(--accent);
  font-size: 22px;
  line-height: 1;
  padding: 8px 0;
}
.vs-flow-step.helium {
  background: var(--accent);
  color: #ffffff;
}
.vs-flow-bottom {
  margin-top: 24px;
  text-align: center;
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* CTA Footer */
.vs-cta {
  background: var(--accent);
  padding: 80px 48px;
  text-align: center;
}
.vs-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 16px;
}
.vs-cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 440px;
  margin: 0 auto 40px;
  line-height: 1.65;
}
.vs-cta-btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  background: #ffffff;
  padding: 14px 36px;
  border-radius: 999px;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.vs-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.vs-cta-powered {
  margin-top: 40px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* ==============================
   Helium Bees Page
   ============================== */

/* Hero */
.bees-hero {
  background: var(--hero-bg);
  color: var(--hero-fg);
  padding: 96px 48px 88px;
}
.bees-hero-inner {
  max-width: 800px;
}
.bees-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.bees-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.5vw, 84px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 28px;
}
.bees-sub {
  font-size: 18px;
  color: rgba(247, 246, 243, 0.65);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 48px;
  font-weight: 300;
}
.bees-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.bees-btn-primary {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  background: var(--accent);
  padding: 14px 32px;
  border-radius: 999px;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: background 0.2s ease, transform 0.2s ease;
}
.bees-btn-primary:hover {
  background: #d07a09;
  transform: translateY(-1px);
}
.bees-btn-secondary {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: rgba(247, 246, 243, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}
.bees-btn-secondary:hover {
  color: #ffffff;
}

/* Section scaffolding */
.bees-section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.bees-section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.1;
}
.bees-section-sub {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 56px;
}

/* How a Bee Works */
.bees-how {
  padding: 88px 48px;
  background: var(--bg);
}
.bees-steps {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.bees-step {
  flex: 1;
  min-width: 220px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
}
.bees-step-number {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.bees-step h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.bees-step p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}
.bees-step-connector {
  display: flex;
  align-items: center;
  padding: 0 12px;
  flex-shrink: 0;
}
.bees-step-line {
  width: 20px;
  height: 1px;
  background: rgba(20, 20, 20, 0.15);
}
.bees-step-arrow {
  font-size: 20px;
  color: var(--accent);
  line-height: 1;
  padding: 0 4px;
}

/* Use Cases Grid */
.bees-usecases {
  padding: 88px 48px;
  background: var(--bg-alt);
}
.bees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.bee-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.bee-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(20, 20, 20, 0.08);
}
.bee-card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.bee-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  border-radius: 14px;
}
.bee-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.bee-tagline {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.bee-tasks {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bee-tasks li {
  font-size: 13px;
  color: var(--fg);
  line-height: 1.55;
  padding-left: 16px;
  position: relative;
}
.bee-tasks li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.bee-tools {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.bee-tool-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-right: 2px;
}
.bee-tool {
  font-size: 11px;
  font-weight: 500;
  color: var(--fg-muted);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px 10px;
}

/* Why Bees section */
.bees-why {
  padding: 88px 48px;
  background: var(--hero-bg);
  color: var(--hero-fg);
}
.bees-compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 0;
}
.bees-compare-card {
  background: rgba(247, 246, 243, 0.06);
  border: 1px solid rgba(247, 246, 243, 0.1);
  border-radius: 20px;
  padding: 32px;
}
.bees-compare-icon {
  font-size: 28px;
  margin-bottom: 16px;
}
.bees-compare-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin-bottom: 10px;
}
.bees-compare-card p {
  font-size: 14px;
  color: rgba(247, 246, 243, 0.55);
  line-height: 1.65;
}

/* Final CTA band */
.bees-cta {
  background: var(--accent);
  padding: 88px 48px;
  text-align: center;
}
.bees-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 16px;
}
.bees-cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.65;
}
.bees-cta-btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  background: #ffffff;
  padding: 14px 36px;
  border-radius: 999px;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.bees-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.bees-cta-note {
  margin-top: 32px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .bees-hero, .bees-how, .bees-usecases, .bees-why, .bees-cta { padding-left: 24px; padding-right: 24px; }
  .bees-hero { padding-top: 64px; padding-bottom: 64px; }
  .bees-steps { flex-direction: column; }
  .bees-step-connector { transform: rotate(90deg); padding: 8px 0; }
  .bees-step { min-width: unset; width: 100%; }
  .bees-compare-grid { grid-template-columns: 1fr; }
  .bees-grid { grid-template-columns: 1fr; }
  .bees-cta-row { flex-direction: column; align-items: flex-start; }
}

/* Responsive */
@media (max-width: 768px) {
  .hero, .features, .proof, .mission, .closing, footer,
  .vs-hero, .vs-compare, .vs-pain, .vs-answer, .vs-cta { padding-left: 24px; padding-right: 24px; }
  .hero { padding-top: 64px; padding-bottom: 64px; }
  .hero-headline { font-size: 42px; }
  .hero-stats { gap: 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .proof-actions { gap: 12px; }
  .vs-answer-grid { grid-template-columns: 1fr; }
  .vs-flow-diagram { padding: 24px; }
}