@import url('colors_and_type.css');

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--gl-bg);
  color: var(--gl-ink);
  font-family: var(--font-product);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* ============== NAV ============== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, background 200ms ease;
}
.nav.scrolled { border-bottom-color: var(--gl-stroke); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 28px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 14px; border-radius: 8px;
  font-size: 14px; font-weight: 500; color: var(--gl-ink);
  transition: background 160ms ease, color 160ms ease;
}
.nav-links a:hover { background: var(--gl-mint); color: var(--gl-green); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.audience-toggle {
  display: flex; padding: 4px; background: var(--gl-mint);
  border-radius: 999px; font-size: 13px; font-weight: 600;
}
.audience-toggle button,
.audience-toggle a {
  padding: 6px 14px; border-radius: 999px; color: var(--gl-fg-muted);
  transition: all 160ms ease;
  text-decoration: none;
  display: inline-flex; align-items: center;
}
.audience-toggle button.active,
.audience-toggle a.active {
  background: white; color: var(--gl-green);
  box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: 10px;
  font-weight: 600; font-size: 14px;
  transition: all 180ms ease; white-space: nowrap;
}
.btn-primary {
  background: var(--gl-green); color: white;
}
.btn-primary:hover { background: var(--gl-green-deep); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(13,85,55,0.25); }
.btn-primary:active { transform: translateY(0); }
.btn-secondary {
  background: white; color: var(--gl-green);
  border: 1px solid var(--gl-stroke);
}
.btn-secondary:hover { border-color: var(--gl-green); background: var(--gl-mint-soft); }
.btn-ghost { color: var(--gl-ink); padding: 12px 16px; }
.btn-ghost:hover { color: var(--gl-green); }
.btn-arrow svg { transition: transform 180ms ease; }
.btn-arrow:hover svg { transform: translateX(3px); }
.btn-lg { padding: 14px 24px; font-size: 15px; }

/* ============== HERO ============== */
.hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
}
.hero-bg-blob {
  position: absolute;
  top: -200px; right: -200px;
  width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(231,242,241,0.9), rgba(231,242,241,0) 60%);
  pointer-events: none; z-index: 0;
}
.hero-bg-blob.bottom {
  top: auto; right: auto;
  bottom: -300px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(242,184,20,0.12), rgba(242,184,20,0) 60%);
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 64px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px 6px 8px;
  background: var(--gl-mint); color: var(--gl-green);
  border-radius: 999px; font-size: 13px; font-weight: 600;
  margin-bottom: 24px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--gl-green);
  box-shadow: 0 0 0 4px rgba(13,85,55,0.18);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(13,85,55,0.18); }
  50% { box-shadow: 0 0 0 8px rgba(13,85,55,0); }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.6vw, 76px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--gl-ink);
  margin-bottom: 24px;
}
.hero h1 .accent {
  color: var(--gl-green);
  font-style: italic;
  font-weight: 600;
  position: relative;
  display: inline-block;
}
.hero h1 .underline {
  position: relative; white-space: nowrap;
}
.hero h1 .underline svg {
  position: absolute; bottom: -8px; left: 0; width: 100%; height: 14px;
  color: var(--gl-gold);
}
.hero p.lede {
  font-size: 19px; line-height: 1.55; color: var(--gl-fg-muted);
  max-width: 540px; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust {
  display: flex; gap: 28px; flex-wrap: wrap;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--gl-fg-muted); font-weight: 500;
}
.hero-trust-item svg { color: var(--gl-green); }

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 480px;
  justify-self: end;
  /* leave room so the floating cards (-40px / -36px) never get clipped */
  margin-right: 48px;
}
@media (max-width: 1180px) {
  .hero-visual { margin-right: 24px; max-width: 440px; }
}
.hv-frame {
  position: absolute; inset: 0;
  border-radius: 24px;
  background: var(--gl-mint);
  overflow: hidden;
}
.hv-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  filter: saturate(0.9);
}
.hv-card {
  position: absolute;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(15,17,16,0.10), 0 4px 12px rgba(15,17,16,0.06);
  padding: 16px;
  font-family: var(--font-product);
}
.hv-card-checkout {
  top: 8%; right: -40px;
  width: 280px;
  animation: float 6s ease-in-out infinite;
}
.hv-card-conversion {
  bottom: 12%; left: -36px;
  width: 240px;
  animation: float 6s ease-in-out infinite 1.5s;
}
.hv-card-rev {
  top: 50%; right: 12%;
  width: 200px;
  animation: float 7s ease-in-out infinite 0.7s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hv-checkout-row { display: flex; align-items: center; justify-content: space-between; }
.hv-checkout-row + .hv-checkout-row { margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--gl-stroke); }
.hv-label { font-size: 11px; color: var(--gl-fg-soft); }
.hv-value { font-size: 13px; font-weight: 700; color: var(--gl-ink); }
.hv-pill { display: inline-flex; padding: 4px 8px; background: var(--gl-mint); color: var(--gl-green); border-radius: 999px; font-size: 11px; font-weight: 600; }
.hv-cta { margin-top: 12px; background: var(--gl-green); color: white; text-align: center; padding: 8px; border-radius: 8px; font-size: 12px; font-weight: 700; }
.hv-stat-num { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--gl-green); line-height: 1; }
.hv-stat-label { font-size: 12px; color: var(--gl-fg-muted); margin-top: 4px; }
.hv-stat-up { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; color: var(--gl-success); font-weight: 700; margin-top: 6px; }

