/* ============================================================
   JANUSSPHERE TECHNOLOGIES — Shared Stylesheet v2.0
   Teal & Dark Green Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  /* Clean white palette */
  --bg-primary:      #ffffff;   /* pure white */
  --bg-secondary:    #f4f9f1;   /* very light mint — alternate sections */
  --bg-card:         #ffffff;   /* white cards */
  --bg-card-hover:   #f4f9f0;   /* very pale hover */
  --bg-nav:          rgba(52, 100, 30, 0.97); /* dark forest green nav */
  --bg-footer:       #2a5818;   /* deep forest footer */
  --teal:            #00b894;   /* teal — buttons & accents */
  --teal-dark:       #009e7e;
  --teal-light:      #33caa8;
  --teal-glow:       rgba(0, 184, 148, 0.15);
  --teal-glow-lg:    rgba(0, 184, 148, 0.08);
  --green-accent:    #5a9e32;   /* medium bright green (top palette row) */
  --green-dark:      #2a5818;
  --green-mid:       #4a8a28;
  /* Body text — dark for light background */
  --text-primary:    #1a2e0c;   /* very dark green */
  --text-secondary:  #3d6020;   /* medium dark green */
  --text-muted:      #6a9045;   /* muted sage */
  /* Nav text — light for dark nav background */
  --nav-text:        rgba(225, 242, 210, 0.88);
  --nav-text-hover:  #ffffff;
  --nav-text-active: #6debb8;   /* teal-ish on dark nav */
  --border:          #b4d498;   /* light green border */
  --border-bright:   #78b848;   /* brighter green border */
  --shadow:          0 4px 24px rgba(30, 70, 10, 0.10);
  --shadow-teal:     0 4px 24px rgba(0, 184, 148, 0.18);
  --radius:          12px;
  --radius-sm:       8px;
  --radius-lg:       20px;
  --transition:      all 0.25s ease;
  --max-w:           1200px;
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--teal-light); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Container ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  line-height: 1.2;
  color: var(--text-primary);
}
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #007a5e;
  background: rgba(0,184,148,0.1);
  border: 1px solid rgba(0,184,148,0.35);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary); /* now dark green on light bg */
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary); /* now medium dark green */
  max-width: 640px;
  margin-bottom: 48px;
}
.text-teal { color: var(--teal); }
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: #050f09;
  box-shadow: 0 0 20px var(--teal-glow);
}
.btn-primary:hover {
  background: var(--teal-light);
  color: #050f09;
  box-shadow: 0 0 28px rgba(0, 201, 167, 0.35);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
}
.btn-outline:hover {
  background: var(--teal-glow);
  color: var(--teal-light);
  transform: translateY(-1px);
}
.btn-ghost {
  background: rgba(90,158,50,0.08);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(90,158,50,0.14);
  border-color: var(--green-accent);
  color: var(--green-accent);
}
.btn-sm { padding: 8px 18px; font-size: 0.82rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ── Navbar ────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--bg-nav);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.3); }
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}
/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo:hover { opacity: 0.9; }
.logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem; font-weight: 700;
  color: #050f09;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
