/* GrowthStrike — light growth experiments studio · V10 */
:root {
  --gs-sand: #FAF7F2;
  --gs-canvas: #F0EBE3;
  --gs-soft: #E5DDD3;
  --gs-ink: #1C1917;
  --gs-muted: #5C534C;
  --gs-green: #16A34A;
  --gs-green-s: #4ADE80;
  --gs-white: #FFFFFF;
  --font-display: "Literata", Georgia, serif;
  --font-body: "Nunito Sans", "Segoe UI", sans-serif;
  --radius-card: 16px;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body.site-growthstrike {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--gs-ink);
  background: var(--gs-sand);
  -webkit-font-smoothing: antialiased;
}

img, .site-growthstrike img {
  max-width: 280px;
  max-height: 200px;
  width: auto;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.hero-thumb { max-width: 160px; max-height: 120px; }
.lobby-thumb { max-width: 220px; max-height: 150px; }
.accent-thumb { max-width: 200px; max-height: 160px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  color: inherit;
}
h1 { font-size: clamp(2.15rem, 4.2vw, 3.55rem); font-weight: 700; }
h2 { font-size: clamp(1.65rem, 3vw, 2.45rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
p { margin: 0 0 1rem; color: inherit; }
a { color: var(--gs-green); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: #15803d; }
ul, ol { margin: 0 0 1rem; padding-left: 1.25rem; }
li { margin-bottom: 0.4rem; }

.surface-gs-sand   { background: #FAF7F2; color: #1C1917; }
.surface-gs-canvas { background: #F0EBE3; color: #1C1917; }
.surface-gs-soft   { background: #E5DDD3; color: #1C1917; }
.surface-gs-accent { background: #16A34A; color: #FFFFFF; }
.surface-gs-ink    { background: #1C1917; color: #FAF7F2; }

.surface-gs-accent a { color: #FFFFFF; }
.surface-gs-ink a { color: var(--gs-green-s); }
.surface-gs-ink .muted,
.surface-gs-accent .muted { color: rgba(250, 247, 242, 0.78); }

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}
.container-wide {
  width: min(1240px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gs-green);
  margin-bottom: 0.75rem;
}
.surface-gs-accent .eyebrow,
.surface-gs-ink .eyebrow { color: var(--gs-green-s); }

.serial-tag {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gs-muted);
  margin: 0 0 1rem;
}
.surface-gs-accent .serial-tag,
.surface-gs-ink .serial-tag { color: rgba(250, 247, 242, 0.7); }

.muted { color: var(--gs-muted); }
.lead { font-size: 1.125rem; max-width: 40rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-primary {
  background: var(--gs-green);
  color: #fff;
  border-color: var(--gs-green);
}
.btn-primary:hover { background: #15803d; border-color: #15803d; color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--gs-green);
  border-color: var(--gs-green);
}
.btn-outline:hover { background: var(--gs-green); color: #fff; }
.surface-gs-accent .btn-primary {
  background: #fff;
  color: var(--gs-green);
  border-color: #fff;
}
.surface-gs-accent .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.85);
}
.surface-gs-accent .btn-outline:hover {
  background: #fff;
  color: var(--gs-green);
}
.hero-ctas, .cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ── Header: split centred ── */
.gs-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  align-items: center;
  gap: 0.75rem 1rem;
  min-height: var(--header-h);
  padding: 0.65rem 1.5rem;
  border-bottom: 1px solid rgba(28, 25, 23, 0.08);
  backdrop-filter: blur(12px);
  background: rgba(250, 247, 242, 0.92);
  transition: box-shadow 0.25s var(--ease);
}
.gs-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(28, 25, 23, 0.06);
}
.gs-nav-left,
.gs-nav-right {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}
.gs-nav-left { justify-content: flex-end; justify-self: end; }
.gs-nav-right { justify-content: flex-start; justify-self: start; }
.gs-nav-left a,
.gs-nav-right a {
  color: var(--gs-ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  position: relative;
}
.gs-nav-left a::after,
.gs-nav-right a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--gs-green);
  transform: scaleX(0);
  transition: transform 0.25s var(--ease);
}
.gs-nav-left a:hover::after,
.gs-nav-right a:hover::after,
.gs-nav-left a[aria-current="page"]::after,
.gs-nav-right a[aria-current="page"]::after { transform: scaleX(1); }
.gs-nav-left a:hover,
.gs-nav-right a:hover { color: var(--gs-green); }

.gs-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--gs-ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}
.gs-logo svg,
.gs-brand-mark { width: 34px; height: 34px; flex-shrink: 0; }
.gs-logo:hover { color: var(--gs-ink); text-decoration: none; }

.gs-header-cta {
  justify-self: end;
  white-space: nowrap;
}
.gs-logo-wrap { justify-self: center; }

.gs-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.gs-menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--gs-ink);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.gs-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.gs-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.gs-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── Slide-in mobile menu ── */
.gs-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
}
.gs-menu.is-open,
.gs-menu.is-closing {
  pointer-events: auto;
  visibility: visible;
}
.gs-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 25, 23, 0.45);
  opacity: 0;
  transition: opacity 0.42s var(--ease);
}
.gs-menu.is-open .gs-menu-backdrop { opacity: 1; }
.gs-menu.is-closing .gs-menu-backdrop { opacity: 0; }
.gs-menu-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 420px);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 1.75rem 2.5rem;
  color: var(--gs-sand);
  transform: translateX(100%);
  transition: transform 0.42s var(--ease);
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.25);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.gs-menu.is-open .gs-menu-drawer { transform: translateX(0); }
.gs-menu.is-closing .gs-menu-drawer { transform: translateX(100%); }
.gs-menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(250,247,242,0.25);
  border-radius: 50%;
  background: transparent;
  color: var(--gs-sand);
  font-size: 1.75rem;
  cursor: pointer;
  line-height: 1;
}
.gs-menu-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.gs-menu-links li { margin: 0 0 0.35rem; }
.gs-menu-links a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  color: var(--gs-sand);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 6vw, 2.25rem);
  font-weight: 600;
  padding: 0.35rem 0;
  opacity: 0;
  transform: translateX(28px);
  transition: color 0.2s, opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.gs-menu.is-open .gs-menu-links a {
  opacity: 1;
  transform: translateX(0);
}
.gs-menu.is-open .gs-menu-links li:nth-child(1) a { transition-delay: 0.08s; }
.gs-menu.is-open .gs-menu-links li:nth-child(2) a { transition-delay: 0.12s; }
.gs-menu.is-open .gs-menu-links li:nth-child(3) a { transition-delay: 0.16s; }
.gs-menu.is-open .gs-menu-links li:nth-child(4) a { transition-delay: 0.2s; }
.gs-menu.is-open .gs-menu-links li:nth-child(5) a { transition-delay: 0.24s; }
.gs-menu.is-open .gs-menu-links li:nth-child(6) a { transition-delay: 0.28s; }
.gs-menu.is-closing .gs-menu-links a {
  opacity: 0;
  transform: translateX(16px);
  transition-delay: 0s;
}
.gs-menu-links a:hover { color: var(--gs-green-s); }
.gs-menu-num {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gs-green-s);
  letter-spacing: 0.08em;
}
.gs-menu-footer {
  margin-top: 2.5rem;
  color: rgba(250,247,242,0.7);
  font-size: 0.9rem;
}
.gs-menu-footer a { color: var(--gs-green-s); }
.gs-menu-cta {
  display: inline-flex;
  margin-top: 1rem;
  min-height: 48px;
  align-items: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  background: var(--gs-green);
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
}
body.menu-open { overflow: hidden; }