/* ============== LOGO MARQUEE ============== */
.logos {
  padding: 48px 0 40px;
  border-top: 1px solid var(--gl-stroke-soft);
  border-bottom: 1px solid var(--gl-stroke-soft);
  background: var(--gl-mint-soft);
}
.logos-label {
  text-align: center;
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
  color: var(--gl-fg-soft); text-transform: uppercase;
  margin-bottom: 28px;
}
.marquee {
  overflow: hidden; mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
  display: flex; gap: 64px; width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee-item {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 600;
  color: var(--gl-fg-muted);
  white-space: nowrap;
  display: flex; align-items: center; gap: 10px;
}
.marquee-item .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--gl-stroke); }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============== SECTION ============== */
section { padding: 120px 0; position: relative; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-eyebrow {
  display: inline-block; padding: 6px 14px;
  background: var(--gl-mint); color: var(--gl-green);
  border-radius: 999px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--gl-ink);
  margin-bottom: 18px;
}
.section-title .em { color: var(--gl-green); font-style: italic; }
.section-lede {
  font-size: 18px; line-height: 1.55; color: var(--gl-fg-muted);
  max-width: 600px; margin: 0 auto;
}

/* ============== STATS BAND ============== */
.stats {
  padding: 32px 0 64px;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--gl-green);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}
.stats-grid::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(113,220,182,0.18), transparent 50%);
  pointer-events: none;
}
.stat {
  padding: 36px 32px;
  border-right: 1px solid rgba(255,255,255,0.12);
  position: relative;
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 56px; font-weight: 700;
  color: white; line-height: 1;
  letter-spacing: -0.02em;
}
.stat-num .small { font-size: 32px; opacity: 0.7; }
.stat-label {
  margin-top: 12px;
  font-size: 14px; color: rgba(255,255,255,0.75); font-weight: 500;
  line-height: 1.4;
}

/* ============== VALUE PROPS ============== */
.values {
  background: var(--gl-mint-soft);
}
.values-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.value-card {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 36px;
  border: 1px solid var(--gl-stroke-soft);
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(13,85,55,0.08);
  border-color: var(--gl-green);
}
.value-card-num {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 700;
  color: var(--gl-green); margin-bottom: 24px;
  display: flex; align-items: center; gap: 8px;
}
.value-card-num::before {
  content: ''; width: 24px; height: 1px; background: var(--gl-green);
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 600;
  line-height: 1.1; letter-spacing: -0.01em;
  margin-bottom: 14px; color: var(--gl-ink);
}
.value-card p { font-size: 15px; line-height: 1.6; color: var(--gl-fg-muted); }
.value-card-art {
  margin-top: 28px;
  height: 140px;
  border-radius: 12px;
  background: var(--gl-mint);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}

/* Conversion chart */
.chart-bars { display: flex; align-items: flex-end; gap: 14px; height: 80px; padding: 0 24px; }
.chart-bar {
  width: 28px; border-radius: 6px 6px 0 0; background: var(--gl-stroke);
  position: relative;
}
.chart-bar.green { background: var(--gl-green); }
.chart-bar.green::after {
  content: '+38%';
  position: absolute; top: -22px; left: 50%; transform: translateX(-50%);
  font-size: 11px; font-weight: 700; color: var(--gl-green);
  background: white; padding: 2px 6px; border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  white-space: nowrap;
}

