/* ===== BEESWARMLY — Dark Botanical / AgTech Hive Monitor ===== */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,300;1,9..144,400&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,700;1,400&family=IBM+Plex+Mono:wght@300;400;500&display=swap');

:root {
  --midnight: #0c0f0a;
  --forest: #141a12;
  --moss: #1e2a1a;
  --bark: #2a3326;
  --lichen: #4a5a42;
  --sage: #7a8b6f;
  --mist: #b8c5ad;
  --cloud: #e4e9df;
  --cream: #f7f8f5;
  --white: #f7f8f5;
  --amber: #e8a817;
  --honey: #f0c040;
  --gold-soft: #fad96a;
  --amber-deep: #c48a0a;
  --rust: #d4622a;
  --pollen: #f5e6b8;
  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--cloud);
  background: var(--midnight);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--amber); color: var(--midnight); }
a { color: var(--amber); text-decoration: none; transition: color 0.3s var(--ease-out); }
a:hover { color: var(--honey); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--white);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 300; margin-bottom: 18px; }
h2 em { font-style: italic; color: var(--amber); font-weight: 400; }
p { margin-bottom: 1.2em; color: var(--mist); }
img { max-width: 100%; height: auto; display: block; }

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

/* ===== TOP NAVIGATION ===== */
.topnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 72px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(12, 15, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(232, 168, 23, 0.1);
  transition: background 0.4s;
}
.topnav-brand a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
.topnav-brand a:hover { color: var(--amber); }

.brand-hex {
  width: 36px; height: 36px;
  background: var(--amber);
  display: flex; align-items: center; justify-content: center;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  font-family: var(--font-display);
  font-size: 0.9rem; font-weight: 600;
  color: var(--midnight);
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 600;
  letter-spacing: -0.01em;
}

.topnav-links {
  list-style: none;
  display: flex; gap: 8px; align-items: center;
}
.topnav-links a {
  display: block; padding: 8px 16px;
  font-family: var(--font-body);
  font-size: 0.82rem; font-weight: 400;
  color: var(--sage);
  border-radius: 6px;
  transition: color 0.3s, background 0.3s;
}
.topnav-links a:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.topnav-links a.current { color: var(--amber); background: rgba(232, 168, 23, 0.08); }

.topnav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--amber) !important;
  color: var(--midnight) !important;
  padding: 9px 20px !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em;
  border-radius: 6px;
  transition: background 0.3s, transform 0.2s;
}
.topnav-cta:hover { background: var(--honey) !important; transform: translateY(-1px); }

/* ===== MOBILE NAV ===== */
.mobile-bar {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 60px; padding: 0 20px;
  align-items: center; justify-content: space-between;
  background: rgba(12, 15, 10, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(232, 168, 23, 0.1);
}
.mobile-bar .brand-name { font-size: 1.2rem; font-weight: 600; color: var(--white); }
.mobile-toggle {
  background: none; border: 1px solid var(--lichen);
  color: var(--sage); font-family: var(--font-mono);
  font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 4px; cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
}
.mobile-toggle:hover { border-color: var(--amber); color: var(--white); }

.mobile-menu {
  display: none;
  position: fixed; inset: 0;
  background: var(--midnight); z-index: 99;
  padding: 80px 28px 28px; overflow-y: auto;
}
.mobile-menu.open { display: flex; flex-direction: column; justify-content: center; }
.mobile-menu ol { list-style: none; }
.mobile-menu li { border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-menu li a {
  display: block; padding: 22px 0;
  font-family: var(--font-display);
  font-size: 2rem; color: var(--mist); letter-spacing: -0.01em;
}
.mobile-menu li a:hover { color: var(--amber); }

/* ===== PAGE WRAPPER ===== */
.page { padding-top: 72px; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 80px; position: relative; overflow: hidden;
  background: var(--midnight);
}
.hero::before {
  content: ''; position: absolute;
  top: -30%; left: -15%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(232, 168, 23, 0.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute;
  bottom: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212, 98, 42, 0.04) 0%, transparent 65%);
  pointer-events: none;
}

.hero-layout {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 80px; align-items: center;
  width: 100%; max-width: 1300px; margin: 0 auto;
}
.hero-content { position: relative; }
.hero-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 28px;
  display: flex; align-items: center; gap: 12px;
}
.hero-tag::before { content: ''; width: 28px; height: 1px; background: var(--amber); }
.hero h1 {
  font-size: clamp(3rem, 5.5vw, 5rem); font-weight: 300;
  line-height: 1.05; letter-spacing: -0.03em;
  margin-bottom: 32px; color: var(--white);
}
.hero h1 em { font-style: italic; color: var(--amber); font-weight: 400; }
.hero-desc {
  font-size: 1.1rem; color: var(--sage);
  max-width: 480px; line-height: 1.8; margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--midnight);
  padding: 120px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute;
  top: -30%; left: -15%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232, 168, 23, 0.05) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 300;
  line-height: 1.05; letter-spacing: -0.03em;
  margin-bottom: 24px; color: var(--white);
}
.page-hero h1 em { font-style: italic; color: var(--amber); font-weight: 400; }

