/* Site-wide additions on top of site.css */

/* Density tweak (controlled via data attr on <body>) */
body[data-density="compact"] .ga-section { padding: 56px 0; }
body[data-density="compact"] .ga-section-tight { padding: 32px 0; }
body[data-density="compact"] .ga-service-card { padding: 22px; }

/* Skip link for nav */
a.skip { position:absolute; left:-9999px; }

/* Annotated number hero (variation B) */
.ga-hero-num {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: end;
}
.ga-hero-num-left .ga-eyebrow { margin-bottom: 28px; }
.ga-hero-num-left h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  text-wrap: balance;
}
.ga-hero-num-left h1 .ital {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.ga-hero-num-left .ga-hero-lede { margin-bottom: 32px; }

.ga-hero-num-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--ga-ink);
  border-left: 1px solid var(--border);
}
.ga-hero-num-cell {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 22px 24px;
  background: var(--bg);
}
.ga-hero-num-cell .num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
  font-feature-settings: "tnum" 1;
}
.ga-hero-num-cell .lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-subtle);
  margin-top: 10px;
}
.ga-hero-num-cell.accent .num { color: var(--accent); }
.ga-hero-num-vox {
  position: relative;
  margin-top: 32px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  display: flex;
  align-items: center;
  gap: 20px;
}
.ga-hero-num-vox img { width: 88px; height: 88px; object-fit: contain; }
.ga-hero-num-vox .nv-text { font-size: 14px; line-height: 1.5; color: var(--fg-muted); }
.ga-hero-num-vox .nv-text strong { color: var(--fg); display: block; margin-bottom: 4px; font-size: 15px; }

@media (max-width: 900px) {
  .ga-hero-num { grid-template-columns: 1fr; gap: 32px; }
}

/* Editorial split hero (variation C) */
.ga-hero-split {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0;
  border-top: 1px solid var(--ga-ink);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.ga-hero-split-rule { background: var(--border); width: 1px; }
.ga-hero-split-col {
  padding: 56px 40px 64px;
  display: flex;
  flex-direction: column;
}
a.ga-hero-split-col { color: inherit; text-decoration: none; cursor: pointer; }
a.ga-hero-split-col h2 { transition: color 0.2s ease; }
a.ga-hero-split-col:hover h2 { color: var(--accent); }
.ga-hero-split-col .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ga-hero-split-col .label::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 999px;
}
.ga-hero-split-col h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.6vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.0;
  margin: 0 0 18px;
  text-wrap: balance;
}
.ga-hero-split-col p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin: 0 0 28px;
  max-width: 44ch;
}
.ga-hero-split-art {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.ga-hero-split-art img { width: 100%; max-width: 240px; }
.ga-hero-split-shared {
  text-align: center;
  padding: 36px 24px 56px;
  background: var(--bg);
}
.ga-hero-split-shared .display {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0 0 16px;
}
.ga-hero-split-shared .display .ital {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.ga-hero-split-shared p { font-size: 17px; color: var(--fg-muted); margin: 0 auto 24px; max-width: 560px; }
@media (max-width: 900px) {
  .ga-hero-split { grid-template-columns: 1fr; }
  .ga-hero-split-rule { width: auto; height: 1px; }
}

/* Two practices side-by-side (replacing/enhancing services grid) */
.ga-practices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-elevated);
}
.ga-practice {
  padding: 40px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.ga-practice:last-child { border-right: 0; }
.ga-practice .vox {
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin-bottom: 20px;
}
.ga-practice .label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 8px;
}
.ga-practice h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 12px;
}
.ga-practice p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-muted);
  margin: 0 0 20px;
}
.ga-practice .pts {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  border-top: 1px solid var(--border);
}
.ga-practice .pts li {
  padding: 12px 0;
  font-size: 14px;
  color: var(--fg);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.ga-practice .pts li .k { color: var(--fg-muted); font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; }
.ga-practice .actions { margin-top: auto; display: flex; gap: 10px; flex-wrap: wrap; }
@media (max-width: 900px) {
  .ga-practices { grid-template-columns: 1fr; }
  .ga-practice { border-right: 0; border-bottom: 1px solid var(--border); }
  .ga-practice:last-child { border-bottom: 0; }
}

/* Engagement model (Steps voxel) */
.ga-steps {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}
.ga-steps-art img { width: 100%; max-width: 460px; }
.ga-steps ol { list-style: none; padding: 0; margin: 0; counter-reset: step; }
.ga-steps li {
  counter-increment: step;
  padding: 22px 0 22px 56px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.ga-steps li:first-child { padding-top: 0; }
.ga-steps li:last-child { border-bottom: 0; }
.ga-steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 22px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 600;
}
.ga-steps li:first-child::before { top: 0; }
.ga-steps li h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.ga-steps li p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin: 0;
}
@media (max-width: 900px) {
  .ga-steps { grid-template-columns: 1fr; gap: 28px; }
  .ga-steps-art img { max-width: 280px; }
}