/* Basket chart */
.basket-vis {
  display: flex; align-items: center; gap: 12px;
}
.basket-row { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.basket-amount {
  background: white; padding: 6px 10px; border-radius: 6px;
  font-weight: 700; color: var(--gl-ink);
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}
.basket-arrow { color: var(--gl-green); }

/* Loyalty */
.loyalty-vis { display: flex; gap: 8px; }
.loyalty-pill {
  background: white; border: 1px solid var(--gl-stroke);
  padding: 8px 12px; border-radius: 999px; font-size: 12px; font-weight: 600;
  display: flex; align-items: center; gap: 6px;
}
.loyalty-pill.active { background: var(--gl-green); color: white; border-color: var(--gl-green); }

/* Circular ecosystem orbit (card 4) */
.orbit-art {
  height: 140px !important;
  background: var(--gl-mint) !important;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  display: block !important;
}
.orbit-art::before, .orbit-art::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  border: 1px dashed rgba(13, 85, 55, 0.28);
  pointer-events: none;
}
.orbit-art::before { width: 120px; height: 120px; }
.orbit-art::after { width: 200px; height: 200px; border-color: rgba(13, 85, 55, 0.15); }
.orbit-core {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px; border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #1a7a52, var(--gl-green));
  border: 1px solid rgba(13, 85, 55, 0.35);
  display: flex; align-items: center; justify-content: center;
  color: white;
  box-shadow: 0 6px 16px rgba(13, 85, 55, 0.22);
  z-index: 2;
}
.orbit-core svg { width: 22px; height: 22px; animation: orbit-spin 12s linear infinite; }
@keyframes orbit-spin { to { transform: rotate(360deg); } }
.orbit-pill {
  position: absolute;
  background: white;
  border: 1px solid rgba(13, 85, 55, 0.15);
  color: var(--gl-green);
  padding: 4px 9px; border-radius: 999px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(13, 85, 55, 0.08);
  z-index: 3;
}
.orbit-pill.tl { top: 12px; left: 12px; }
.orbit-pill.tr { top: 12px; right: 12px; }
.orbit-pill.bl { bottom: 12px; left: 12px; }
.orbit-pill.br { bottom: 12px; right: 12px; }
.loop-vis {
  position: relative; width: 120px; height: 120px;
  display: flex; align-items: center; justify-content: center;
}
.loop-vis svg.loop-ring { position: absolute; inset: 0; width: 100%; height: 100%; }
.loop-vis .loop-center {
  width: 56px; height: 56px; border-radius: 999px;
  background: var(--gl-green); color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  text-align: center; line-height: 1.1; letter-spacing: 0.02em;
  z-index: 1;
}
.loop-node {
  position: absolute; width: 28px; height: 28px; border-radius: 999px;
  background: white; border: 2px solid var(--gl-green);
  display: flex; align-items: center; justify-content: center;
  color: var(--gl-green); z-index: 2;
  box-shadow: 0 2px 6px rgba(13,85,55,0.12);
}
.loop-label {
  position: absolute; font-size: 11px; font-weight: 700; color: var(--gl-ink);
  white-space: nowrap; background: white; padding: 3px 8px; border-radius: 999px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

/* ============== HOW IT WORKS (wave flow) ============== */
.how-flow {
  position: relative;
  width: 100%;
  height: 520px;
  margin-top: 24px;
}
.how-flow-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}
.how-flow-svg .wave-path {
  fill: none;
  stroke: var(--gl-green);
  stroke-width: 2.5;
  stroke-dasharray: 7 9;
  stroke-linecap: round;
  opacity: 0.55;
}
.how-flow-svg .wave-glow {
  fill: none;
  stroke: var(--gl-leaf);
  stroke-width: 28;
  opacity: 0.25;
  filter: blur(18px);
}
.how-step-card {
  position: absolute;
  width: 240px;
  text-align: center;
  transform: translateX(-50%);
  z-index: 2;
}
.how-step-card .how-node-wrap {
  position: relative;
  width: 104px; height: 104px;
  margin: 0 auto;
}
.how-step-card .how-node-wrap::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 999px;
  border: 1.5px dashed rgba(13, 85, 55, 0.3);
  animation: how-orbit 28s linear infinite;
}
.how-step-card .how-node-wrap::after {
  content: '';
  position: absolute;
  inset: -22px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(113, 220, 182, 0.25), transparent 70%);
  z-index: -1;
}
@keyframes how-orbit { to { transform: rotate(360deg); } }
.how-step-card .how-node {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 25%, #2a8d61 0%, var(--gl-green) 55%, var(--gl-green-deep) 100%);
  color: white;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 16px 32px rgba(13, 85, 55, 0.28),
    inset 0 -6px 14px rgba(0, 0, 0, 0.18),
    inset 0 6px 12px rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
}
.how-step-card:hover .how-node { transform: scale(1.05); }
.how-step-card .how-icon {
  width: 36px; height: 36px;
  color: white;
}
.how-step-card .how-body {
  margin: 16px 0 0;
}
.how-step-card.below .how-body {
  margin: 16px 0 0;
}
.how-step-card.above .how-body {
  position: absolute;
  bottom: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  margin: 0;
}
.how-step-card .how-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gl-green);
  background: var(--gl-mint);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.how-step-card h4 {
  font-family: var(--font-product);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--gl-ink);
  letter-spacing: -0.005em;
}
.how-step-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--gl-fg-muted);
}