/* ── Hero Pattern O ── */
.hero-ladder {
  min-height: clamp(86vh, 90vh, 94vh);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
  padding: 3.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero-ladder::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto 40%;
  height: 70%;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(22,163,74,0.12), transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(74,222,128,0.1), transparent 50%);
  pointer-events: none;
  animation: hero-drift 14s ease-in-out infinite alternate;
}
@keyframes hero-drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-3%, 4%, 0) scale(1.05); }
}
.hero-copy { position: relative; z-index: 1; }
.hero-copy h1 { margin-bottom: 1rem; max-width: 14ch; }
.hero-sub {
  font-size: 1.1rem;
  color: var(--gs-muted);
  max-width: 36rem;
  margin-bottom: 1.5rem;
}
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0 1.75rem;
}
.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--gs-canvas);
  border: 1px solid var(--gs-soft);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gs-ink);
}
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.ladder-svg {
  width: min(100%, 320px);
  height: auto;
}
.ladder-svg .rung {
  stroke: var(--gs-green);
  stroke-width: 2.5;
}
.ladder-svg .rail {
  stroke: var(--gs-ink);
  stroke-width: 3;
  stroke-linecap: round;
}
.ladder-svg text {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  fill: var(--gs-ink);
}
.ladder-svg .node {
  fill: var(--gs-sand);
  stroke: var(--gs-green);
  stroke-width: 2.5;
}
.ladder-svg .pulse {
  fill: var(--gs-green);
  opacity: 0.35;
  animation: node-pulse 2.8s ease-in-out infinite;
}
@keyframes node-pulse {
  0%, 100% { r: 6; opacity: 0.35; }
  50% { r: 11; opacity: 0.08; }
}
.glass-kpi-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  width: 100%;
}
.glass-card {
  flex: 1 1 140px;
  max-width: 180px;
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius-card);
  background: rgba(250, 247, 242, 0.72);
  border: 1px solid rgba(28, 25, 23, 0.08);
  box-shadow: 0 8px 32px rgba(28, 25, 23, 0.06);
  backdrop-filter: blur(10px);
}
.glass-card .stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gs-green);
  line-height: 1.1;
}
.glass-card .stat-label {
  font-size: 0.8rem;
  color: var(--gs-muted);
  margin-top: 0.35rem;
  line-height: 1.35;
}
.hero-trust {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--gs-muted);
}

