/* THE GOOD PEOPLE — one-page site
   Built on the brand tokens (../colors_and_type.css).
   Sun-warmed editorial: one accent (olive) per section, dusk for the emotional moment. */

:root {
  /* dusk shifted from plum toward a deep night-blue (brand direction) */
  --indigo-400: #2b3a59;
  --indigo-500: #1b2740;
  --indigo-600: #121b2e;
  /* handwriting: warmer, more natural hand than the default marker face */
  --font-script: 'Kalam', 'Caveat', cursive;
}

* { box-sizing: border-box; }
body { margin: 0; background: var(--paper-100); }

img { display: block; max-width: 100%; }

/* page-wide soft grain */
.tgp-grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background-image: url('assets/texture-grain.svg');
  opacity: 0.05; mix-blend-mode: multiply;
}
#app { position: relative; z-index: 2; }

/* ============================================================
   NAV
   ============================================================ */
.tgp-nav {
  position: sticky; top: 0; z-index: 50;
  height: var(--nav-h);
  padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(248, 243, 234, 0.84);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--rule);
  animation: tgp-wm-in var(--dur-hero) var(--ease-warm);
}
@keyframes tgp-wm-in { from { transform: translateY(-5px); } to { transform: none; } }
.tgp-wm {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--font-display);
  font-size: 22px; font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 70;
  letter-spacing: -0.02em;
  color: var(--ink-600);
  text-decoration: none; white-space: nowrap;
}
.tgp-wm-text { display: inline-block; }
.tgp-wm .dot { color: var(--olive-500); }
.tgp-logo-mark { height: 27px; width: auto; display: block; color: var(--olive-500); flex: none; }
.tgp-wm-lg { font-size: 44px; gap: 18px; }
.tgp-wm-lg .tgp-logo-mark { height: 50px; }
.tgp-nav-links { display: flex; gap: 30px; }
.tgp-nav-links a {
  font-size: 14px; color: var(--ink-600); text-decoration: none;
  transition: color var(--dur-fast) var(--ease-warm);
}
.tgp-nav-links a:hover { color: var(--olive-600); }
.tgp-nav-right { display: flex; gap: 16px; align-items: center; }

/* ============================================================
   BUTTONS
   ============================================================ */
.tgp-btn {
  font-family: var(--font-body); font-weight: 500; font-size: 14px;
  padding: 11px 22px; border-radius: 4px; border: 0; cursor: pointer;
  line-height: 1; letter-spacing: 0.01em; white-space: nowrap;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: background var(--dur-fast) var(--ease-warm),
              color var(--dur-fast) var(--ease-warm),
              border-color var(--dur-fast) var(--ease-warm),
              transform 120ms var(--ease-warm);
}
.tgp-btn-lg { font-size: 16px; padding: 15px 30px; }
.tgp-btn-primary { background: var(--olive-500); color: var(--paper-50); }
.tgp-btn-primary:hover { background: var(--olive-600); }
.tgp-btn-primary:active { transform: translateY(1px); background: var(--olive-700); }
.tgp-btn-secondary { background: transparent; color: var(--ink-600); border: 1px solid var(--ink-a20); }
.tgp-btn-secondary:hover { border-color: var(--ink-600); }
.tgp-btn-ghost { background: transparent; color: var(--ink-600); padding: 11px 4px; }
.tgp-btn-ghost:hover { color: var(--olive-600); }
.tgp-btn-dusk-primary { background: var(--olive-300); color: var(--indigo-600); }
.tgp-btn-dusk-primary:hover { background: var(--olive-200); }
.tgp-btn-link {
  background: none; border: 0; padding: 0;
  font-family: var(--font-body); font-size: 14px; font-weight: 500; color: var(--ink-600);
  text-decoration: underline; text-underline-offset: 5px;
  text-decoration-color: var(--olive-500); text-decoration-thickness: 1.5px;
  cursor: pointer;
}

/* ============================================================
   HERO
   ============================================================ */