/* Position each step along the wave:
   s1, s3 sit on the peaks (top) with text ABOVE the node
   s2, s4 sit on the valleys (bottom) with text BELOW the node */
.how-step-card.s1 { left: 12.5%; top: 128px; }
.how-step-card.s2 { left: 37.5%; top: 280px; }
.how-step-card.s3 { left: 62.5%; top: 128px; }
.how-step-card.s4 { left: 87.5%; top: 280px; }

/* For .above cards, position node first then body sits above */
.how-step-card.above { padding-top: 0; }
.how-step-card.below { padding-bottom: 0; }

@media (max-width: 960px) {
  .how-flow { height: auto; padding: 16px 0; }
  .how-flow-svg { display: none; }
  .how-step-card {
    position: relative;
    left: auto !important;
    top: auto !important;
    transform: none;
    width: auto;
    margin: 0 auto 44px;
    max-width: 520px;
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 28px;
    text-align: left;
    align-items: center;
    padding: 0 24px;
  }
  /* Force node to col 1 regardless of DOM order (s1, s3 have body first) */
  .how-step-card .how-node-wrap { grid-column: 1; grid-row: 1; width: 96px; height: 96px; margin: 0; }
  .how-step-card .how-body { grid-column: 2; grid-row: 1; }
  .how-step-card .how-node { font-size: 24px; }
  .how-step-card h4 { font-size: 19px; }
  .how-step-card p { font-size: 15px; }
  .how-step-card.above .how-body,
  .how-step-card.below .how-body {
    position: static;
    bottom: auto;
    left: auto;
    transform: none;
    margin: 0;
    width: auto;
  }
}

@media (max-width: 560px) {
  .how-step-card {
    grid-template-columns: 72px 1fr;
    gap: 18px;
    padding: 0 8px;
    max-width: 100%;
  }
  .how-step-card .how-node-wrap { width: 72px; height: 72px; }
  .how-step-card .how-node { font-size: 20px; }
}

/* ============== INTEGRATIONS ============== */
.integration {
  background: var(--gl-green);
  color: white;
  border-radius: 32px;
  margin: 0 32px;
  padding: 80px;
  position: relative;
  overflow: hidden;
}
.integration-wrap { padding: 60px 0; }
.integration::before {
  content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%;
  background: radial-gradient(circle at top right, rgba(113,220,182,0.22), transparent 60%);
  pointer-events: none;
}
.integration-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.integration h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700; line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.integration p { font-size: 17px; line-height: 1.55; color: rgba(255,255,255,0.8); margin-bottom: 32px; }
.integration-platforms {
  display: flex; gap: 12px; margin-bottom: 32px; flex-wrap: wrap;
}
.platform-chip {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 14px; border-radius: 10px;
  font-size: 14px; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}
.integration .btn-primary { background: white; color: var(--gl-green); }
.integration .btn-primary:hover { background: var(--gl-mint); }
.integration .btn-secondary { background: transparent; border-color: rgba(255,255,255,0.3); color: white; }
.integration .btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: white; }