/* ── Sections ── */
.section { padding: 4.5rem 0; }
.section-tight { padding: 3rem 0; }
.section-header { max-width: 40rem; margin-bottom: 2.5rem; }
.section-header.center { margin-inline: auto; text-align: center; }

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  text-align: center;
}
.stat-block .num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-block .label {
  font-size: 0.875rem;
  opacity: 0.9;
}

/* Cards with green left chip */
.gs-card {
  background: var(--gs-sand);
  border-radius: var(--radius-card);
  padding: 1.5rem 1.5rem 1.5rem 1.65rem;
  border: 1px solid rgba(28, 25, 23, 0.06);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.gs-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--gs-green);
  border-radius: 4px 0 0 4px;
}
.gs-card h3 { margin-bottom: 0.5rem; }
.gs-card p:last-child { margin-bottom: 0; }
.gs-card .tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gs-green);
  margin-bottom: 0.65rem;
}

.mosaic-8 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.mosaic-8 .gs-card:nth-child(1) { grid-column: span 2; }
.mosaic-8 .gs-card:nth-child(6) { grid-column: span 2; }

.bento {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
}
.bento .gs-card:first-child { grid-row: span 2; }

.proof-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}
.ladder-steps { list-style: none; margin: 0; padding: 0; }
.ladder-steps li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: start;
}
.step-idx {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--gs-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}
.media-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.split-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

.cta-band {
  padding: 4rem 0;
  text-align: center;
}
.cta-band h2 { max-width: 18ch; margin-inline: auto; }
.cta-band p { max-width: 36rem; margin-inline: auto  auto; margin-bottom: 1.5rem; color: rgba(255,255,255,0.9); }

.disclaimer {
  font-size: 0.8125rem;
  color: var(--gs-muted);
  line-height: 1.55;
  max-width: 52rem;
}
.surface-gs-accent .disclaimer,
.surface-gs-ink .disclaimer { color: rgba(250,247,242,0.72); }

.page-hero {
  padding: 3.5rem 0 2.5rem;
}
.page-hero h1 { max-width: 16ch; }
main [id] { scroll-margin-top: calc(var(--header-h) + 1rem); }
.breadcrumb {
  font-size: 0.85rem;
  color: var(--gs-muted);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--gs-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--gs-green); }

.prose { max-width: 46rem; }
.prose h2 { margin-top: 2.5rem; }
.prose h3 { margin-top: 1.75rem; }
.prose .gs-card { margin: 1.5rem 0; }

/* FAQ accordion */
.faq-list { max-width: 46rem; margin: 0; padding: 0; list-style: none; }
.faq-item {
  border-bottom: 1px solid rgba(28, 25, 23, 0.1);
}
.faq-q {
  width: 100%;
  display: grid;
  grid-template-columns: 2.5rem 1fr auto;
  gap: 0.75rem;
  align-items: center;
  text-align: left;
  padding: 1.15rem 0;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gs-ink);
  min-height: 44px;
}
.faq-num {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gs-green);
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--gs-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--gs-green);
  transition: transform 0.25s var(--ease);
}
.faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 0 1.25rem 3.25rem;
  color: var(--gs-muted);
}
.faq-item.is-open .faq-a { display: block; }