.tgp-hero {
  position: relative; overflow: hidden;
  min-height: calc(100vh - var(--nav-h));
  padding: clamp(72px, 12vh, 140px) var(--gutter) 88px;
  background: var(--paper-100);
  display: flex; align-items: center;
}
.tgp-hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 78% 24%, rgba(200, 154, 60, 0.30) 0%, transparent 58%),
    radial-gradient(ellipse at 16% 88%, rgba(90, 107, 61, 0.18) 0%, transparent 55%),
    linear-gradient(180deg, var(--paper-50) 0%, var(--paper-200) 100%);
}
.tgp-hero-grain {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url('assets/texture-grain.svg');
  opacity: 0.07; mix-blend-mode: multiply;
}
.tgp-hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: 1120px; margin-left: 3vw;
  display: flex; flex-direction: column; gap: 34px;
}
.tgp-hero-eyebrow { color: var(--olive-700); }
.tgp-hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.8vw, 80px);
  line-height: 1.08; font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 70;
  letter-spacing: -0.026em; color: var(--ink-700);
  margin: 0; text-wrap: normal;
  animation: tgp-rise var(--dur-hero) var(--ease-warm);
}
@keyframes tgp-rise { from { transform: translateY(14px); } to { transform: none; } }
.tgp-hero-title em { font-style: italic; }
.tgp-hero-mark mark {
  background: linear-gradient(transparent 58%, var(--ochre-200) 58%, var(--ochre-200) 92%, transparent 92%);
  color: inherit; padding: 0 .04em;
}
.tgp-hero-lede {
  font-family: var(--font-body);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.5; font-weight: 300; color: var(--ink-500);
  max-width: 52ch; margin: 0;
}
.tgp-hero-lede em { font-style: italic; color: var(--olive-700); }
.tgp-hero-cta { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; margin-top: 4px; }
.tgp-hero-meta {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
  margin-top: 18px; padding-top: 22px;
  border-top: 1px solid var(--ink-a12); max-width: 640px;
  font-size: 13px; color: var(--ink-400); letter-spacing: 0.03em;
}
.tgp-hero-meta strong { color: var(--ink-600); font-weight: 600; }
.tgp-hero-meta .dot { opacity: .45; }
.tgp-hero-script {
  position: absolute; z-index: 2; right: 6vw; bottom: 72px;
  font-family: var(--font-script); font-size: clamp(32px, 3.8vw, 56px);
  color: var(--olive-500); transform: rotate(-3deg);
  max-width: 380px; line-height: 1.12; text-align: right; pointer-events: none;
}

/* ============================================================
   SECTION SCAFFOLDING
   ============================================================ */
.tgp-section { padding: clamp(80px, 11vw, 144px) var(--gutter); max-width: 1280px; margin: 0 auto; }
.tgp-section-head { margin-bottom: 64px; display: flex; flex-direction: column; gap: 16px; max-width: 64ch; }
.tgp-eyebrow {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-400); font-weight: 500;
}
.tgp-eyebrow-dusk { color: rgba(248, 243, 234, 0.66); }
.tgp-h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 62px); line-height: 1.08; font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 60; letter-spacing: -0.02em;
  color: var(--ink-700); margin: 0; text-wrap: balance;
}
.tgp-h2 em { font-style: italic; color: var(--olive-700); }
.tgp-h2-dusk { color: var(--paper-50); }
.tgp-h2-dusk em { color: var(--olive-300); }
/* text-wrap balance/pretty miscomputes heading block-height in flex/grid (overflow bug) — opt out */
.tgp-pillar-turn, .tgp-join-title, .tgp-gather-where, .tgp-gather-day, .tgp-event-title { text-wrap: normal; }
.tgp-p {
  font-family: var(--font-body); font-size: 17px; line-height: 1.65;
  color: var(--ink-500); max-width: 60ch; margin: 0 0 16px;
}
.tgp-p:last-child { margin-bottom: 0; }
.tgp-p em { font-style: italic; }
.tgp-p-dusk { color: rgba(248, 243, 234, 0.8); }

/* ============================================================
   CONCEPT / MANIFESTO
   ============================================================ */
.tgp-manifesto-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 80px; align-items: flex-start; }
.tgp-manifesto-left { padding-top: 6px; display: flex; flex-direction: column; gap: 18px; }
.tgp-manifesto-right { display: flex; flex-direction: column; gap: 4px; }
.tgp-signoff { font-family: var(--font-script); color: var(--olive-500); font-size: 30px; margin-top: 26px; }
.tgp-p-lead { font-size: 21px; line-height: 1.5; color: var(--ink-600); }

/* ============================================================
   PILLARS — the three transformations
   ============================================================ */
.tgp-band { padding: clamp(80px, 11vw, 144px) var(--gutter); }
.tgp-band-paper2 { background: var(--paper-200); }
.tgp-band > .tgp-section-head,
.tgp-band > .tgp-inner { max-width: 1280px; margin-left: auto; margin-right: auto; }