/* Logo wall */
.ga-logo-wall {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.ga-logo-wall .lg {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--fg-muted);
  background: var(--bg);
  text-align: center;
  min-height: 88px;
}
.ga-logo-wall .lg.italic { font-family: var(--font-serif); font-style: italic; font-weight: 500; }
.ga-logo-wall .lg.mono { font-family: var(--font-mono); font-weight: 500; font-size: 13px; letter-spacing: 0.04em; }
@media (max-width: 900px) {
  .ga-logo-wall { grid-template-columns: repeat(3, 1fr); }
}

/* Quote / testimonial card */
.ga-testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.ga-testimonial {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  background: var(--bg-elevated);
  display: flex;
  flex-direction: column;
  transition: border-color var(--dur), box-shadow var(--dur);
}
.ga-testimonial:hover { border-color: var(--ga-ink); box-shadow: var(--shadow-sm); }
.ga-testimonial blockquote {
  margin: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 21px;
  line-height: 1.45;
  color: var(--fg);
  text-wrap: pretty;
  flex: 1;
}
.ga-testimonial .who { margin-top: 28px; font-size: 14px; color: var(--fg-muted); line-height: 1.5; }
.ga-testimonial .who strong { display: block; color: var(--fg); font-weight: 600; }
.ga-testimonial .who { display: flex; align-items: center; gap: 14px; }
.ga-testimonial .who-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.ga-testimonial .who-text { flex: 1; }
.ga-testimonial .who-text a { color: inherit; text-decoration: underline; }
.ga-testimonial .who-logo { height: 36px; width: auto; max-width: 110px; opacity: 0.9; flex-shrink: 0; border-radius: 8px; }
.ga-testimonial .who .meta {
  display: block;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--fg-subtle);
}
@media (max-width: 800px) {
  .ga-testimonials { grid-template-columns: 1fr; }
  .ga-testimonial { padding: 28px; }
}

.ga-quote {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  background: var(--bg-elevated);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.ga-quote blockquote {
  margin: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.35;
  color: var(--fg);
  text-wrap: pretty;
}
.ga-quote .who { margin-top: 24px; font-size: 14px; color: var(--fg-muted); }
.ga-quote .who strong { display: block; color: var(--fg); font-weight: 600; }
.ga-quote .img { width: 100%; aspect-ratio: 1/1; border-radius: 12px; background: var(--bg); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; }
.ga-quote .img img { width: 80%; height: 80%; object-fit: contain; }
@media (max-width: 800px) {
  .ga-quote { grid-template-columns: 1fr; gap: 24px; padding: 28px; }
}

/* Tweaks panel positioning fix */
[data-tweaks-root] { z-index: 100; }

/* Generic page header (sub-pages) */
.ga-pageheader {
  padding: 80px 0 56px;
  border-bottom: 1px solid var(--border);
}
.ga-pageheader h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin: 0 0 16px;
  text-wrap: balance;
}
.ga-pageheader h1 .ital {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.ga-pageheader p {
  font-size: 19px;
  line-height: 1.55;
  color: var(--fg-muted);
  max-width: 640px;
  margin: 0;
}
.ga-pageheader-row { display: flex; gap: 48px; align-items: flex-end; justify-content: space-between; }
.ga-pageheader-row .vox { width: 180px; height: 180px; object-fit: contain; flex-shrink: 0; }
@media (max-width: 800px) {
  .ga-pageheader-row { flex-direction: column-reverse; align-items: flex-start; gap: 24px; }
  .ga-pageheader-row .vox { width: 140px; height: 140px; }
}

/* Feature rows for sub-pages */
.ga-feature-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.ga-feature-row:last-child { border-bottom: 0; }
.ga-feature-row.reverse { grid-template-columns: 1.2fr 1fr; }
.ga-feature-row.reverse .ga-feature-art { order: 2; }
.ga-feature-art {
  background: var(--bg);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}
.ga-feature-art img { max-width: 320px; width: 100%; }
.ga-feature-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 14px;
}
.ga-feature-copy p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-muted);
  margin: 0 0 20px;
}
.ga-feature-copy ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ga-feature-copy ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--fg);
  display: flex;
  gap: 14px;
}
.ga-feature-copy ul li .k {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  flex-shrink: 0;
  width: 132px;
  padding-top: 2px;
}
@media (max-width: 900px) {
  .ga-feature-row, .ga-feature-row.reverse { grid-template-columns: 1fr; gap: 28px; }
  .ga-feature-row.reverse .ga-feature-art { order: 0; }
}

