/*
 * PAINTEDD | About — Identity Dossier
 * Full-page dossier layout. Left: artist portrait + ambient. Right: scroll-narrative content.
 * Mobile: single column, portrait leads, content follows.
 */

/* ── Local token extensions ───────────────────────────────────────────────── */
:root {
  --cyan:        var(--pntd-c-turquoise);
  --red:         var(--pntd-c-red);
  --fuchsia:     var(--pntd-c-fuchsia);
  --gold:        var(--pntd-c-yellow);
  --glow-cyan:   var(--pntd-glow-turquoise);
  --glow-red:    var(--pntd-glow-red);
}

/* ── Reset ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

body {
  margin: 0;
  background: var(--pntd-bg);
  color: #fff;
  font-family: var(--pntd-font);
  min-height: 100dvh;
  overflow-x: hidden;
}

/* ── Ambient background ───────────────────────────────────────────────────── */
.ab-scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ab-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  animation: orbDrift 18s ease-in-out infinite;
  will-change: transform, opacity;
}
.ab-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(217,4,41,0.35) 0%, transparent 70%);
  top: -10%; left: -10%;
  animation-delay: 0s;
}
.ab-orb-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,217,191,0.2) 0%, transparent 70%);
  bottom: -15%; right: -15%;
  animation-delay: -6s;
}
.ab-orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(231,37,231,0.18) 0%, transparent 70%);
  top: 40%; left: 40%;
  animation-delay: -12s;
}

@keyframes orbDrift {
  0%   { transform: translate(0px, 0px);   opacity: 0.6; }
  33%  { transform: translate(30px, -20px); opacity: 0.9; }
  66%  { transform: translate(-20px, 30px); opacity: 0.7; }
  100% { transform: translate(0px, 0px);   opacity: 0.6; }
}

.ab-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

/* ── Layout ───────────────────────────────────────────────────────────────── */
.ab-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 380px 1fr;
  min-height: 100dvh;
}

/* ── Left column — sticky portrait panel ─────────────────────────────────── */
.ab-portrait-col {
  position: sticky;
  top: 0;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  border-right: 1px solid rgba(255,255,255,0.06);
  gap: 20px;
  overflow: hidden;
}

/* Scanline overlay on portrait col */
.ab-portrait-col::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.04) 2px,
    rgba(0,0,0,0.04) 4px
  );
  pointer-events: none;
  z-index: 0;
}

/* ── Portrait frame ───────────────────────────────────────────────────────── */
.ab-portrait-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 260px;
  aspect-ratio: 1;
}

.ab-portrait-border {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    var(--red),
    var(--fuchsia),
    var(--cyan),
    var(--gold),
    var(--red)
  );
  animation: borderSpin 8s linear infinite;
  filter: blur(1px);
}
@keyframes borderSpin { to { transform: rotate(360deg); } }

.ab-portrait-border-inner {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: conic-gradient(
    from 180deg,
    var(--red),
    var(--fuchsia),
    var(--cyan),
    var(--gold),
    var(--red)
  );
  opacity: 0.3;
  animation: borderSpin 14s linear infinite reverse;
  filter: blur(6px);
}

.ab-portrait-img-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #0a0a0a;
  box-shadow: 0 0 60px rgba(0,0,0,0.9);
}

.ab-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  filter: saturate(1.1) contrast(1.05);
}

/* Holographic sheen on portrait */
.ab-portrait-sheen {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    transparent 30%,
    rgba(255,255,255,0.08) 50%,
    transparent 70%
  );
  background-size: 200% 200%;
  animation: sheenSweep 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 3;
}
@keyframes sheenSweep {
  0%   { background-position: 200% 200%; }
  50%  { background-position: 0% 0%; }
  100% { background-position: 200% 200%; }
}

/* Status ring pulse */
.ab-status-ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,217,191,0.3);
  animation: statusPulse 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes statusPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50%       { opacity: 0.8; transform: scale(1.03); }
}

/* ── Portrait labels ──────────────────────────────────────────────────────── */
.ab-identity-block {
  position: relative;
  z-index: 1;
  text-align: center;
}