.tgp-pillars { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink-a20); }
.tgp-pillar { display: flex; flex-direction: column; gap: 12px; padding: 30px 44px 0; border-left: 1px solid var(--ink-a12); }
.tgp-pillar:first-child { padding-left: 0; border-left: 0; }
.tgp-pillar:last-child { padding-right: 0; }
.tgp-pillar-turn {
  font-family: var(--font-display); font-size: clamp(25px, 2.4vw, 33px); line-height: 1.1;
  font-weight: 300; font-variation-settings: "opsz" 144, "SOFT" 50;
  letter-spacing: -0.02em; color: var(--ink-700); margin: 0;
}
.tgp-pillar-from { color: var(--ink-300); font-style: italic; }
.tgp-pillar-arrow { color: var(--olive-500); padding: 0 0.14em 0 0.1em; font-style: normal; }
.tgp-pillar-to { display: block; color: var(--ink-800); }
.tgp-pillar-desc { font-family: var(--font-body); font-size: 15px; line-height: 1.55; color: var(--ink-500); margin: 0; max-width: 26ch; }

/* ============================================================
   VALUES — common ground / we are the majority
   ============================================================ */
.tgp-values { background: var(--olive-50); }
.tgp-values-lead { margin-top: 6px; color: var(--olive-800, var(--ink-600)); }
.tgp-values-grid {
  list-style: none; margin: 0 0 4px; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 48px;
}
.tgp-value {
  display: flex; gap: 16px; align-items: baseline;
  padding: 22px 0; border-top: 1px solid var(--olive-200);
}
.tgp-value-mark { width: 28px; height: 18px; flex: none; color: var(--olive-500); transform: translateY(3px); }
.tgp-value-text {
  font-family: var(--font-display); font-size: clamp(19px, 1.6vw, 23px); font-weight: 400;
  line-height: 1.2; color: var(--ink-700); text-wrap: normal;
}
.tgp-values-turn {
  margin-top: 72px; padding-top: 56px; border-top: 1px solid var(--olive-200);
  display: grid; grid-template-columns: 5fr 7fr; gap: 64px; align-items: start;
}
.tgp-values-big {
  font-family: var(--font-display); font-size: clamp(34px, 4.4vw, 56px); line-height: 1.04;
  font-weight: 300; letter-spacing: -0.02em; color: var(--ink-700); margin: 0; text-wrap: normal;
}
.tgp-values-big em { font-style: italic; color: var(--olive-600); }
.tgp-values-mission { display: flex; flex-direction: column; gap: 16px; }
.tgp-values-cta {
  align-self: flex-start; margin-top: 6px; font-size: 15px; font-weight: 500;
  color: var(--olive-700); text-decoration: underline; text-decoration-color: var(--olive-300);
  text-underline-offset: 5px; text-decoration-thickness: 1.5px;
}
.tgp-values-cta:hover { color: var(--olive-600); }

/* ============================================================
   JACK CONGO — the first story (dusk)
   ============================================================ */