/* code window */
.code-window {
  background: #0a2918;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 13px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.code-header {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.code-dot { width: 11px; height: 11px; border-radius: 999px; background: rgba(255,255,255,0.18); }
.code-title { margin-left: 12px; font-size: 12px; color: rgba(255,255,255,0.5); font-weight: 500; }
.code-body { padding: 20px; line-height: 1.65; color: rgba(255,255,255,0.85); }
.code-body .kw { color: #71DCB6; }
.code-body .str { color: #F2B814; }
.code-body .com { color: rgba(255,255,255,0.4); font-style: italic; }
.code-body .pun { color: rgba(255,255,255,0.5); }
.code-body .fn { color: #93D2C5; }

/* ============== PRODUCTS ============== */
.products-rail-wrap {
  position: relative;
  margin: 0 -8px;
}
.products-rail {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 8px 28px;
  scroll-padding-left: 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 24px, black calc(100% - 64px), transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, black 24px, black calc(100% - 64px), transparent 100%);
}
.products-rail::-webkit-scrollbar { display: none; }
.products-rail .product-card {
  flex: 0 0 calc((100% - 60px) / 4);
  min-width: 240px;
  max-width: 320px;
  scroll-snap-align: start;
}
.product-card {
  position: relative;
  background: white;
  border: 1px solid var(--gl-stroke-soft);
  border-radius: 18px;
  padding: 16px;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
  cursor: pointer;
  display: flex; flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--gl-green);
  box-shadow: 0 20px 40px rgba(13,85,55,0.10);
}
.product-img {
  aspect-ratio: 1/1;
  background: var(--gl-mint-soft);
  border-radius: 12px;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
  display: block;
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 380ms ease;
}
.product-card:hover .product-img img { transform: scale(1.04); }
.product-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gl-green);
  background: var(--gl-mint);
  padding: 4px 9px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.product-name {
  font-size: 15px; font-weight: 600; color: var(--gl-ink);
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.product-price {
  font-size: 13px; color: var(--gl-fg-muted);
}
.product-price strong { color: var(--gl-green); font-weight: 700; }

/* Nav buttons */
.products-nav {
  position: absolute; top: calc(50% - 24px);
  width: 44px; height: 44px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--gl-stroke);
  color: var(--gl-ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(13,85,55,0.10);
  cursor: pointer;
  z-index: 3;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, opacity 160ms ease, transform 160ms ease;
  transform: translateY(-50%);
}
.products-nav:hover { background: var(--gl-green); border-color: var(--gl-green); color: white; }
.products-nav:disabled { opacity: 0; pointer-events: none; }
.products-nav-prev { left: -8px; }
.products-nav-next { right: -8px; }

/* Progress bar */
.products-rail-progress {
  position: relative;
  margin: 4px 8px 0;
  height: 3px;
  background: var(--gl-stroke-soft);
  border-radius: 999px;
  overflow: hidden;
}
.products-rail-progress span {
  position: absolute; top: 0; left: 0;
  height: 100%;
  width: 30%;
  background: var(--gl-green);
  border-radius: 999px;
  transition: left 200ms ease, width 200ms ease;
}

@media (max-width: 960px) {
  .products-rail .product-card { flex-basis: calc((100% - 40px) / 2); }
  .products-nav { width: 38px; height: 38px; }
}
@media (max-width: 640px) {
  .products-rail .product-card { flex-basis: 78%; min-width: 0; max-width: none; }
  .products-rail { -webkit-mask-image: linear-gradient(to right, black 0, black calc(100% - 32px), transparent 100%); mask-image: linear-gradient(to right, black 0, black calc(100% - 32px), transparent 100%); }
  .products-nav { display: none; }
}

/* ============== TESTIMONIAL ============== */
.testimonial {
  background: var(--gl-mint-soft);
}
.testimonial-card {
  max-width: 920px; margin: 0 auto;
  background: white;
  border-radius: 24px;
  padding: 56px;
  border: 1px solid var(--gl-stroke-soft);
  position: relative;
}
.testimonial-quote {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--gl-ink);
  margin-bottom: 32px;
  font-family: var(--font-display);
}
.testimonial-quote .em { color: var(--gl-green); font-style: italic; }
.testimonial-author {
  display: flex; align-items: center; gap: 16px;
}
.testimonial-avatar {
  width: 56px; height: 56px; border-radius: 999px;
  background: var(--gl-mint); border: 2px solid white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; color: var(--gl-green); font-size: 20px;
}
.testimonial-name { font-weight: 700; font-size: 15px; }
.testimonial-role { font-size: 13px; color: var(--gl-fg-muted); margin-top: 2px; }

/* ============== FAQ ============== */
.faq-grid {
  max-width: 800px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 8px;
}
.faq-item {
  background: white;
  border: 1px solid var(--gl-stroke);
  border-radius: 14px;
  overflow: hidden;
  transition: all 200ms ease;
}
.faq-item.open {
  border-color: var(--gl-green);
  box-shadow: 0 4px 16px rgba(13,85,55,0.06);
}
.faq-q {
  width: 100%; text-align: left;
  padding: 22px 24px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  font-size: 16px; font-weight: 600; color: var(--gl-ink);
}
.faq-q:hover { color: var(--gl-green); }
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: var(--gl-mint); color: var(--gl-green);
  transition: transform 240ms ease;
  font-size: 18px;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gl-green); color: white; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 280ms ease, padding 280ms ease;
  padding: 0 24px;
  font-size: 15px; line-height: 1.6; color: var(--gl-fg-muted);
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 24px 24px;
}