.ab-name {
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin: 0;
  background: linear-gradient(135deg, #fff 50%, rgba(255,255,255,0.65) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.ab-tagline {
  margin-top: 6px;
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: var(--cyan);
  text-transform: uppercase;
  font-weight: 600;
}

/* ── Status badge — data-driven, hidden until JS populates ────────────────── */
.ab-status-badge {
  position: relative;
  z-index: 1;
  display: none; /* shown by JS */
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.6rem;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: monospace;
  background: rgba(255,255,255,0.04);
  /* color-mix fallback for Safari < 16.2 */
  border: 1px solid rgba(255,255,255,0.15);
  border: 1px solid color-mix(in srgb, var(--badge-color, var(--cyan)) 35%, transparent);
  color: rgba(255,255,255,0.8);
}

.ab-status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: statusPulse 2s ease-in-out infinite;
}

/* ── Social pills on portrait col ────────────────────────────────────────── */
.ab-socials {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.ab-social-pip {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: 0.25s var(--pntd-ease-fast);
}
.ab-social-pip:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.08);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* Colour-keyed hover tints */
.ab-social-pip[data-network="instagram"]:hover { color: #e4405f; border-color: #e4405f; box-shadow: 0 0 20px rgba(228,64,95,0.3); }
.ab-social-pip[data-network="tiktok"]:hover    { color: #fff; border-color: #fff; }
.ab-social-pip[data-network="youtube"]:hover   { color: #ff0000; border-color: #ff0000; box-shadow: 0 0 20px rgba(255,0,0,0.3); }
.ab-social-pip[data-network="facebook"]:hover  { color: #1877f2; border-color: #1877f2; box-shadow: 0 0 20px rgba(24,119,242,0.3); }
.ab-social-pip[data-network="whatsapp"]:hover  { color: #25d366; border-color: #25d366; box-shadow: 0 0 20px rgba(37,211,102,0.3); }
.ab-social-pip[data-network="email"]:hover     { color: var(--fuchsia); border-color: var(--fuchsia); box-shadow: 0 0 20px rgba(231,37,231,0.3); }

/* ── Right column — dossier scroll content ───────────────────────────────── */
.ab-content-col {
  overflow-y: auto;
  padding: 80px 56px 100px;
  display: flex;
  flex-direction: column;
  gap: clamp(44px, 6vw, 64px);
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.1) transparent;
}
.ab-content-col::-webkit-scrollbar { width: 4px; }
.ab-content-col::-webkit-scrollbar-track { background: transparent; }
.ab-content-col::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }

/* ── Section base ─────────────────────────────────────────────────────────── */
.ab-section {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--pntd-ease-slow), transform 0.7s var(--pntd-ease-slow);
}
.ab-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.ab-section-label {
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  font-family: monospace;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.ab-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.1), transparent);
}

/* ── Hero statement ───────────────────────────────────────────────────────── */
.ab-hero-statement {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.5px;
}

.ab-hero-statement .accent-red    { color: var(--red); }
.ab-hero-statement .accent-cyan   { color: var(--cyan); }
.ab-hero-statement .accent-fuchsia { color: var(--fuchsia); }

.ab-hero-sub {
  margin: 20px 0 0;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.68);
  max-width: 560px;
  font-weight: 400;
}

/* ── Medium cards ─────────────────────────────────────────────────────────── */
.ab-medium-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.ab-medium-card {
  padding: 18px 16px;
  border-radius: 14px;
  background: var(--pntd-glass-bg);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: 0.3s var(--pntd-ease-fast);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.ab-medium-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--card-accent, rgba(0,217,191,0.1)) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}
.ab-medium-card:hover { border-color: rgba(255,255,255,0.15); transform: translateY(-3px); }
.ab-medium-card:hover::before { opacity: 1; }

.ab-medium-icon {
  font-size: 1.3rem;
  color: var(--icon-color, var(--cyan));
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dual-icon variant: two smaller icons side by side */
.ab-medium-icon--dual {
  width: auto;
  min-width: 40px;
  padding: 0 10px;
  gap: 8px;
  font-size: 1rem;
}
.ab-medium-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
}
.ab-medium-desc {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.45;
}