/* Forms */
.form-card {
  border-radius: var(--radius-card);
  padding: 1.75rem;
  border: 1px solid rgba(28, 25, 23, 0.08);
  position: relative;
}
.form-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--gs-green);
  border-radius: 4px 0 0 4px;
}
.form-grid { display: grid; gap: 1rem; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--gs-soft);
  border-radius: 10px;
  background: var(--gs-sand);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gs-ink);
}
textarea { min-height: 140px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--gs-green);
  outline-offset: 1px;
  border-color: var(--gs-green);
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.checkbox-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--gs-muted);
  line-height: 1.55;
}
.checkbox-row input[type="checkbox"] {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin: 0.15rem 0 0;
  accent-color: var(--gs-green);
  cursor: pointer;
}
.checkbox-text {
  flex: 1;
  min-width: 0;
}
.checkbox-text label {
  display: inline;
  font-size: inherit;
  font-weight: 400;
  margin: 0;
  cursor: pointer;
  color: inherit;
}
.checkbox-text a {
  white-space: nowrap;
}
.form-note { font-size: 0.85rem; color: var(--gs-muted); }
.alert-success,
.alert-error {
  padding: 1rem 1.15rem;
  border-radius: 12px;
  margin-bottom: 1.25rem;
}
.alert-success {
  background: rgba(22, 163, 74, 0.12);
  border: 1px solid rgba(22, 163, 74, 0.35);
  color: #14532d;
}
.alert-error {
  background: rgba(185, 28, 28, 0.08);
  border: 1px solid rgba(185, 28, 28, 0.28);
  color: #7f1d1d;
}

/* Page layout variants */
.page-hero-split {
  padding: 3.25rem 0 0;
}
.page-hero-split .hero-split-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: end;
}
.page-toc {
  list-style: none;
  margin: 0;
  padding: 1.25rem;
  border-radius: var(--radius-card);
  border: 1px solid rgba(28, 25, 23, 0.08);
  background: var(--gs-canvas);
}
.page-toc li { margin: 0 0 0.55rem; }
.page-toc a {
  color: var(--gs-ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}
.page-toc a:hover { color: var(--gs-green); }
.page-toc .toc-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gs-green);
  margin-bottom: 0.85rem;
}

.story-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.story-card .story-media {
  margin: 0 0 1rem;
}
.story-card .story-media img {
  width: 100%;
  max-width: 100%;
  max-height: 160px;
  height: 140px;
  object-fit: cover;
}
.bento-stories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.bento-stories .gs-card:first-child {
  grid-column: span 1;
}

.process-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin: 2rem 0;
}
.process-rail article {
  padding: 1.25rem;
  border-radius: var(--radius-card);
  background: var(--gs-sand);
  border-top: 3px solid var(--gs-green);
  position: relative;
}
.process-rail .rail-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gs-green);
  line-height: 1;
  margin-bottom: 0.65rem;
}

.funnel-stack {
  display: grid;
  gap: 0.75rem;
  margin: 2rem 0;
  max-width: 42rem;
}
.funnel-step {
  width: 100%;
  padding: 1.15rem 1.35rem;
  border-radius: 12px;
  background: var(--gs-sand);
  border-left: 4px solid var(--gs-green);
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.85rem;
  align-items: start;
}
.funnel-step .fs-idx {
  font-weight: 700;
  color: var(--gs-green);
  font-size: 0.9rem;
}

.zigzag {
  display: grid;
  gap: 2.5rem;
}
.zigzag-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.zigzag-row:nth-child(even) .zigzag-copy { order: 2; }
.zigzag-row:nth-child(even) .zigzag-side { order: 1; }

.memo-chapters {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(28, 25, 23, 0.1);
}
.memo-chapter {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(28, 25, 23, 0.1);
}
.memo-chapter .ch-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gs-green);
}