/* ============== FINAL CTA ============== */
.final-cta {
  text-align: center;
  padding: 80px 0 120px;
}
.final-cta-card {
  max-width: 920px; margin: 0 auto;
  padding: 80px 48px;
  background:
    radial-gradient(circle at 20% 30%, rgba(113,220,182,0.18), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(242,184,20,0.14), transparent 50%),
    var(--gl-green);
  border-radius: 32px;
  color: white;
  position: relative;
  overflow: hidden;
}
.final-cta-card h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px); font-weight: 700;
  line-height: 1.05; letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.final-cta-card p { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 36px; }
.final-cta-card .btn-primary { background: white; color: var(--gl-green); padding: 16px 28px; font-size: 15px; }
.final-cta-card .btn-primary:hover { background: var(--gl-mint); transform: translateY(-1px); }
.final-cta-card .btn-secondary {
  background: transparent; border-color: rgba(255,255,255,0.3); color: white;
  padding: 16px 28px; font-size: 15px;
}
.final-cta-card .btn-secondary:hover { border-color: white; background: rgba(255,255,255,0.06); }

/* ============== FOOTER ============== */
footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--gl-stroke-soft);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 64px;
  margin-bottom: 48px;
}
.footer-brand p { color: var(--gl-fg-muted); font-size: 14px; line-height: 1.55; max-width: 320px; margin-top: 16px; }
.footer-col h5 {
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gl-fg-soft); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--gl-ink); transition: color 160ms ease; }
.footer-col a:hover { color: var(--gl-green); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--gl-stroke-soft);
  font-size: 13px; color: var(--gl-fg-soft);
}

/* ============== PAIN VS SOLUTION ============== */
.pain-solution { background: var(--gl-bg); }
.pain-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.pain-col {
  border-radius: 24px; padding: 36px;
  border: 1px solid var(--gl-stroke-soft);
}
.pain-col.before { background: var(--gl-bg-2); }
.pain-col.after { background: var(--gl-mint); border-color: var(--gl-green); position: relative; }
.pain-col.after::before {
  content: 'GreenLeaze'; position: absolute; top: -12px; right: 24px;
  background: var(--gl-green); color: white;
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  padding: 6px 12px; border-radius: 999px; text-transform: uppercase;
}
.pain-title {
  font-family: var(--font-display); font-size: 22px; font-weight: 600;
  margin-bottom: 24px; color: var(--gl-ink); letter-spacing: -0.01em;
}
.pain-col.after .pain-title { color: var(--gl-green); }
.pain-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.pain-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; line-height: 1.5; color: var(--gl-ink);
}
.pain-icon {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.pain-col.before .pain-icon { background: rgba(231,52,47,0.1); color: var(--gl-danger); }
.pain-col.after .pain-icon { background: var(--gl-green); color: white; }
.pain-col.before li { color: var(--gl-fg-muted); text-decoration: line-through; text-decoration-color: rgba(231,52,47,0.3); }

/* ============== ECOSYSTEM PILLARS ============== */
.ecosystem { background: var(--gl-mint-soft); }
.eco-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.eco-card {
  background: white; border-radius: 20px; padding: 28px 24px;
  border: 1px solid var(--gl-stroke-soft);
  transition: all 240ms ease;
  display: flex; flex-direction: column; gap: 14px;
}
.eco-card:hover {
  transform: translateY(-4px); border-color: var(--gl-green);
  box-shadow: 0 16px 32px rgba(13,85,55,0.08);
}
.eco-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--gl-mint);
  display: flex; align-items: center; justify-content: center;
  color: var(--gl-green);
}
.eco-icon svg { width: 22px; height: 22px; }
.eco-card h4 {
  font-family: var(--font-display); font-size: 20px; font-weight: 600;
  letter-spacing: -0.01em; color: var(--gl-ink);
}
.eco-card p { font-size: 14px; line-height: 1.55; color: var(--gl-fg-muted); flex: 1; }
.eco-card .eco-link {
  font-size: 13px; font-weight: 600; color: var(--gl-green);
  display: inline-flex; align-items: center; gap: 4px;
}