.tgp-jack {
  position: relative; overflow: hidden;
  background: var(--indigo-500);
  padding: clamp(80px, 11vw, 144px) var(--gutter);
}
.tgp-jack::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 88% 6%, rgba(200, 154, 60, 0.22) 0%, transparent 56%),
    radial-gradient(ellipse at 6% 96%, rgba(90, 107, 61, 0.30) 0%, transparent 52%);
}
.tgp-jack-grid {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 4.5fr 6.5fr; gap: 72px; align-items: center;
}
.tgp-jack-media { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.tgp-jack-slot {
  width: 100%; max-width: 380px; aspect-ratio: 1 / 2;
  background: rgba(248, 243, 234, 0.06);
  box-shadow: var(--shadow-lg);
}
.tgp-jack-cap {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em;
  color: rgba(248, 243, 234, 0.45);
}
.tgp-jack-body { display: block; }
.tgp-jack-body > * + * { margin-top: 22px; }
.tgp-jack-quote {
  font-family: var(--font-display); font-size: clamp(26px, 3vw, 40px); line-height: 1.18;
  font-weight: 300; font-variation-settings: "opsz" 144, "SOFT" 60;
  letter-spacing: -0.015em; color: var(--paper-50); margin: 8px 0 0;
  text-wrap: balance;
}
.tgp-jack-quote em { font-style: italic; color: var(--olive-300); }
.tgp-jack-stats {
  display: grid; grid-template-columns: repeat(3, auto); gap: 36px;
  margin-top: 8px; padding-top: 26px; border-top: 1px solid rgba(248, 243, 234, 0.16);
}
.tgp-stat-num {
  font-family: var(--font-display); font-size: clamp(30px, 3.4vw, 44px); line-height: 1;
  font-weight: 300; font-variation-settings: "opsz" 144, "SOFT" 60;
  color: var(--ochre-200); letter-spacing: -0.02em;
}
.tgp-stat-label { font-size: 12.5px; line-height: 1.4; color: rgba(248, 243, 234, 0.62); margin-top: 8px; max-width: 18ch; }

/* ============================================================
   THE GATHERING — July 1, Aethos Lisbon
   ============================================================ */
.tgp-gather { background: var(--paper-100); }
.tgp-gather-card {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 7fr 5fr; gap: 0;
  border-top: 1px solid var(--ink-a20); border-bottom: 1px solid var(--ink-a20);
}
.tgp-gather-left { padding: 56px 64px 56px 0; display: flex; flex-direction: column; gap: 22px; }
.tgp-gather-tagrow { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.tgp-pill {
  font-family: var(--font-body); font-size: 11px; font-weight: 500;
  padding: 5px 13px; border-radius: 999px; letter-spacing: 0.02em;
}
.tgp-pill-gathering { background: var(--olive-50); color: var(--olive-700); }
.tgp-pill-music { background: var(--indigo-50); color: var(--indigo-500); }
.tgp-pill-jack { background: var(--ochre-50); color: var(--ochre-600); }

.tgp-gather-dateline { display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap; }
.tgp-gather-day {
  font-family: var(--font-display); font-size: clamp(56px, 7vw, 96px); line-height: 0.86;
  font-weight: 300; font-variation-settings: "opsz" 144, "SOFT" 60;
  letter-spacing: -0.03em; color: var(--ink-700);
}
.tgp-gather-when { display: flex; flex-direction: column; gap: 4px; }
.tgp-gather-mo { font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-400); }
.tgp-gather-where { font-family: var(--font-display); font-size: 24px; font-weight: 400; font-variation-settings: "opsz" 144, "SOFT" 50; color: var(--ink-700); }
.tgp-gather-where em { font-style: italic; }

.tgp-gather-list { display: flex; flex-direction: column; gap: 0; margin: 4px 0 0; }
.tgp-gather-item {
  display: grid; grid-template-columns: 132px 1fr; gap: 24px;
  padding: 16px 0; border-top: 1px solid var(--ink-a12); align-items: baseline;
}
.tgp-gather-item:first-child { border-top: 0; }
.tgp-gather-k { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-400); font-weight: 500; padding-top: 2px; }
.tgp-gather-v { font-size: 16px; line-height: 1.5; color: var(--ink-600); }
.tgp-gather-v em { font-style: italic; color: var(--olive-700); }
.tgp-gather-soon { font-size: 13px; color: var(--ink-400); font-style: italic; }

.tgp-prog-kicker { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-400); font-weight: 500; margin-top: 6px; }
.tgp-program { list-style: none; margin: 8px 0 0; padding: 0; }
.tgp-prog-item {
  display: grid; grid-template-columns: 64px 1fr; gap: 22px;
  padding: 15px 0; border-top: 1px solid var(--ink-a12); align-items: baseline;
}
.tgp-prog-item:first-child { border-top: 0; padding-top: 4px; }
.tgp-prog-time {
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  color: var(--olive-700); letter-spacing: 0.01em; font-variant-numeric: tabular-nums; padding-top: 3px;
}
.tgp-prog-title { font-family: var(--font-display); font-size: 20px; font-weight: 500; line-height: 1.2; color: var(--ink-700); margin: 0 0 4px; }
.tgp-prog-desc { font-family: var(--font-body); font-size: 14px; line-height: 1.5; color: var(--ink-500); margin: 0; max-width: 46ch; }

.tgp-gather-right { border-left: 1px solid var(--ink-a12); padding: 4px 0 8px 64px; display: flex; flex-direction: column; gap: 24px; justify-content: flex-start; position: sticky; top: calc(var(--nav-h) + 32px); align-self: start; }
.tgp-gather-slot { width: 100%; aspect-ratio: 4 / 3; background: var(--paper-200); }
.tgp-gather-cap { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; color: var(--ink-300); }
.tgp-gather-cta { display: flex; flex-direction: column; gap: 12px; }
.tgp-gather-fine { font-size: 13px; color: var(--ink-400); font-style: italic; margin: 0; }

/* ============================================================
   JOIN — three ways
   ============================================================ */