.contact-hero {
  padding: 3rem 0 1.5rem;
  background:
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(22, 163, 74, 0.12), transparent 55%),
    var(--gs-sand);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.faq-layout {
  display: grid;
  grid-template-columns: 14rem 1fr;
  gap: 2rem;
  align-items: start;
}
.faq-cats {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.faq-cats a {
  color: var(--gs-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
}
.faq-cats a:hover,
.faq-cats a.is-active {
  color: var(--gs-green);
  background: rgba(22, 163, 74, 0.1);
}
.faq-list-wide { max-width: none; }

.band-ink-soft {
  background: linear-gradient(135deg, #1C1917 0%, #292524 100%);
  color: var(--gs-sand);
  padding: 3.5rem 0;
}
.band-ink-soft .eyebrow { color: var(--gs-green-s); }
.band-ink-soft p { color: rgba(250, 247, 242, 0.78); }

.contact-aside .meta-block { margin-bottom: 1.5rem; }
.contact-aside h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.contact-aside p { margin-bottom: 0.35rem; font-size: 0.95rem; }

/* Footer 4 cols */
.gs-footer {
  padding: 3.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.gs-footer .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gs-sand);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
}
.gs-footer .footer-brand svg,
.gs-footer .footer-brand .gs-brand-mark { width: 28px; height: 28px; }
.gs-footer h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gs-green-s);
  margin-bottom: 0.85rem;
}
.gs-footer ul { list-style: none; margin: 0; padding: 0; }
.gs-footer li { margin-bottom: 0.45rem; }
.gs-footer a {
  color: rgba(250, 247, 242, 0.85);
  text-decoration: none;
}
.gs-footer a:hover { color: var(--gs-green-s); }
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250, 247, 242, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(250, 247, 242, 0.65);
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 300;
  max-width: 860px;
  width: calc(100% - 2rem);
  margin-inline: auto;
  padding: 1.35rem 1.6rem;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(28, 25, 23, 0.18);
  border: 1px solid rgba(28, 25, 23, 0.08);
  display: none;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 1.75rem;
  flex-wrap: wrap;
}
.cookie-banner p {
  flex: 1 1 28rem;
  font-size: 0.9375rem;
  margin: 0;
  color: var(--gs-muted);
  line-height: 1.55;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  flex-shrink: 0;
}

/* Reveal — only when .js present */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* 404 */
.page-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 4rem 0;
}
.page-404 h1 { font-size: clamp(2.5rem, 6vw, 4rem); }

.legal-meta {
  font-size: 0.9rem;
  color: var(--gs-muted);
  margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 1279px) {
  .mosaic-8 { grid-template-columns: repeat(2, 1fr); }
  .mosaic-8 .gs-card:nth-child(1),
  .mosaic-8 .gs-card:nth-child(6) { grid-column: span 1; }
}
@media (max-width: 1023px) {
  .hero-ladder {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 2.5rem;
  }
  .hero-copy h1 { max-width: none; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
  .proof-grid, .split-2, .bento, .page-hero-split .hero-split-grid,
  .zigzag-row, .contact-layout, .faq-layout { grid-template-columns: 1fr; }
  .bento .gs-card:first-child { grid-row: auto; }
  .zigzag-row:nth-child(even) .zigzag-copy,
  .zigzag-row:nth-child(even) .zigzag-side { order: initial; }
  .process-rail { grid-template-columns: repeat(2, 1fr); }
  .bento-stories { grid-template-columns: 1fr; }
  .faq-cats {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gs-nav-left, .gs-nav-right, .gs-header-cta { display: none; }
  .gs-header {
    grid-template-columns: 1fr auto;
    padding-inline: 1rem;
  }
  .gs-logo-wrap { grid-column: 1; justify-self: center; width: 100%; justify-content: center; }
  .gs-menu-toggle {
    display: flex;
    grid-column: 2;
    justify-self: end;
  }
  .cookie-banner { max-width: none; }
  .cookie-banner-inner { flex-direction: column; align-items: stretch; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; }
}
@media (max-width: 767px) {
  .container, .container-wide { width: calc(100% - 1.5rem); }
  .mosaic-8, .grid-3, .grid-2, .form-row-2, .footer-grid, .stats-strip,
  .process-rail, .memo-chapter {
    grid-template-columns: 1fr;
  }
  .section { padding: 3.25rem 0; }
  .glass-kpi-row { flex-direction: column; align-items: stretch; }
  .glass-card { max-width: none; }
  .page-hero h1 { max-width: none; }
  .gs-menu-drawer { width: 100%; }
  .hero-ctas .btn,
  .cta-row .btn { width: 100%; }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .gs-nav-left, .gs-nav-right { gap: 0.85rem; }
  .gs-nav-left a, .gs-nav-right a { font-size: 0.875rem; }
  .gs-header { padding-inline: 1rem; gap: 0.5rem 0.75rem; }
  .gs-header-cta { padding-inline: 1.1rem; font-size: 0.875rem; }
}