/* Downloads page filter strip */
.ga-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 16px 0 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.ga-filter button {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--fg);
  cursor: pointer;
  transition: background-color var(--dur), border-color var(--dur), color var(--dur);
}
.ga-filter button:hover { border-color: var(--ga-ink); }
.ga-filter button[data-active="true"] {
  background: var(--ga-ink);
  color: #fff;
  border-color: var(--ga-ink);
}

.ga-downloads-page {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 20px;
}
.ga-downloads-page .card { display: flex; flex-direction: column; gap: 12px; text-decoration: none; color: inherit; }
.ga-downloads-page .card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  transition: border-color var(--dur), box-shadow var(--dur);
}
.ga-downloads-page .card:hover img { border-color: var(--ga-ink); box-shadow: var(--shadow-sm); }
.ga-downloads-page .meta { display: flex; flex-direction: column; gap: 4px; }
.ga-downloads-page .meta .t { font-size: 14px; font-weight: 600; line-height: 1.3; }
.ga-downloads-page .meta .b { font-size: 13px; color: var(--fg-muted); line-height: 1.4; }
.ga-downloads-page .meta .price { font-family: var(--font-mono); font-size: 12px; color: var(--accent); margin-top: 2px; }
@media (max-width: 1100px) { .ga-downloads-page { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px) { .ga-downloads-page { grid-template-columns: repeat(2, 1fr); } }

/* About, team grid */
.ga-team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ga-team .person {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  background: var(--bg-elevated);
}
.ga-team .person .av {
  width: 64px; height: 64px; border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 22px;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.ga-team .person h4 {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700; margin: 0 0 4px;
}
.ga-team .person .role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-bottom: 12px;
}
.ga-team .person p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin: 0;
}
@media (max-width: 800px) { .ga-team { grid-template-columns: 1fr; } }

/* Contact form */
.ga-contact {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.ga-contact-side h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.ga-contact-side .info {
  border-top: 1px solid var(--border);
  margin-top: 24px;
}
.ga-contact-side .info-row {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
.ga-contact-side .info-row .k { color: var(--fg-muted); font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; }

.ga-form {
  display: grid;
  gap: 16px;
}
.ga-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 500;
}
.ga-form input, .ga-form select, .ga-form textarea {
  font: inherit;
  font-size: 15px;
  padding: 11px 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg);
  transition: border-color var(--dur);
}
.ga-form input:focus, .ga-form select:focus, .ga-form textarea:focus {
  outline: none;
  border-color: var(--ga-ink);
}
.ga-form textarea { min-height: 120px; resize: vertical; }
.ga-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 800px) {
  .ga-contact { grid-template-columns: 1fr; gap: 32px; }
  .ga-form-row { grid-template-columns: 1fr; }
}

/* Tweaks panel local style */
.tw-panel {
  position: fixed;
  bottom: 16px;
  right: 16px;
  width: 280px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 16px;
  z-index: 100;
  font-family: var(--font-sans);
  display: none;
}
.tw-panel[data-open="true"] { display: block; }
.tw-panel h4 {
  font-family: var(--font-display);
  font-size: 13px;
  margin: 0 0 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.tw-panel .tw-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; font-size: 12px; }