/* ===== HONEYCOMB GRID ===== */
.honeycomb-grid {
  display: grid; grid-template-columns: repeat(5, 64px);
  gap: 6px; opacity: 0.25; transform: rotate(-5deg);
}
.hex-cell {
  width: 64px; height: 64px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 0.6rem; color: var(--amber);
  animation: hex-pulse 5s infinite ease-in-out; transition: background 0.4s;
}
.hex-cell.filled { background: var(--amber); color: var(--midnight); }
.hex-cell.outline { background: rgba(232, 168, 23, 0.05); box-shadow: inset 0 0 0 1px var(--amber); }
.hex-cell.blank { background: transparent; animation: none; }
.hex-cell:nth-child(even) { animation-delay: 1.5s; }
.hex-cell:nth-child(3n) { animation-delay: 0.8s; }
.hex-cell:nth-child(4n) { animation-delay: 2.2s; }

@keyframes hex-pulse {
  0%, 100% { opacity: 0.3; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1); }
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--amber); color: var(--midnight);
  padding: 15px 30px; font-family: var(--font-body);
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em;
  border: none; border-radius: 8px; cursor: pointer;
  transition: background 0.3s var(--ease-out), transform 0.2s;
}
.btn-primary:hover { background: var(--honey); color: var(--midnight); transform: translateY(-2px); }
.btn-primary::after { content: '\2192'; transition: transform 0.3s var(--ease-out); }
.btn-primary:hover::after { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--mist); font-family: var(--font-body);
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em;
  border-bottom: 1px solid var(--lichen); padding-bottom: 6px;
  transition: color 0.3s, border-color 0.3s;
}
.btn-ghost:hover { color: var(--amber); border-color: var(--amber); }

/* ===== TICKER ===== */
.ticker-wrap {
  overflow: hidden; background: var(--forest);
  padding: 14px 0;
  border-top: 1px solid rgba(232, 168, 23, 0.08);
  border-bottom: 1px solid rgba(232, 168, 23, 0.08);
}
.ticker {
  display: flex; gap: 48px;
  animation: ticker-scroll 30s linear infinite;
  white-space: nowrap;
}
.ticker span {
  font-family: var(--font-mono); font-size: 0.62rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--lichen); flex-shrink: 0;
}
.ticker span .dot { color: var(--amber); margin: 0 4px; font-size: 0.8rem; }
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SECTIONS ===== */
.section-midnight { background: var(--midnight); padding: 100px 0; }
.section-forest { background: var(--forest); padding: 100px 0; }
.section-moss { background: var(--moss); padding: 100px 0; }

/* ===== META LABELS ===== */
.meta-label {
  font-family: var(--font-mono);
  font-size: 0.58rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--lichen); margin-bottom: 6px; display: block;
}
.meta-value {
  font-family: var(--font-display);
  font-size: 1.02rem; font-weight: 400;
  color: var(--mist); line-height: 1.45; display: block;
}