/* ── Stats grid ───────────────────────────────────────────────────────────── */
.ab-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.ab-stat-card {
  padding: 22px 20px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}
.ab-stat-card:hover { border-color: rgba(255,255,255,0.14); background: rgba(255,255,255,0.05); }

.ab-stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--stat-color, #fff);
  margin: 0;
  font-variant-numeric: tabular-nums;
}
.ab-stat-label {
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.48);
  text-transform: uppercase;
  margin-top: 6px;
  font-family: monospace;
}

/* Accent corner line */
.ab-stat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40%;
  height: 2px;
  background: var(--stat-color, var(--cyan));
  opacity: 0.5;
  border-radius: 0 2px 0 0;
}

/* ── Manifesto / philosophy ───────────────────────────────────────────────── */
.ab-manifesto {
  padding: 32px 36px;
  border-radius: 18px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 3px solid var(--red);
  position: relative;
  overflow: hidden;
}
.ab-manifesto::before {
  content: '"';
  position: absolute;
  top: -20px; left: 20px;
  font-size: 12rem;
  line-height: 1;
  color: rgba(217,4,41,0.05);
  font-family: Georgia, serif;
  pointer-events: none;
  user-select: none;
}

.ab-manifesto-text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.82);
  font-style: italic;
  font-weight: 400;
  margin: 0;
  position: relative;
  z-index: 1;
}
.ab-manifesto-text em {
  color: #fff;
  font-style: normal;
  font-weight: 700;
}

/* ── Discipline timeline ──────────────────────────────────────────────────── */
.ab-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ab-timeline-item {
  display: grid;
  grid-template-columns: 88px 1px 1fr;
  gap: 0 20px;
  min-height: 80px;
}

.ab-tl-year {
  text-align: right;
  font-family: monospace;
  font-size: 0.68rem;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.38);
  padding-top: 4px;
  align-self: start;
  word-break: keep-all;
}

/* Era badge for approximate ranges like "pre 2016" / "post 2016" */
.ab-tl-era {
  display: inline-block;
  font-family: monospace;
  font-size: 0.6rem;
  letter-spacing: 0.5px;
  font-style: italic;
  color: var(--era-color, rgba(255,255,255,0.5));
  background: color-mix(in srgb, var(--era-color, rgba(255,255,255,0.5)) 10%, transparent);
  /* fallback for older Safari */
  background: rgba(255,255,255,0.04);
  background: color-mix(in srgb, var(--era-color, rgba(255,255,255,0.5)) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--era-color, rgba(255,255,255,0.3)) 25%, transparent);
  padding: 2px 6px;
  border-radius: 4px;
  line-height: 1.6;
  white-space: nowrap;
  text-shadow: 0 0 12px var(--era-color, transparent);
}

.ab-tl-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.ab-tl-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--tl-color, var(--cyan));
  box-shadow: 0 0 10px var(--tl-color, var(--cyan));
  flex-shrink: 0;
  margin-top: 4px;
  z-index: 1;
}
.ab-tl-track {
  flex: 1;
  width: 1px;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), transparent);
  margin-top: 4px;
}
.ab-timeline-item:last-child .ab-tl-track { display: none; }

.ab-tl-content {
  padding-bottom: 32px;
}
.ab-tl-title {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  margin: 0 0 5px;
  letter-spacing: 0.3px;
}
.ab-tl-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.56);
  line-height: 1.6;
  margin: 0;
}

/* ── Presence strip ───────────────────────────────────────────────────────── */
.ab-presence-strip {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ab-presence-loading {
  color: rgba(255,255,255,0.2);
  font-size: 1.2rem;
  padding: 10px 0;
}

.ab-presence-empty {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.3);
  font-style: italic;
  margin: 0;
}

/* Event pill */
.ab-event-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  color: #fff;
  transition: 0.25s var(--pntd-ease-fast);
  position: relative;
  overflow: hidden;
}
.ab-event-pill::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at left center, color-mix(in srgb, var(--pill-color) 15%, transparent), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.ab-event-pill:hover { border-color: var(--pill-color); transform: translateX(4px); }
.ab-event-pill:hover::before { opacity: 1; }