/* Nav logo text — always light (nav bg is dark green) */
.logo-main { font-family: 'Space Grotesk', sans-serif; font-size: 1.25rem; font-weight: 700; color: #f0f9f0; }
.logo-sub  { font-size: 0.68rem; font-weight: 500; color: rgba(200,235,190,0.8); letter-spacing: 0.08em; text-transform: uppercase; }

/* Nav links — light text on dark green nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--nav-text);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; gap: 4px;
}
.nav-link:hover {
  color: var(--nav-text-hover);
  background: rgba(255,255,255,0.08);
}
.nav-link.active {
  color: var(--nav-text-active);
  background: rgba(255,255,255,0.08);
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 200px;
  box-shadow: 0 8px 28px rgba(30,70,10,0.15);
  z-index: 100;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block;
  padding: 9px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
}
.dropdown-menu li a:hover { background: var(--teal-glow); color: var(--teal); }
.fa-chevron-down { font-size: 0.65rem; transition: transform 0.2s; }
.dropdown:hover .fa-chevron-down { transform: rotate(180deg); }

/* Nav demo button */
.btn-demo {
  background: var(--teal);
  color: #050f09;
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.87rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 0 16px var(--teal-glow);
  transition: var(--transition);
}
.btn-demo:hover {
  background: var(--teal-light);
  color: #050f09;
  box-shadow: 0 0 24px rgba(0,201,167,0.35);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  border: none;
  padding: 4px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: rgba(220,245,200,0.85);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Page Header (breadcrumb hero for inner pages) ─────────── */
.page-header {
  padding: 120px 0 64px;
  background: linear-gradient(160deg, var(--bg-nav) 0%, #3a7a22 100%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,184,148,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-header-content { position: relative; z-index: 1; }
.page-header h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; color: #ffffff; }
.page-header .section-tag { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25); color: #b8f0d8; }
.page-header p { font-size: 1.1rem; color: rgba(220,245,205,0.88); max-width: 580px; }

/* ── Hero Section (Home) ───────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, var(--bg-nav) 0%, #3a7a22 55%, #4a9030 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -150px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,184,148,0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: pulse 6s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(180,240,100,0.06) 0%, transparent 70%);
  pointer-events: none;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,201,167,0.22);
  border: 1.5px solid rgba(0,201,167,0.75);
  border-radius: 20px;
  padding: 7px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #6aefc0;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}
.live-dot {
  width: 9px; height: 9px;
  background: #6aefc0;
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #ffffff;
}
.hero h1 span { color: #6aefc0; }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(210, 242, 190, 0.9);
  margin-bottom: 28px;
  max-width: 540px;
}
.hero-validation {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.hero-val-item {
  display: flex;
  flex-direction: column;
}
.hero-val-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}
.hero-val-label {
  font-size: 0.72rem;
  color: rgba(190, 230, 170, 0.8);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
/* ── Live Reactor Panel (hero right) ─────────────────────────── */
.live-reactor-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(10, 40, 20, 0.55);
  border: 1px solid rgba(100,230,230,0.25);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3), 0 0 60px rgba(10,124,124,0.15);
}
.bio-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(100,230,210,0.85);
  text-align: center;
}
.param-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  width: 100%;
}
.param-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 12px 8px;
  text-align: center;
}
.pv {
  font-family: Consolas, monospace;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}
.pu {
  font-size: 9px;
  color: rgba(255,255,255,0.4);
  margin-top: 1px;
}
.pn {
  font-size: 9px;
  font-weight: 600;
  color: rgba(100,220,190,0.85);
  margin-top: 3px;
}
.reactor-status-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(46,184,122,0.12);
  border: 1px solid rgba(46,184,122,0.3);
  border-radius: 8px;
  padding: 9px 14px;
  width: 100%;
}
.sdot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #6aefc0;
  animation: blink 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
.stxt {
  font-size: 12px;
  color: rgba(255,255,255,0.78);
}

/* ── Video Section ────────────────────────────────────────────── */
.video-section { background: var(--bg-primary); padding: 80px 0; }
.video-wrapper {
  max-width: 820px;
  margin: 0 auto 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(30,70,10,0.18);
  border: 1px solid var(--border);
}
.video-wrapper video {
  width: 100%;
  display: block;
  background: #000;
}
.video-meta {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 820px;
  margin: 0 auto;
}
.video-meta-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.video-meta-item i {
  color: var(--teal);
  font-size: 1rem;
  flex-shrink: 0;
}
.video-meta-item strong { color: var(--text-primary); }

/* ── Stats Bar ─────────────────────────────────────────────── */
.stats-bar {
  background: var(--bg-secondary);
  /* light sage — uses bg-secondary which is now #dcecd2 */
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item {}
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  display: block;
}
.stat-label { font-size: 0.82rem; color: var(--text-muted); font-weight: 500; margin-top: 4px; }
.stats-divider { width: 1px; background: var(--border); }

/* ── Product Cards Section ─────────────────────────────────── */
.products-section { padding: 80px 0; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--bg-card); /* white */
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover {
  border-color: var(--border-bright);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-teal);
}
.product-card:hover::before { opacity: 1; }
.product-card-icon {
  width: 52px; height: 52px;
  background: rgba(0,184,148,0.1);
  border: 1px solid rgba(0,184,148,0.3);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--teal);
  margin-bottom: 16px;
  flex-shrink: 0;
}
.product-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  width: fit-content;
}
.badge-live {
  background: rgba(0,201,167,0.15);
  border: 1px solid rgba(0,201,167,0.35);
  color: var(--teal);
}
.badge-coming {
  background: rgba(100,140,120,0.15);
  border: 1px solid rgba(100,140,120,0.3);
  color: var(--text-secondary);
}
/* Launching 2026 badge — dream products */
.badge-launch {
  background: rgba(0, 180, 255, 0.12);
  border: 1px solid rgba(0, 180, 255, 0.4);
  color: #0099cc;
  animation: launch-glow 2.5s ease-in-out infinite;
}
@keyframes launch-glow {
  0%, 100% { box-shadow: 0 0 0px rgba(0,180,255,0); }
  50% { box-shadow: 0 0 10px rgba(0,180,255,0.3); }
}