/* ============== IMPACT COUNTER ============== */
.impact {
  background:
    radial-gradient(circle at 20% 0%, rgba(113,220,182,0.22), transparent 55%),
    radial-gradient(circle at 85% 100%, rgba(242,184,20,0.10), transparent 55%),
    var(--gl-green);
  color: white;
  padding: 100px 0;
  position: relative; overflow: hidden;
}
.impact::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 400px; height: 400px; border-radius: 999px;
  border: 1px dashed rgba(255,255,255,0.12);
  pointer-events: none;
}
.impact::after {
  content: ''; position: absolute; bottom: -180px; left: -120px;
  width: 480px; height: 480px; border-radius: 999px;
  border: 1px dashed rgba(255,255,255,0.10);
  pointer-events: none;
}
.impact-inner { position: relative; z-index: 1; }
.impact-head {
  display: grid; grid-template-columns: 1fr auto; gap: 48px;
  align-items: end; margin-bottom: 56px;
}
.impact h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.2vw, 56px); font-weight: 700;
  line-height: 1.02; letter-spacing: -0.025em;
  max-width: 14ch;
}
.impact h2 .em { color: var(--gl-leaf); font-style: italic; }
.impact-head-right {
  display: flex; flex-direction: column; gap: 20px; max-width: 380px;
}
.impact-head-right p { font-size: 16px; color: rgba(255,255,255,0.78); line-height: 1.55; }
.impact-pledge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  font-size: 13px; font-weight: 600; color: white;
  align-self: flex-start;
}
.impact-pledge-dot {
  width: 24px; height: 24px; border-radius: 999px;
  background: var(--gl-leaf); color: var(--gl-green);
  display: flex; align-items: center; justify-content: center;
}

.impact-counters {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.impact-counter {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px; padding: 32px 28px;
  backdrop-filter: blur(8px);
  display: flex; flex-direction: column; gap: 14px;
  position: relative; overflow: hidden;
  transition: all 240ms ease;
}
.impact-counter:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}
.impact-counter .ic-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(113,220,182,0.18);
  color: var(--gl-leaf);
  display: flex; align-items: center; justify-content: center;
}
.impact-num {
  font-family: var(--font-display);
  font-size: 52px; font-weight: 700; line-height: 1;
  letter-spacing: -0.02em; color: white;
  font-variant-numeric: tabular-nums;
}
.impact-num .unit { font-size: 22px; opacity: 0.7; margin-left: 4px; font-weight: 600; }
.impact-label {
  font-size: 13px; line-height: 1.4;
  color: rgba(255,255,255,0.7); font-weight: 500;
}

.impact-cta-row {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; justify-content: space-between; align-items: center;
  gap: 32px; flex-wrap: wrap;
}
.impact-cta-row .legend {
  font-size: 14px; color: rgba(255,255,255,0.7); max-width: 480px; line-height: 1.5;
}
.impact-cta-row .legend strong { color: white; }
.impact-cta-row .btn-primary { background: white; color: var(--gl-green); }
.impact-cta-row .btn-primary:hover { background: var(--gl-mint); }