/* ===== FEATURE CARDS ===== */
.feature-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.feature-card {
  background: var(--forest); border: 1px solid rgba(232, 168, 23, 0.08);
  border-radius: 12px; padding: 44px 36px;
  position: relative;
  transition: border-color 0.4s var(--ease-out), box-shadow 0.4s, transform 0.3s;
}
.section-forest .feature-card { background: var(--moss); }
.feature-card:hover {
  border-color: rgba(232, 168, 23, 0.25);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 400;
  margin-bottom: 14px; color: var(--white);
}
.feature-card p {
  font-size: 0.9rem; color: var(--sage); line-height: 1.7;
  margin-bottom: 0;
}

/* Hex step markers in feature cards */
.hex-step {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: rgba(232, 168, 23, 0.1);
  border: none;
  font-family: var(--font-display);
  font-size: 0.85rem; font-weight: 400; color: var(--amber);
  margin-bottom: 20px;
}

/* ===== TWO-COLUMN LAYOUT ===== */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start;
}
.col-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 300;
  margin-bottom: 24px;
}
.col-text h2 em { font-style: italic; color: var(--amber); font-weight: 400; }
.col-text p { font-size: 1rem; color: var(--sage); line-height: 1.8; }

.stat-card {
  background: var(--moss); border: 1px solid rgba(232, 168, 23, 0.08);
  border-radius: 12px; padding: 40px;
}

/* ===== QUOTE BLOCK ===== */
.quote-block {
  padding: 60px 48px;
  background: var(--moss); border-radius: 12px;
  border: 1px solid rgba(232, 168, 23, 0.08);
  position: relative;
}
.quote-block p {
  font-family: var(--font-display);
  font-size: 1.3rem; font-style: italic; font-weight: 300;
  color: var(--pollen); line-height: 1.45;
  margin-bottom: 16px;
}
.quote-block cite {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--lichen);
}

/* Full-width quote block */
.quote-full {
  padding: 100px 80px;
  background: var(--forest); text-align: center;
  border-top: 1px solid rgba(232, 168, 23, 0.06);
  border-bottom: 1px solid rgba(232, 168, 23, 0.06);
  position: relative;
}
.quote-full::before {
  content: '\201C'; position: absolute;
  top: 30px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 8rem; color: var(--amber); opacity: 0.08; line-height: 1;
}
.quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-style: italic; font-weight: 300;
  color: var(--pollen); line-height: 1.45;
  max-width: 620px; margin: 0 auto 24px;
}
.quote-author {
  font-family: var(--font-mono);
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--amber-deep);
}

/* ===== STATS BANNER ===== */
.stats-banner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(232, 168, 23, 0.1);
  border-bottom: 1px solid rgba(232, 168, 23, 0.1);
  background: var(--forest);
}
.stat-item {
  padding: 52px 32px; text-align: center;
  border-right: 1px solid rgba(232, 168, 23, 0.06);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: 3.2rem; font-weight: 300;
  color: var(--amber); line-height: 1; margin-bottom: 10px;
  display: block;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--lichen);
}

/* ===== STEPS (vertical) ===== */
.step-row {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 40px; padding: 44px 0;
  border-bottom: 1px solid rgba(232, 168, 23, 0.08);
}
.step-row:first-child { border-top: 1px solid rgba(232, 168, 23, 0.08); }
.step-num {
  width: 48px; height: 48px;
  border: 1.5px solid var(--amber-deep);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 400;
  color: var(--amber); background: rgba(232, 168, 23, 0.05);
}
.step-row:hover .step-num { background: var(--amber); color: var(--midnight); }
.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 400;
  margin-bottom: 12px; color: var(--white);
}
.step-content p { font-size: 0.95rem; color: var(--sage); line-height: 1.7; }