.tw-panel .tw-row label { color: var(--fg-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; font-size: 10px; }
.tw-panel .tw-row input[type="text"], .tw-panel .tw-row select {
  font: inherit;
  font-size: 13px;
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg);
  color: var(--fg);
}
.tw-panel .tw-seg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2px;
}
.tw-panel .tw-seg button {
  font: inherit;
  font-size: 12px;
  padding: 6px 8px;
  background: transparent;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  color: var(--fg-muted);
}
.tw-panel .tw-seg button[data-active="true"] {
  background: var(--ga-ink);
  color: #fff;
}
.tw-panel .order-list { display: flex; flex-direction: column; gap: 4px; margin-top: 4px; }
.tw-panel .order-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 8px;
  font-size: 12px;
}
.tw-panel .order-row .ctrls { display: flex; gap: 4px; }
.tw-panel .order-row button {
  width: 22px; height: 22px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  border-radius: 4px;
  font-size: 11px;
  cursor: pointer;
  color: var(--fg);
}
.tw-panel .tw-close {
  position: absolute; top: 8px; right: 8px;
  width: 22px; height: 22px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--fg-muted);
  font-size: 14px;
}

/* Hide voxel float when reduced motion */
@media (prefers-reduced-motion: no-preference) {
  .ga-vox-float { animation: vox-float 4s ease-in-out infinite; }
}
@keyframes vox-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* Resources page: lede + workshops */
.ga-resources-lede {
  margin: 0 0 32px;
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 560px;
  text-wrap: pretty;
}
.ga-workshops {
  display: grid;
  gap: 48px;
  max-width: 880px;
}
.ga-workshop {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) 1fr;
  gap: 32px;
  align-items: start;
}
.ga-workshop .vid {
  aspect-ratio: 16 / 9;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-inverse);
}
.ga-workshop .vid iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.ga-workshop .meta h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.ga-workshop .meta .date {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.ga-workshop .meta p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--fg-muted);
  text-wrap: pretty;
}
@media (max-width: 800px) {
  .ga-workshop { grid-template-columns: 1fr; gap: 16px; }
}

/* About: intro body + pull line */
.ga-about-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 960px;
}
.ga-about-body p {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--fg-muted);
  text-wrap: pretty;
}
.ga-about-pull {
  margin-top: 40px;
  padding: 4px 0 4px 28px;
  border-left: 2px solid var(--accent);
}
.ga-about-pull p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.01em;
  max-width: 640px;
  text-wrap: pretty;
}
@media (max-width: 880px) {
  .ga-about-body { grid-template-columns: 1fr; gap: 20px; }
}

/* About: partners, supported team, point of contact, venn */
.ga-partners {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 440px));
  justify-content: center;
  gap: 24px;
  margin-bottom: 80px;
}
.ga-partners .person {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  background: var(--bg-elevated);
  text-align: center;
}
.ga-partners .person .av {
  width: 72px; height: 72px; border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 16px; letter-spacing: 0.06em;
  margin: 0 auto 16px;
}
.ga-partners .person img.av {
  object-fit: cover;
  display: block;
}
.ga-partners .person h4 { font-family: var(--font-display); font-size: 21px; font-weight: 700; margin: 0 0 4px; }
.ga-partners .person .role { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.ga-partners .person p { font-size: 14px; line-height: 1.6; color: var(--fg-muted); margin: 0 0 14px; text-align: left; }
.ga-person-link { font-family: var(--font-mono); font-size: 12px; color: var(--accent); text-decoration: none; }
.ga-person-link:hover { text-decoration: underline; }

.ga-supported-h {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700; letter-spacing: -0.01em;
  margin: 0; max-width: 580px;
}
.ga-supported-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.ga-supported-card { border: 1px solid var(--border); border-radius: 12px; padding: 32px; background: var(--bg-elevated); }
.ga-supported-card h4 { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin: 10px 0; }
.ga-supported-card p { font-size: 14.5px; line-height: 1.6; color: var(--fg-muted); margin: 0 0 18px; }
.ga-supported-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.ga-supported-card li { font-family: var(--font-mono); font-size: 12px; padding: 6px 12px; border: 1px solid var(--border); border-radius: 999px; background: var(--bg); }

.ga-poc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.ga-poc-card { border: 1px solid var(--border); border-radius: 12px; padding: 32px; background: var(--bg-elevated); }
.ga-poc-pair {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  font-family: var(--font-display); font-size: 20px; font-weight: 700;
  letter-spacing: -0.01em; margin-bottom: 12px;
}
.ga-poc-pair .plus { color: var(--accent); font-weight: 500; }
.ga-poc-card p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--fg-muted); }