/* ============== ROI BAND ============== */
.roi-band { padding: 32px 0; }
.roi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.roi-card {
  background: white; border: 1px solid var(--gl-stroke-soft);
  border-radius: 18px; padding: 28px;
}
.roi-num {
  font-family: var(--font-display); font-size: 36px; font-weight: 700;
  color: var(--gl-green); line-height: 1; letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.roi-label { font-size: 14px; color: var(--gl-ink); font-weight: 600; margin-bottom: 6px; }
.roi-sub { font-size: 13px; color: var(--gl-fg-muted); line-height: 1.5; }

@media (max-width: 960px) {
  .pain-grid { grid-template-columns: 1fr; }
  .eco-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-head { grid-template-columns: 1fr; gap: 32px; }
  .impact-counters { grid-template-columns: repeat(2, 1fr); }
  .impact-cta-row { flex-direction: column; align-items: flex-start; }
  .roi-grid { grid-template-columns: 1fr; }
}

/* Reveal animations — keyframe-based to avoid stuck transitions */
.reveal { opacity: 0; transform: translateY(24px); }
.reveal.in { animation: revealIn 700ms ease forwards; }
@keyframes revealIn {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.in { opacity: 1; transform: none; animation: none; }
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { margin: 0 auto; justify-self: center; max-width: 420px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.12); }
  .values-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid::before { display: none; }
  .integration { padding: 48px 32px; margin: 0 16px; }
  .integration-grid { grid-template-columns: 1fr; gap: 32px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links { display: none; }
  .testimonial-card { padding: 32px; }
  .testimonial-quote { font-size: 22px; }
  section { padding: 80px 0; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .hero { padding: 48px 0 32px; }
  /* Stack hero cards vertically on small screens — no negative offsets, no overflow */
  .hero-visual {
    aspect-ratio: auto;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .hv-card,
  .hv-card-checkout,
  .hv-card-conversion {
    position: static;
    width: 100%;
    animation: none;
  }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .stat:last-child { border-bottom: none; }
  .how-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .audience-toggle { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .final-cta-card { padding: 48px 24px; }
}

/* ============== MOBILE MENU ============== */
.nav-hamburger {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--gl-stroke);
  border-radius: 10px;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease;
  margin-left: 4px;
}
.nav-hamburger:hover { background: var(--gl-mint); border-color: var(--gl-green); }
.nav-hamburger-bar {
  display: block;
  width: 18px; height: 2px;
  background: var(--gl-green);
  border-radius: 2px;
}
html.mobile-drawer-locked { overflow: hidden; }

.mobile-drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(15,17,16,0.45);
  opacity: 0; pointer-events: none;
  transition: opacity 220ms ease;
  z-index: 90;
}
.mobile-drawer-overlay.open { opacity: 1; pointer-events: auto; }

.mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px, 88vw);
  background: #fff;
  box-shadow: -8px 0 32px rgba(13,85,55,0.10);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 100;
  font-family: var(--font-product);
}
.mobile-drawer.open { transform: translateX(0); }

.mobile-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--gl-stroke);
}
.mobile-drawer-head .nav-logo img { height: 22px; width: auto; display: block; }
.mobile-drawer-close {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--gl-stroke);
  border-radius: 10px; color: var(--gl-ink); cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}
.mobile-drawer-close:hover { background: var(--gl-mint); color: var(--gl-green); border-color: var(--gl-green); }

.mobile-drawer-body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 20px 22px 28px;
  display: flex; flex-direction: column; gap: 22px;
}

.mobile-audience-toggle {
  display: inline-flex !important;
  align-self: stretch;
  background: var(--gl-mint);
  border-radius: 999px;
  padding: 4px;
  gap: 0;
}
.mobile-audience-toggle a {
  flex: 1 1 0;
  text-align: center;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px; font-weight: 600;
  color: var(--gl-fg-muted);
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}
.mobile-audience-toggle a.active,
.mobile-audience-toggle a[aria-current="page"] {
  background: #fff; color: var(--gl-green);
  box-shadow: 0 1px 2px rgba(13,85,55,0.08);
}

.mobile-nav-links {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--gl-stroke);
}
.mobile-nav-links > a {
  display: flex; align-items: center;
  padding: 16px 4px;
  font-size: 17px; font-weight: 600;
  color: var(--gl-ink);
  text-decoration: none;
  border-bottom: 1px solid var(--gl-stroke);
  transition: color 160ms ease;
}
.mobile-nav-links > a:hover { color: var(--gl-green); }
.mobile-nav-links > a.mobile-nav-sublink {
  padding: 12px 4px 12px 18px;
  font-size: 14px; font-weight: 500;
  color: var(--gl-fg-muted);
  gap: 12px;
}
.mobile-nav-links > a.mobile-nav-sublink .nav-dropdown-icon {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gl-mint); color: var(--gl-green);
  border-radius: 8px;
  flex-shrink: 0;
}
.mobile-nav-links > a.mobile-nav-sublink .nav-dropdown-title { font-size: 14px; font-weight: 600; color: var(--gl-ink); display: block; }
.mobile-nav-links > a.mobile-nav-sublink .nav-dropdown-sub { display: none; }
.mobile-nav-links > a.mobile-nav-sublink.all { color: var(--gl-green); justify-content: flex-start; padding-left: 4px; }
.mobile-nav-links > a.mobile-nav-sublink.all .nav-dropdown-title { color: var(--gl-green); font-size: 15px; }

.mobile-drawer-ctas {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: auto;
  padding-top: 8px;
}
.mobile-drawer-ctas .btn { display: inline-flex; justify-content: center; width: 100%; }

@media (max-width: 960px) {
  .nav-hamburger { display: inline-flex; }
  .nav-cta .btn-ghost,
  .nav-cta .btn-primary,
  .nav-cta .audience-toggle { display: none; }
}
@media (min-width: 961px) {
  .mobile-drawer,
  .mobile-drawer-overlay,
  .nav-hamburger { display: none !important; }
}