/* ===== FAQ / ACCORDION ===== */
.faq-item { border-bottom: 1px solid rgba(232, 168, 23, 0.08); }
.faq-item:first-child { border-top: 1px solid rgba(232, 168, 23, 0.08); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; width: 100%; padding: 26px 0;
  cursor: pointer; user-select: none; transition: color 0.3s;
  background: none; border: none; outline: none; text-align: left;
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 400;
  color: var(--mist); line-height: 1.3;
}
.faq-q:hover { color: var(--amber); }
.faq-icon {
  font-family: var(--font-display);
  font-size: 1.5rem; color: var(--lichen); flex-shrink: 0;
  transition: color 0.3s, transform 0.3s;
}
.faq-item.open .faq-icon { color: var(--amber); transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.4s;
}
.faq-item.open .faq-a { max-height: 600px; padding: 0 0 26px 0; }
.faq-a p {
  font-size: 0.95rem; color: var(--sage); line-height: 1.7; max-width: 640px;
}

/* ===== ENTRIES LIST ===== */
.entries-list { max-width: 800px; }
.entry-item {
  display: grid; grid-template-columns: 56px 1fr 1.2fr;
  gap: 28px; padding: 36px 0;
  border-bottom: 1px solid rgba(232, 168, 23, 0.08);
  align-items: start;
}
.entry-item:first-child { border-top: 1px solid rgba(232, 168, 23, 0.08); }
.entry-num {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 400; color: var(--lichen); padding-top: 4px;
}
.entry-title {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 400; color: var(--white); line-height: 1.25;
}
.entry-title em { font-style: italic; color: var(--amber); }
.entry-body p {
  font-size: 0.9rem; color: var(--sage); line-height: 1.7; margin-bottom: 0;
}

/* ===== LEGAL PAGES ===== */
.page-wrap { max-width: 800px; margin: 0 auto; padding: 0 48px; }
.legal-body { padding: 0 0 80px; }
.legal-body h2 {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 400;
  margin: 52px 0 14px; color: var(--white);
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p {
  font-size: 0.95rem; color: var(--sage); line-height: 1.75;
}

/* ===== FOOTER ===== */
footer {
  background: var(--forest);
  padding: 80px 48px 40px;
  border-top: 2px solid var(--amber);
  position: relative;
}
footer::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to bottom, rgba(232, 168, 23, 0.03), transparent);
  pointer-events: none;
}
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 44px; margin-bottom: 56px; position: relative;
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 300; font-style: italic;
  color: var(--lichen); max-width: 260px;
  line-height: 1.5; margin-bottom: 24px;
}
.footer-col-title {
  font-family: var(--font-mono);
  font-size: 0.55rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--lichen); margin-bottom: 18px; display: block;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  font-family: var(--font-body);
  font-size: 0.85rem; color: var(--sage);
}
.footer-links a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: baseline;
  flex-wrap: wrap; gap: 14px;
  font-family: var(--font-mono);
  font-size: 0.55rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--lichen);
}

/* ===== BEE FLIGHT PATH ===== */
@keyframes bee-drift {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(60px, -20px) rotate(5deg); }
  50% { transform: translate(100px, 10px) rotate(-3deg); }
  75% { transform: translate(40px, -10px) rotate(2deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}
.floating-bee {
  position: absolute; font-size: 1.2rem; opacity: 0.12;
  animation: bee-drift 12s ease-in-out infinite;
  pointer-events: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .topnav { display: none; }
  .mobile-bar { display: flex; }
  .page { padding-top: 60px; }
  .hero { padding: 80px 28px 56px; min-height: auto; }
  .hero-layout { grid-template-columns: 1fr; gap: 40px; }
  .honeycomb-grid { display: none; }
  .container { padding: 0 24px; }
  .section-midnight, .section-forest, .section-moss { padding: 72px 24px; }
  .feature-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .stats-banner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .entry-item { grid-template-columns: 1fr; gap: 10px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  footer { padding: 56px 24px 32px; }
  .page-wrap { padding: 0 24px; }
  .step-row { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 640px) {
  body { font-size: 15px; }
  .hero h1 { font-size: clamp(2.2rem, 9vw, 3.2rem); }
  .page-hero h1 { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .stats-banner { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(232, 168, 23, 0.08); }
  .stat-item:last-child { border-bottom: none; }
  .stat-number { font-size: 2.4rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .section-midnight, .section-forest, .section-moss { padding: 56px 20px; }
}