.ga-venn-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 72px; align-items: center; }
.ga-venn-h {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800; letter-spacing: -0.02em;
  margin: 10px 0 16px;
}
.ga-venn { position: relative; width: min(440px, 86vw); aspect-ratio: 1 / 1; }
.ga-venn-c {
  position: absolute; width: 60%; aspect-ratio: 1 / 1; border-radius: 50%;
  border: 1.5px solid var(--ga-ink);
  background: color-mix(in oklab, var(--accent) 7%, transparent);
}
.ga-venn-c span {
  position: absolute;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  font-family: var(--font-mono); font-size: min(12px, 2.8vw);
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--fg);
}
.ga-venn-fin { left: 20%; top: 2%; }
.ga-venn-fin span { left: 50%; top: 40%; }
.ga-venn-ops { left: 4%; top: 32%; }
.ga-venn-ops span { left: 34%; top: 57%; }
.ga-venn-eng { left: 36%; top: 32%; }
.ga-venn-eng span { left: 66%; top: 57%; }
.ga-venn-logo {
  position: absolute; width: 56px; height: 56px;
  left: 50%; top: 51%; transform: translate(-50%, -50%);
}

@media (max-width: 880px) {
  .ga-partners { grid-template-columns: 1fr; }
  .ga-supported-grid, .ga-poc-grid { grid-template-columns: 1fr; }
  .ga-venn-row { grid-template-columns: 1fr; gap: 40px; }
  .ga-venn { margin: 0 auto; }
}

/* FAQ accordion */
.ga-faq { max-width: 760px; }
.ga-faq-item { border-bottom: 1px solid var(--border); }
.ga-faq-item:first-child { border-top: 1px solid var(--ga-ink); }
.ga-faq-q {
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--fg);
  transition: color var(--dur);
}
.ga-faq-q:hover { color: var(--accent); }
.ga-faq-q .ind {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--dur);
}
.ga-faq-item[data-open="true"] .ga-faq-q .ind { transform: rotate(45deg); }
.ga-faq-a { padding: 0 0 22px; max-width: 64ch; }
.ga-faq-a p { margin: 0; font-size: 15.5px; line-height: 1.6; color: var(--fg-muted); }

/* Legal pages (privacy/terms) */
.ga-legal { max-width: 720px; }
.ga-legal h2 { font-size: 22px; margin: 36px 0 12px; }
.ga-legal p { color: var(--fg-muted); line-height: 1.65; margin: 0 0 16px; }
.ga-legal a { color: var(--accent); }

/* Flywheel comparison (ported from forward-deployed) */
.ga-flywheel { border: 1px solid var(--border); border-radius: 16px; background: var(--bg-elevated); padding: 32px; margin: 8px 0 0; text-align: center; }
.ga-flywheel .flywheel-tabs { display: inline-flex; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.ga-flywheel .flywheel-tab { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; padding: 10px 22px; border: none; cursor: pointer; background: transparent; color: var(--fg-muted); transition: background 0.2s, color 0.2s; }
.ga-flywheel .flywheel-tab.active { background: var(--ga-ink); color: #fff; }
.ga-flywheel .flywheel-container { display: flex; justify-content: center; align-items: center; min-height: 420px; margin-top: 20px; }
.ga-flywheel .flywheel-container svg { width: 100%; max-width: 520px; }
.ga-flywheel .ga-insight-box { max-width: 640px; margin: 12px auto 0; }
.ga-flywheel .insight-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; margin: 0 0 6px; font-weight: 600; }
.ga-flywheel .insight-text { color: var(--fg-muted); font-size: 15px; line-height: 1.6; margin: 0 0 10px; }
.ga-flywheel-caption { margin-top: 18px; font-size: 14px; color: var(--fg-muted); }