/* ── Product colour themes ─────────────────────────────────── */
/* FermentWin — Teal (existing) */
.prod-win  { --prod-col: #00b894; --prod-bg: rgba(0,184,148,0.08); --prod-border: rgba(0,184,148,0.25); }
/* FermentCare — Blue */
.prod-care { --prod-col: #0078d4; --prod-bg: rgba(0,120,212,0.08); --prod-border: rgba(0,120,212,0.25); }
/* FermentLearn — Yellow/Amber */
.prod-learn { --prod-col: #d4900a; --prod-bg: rgba(245,166,35,0.08); --prod-border: rgba(245,166,35,0.25); }
/* FermentDesign — Orange */
.prod-design { --prod-col: #e8670a; --prod-bg: rgba(232,103,10,0.08); --prod-border: rgba(232,103,10,0.25); }
/* FerMediaOpt — Purple */
.prod-media { --prod-col: #7c3aed; --prod-bg: rgba(124,58,237,0.08); --prod-border: rgba(124,58,237,0.25); }
/* FermentSilico — Electric Blue */
.prod-silico { --prod-col: #0ea5e9; --prod-bg: rgba(14,165,233,0.08); --prod-border: rgba(14,165,233,0.25); }

/* Product icon colour overrides */
.prod-win .product-icon-lg    { background: var(--prod-bg); border-color: var(--prod-border); color: var(--prod-col); }
.prod-care .product-icon-lg   { background: var(--prod-bg); border-color: var(--prod-border); color: var(--prod-col); }
.prod-learn .product-icon-lg  { background: var(--prod-bg); border-color: var(--prod-border); color: var(--prod-col); }
.prod-design .product-icon-lg { background: var(--prod-bg); border-color: var(--prod-border); color: var(--prod-col); }
.prod-media .product-icon-lg  { background: var(--prod-bg); border-color: var(--prod-border); color: var(--prod-col); }
.prod-silico .product-icon-lg { background: var(--prod-bg); border-color: var(--prod-border); color: var(--prod-col); }

/* Product tagline colour */
.prod-win p.prod-tag    { color: #00b894; }
.prod-care p.prod-tag   { color: #0078d4; }
.prod-learn p.prod-tag  { color: #d4900a; }
.prod-design p.prod-tag { color: #e8670a; }
.prod-media p.prod-tag  { color: #7c3aed; }
.prod-silico p.prod-tag { color: #0ea5e9; }

/* Product card home page — coloured top accent + icon bg on hover */
[class*="prod-"].product-card::before {
  background: linear-gradient(90deg, transparent, var(--prod-col), transparent);
}
[class*="prod-"].product-card:hover {
  border-color: var(--prod-border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06), 0 0 0 1px var(--prod-border);
}
.product-card-icon {
  background: var(--prod-bg, rgba(0,184,148,0.1));
  border-color: var(--prod-border, rgba(0,184,148,0.3));
}

/* ── Animated product illustrations ──────────────────────── */
.prod-illustration {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
}

.product-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.product-card-tagline {
  font-size: 0.8rem;
  color: #007a5e;
  font-weight: 600;
  margin-bottom: 10px;
}
.product-card p {
  font-size: 0.86rem;
  color: var(--text-secondary); /* dark green */
  line-height: 1.55;
  flex: 1;
  margin-bottom: 18px;
}
.product-card .btn { align-self: flex-start; }

/* ── Partners Preview Section ──────────────────────────────── */
.partners-preview {
  padding: 80px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}
.partners-preview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.partners-preview-text p {
  color: var(--text-secondary);
  margin-bottom: 28px;
  font-size: 1rem;
  line-height: 1.7;
}

/* ── Anthropic Badge ───────────────────────────────────────── */
.anthropic-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius);
  padding: 12px 18px;
  margin-top: 12px;
}
.anthropic-badge-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #CC785C, #E8947A);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1rem; color: white;
  flex-shrink: 0;
}
.anthropic-badge-text { line-height: 1.2; }
.anthropic-badge-text strong { display: block; font-size: 0.82rem; color: var(--text-primary); }
.anthropic-badge-text span { font-size: 0.7rem; color: var(--text-muted); }

/* ── Page Sections (generic) ───────────────────────────────── */
section { padding: 80px 0; }
section:nth-child(even):not(.hero) { background: var(--bg-secondary); }
.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin-left: auto; margin-right: auto; }

/* ── Products Full Page ────────────────────────────────────── */
.product-full {
  padding: 70px 0;
  border-bottom: 1px solid var(--border);
}
.product-full:nth-child(even) { background: var(--bg-secondary); }
.product-full-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}
.product-full-grid.reverse { direction: rtl; }
.product-full-grid.reverse > * { direction: ltr; }
.product-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.product-icon-lg {
  width: 64px; height: 64px;
  background: var(--teal-glow);
  border: 1px solid rgba(0,201,167,0.3);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: var(--teal);
  flex-shrink: 0;
}
.product-full-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.feature-item i { color: var(--teal); margin-top: 2px; flex-shrink: 0; }
.validation-box {
  background: rgba(220,240,200,0.4);
  border: 1px solid var(--border);
  border-left: 3px solid var(--teal);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-bottom: 24px;
}
.validation-box p { font-size: 0.88rem; color: var(--text-primary); margin: 0; }
.validation-box strong { color: var(--teal); }
.status-box {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.status-icon { font-size: 3rem; color: var(--teal); margin-bottom: 14px; }
.status-box h4 { font-size: 1rem; margin-bottom: 6px; }
.status-box p { font-size: 0.88rem; color: var(--text-secondary); }
.dev-pill {
  display: inline-block;
  background: rgba(100,140,120,0.15);
  border: 1px solid rgba(100,140,120,0.3);
  color: var(--text-secondary);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 8px;
}

/* ── Partner Types Cards ───────────────────────────────────── */
.partner-types-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.partner-type-card {
  background: var(--bg-card); /* white */
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.partner-type-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-3px);
  box-shadow: var(--shadow-teal);
}
.partner-type-icon {
  width: 56px; height: 56px;
  background: var(--teal-glow);
  border: 1px solid rgba(0,201,167,0.25);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--teal);
  margin: 0 auto 14px;
}
.partner-type-card h4 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.partner-type-card p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; /* muted sage */ }

/* Our Partners placeholder */
.partners-coming-box {
  background: var(--bg-card); /* white */
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.partners-coming-box::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}
.partners-coming-icon { font-size: 2.5rem; color: var(--teal); opacity: 0.5; margin-bottom: 16px; }
.partners-coming-box h3 { font-size: 1.15rem; margin-bottom: 8px; color: var(--text-primary); }
.partners-coming-box p { font-size: 0.9rem; color: var(--text-secondary); }

/* ── Forms ─────────────────────────────────────────────────── */
.form-section { padding: 80px 0; }
.form-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 700px;
  margin: 0 auto;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-secondary); /* medium dark green */
  margin-bottom: 6px;
}
.form-group label .req { color: var(--teal); margin-left: 2px; }
.form-control {
  width: 100%;
  background: #f8fbf5;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text-primary); /* dark green text */
  transition: var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,184,148,0.15);
}
.form-control::placeholder { color: #9ab882; }
select.form-control { appearance: none; cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success {
  display: none;
  text-align: center;
  padding: 28px;
}
.form-success i { font-size: 2.5rem; color: var(--teal); margin-bottom: 12px; display: block; }
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--text-muted); font-size: 0.9rem; }

/* ── About Page ────────────────────────────────────────────── */
.about-intro {
  padding: 80px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.75;
}
.about-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(90,158,50,0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.about-badge i { color: var(--teal); }
.info-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
}
.info-card h4 { font-size: 0.88rem; color: var(--teal); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.info-card p, .info-card li { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; }
.info-card ul { padding-left: 0; }
.info-card li { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 6px; }
.info-card li::before { content: '▸'; color: var(--teal); flex-shrink: 0; margin-top: 1px; }

/* Division cards */
.divisions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.division-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  border-top: 3px solid var(--teal);
}
.division-icon { font-size: 1.8rem; color: var(--teal); margin-bottom: 12px; }
.division-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.division-card p { font-size: 0.86rem; color: var(--text-muted); margin-bottom: 12px; }
.division-products { display: flex; flex-wrap: wrap; gap: 6px; }
.division-product {
  background: var(--teal-glow);
  border: 1px solid rgba(0,201,167,0.25);
  color: var(--teal);
  border-radius: 12px;
  padding: 3px 10px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* IP Table */
.ip-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.ip-table th {
  text-align: left;
  padding: 12px 14px;
  background: #dce9d0;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.ip-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  vertical-align: top;
}
.ip-table tr:last-child td { border-bottom: none; }
.ip-status {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 600;
}
.ip-status.published { background: rgba(0,201,167,0.15); color: var(--teal); }
.ip-status.filed { background: rgba(100,140,120,0.15); color: var(--text-secondary); }

/* Publications */
.publications-list { display: flex; flex-direction: column; gap: 14px; }
.publication-item {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.pub-icon { color: var(--teal); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.pub-title { font-size: 0.92rem; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; }
.pub-meta { font-size: 0.8rem; color: var(--text-muted); }

/* Team Cards */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.team-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover {
  border-color: var(--border-bright);
  box-shadow: var(--shadow-teal);
}
.team-avatar {
  width: 80px; height: 80px;
  background: rgba(0,184,148,0.1);
  border: 2px solid rgba(0,184,148,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.8rem;
  color: var(--teal);
}
.team-card h3 { font-size: 1.15rem; margin-bottom: 4px; }
.team-title { font-size: 0.84rem; color: var(--teal); font-weight: 600; margin-bottom: 6px; }
.team-qual { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 4px; }
.team-exp { font-size: 0.82rem; color: var(--text-secondary); margin-bottom: 18px; }
.team-card .btn { margin: 0 auto; }

/* ── Contact Page ──────────────────────────────────────────── */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
.contact-info-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
}
.contact-info-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-3px);
}
.contact-card-icon {
  width: 54px; height: 54px;
  background: var(--teal-glow);
  border: 1px solid rgba(0,201,167,0.25);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--teal);
  margin: 0 auto 14px;
}
.contact-info-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.contact-info-card p { font-size: 0.86rem; color: var(--text-secondary); margin-bottom: 14px; line-height: 1.55; }
.contact-option-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
.contact-option-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
}
.contact-option-card:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 20px var(--teal-glow);
  transform: translateY(-3px);
}
.contact-option-card .option-icon {
  font-size: 2rem;
  color: var(--teal);
  margin-bottom: 12px;
}
.contact-option-card h4 { font-size: 1rem; margin-bottom: 8px; }
.contact-option-card p { font-size: 0.84rem; color: var(--text-muted); margin-bottom: 16px; }

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--border);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand .footer-logo {
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.footer-brand p { font-size: 0.85rem; color: rgba(200,235,175,0.75); line-height: 1.6; margin-bottom: 16px; }
.footer-col h5 {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(200,235,175,0.65);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.86rem; color: rgba(215,240,190,0.8); }
.footer-col ul li a:hover { color: #6aefc0; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.92);
  margin-bottom: 8px;
}
.footer-contact-item i { color: var(--teal); flex-shrink: 0; margin-top: 2px; font-size: 0.8rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copyright { font-size: 0.8rem; color: rgba(190,225,165,0.65); }
.footer-protection {
  font-size: 0.75rem;
  color: rgba(190,225,165,0.55);
  max-width: 460px;
  text-align: right;
  line-height: 1.5;
}
.footer-protection i { color: var(--teal); margin-right: 4px; }

/* ── WhatsApp Floating Button ──────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover {
  background: #20bc5c;
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
  color: white;
}
.whatsapp-tooltip {
  position: absolute;
  right: 66px;
  background: rgba(0,0,0,0.8);
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ── Dividers ──────────────────────────────────────────────── */
.divider { height: 1px; background: var(--border); margin: 0; }

/* ── Utilities ─────────────────────────────────────────────── */
.mt-2  { margin-top: 8px; }
.mt-4  { margin-top: 16px; }
.mt-6  { margin-top: 24px; }
.mt-8  { margin-top: 32px; }
.mb-2  { margin-bottom: 8px; }
.mb-4  { margin-bottom: 16px; }
.mb-6  { margin-bottom: 24px; }
.mb-8  { margin-bottom: 32px; }
.d-flex { display: flex; }
.gap-2  { gap: 8px; }
.gap-3  { gap: 12px; }
.gap-4  { gap: 16px; }
.align-center { align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.hidden { display: none !important; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-types-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  /* Nav */
  .nav-links, .btn-demo {
    display: none;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: #2a5818;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 16px 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    z-index: 999;
  }
  .nav-links.open .btn-demo-mobile {
    display: inline-flex;
    margin-top: 8px;
    align-self: flex-start;
  }
  .hamburger { display: flex; }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    margin-top: 4px;
    border-radius: var(--radius-sm);
  }
  .dropdown:hover .dropdown-menu { display: none; }
  .dropdown.open .dropdown-menu { display: block; }
  /* Hero */
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero { padding-top: 88px; min-height: auto; padding-bottom: 60px; }
  /* Grids */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .product-full-grid { 