.ab-live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
}
.ab-live-dot.active {
  background: var(--pill-color, var(--cyan));
  box-shadow: 0 0 10px var(--pill-color, var(--cyan));
  animation: livePulse 1.8s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: 0.7; }
}

.ab-event-pill-label {
  font-family: monospace;
  font-size: 0.55rem;
  letter-spacing: 3px;
  color: var(--pill-color, var(--cyan));
  text-transform: uppercase;
  font-weight: 700;
  flex-shrink: 0;
}

.ab-event-pill-name {
  font-size: 0.9rem;
  font-weight: 700;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ab-event-pill-dates {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  font-family: monospace;
  flex-shrink: 0;
}

.ab-event-pill-arrow {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
  flex-shrink: 0;
  transition: transform 0.2s, color 0.2s;
}
.ab-event-pill:hover .ab-event-pill-arrow {
  transform: translateX(3px);
  color: var(--pill-color, var(--cyan));
}

/* TikTok pill */
.ab-tiktok-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  color: #fff;
  transition: 0.25s var(--pntd-ease-fast);
}
.ab-tiktok-pill:hover {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
  transform: translateX(4px);
}

.ab-tiktok-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.ab-tiktok-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.ab-tiktok-handle {
  font-size: 0.85rem;
  font-weight: 700;
}

.ab-tiktok-sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
}

.ab-tiktok-ext {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* ── CTA footer strip ─────────────────────────────────────────────────────── */
.ab-cta-strip {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.ab-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 14px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  cursor: pointer;
  transition: 0.25s var(--pntd-ease-fast);
  border: none;
}

.ab-cta-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 6px 24px rgba(217,4,41,0.35);
}
.ab-cta-primary:hover {
  background: #f0052d;
  box-shadow: 0 10px 32px rgba(217,4,41,0.55);
  transform: translateY(-2px);
}

.ab-cta-ghost {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12) !important;
  color: rgba(255,255,255,0.7);
}
.ab-cta-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.25) !important;
  color: #fff;
  transform: translateY(-2px);
}

/* ── Noise texture ────────────────────────────────────────────────────────── */
/* .pntd-noise is from global.css */

/* ── Tablet / single-column ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .ab-layout {
    grid-template-columns: 1fr;
  }

  .ab-portrait-col {
    position: relative;
    height: auto;
    padding: 88px 24px 44px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    gap: 16px;
  }

  .ab-portrait-frame {
    max-width: 200px;
  }

  .ab-content-col {
    padding: 48px 28px 80px;
  }

  .ab-hero-statement {
    font-size: clamp(1.7rem, 6vw, 2.6rem);
  }

  .ab-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ab-medium-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ab-timeline-item {
    grid-template-columns: 76px 1px 1fr;
    gap: 0 14px;
  }
}

/* ── Mobile ───────────────────────────────────────────────────────────────── */
@media (max-width: 560px) {
  .ab-name { font-size: 1.6rem; letter-spacing: 4px; }

  .ab-portrait-col { padding: 76px 20px 36px; }

  .ab-portrait-frame { max-width: 170px; }

  .ab-content-col { padding: 36px 18px 72px; }

  .ab-hero-sub { font-size: 0.95rem; }

  .ab-manifesto { padding: 22px 20px; }
  .ab-manifesto-text { font-size: 0.95rem; }

  .ab-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  /* 5 cards at 2-col: last card spans both columns so it doesn't orphan */
  .ab-medium-grid { grid-template-columns: repeat(2, 1fr); }
  .ab-medium-grid .ab-medium-card:last-child { grid-column: 1 / -1; }

  .ab-timeline-item {
    grid-template-columns: 68px 1px 1fr;
    gap: 0 12px;
  }

  .ab-cta-strip { flex-direction: column; }
  .ab-cta-btn   { justify-content: center; }

  .ab-event-pill,
  .ab-tiktok-pill { padding: 13px 14px; gap: 10px; }

  .ab-event-pill-dates { display: none; }
}