.tgp-join { background: var(--paper-200); }
.tgp-join-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tgp-join-card {
  background: var(--paper-50); border-radius: 12px; padding: 34px;
  display: flex; flex-direction: column; gap: 14px; min-height: 280px;
  transition: transform var(--dur-base) var(--ease-warm), box-shadow var(--dur-base) var(--ease-warm);
}
.tgp-join-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.tgp-join-card-olive { background: var(--olive-50); }
.tgp-join-card-sage { background: var(--sage-50); }
.tgp-join-card-ochre { background: var(--ochre-50); }
.tgp-join-num { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-400); font-weight: 500; }
.tgp-join-title {
  font-family: var(--font-display); font-size: 26px; font-weight: 400; line-height: 1.14;
  font-variation-settings: "opsz" 144, "SOFT" 50; color: var(--ink-700); margin: 0;
}
.tgp-join-desc { font-size: 14.5px; line-height: 1.6; color: var(--ink-500); margin: 0; }
.tgp-join-cta {
  margin-top: auto; align-self: flex-start; font-size: 14px; font-weight: 500;
  color: var(--olive-700); text-decoration: underline; text-decoration-color: var(--olive-300);
  text-underline-offset: 5px; cursor: pointer;
}

/* ============================================================
   FOOTER
   ============================================================ */
.tgp-footer { padding: 96px var(--gutter) 44px; background: var(--indigo-500); }
.tgp-footer-brand { max-width: 1280px; margin: 0 auto 64px; display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.tgp-footer .tgp-wm, .tgp-footer .tgp-wm .dot { color: var(--paper-50); }
.tgp-footer .tgp-wm .dot { color: var(--olive-300); }
.tgp-footer .tgp-logo-mark { color: var(--paper-50); }
.tgp-footer-strap { font-size: 15px; color: rgba(248, 243, 234, 0.66); font-style: italic; max-width: 34ch; margin: 0; }
.tgp-footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.tgp-footer-cols > div { display: flex; flex-direction: column; gap: 10px; }
.tgp-footer-h { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(248, 243, 234, 0.5); font-weight: 500; margin-bottom: 6px; }
.tgp-footer-cols a { font-size: 15px; color: rgba(248, 243, 234, 0.82); text-decoration: none; transition: color var(--dur-fast) var(--ease-warm); }
.tgp-footer-cols a:hover { color: var(--olive-300); }
.tgp-footer-bottom { max-width: 1280px; margin: 0 auto; padding-top: 30px; border-top: 1px solid rgba(248, 243, 234, 0.16); display: flex; justify-content: space-between; align-items: baseline; gap: 24px; flex-wrap: wrap; }
.tgp-footer-script { font-family: var(--font-script); font-size: 38px; line-height: 1.1; color: var(--olive-300); }
.tgp-footer-fine { font-size: 12px; color: rgba(248, 243, 234, 0.5); }

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.tgp-reveal { transition: opacity var(--dur-slow) var(--ease-warm), transform var(--dur-slow) var(--ease-warm); }
/* Visible by default — only hide as progressive enhancement once JS confirms it will animate
   (and never for reduced-motion / print / hidden tabs). */
@media (prefers-reduced-motion: no-preference) {
  .reveal-on .tgp-reveal:not(.is-in) { opacity: 0; transform: translateY(16px); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .tgp-manifesto-grid, .tgp-jack-grid, .tgp-footer-grid { grid-template-columns: 1fr; gap: 44px; }
  .tgp-pillars { grid-template-columns: 1fr; border-top: 0; }
  .tgp-pillar { padding: 26px 0 0; border-left: 0; border-top: 1px solid var(--ink-a12); }
  .tgp-pillar:first-child { padding-left: 0; }
  .tgp-values-grid { grid-template-columns: 1fr 1fr; gap: 0 32px; }
  .tgp-values-turn { grid-template-columns: 1fr; gap: 28px; }
  .tgp-gather-card { grid-template-columns: 1fr; }
  .tgp-gather-left { padding: 44px 0; }
  .tgp-gather-right { border-left: 0; border-top: 1px solid var(--ink-a12); padding: 44px 0; position: static; }
  .tgp-join-grid { grid-template-columns: 1fr; }
  .tgp-nav-links { display: none; }
  .tgp-hero-script { display: none; }
  .tgp-jack-stats { gap: 24px; }
}
@media (max-width: 560px) {
  .tgp-jack-stats { grid-template-columns: 1fr; }
  .tgp-values-grid { grid-template-columns: 1fr; }
  .tgp-gather-item { grid-template-columns: 1fr; gap: 4px; }
  .tgp-footer-cols { grid-template-columns: 1fr 1fr; }
}
