/* ── Brand Tokens ───────────────────────────────────────────── */
:root {
  --navy:   #123540;
  --lime:   #D5FBA0;
  --cream:  #EDEBC9;
  --sage:   #B6B896;
  --forest: #677150;
  --navy-80: rgba(18,53,64,0.8);
  --radius:  10px;
  --radius-lg: 18px;
  --transition: 0.22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: 'Lora', Georgia, serif; }
h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); font-weight: 700; line-height: 1.1; color: var(--cream); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 600; line-height: 1.2; }
h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 6px; }
p  { color: var(--forest); line-height: 1.7; }
.container { max-width: 1080px; margin: 0 auto; padding: 0 28px; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--radius);
  font-size: 0.95rem; font-weight: 600; font-family: 'Inter', sans-serif;
  cursor: pointer; transition: all var(--transition); border: none;
  white-space: nowrap;
}
.btn-primary  { background: var(--lime); color: var(--navy); }
.btn-primary:hover { background: #c4f080; transform: translateY(-1px); }
.btn-outline  { background: transparent; color: var(--cream); border: 1.5px solid rgba(237,235,201,0.5); }
.btn-outline:hover { border-color: var(--cream); background: rgba(237,235,201,0.08); }
.btn-secondary { background: var(--navy); color: var(--cream); }
.btn-secondary:hover { background: #1a4a5a; }
.btn-nav { background: var(--lime); color: var(--navy) !important; padding: 9px 20px; font-size: 0.875rem; }
.btn-nav:hover { background: #c4f080; }
.btn-lime { background: var(--lime); color: var(--navy); }
.btn-lime:hover { background: #c4f080; transform: translateY(-1px); }
.btn-cream-outline { background: transparent; color: var(--cream); border: 1.5px solid rgba(237,235,201,0.45); }
.btn-cream-outline:hover { border-color: var(--cream); }

/* ── NAV ────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 40px;
  background: rgba(18,53,64,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(213,251,160,0.1);
}
.nav-logo { display: flex; align-items: center; gap: 12px; color: var(--cream); }
.nav-logomark { width: 32px; height: 32px; color: var(--lime); flex-shrink: 0; }
.nav-wordmark { font-family: 'Lora', serif; font-size: 1.05rem; color: var(--cream); letter-spacing: 0.01em; }
.nav-wordmark strong { color: var(--cream); font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 0.875rem; font-weight: 500; color: rgba(237,235,201,0.75); transition: color var(--transition); }
.nav-links a:hover { color: var(--cream); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { width: 22px; height: 2px; background: var(--cream); border-radius: 2px; display: block; transition: all var(--transition); }

/* ── NAV DROPDOWN ───────────────────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { display: flex; align-items: center; gap: 6px; cursor: pointer; background: none; border: none; font-family: inherit; font-size: 0.875rem; font-weight: 500; color: rgba(237,235,201,0.75); transition: color var(--transition); }
.nav-dropdown-trigger:hover { color: var(--cream); }
.nav-dropdown-trigger .caret { font-size: 0.65rem; transition: transform var(--transition); }
.nav-dropdown:hover .nav-dropdown-trigger .caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
  background: var(--navy); border: 1px solid rgba(213,251,160,0.15);
  border-radius: var(--radius-lg); padding: 10px;
  display: grid; grid-template-columns: 1fr; gap: 2px;
  min-width: 240px;
  opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(6px);
  transition: all var(--transition);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 8px;
  font-size: 0.85rem; color: rgba(237,235,201,0.8) !important;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: rgba(213,251,160,0.08); color: var(--cream) !important; }

/* ── MOBILE MENU ────────────────────────────────────────────── */
.mobile-menu {
  display: none; flex-direction: column; gap: 16px;
  position: fixed; top: 69px; left: 0; right: 0; z-index: 99;
  background: var(--navy); padding: 28px;
  border-bottom: 1px solid rgba(213,251,160,0.1);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--cream); font-size: 1rem; font-weight: 500; }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding: 140px 80px 100px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('/assets/hero/kelp-forest-hero.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(18,53,64,0.4) 0%, var(--navy) 85%);
  z-index: 0;
}
.hero-inner { position: relative; z-index: 1; max-width: 720px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--lime);
  background: rgba(213,251,160,0.1);
  border: 1px solid rgba(213,251,160,0.25);
  border-radius: 99px; padding: 6px 14px; margin-bottom: 28px;
}
.hero h1 { margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--lime); }
.hero-sub {
  font-size: 1.1rem; color: rgba(237,235,201,0.75);
  max-width: 480px; margin-bottom: 40px; line-height: 1.7;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── MISSION ────────────────────────────────────────────────── */
.mission {
  padding: 100px 0;
  background: var(--cream);
}
.mission-tag {
  display: inline-block; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--forest); background: rgba(103,113,80,0.12);
  border-radius: 99px; padding: 4px 14px; margin-bottom: 20px;
}
.mission h2 { color: var(--navy); margin-bottom: 28px; }
.mission .mission-text { font-size: 1.05rem; color: var(--forest); max-width: 680px; margin-bottom: 20px; }
.mission .mission-list { list-style: none; max-width: 680px; margin-bottom: 24px; display: flex; flex-direction: column; gap: 12px; }
.mission .mission-list li { font-size: 1rem; color: var(--forest); line-height: 1.6; padding-left: 22px; position: relative; }
.mission .mission-list li::before { content: '🌊'; position: absolute; left: 0; top: 0; font-size: 0.85rem; }
.mission .mission-list strong { color: var(--navy); }
.mission .btn-secondary { margin-top: 12px; }

/* ── CIRCULAR ECONOMY ───────────────────────────────────────── */
.circular {
  padding: 100px 0;
  background: var(--navy);
  color: var(--cream);
}
.circ-tag {
  display: inline-block; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--lime); background: rgba(213,251,160,0.1);
  border-radius: 99px; padding: 4px 14px; margin-bottom: 20px;
}
.circular h2 { color: var(--cream); margin-bottom: 56px; }
.circ-grid {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.circ-step {
  flex: 1; min-width: 180px;
  background: rgba(213,251,160,0.05);
  border: 1px solid rgba(213,251,160,0.12);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--lime); color: var(--navy);
  font-weight: 700; font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step-body h3 { color: var(--cream); }
.step-body p { font-size: 0.9rem; color: rgba(237,235,201,0.65); }
.circ-arrow {
  font-size: 1.4rem; color: var(--lime); opacity: 0.5; flex-shrink: 0;
}

/* ── INITIATIVES GRID ───────────────────────────────────────── */
.initiatives {
  padding: 100px 0;
  background: var(--navy);
}
.initiatives-tag {
  display: inline-block; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--lime); background: rgba(213,251,160,0.1);
  border-radius: 99px; padding: 4px 14px; margin-bottom: 20px;
}
.initiatives h2 { color: var(--cream); margin-bottom: 16px; }
.initiatives .section-intro { font-size: 1.05rem; color: rgba(237,235,201,0.75); max-width: 680px; margin-bottom: 48px; }
.initiatives-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.initiative-card {
  display: flex; flex-direction: column; gap: 14px;
  background: rgba(213,251,160,0.05); border: 1px solid rgba(213,251,160,0.12);
  border-radius: var(--radius-lg); padding: 26px;
  transition: all var(--transition);
  border-top: 3px solid var(--acc, var(--lime));
}
.initiative-card:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(0,0,0,0.25); border-color: rgba(213,251,160,0.25); }
.ic-top { display: flex; justify-content: space-between; align-items: center; }
.ic-badge {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--lime); background: rgba(213,251,160,0.1); border-radius: 99px; padding: 4px 10px;
}
.ic-arrow { color: var(--acc, var(--lime)); font-size: 1.1rem; }
.ic-name { font-family: 'Lora', serif; font-size: 1.15rem; font-weight: 600; color: var(--cream); }
.ic-desc { font-size: 0.9rem; color: rgba(237,235,201,0.7); line-height: 1.6; flex-grow: 1; }
.ic-progress-label { display: flex; justify-content: space-between; font-size: 0.75rem; color: rgba(237,235,201,0.6); margin-bottom: 6px; }
.progress-bar { height: 5px; background: rgba(237,235,201,0.12); border-radius: 99px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--acc, var(--lime)); border-radius: 99px; }
.ic-footer { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: rgba(237,235,201,0.6); padding-top: 10px; border-top: 1px solid rgba(213,251,160,0.1); }
.ic-link { color: var(--acc, var(--lime)); font-weight: 600; }
.acc-trust { --acc: #D5FBA0; }
.acc-kiwikrete { --acc: #D5FBA0; }
.acc-calcara { --acc: #B6B896; }
.acc-removals { --acc: #D5FBA0; }
.acc-pingo { --acc: #B6B896; }
.acc-seafoo { --acc: #D5FBA0; }
.acc-reef { --acc: #B6B896; }
.acc-seasniper { --acc: #D5FBA0; }
.acc-sailing { --acc: #B6B896; }
.acc-surfshacks { --acc: #D5FBA0; }

/* ── ENTITY (INITIATIVE) PAGE TEMPLATE ──────────────────────── */
.entity-hero { background: var(--navy); padding: 140px 0 64px; color: var(--cream); }
.entity-breadcrumb { font-size: 0.85rem; color: rgba(237,235,201,0.55); margin-bottom: 20px; }
.entity-breadcrumb a { color: rgba(237,235,201,0.75); }
.entity-tag-label {
  display: inline-block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--lime); background: rgba(213,251,160,0.1); border: 1px solid rgba(213,251,160,0.25);
  border-radius: 99px; padding: 6px 14px; margin-bottom: 22px;
}
.entity-hero h1 { color: var(--cream); margin-bottom: 18px; }
.entity-tagline { font-size: 1.05rem; color: rgba(237,235,201,0.75); max-width: 640px; line-height: 1.7; margin-bottom: 32px; }
.entity-meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.e-badge { font-size: 0.78rem; font-weight: 600; color: var(--lime); background: rgba(213,251,160,0.1); border-radius: 99px; padding: 6px 14px; }
.e-progress-wrap { display: flex; align-items: center; gap: 10px; }
.e-progress-wrap .bar { width: 140px; height: 6px; background: rgba(237,235,201,0.15); border-radius: 99px; overflow: hidden; }
.e-progress-wrap .fill { height: 100%; background: var(--lime); border-radius: 99px; }
.e-progress-wrap strong { font-size: 0.85rem; color: var(--cream); }

.section { padding: 90px 0; background: var(--cream); }
.section.alt { background: #fff; }
.section .tag {
  display: inline-block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--forest); background: rgba(103,113,80,0.12); border-radius: 99px; padding: 4px 14px; margin-bottom: 20px;
}
.section h2 { color: var(--navy); margin-bottom: 16px; }
.section .section-intro { font-size: 1.05rem; color: var(--forest); max-width: 680px; margin-bottom: 40px; }

.ps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.ps-card { background: #fff; border-radius: var(--radius-lg); padding: 28px; border: 1px solid rgba(18,53,64,0.08); }
.ps-card.solution { border-top: 3px solid var(--lime); }
.ps-card.problem { border-top: 3px solid var(--sage); }
.ps-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--navy); margin-bottom: 18px; }
.ps-item { display: flex; gap: 12px; margin-bottom: 16px; }
.ps-item p { font-size: 0.92rem; color: var(--forest); line-height: 1.6; }
.pi-num {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: var(--lime); color: var(--navy); font-size: 0.78rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

.rocks-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.rock-card { display: flex; gap: 16px; background: #fff; border: 1px solid rgba(18,53,64,0.08); border-radius: var(--radius-lg); padding: 22px; }
.rock-num { font-size: 1.4rem; flex-shrink: 0; }
.rock-text h4 { font-family: 'Lora', serif; font-size: 1rem; color: var(--navy); margin-bottom: 6px; }
.rock-text p { font-size: 0.88rem; color: var(--forest); line-height: 1.6; }

.partners-strip { display: flex; gap: 10px; flex-wrap: wrap; }
.partner-pill { font-size: 0.82rem; color: var(--navy); background: rgba(213,251,160,0.25); border-radius: 99px; padding: 8px 16px; }

.cta-banner { background: var(--forest); border-radius: var(--radius-lg); padding: 56px; text-align: center; }
.cta-banner h2 { color: var(--cream); margin-bottom: 16px; }
.cta-banner p { color: rgba(237,235,201,0.8); max-width: 520px; margin: 0 auto 28px; }
.cta-btn-white { display: inline-block; background: var(--lime); color: var(--navy); font-weight: 600; padding: 13px 26px; border-radius: var(--radius); font-size: 0.95rem; }
.cta-btn-white:hover { background: #c4f080; }

.signup-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; max-width: 460px; margin: 0 auto; }
.signup-form input[type="email"] { flex: 1; min-width: 220px; padding: 13px 16px; border-radius: var(--radius); border: 1px solid rgba(237,235,201,0.3); background: rgba(237,235,201,0.08); color: var(--cream); font-family: inherit; font-size: 0.9rem; }
.signup-form input[type="email"]::placeholder { color: rgba(237,235,201,0.5); }
.signup-status { color: var(--lime); font-size: 0.85rem; margin-top: 14px; min-height: 1em; }

/* ── VIDEO EMBEDS ───────────────────────────────────────────── */
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.video-card { background: #fff; border: 1px solid rgba(18,53,64,0.08); border-radius: var(--radius-lg); padding: 16px; }
.video-frame { position: relative; width: 100%; padding-top: 56.25%; border-radius: 10px; overflow: hidden; background: var(--navy); }
.video-frame iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.video-label { display: flex; justify-content: space-between; align-items: center; padding: 16px 6px 4px; }
.video-label h4 { font-family: 'Lora', serif; color: var(--navy); font-size: 1rem; }
.video-label span { font-size: 0.78rem; color: var(--forest); font-weight: 600; background: rgba(103,113,80,0.12); border-radius: 99px; padding: 4px 10px; }
@media (max-width: 900px) {
  .video-grid { grid-template-columns: 1fr; }
}

/* ── FOUNDER STORY ──────────────────────────────────────────── */
.story-block { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 64px; }
.story-block.reverse .story-text { order: 2; }
.story-block.reverse .story-media { order: 1; }
.story-media img { width: 100%; border-radius: var(--radius-lg); display: block; }
.story-media.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.story-text h3 { font-family: 'Lora', serif; color: var(--navy); font-size: 1.3rem; margin-bottom: 14px; }
.story-text p { font-size: 0.98rem; color: var(--forest); line-height: 1.75; margin-bottom: 12px; }
.story-quote {
  border-left: 3px solid var(--lime); padding-left: 20px; margin: 20px 0;
  font-family: 'Lora', serif; font-style: italic; color: var(--navy); font-size: 1.05rem; line-height: 1.6;
}
.founder-video { border-radius: var(--radius-lg); overflow: hidden; background: var(--navy); }
.founder-video video { width: 100%; display: block; }
@media (max-width: 900px) {
  .story-block, .story-block.reverse { grid-template-columns: 1fr; }
  .story-block.reverse .story-text, .story-block.reverse .story-media { order: initial; }
}

@media (max-width: 900px) {
  .initiatives-grid { grid-template-columns: 1fr 1fr; }
  .ps-grid, .rocks-grid { grid-template-columns: 1fr; }
  .nav-dropdown-menu { display: none; }
}
@media (max-width: 560px) {
  .initiatives-grid { grid-template-columns: 1fr; }
}

/* ── CTA SECTION ────────────────────────────────────────────── */
.cta-section {
  padding: 100px 0;
  background: var(--forest);
  text-align: center;
}
.cta-section h2 { color: var(--cream); margin-bottom: 20px; }
.cta-section p { font-size: 1.05rem; color: rgba(237,235,201,0.8); max-width: 560px; margin: 0 auto 40px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  padding: 64px 0 36px;
  color: var(--cream);
}
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 40px; margin-bottom: 48px;
  flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-logomark { width: 44px; height: 44px; color: var(--lime); }
.footer-name { font-family: 'Lora', serif; font-size: 1.1rem; color: var(--cream); }
.footer-tagline { font-size: 0.82rem; color: rgba(237,235,201,0.5); margin-top: 2px; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
.footer-links a { font-size: 0.875rem; color: rgba(237,235,201,0.6); transition: color var(--transition); }
.footer-links a:hover { color: var(--lime); }
.footer-social { display: flex; gap: 14px; align-items: center; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(237,235,201,0.08); border: 1px solid rgba(237,235,201,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(237,235,201,0.7); transition: all var(--transition);
}
.footer-social a:hover { background: rgba(213,251,160,0.15); border-color: var(--lime); color: var(--lime); }
.footer-social svg { width: 17px; height: 17px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid rgba(237,235,201,0.1);
  font-size: 0.8rem; color: rgba(237,235,201,0.35);
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom a { color: var(--lime); }
.footer-bottom a:hover { opacity: 0.8; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 120px 28px 72px;
    gap: 48px;
    text-align: center;
  }
  .hero-badge, .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .circ-grid { flex-direction: column; }
  .circ-arrow { transform: rotate(90deg); }
}

@media (max-width: 560px) {
  .footer-top { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── QUOTE HERO ─────────────────────────────────────────────── */
.quote-hero {
  background: var(--navy);
  padding: 160px 0 100px;
  text-align: center;
}
.quote-hero blockquote {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  color: var(--cream);
  max-width: 880px;
  margin: 0 auto 24px;
  line-height: 1.5;
}
.quote-hero blockquote::before { content: '\201C'; }
.quote-hero blockquote::after { content: '\201D'; }
.quote-cite { font-size: 0.95rem; color: var(--lime); font-weight: 600; }
.quote-cite span { display: block; font-size: 0.8rem; color: rgba(237,235,201,0.55); font-weight: 400; margin-top: 4px; }

/* ── WHY-IT-MATTERS CARDS ───────────────────────────────────── */
.matters-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.matter-card {
  background: #fff; border: 1px solid rgba(18,53,64,0.08);
  border-radius: var(--radius-lg); padding: 32px;
}
.matter-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(213,251,160,0.18);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.matter-icon svg { width: 24px; height: 24px; color: var(--forest); }
.matter-card h3 { font-family: 'Lora', serif; color: var(--navy); font-size: 1.15rem; margin-bottom: 10px; }
.matter-card p { font-size: 0.92rem; color: var(--forest); line-height: 1.65; }

/* ── STATS GRID ─────────────────────────────────────────────── */
.stats-section { background: var(--navy); padding: 100px 0; }
.stats-section .tag { color: var(--lime); background: rgba(213,251,160,0.1); }
.stats-section h2 { color: var(--cream); }
.stats-section .section-intro { color: rgba(237,235,201,0.7); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stat-card2 {
  background: rgba(213,251,160,0.05); border: 1px solid rgba(213,251,160,0.12);
  border-radius: var(--radius-lg); padding: 28px;
}
.stat-card2 .num { font-family: 'Lora', serif; font-size: 2.2rem; font-weight: 700; color: var(--lime); line-height: 1; margin-bottom: 10px; }
.stat-card2 .label { font-size: 0.88rem; color: rgba(237,235,201,0.75); line-height: 1.5; }

@media (max-width: 900px) {
  .matters-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .stats-grid { grid-template-columns: 1fr; }
}

/* ── PILLARS (Proven Innovation hero) ──────────────────────── */
.pillars-hero { background: var(--navy); padding: 160px 0 100px; }
.pillars-hero .hero-badge { margin-bottom: 24px; }
.pillars-hero h1 { color: var(--cream); max-width: 760px; margin-bottom: 44px; }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pillar-card {
  background: rgba(213,251,160,0.05); border: 1px solid rgba(213,251,160,0.12);
  border-radius: var(--radius-lg); padding: 28px;
}
.pillar-card h3 { font-family: 'Lora', serif; color: var(--lime); font-size: 1.05rem; margin-bottom: 12px; }
.pillar-card p { font-size: 0.9rem; color: rgba(237,235,201,0.75); line-height: 1.65; }

/* ── PROCESS STEPS ──────────────────────────────────────────── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 48px; }
.process-step {
  background: #fff; border: 1px solid rgba(18,53,64,0.08);
  border-radius: var(--radius-lg); padding: 26px 22px;
  position: relative;
}
.process-step .pstep-num {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--navy); color: var(--lime);
  font-family: 'Lora', serif; font-weight: 700; font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.process-step h4 { font-family: 'Lora', serif; color: var(--navy); font-size: 1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.86rem; color: var(--forest); line-height: 1.55; }
.example-callout {
  background: var(--cream); border: 1.5px dashed var(--sage);
  border-radius: var(--radius-lg); padding: 28px 32px;
}
.example-callout .ex-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--forest); margin-bottom: 10px; }
.example-callout h4 { font-family: 'Lora', serif; color: var(--navy); font-size: 1.2rem; margin-bottom: 12px; }
.example-callout p { font-size: 0.95rem; color: var(--forest); line-height: 1.7; }
.example-callout .ex-result { display: inline-flex; gap: 8px; margin-top: 14px; }
.example-callout .ex-result span { font-size: 0.78rem; font-weight: 600; color: var(--navy); background: rgba(213,251,160,0.4); border-radius: 99px; padding: 5px 12px; }

/* ── SOLUTION GRID ──────────────────────────────────────────── */
.solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.solution-card {
  background: #fff; border: 1px solid rgba(18,53,64,0.08);
  border-radius: var(--radius-lg); padding: 28px;
}
.solution-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(213,251,160,0.35);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.solution-icon svg { width: 22px; height: 22px; color: var(--navy); }
.solution-card h4 { font-family: 'Lora', serif; color: var(--navy); font-size: 1.02rem; margin-bottom: 8px; }
.solution-card p { font-size: 0.88rem; color: var(--forest); line-height: 1.6; }

/* ── VIRTUOUS CYCLE ─────────────────────────────────────────── */
.cycle-flow { display: flex; flex-direction: column; align-items: center; gap: 0; max-width: 560px; margin: 0 auto; }
.cycle-node {
  width: 100%; display: flex; align-items: center; gap: 18px;
  background: rgba(213,251,160,0.05); border: 1px solid rgba(213,251,160,0.15);
  border-radius: var(--radius-lg); padding: 20px 26px;
}
.cycle-node .cn-icon {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  background: rgba(213,251,160,0.15);
  display: flex; align-items: center; justify-content: center;
}
.cycle-node .cn-icon svg { width: 20px; height: 20px; color: var(--lime); }
.cycle-node h4 { font-family: 'Lora', serif; color: var(--cream); font-size: 0.98rem; margin-bottom: 3px; }
.cycle-node p { font-size: 0.82rem; color: rgba(237,235,201,0.65); }
.cycle-arrow-down { color: var(--lime); font-size: 1.3rem; padding: 8px 0; opacity: 0.7; }

/* ── PROBLEM-MAPPING TABLE ──────────────────────────────────── */
.problem-table { width: 100%; border-collapse: separate; border-spacing: 0; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(18,53,64,0.08); }
.problem-table th {
  background: var(--navy); color: var(--cream); text-align: left;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 14px 20px;
}
.problem-table td { padding: 18px 20px; font-size: 0.9rem; color: var(--forest); border-top: 1px solid rgba(18,53,64,0.06); background: #fff; vertical-align: top; }
.problem-table tr:nth-child(even) td { background: rgba(103,113,80,0.04); }
.problem-table .pt-name { font-family: 'Lora', serif; color: var(--navy); font-weight: 600; white-space: nowrap; }
.problem-table .pt-stage { font-size: 0.78rem; font-weight: 600; color: var(--navy); background: rgba(213,251,160,0.35); border-radius: 99px; padding: 4px 12px; display: inline-block; white-space: nowrap; }

@media (max-width: 900px) {
  .pillars-grid, .process-grid, .solution-grid { grid-template-columns: 1fr; }
  .problem-table, .problem-table thead { display: block; }
  .problem-table tr { display: block; margin-bottom: 16px; border-bottom: 1px solid rgba(18,53,64,0.08); }
  .problem-table thead tr { display: none; }
  .problem-table td { display: block; border-top: none; padding: 6px 18px; }
  .problem-table td.pt-name { padding-top: 16px; font-size: 1.05rem; }
  .problem-table td:last-child { padding-bottom: 16px; }
}

/* ── PRODUCT LIST (ecommerce-style) ─────────────────────────── */
.product-list { display: flex; flex-direction: column; gap: 20px; }
.product-row {
  display: grid; grid-template-columns: 96px 1fr auto; align-items: center; gap: 24px;
  background: #fff; border: 1px solid rgba(18,53,64,0.08);
  border-radius: var(--radius-lg); padding: 24px 28px;
  transition: all var(--transition);
}
.product-row:hover { box-shadow: 0 16px 32px rgba(18,53,64,0.08); transform: translateY(-2px); }
.product-emoji { width: 96px; height: 96px; border-radius: var(--radius); background: rgba(213,251,160,0.25); display: flex; align-items: center; justify-content: center; font-size: 2.6rem; flex-shrink: 0; }
.product-info h3 { font-family: 'Lora', serif; color: var(--navy); font-size: 1.15rem; margin-bottom: 6px; }
.product-info p { font-size: 0.9rem; color: var(--forest); line-height: 1.6; margin-bottom: 8px; }
.product-impact { display: inline-flex; align-items: center; gap: 6px; font-size: 0.78rem; font-weight: 600; color: var(--navy); background: rgba(213,251,160,0.4); border-radius: 99px; padding: 5px 12px; }
.product-cta { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; text-align: right; }
.product-price { font-family: 'Lora', serif; font-size: 1.3rem; font-weight: 700; color: var(--navy); }
.product-price span { display: block; font-size: 0.72rem; font-weight: 400; color: var(--forest); }

@media (max-width: 700px) {
  .product-row { grid-template-columns: 64px 1fr; }
  .product-emoji { width: 64px; height: 64px; font-size: 1.8rem; }
  .product-cta { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items: center; margin-top: 8px; text-align: left; }
}

/* ── BLOG POST ──────────────────────────────────────────────── */
.blog-hero { background: var(--navy); padding: 150px 0 70px; }
.blog-byline { font-size: 0.85rem; color: rgba(237,235,201,0.55); margin-bottom: 18px; }
.blog-byline strong { color: var(--lime); }
.blog-hero h1 { color: var(--cream); max-width: 760px; margin-bottom: 22px; }
.blog-deck { font-size: 1.05rem; color: rgba(237,235,201,0.75); max-width: 680px; line-height: 1.7; }
.article { padding: 80px 0; background: var(--cream); }
.article-body { max-width: 700px; margin: 0 auto; }
.article-body p { font-size: 1.02rem; color: var(--forest); line-height: 1.85; margin-bottom: 24px; }
.article-body h2 { font-size: 1.5rem; color: var(--navy); margin: 48px 0 18px; }
.article-body ul { margin: 0 0 24px; padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 16px; }
.article-body ul li { font-size: 1.02rem; color: var(--forest); line-height: 1.75; padding-left: 26px; position: relative; }
.article-body ul li::before { content: '🌊'; position: absolute; left: 0; top: 1px; font-size: 0.85rem; }
.article-body ul li strong { color: var(--navy); }
.pull-quote {
  font-family: 'Lora', serif; font-style: italic; font-size: 1.4rem; color: var(--navy);
  border-left: 3px solid var(--lime); padding: 4px 0 4px 24px; margin: 40px 0; line-height: 1.5;
}
.pull-quote cite { display: block; font-size: 0.8rem; font-style: normal; font-weight: 600; color: var(--forest); margin-top: 10px; }

/* ── CYCLE DIAGRAM ──────────────────────────────────────────── */
.diagram-block { max-width: 720px; margin: 32px auto 0; background: #fff; border: 1px solid rgba(18,53,64,0.08); border-radius: var(--radius-lg); padding: 28px; }
.cycle-diagram { width: 100%; height: auto; display: block; }

/* ── INTERACTIVE CHART ──────────────────────────────────────── */
.chart-block { max-width: 760px; margin: 48px auto 0; background: #fff; border: 1px solid rgba(18,53,64,0.08); border-radius: var(--radius-lg); padding: 28px; }
.chart-toggle-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--forest); text-align: center; margin-bottom: 10px; }
.chart-toggle-label:not(:first-child) { margin-top: 18px; }
.chart-toggle { display: flex; gap: 10px; justify-content: center; margin-bottom: 20px; flex-wrap: wrap; }
.chart-toggle button {
  font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 600;
  padding: 9px 18px; border-radius: 99px; border: 1.5px solid rgba(18,53,64,0.15);
  background: transparent; color: var(--forest); cursor: pointer; transition: all var(--transition);
}
.chart-toggle button.active { background: var(--navy); color: var(--lime); border-color: var(--navy); }
.chart-caption { font-size: 0.82rem; color: var(--forest); text-align: center; margin-top: 14px; }

@media (max-width: 700px) {
  .blog-hero { padding: 130px 0 56px; }
}
