/* ──────────────────────────────────────────────────────────────
   ABOUT US PAGE (page-about-us.php)
   Only enqueued when is_page('about-us').
   All selectors namespaced under .abt-*.
   ────────────────────────────────────────────────────────────── */

:root,
:root[data-theme="dark"],
:root[data-theme="light"] {
  --red: #FF2C55;
  --black: #0A0A0A;
  --white: #FFFFFF;
  --bg: #FAFAFA;
  --muted: #666666;
  --rule: #111111;
  --ld-text: #0A0A0A;
  --ld-text-muted: #666666;
  --ld-bg: #FAFAFA;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--black);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  display: block;
}

body h1, body h2, body h3, body h4, body h5, body h6 { color: inherit; }
body p { color: inherit; }

.section-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── HERO ───────────────────────────────────────────── */
.abt-hero {
  position: relative;
  padding: 120px 48px 96px;
  background:
    radial-gradient(circle at 88% 12%, rgba(255,44,85,0.12) 0%, transparent 42%),
    radial-gradient(circle at 8% 90%, rgba(255,44,85,0.05) 0%, transparent 40%),
    var(--bg);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}

.abt-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10,10,10,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,10,10,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: -1px -1px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, transparent 70%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, transparent 70%);
}

.abt-hero-watermark {
  position: absolute;
  top: 28px;
  right: 48px;
  font-size: clamp(8rem, 16vw, 16rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.85;
  color: var(--black);
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
  font-style: italic;
}

.abt-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.abt-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px 6px 6px;
  background: var(--white);
  border: 1px solid #EAEAEA;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 24px;
}

.abt-hero-tag::before {
  content: "EST 2018";
  background: var(--red);
  color: var(--white);
  padding: 4px 8px;
  font-size: 9.5px;
  letter-spacing: 0.18em;
}

.abt-hero-h1 {
  font-size: clamp(3rem, 6vw, 6.6rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.98;
  margin: 8px 0 32px;
}

.abt-hero-h1 em {
  font-style: italic;
  color: var(--red);
  position: relative;
}

.abt-hero-h1 em::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  opacity: 0.2;
}

.abt-hero-sub {
  font-size: 20px;
  color: var(--black);
  line-height: 1.65;
  max-width: 720px;
  font-weight: 400;
}

.abt-hero-sub strong { font-weight: 700; }

.abt-hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid #E5E5E5;
}

.abt-hero-meta-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.abt-hero-meta-num {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--red);
  line-height: 1;
}

.abt-hero-meta-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.abt-hero-meta-divider {
  width: 1px;
  height: 18px;
  background: #D0D0D0;
}

/* ── THREE PILLARS ──────────────────────────────────── */
.abt-pillars-section {
  padding: 96px 48px;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  position: relative;
}

.abt-pillars-header {
  max-width: 820px;
  margin-bottom: 56px;
}

.abt-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.abt-pillar {
  position: relative;
  padding: 36px 32px 32px;
  background: var(--bg);
  border: 1px solid #EAEAEA;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.abt-pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.abt-pillar::after {
  content: attr(data-num);
  position: absolute;
  top: -10px;
  right: -8px;
  font-size: 120px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--red);
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
}

.abt-pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.06), 0 4px 14px rgba(0,0,0,0.04);
  border-color: rgba(255,44,85,0.25);
}

.abt-pillar:hover::before { transform: scaleX(1); }
.abt-pillar:hover::after { opacity: 0.08; }

.abt-pillar-num {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.abt-pillar-num::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--red);
  display: inline-block;
}

.abt-pillar-title {
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.abt-pillar-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

.abt-pillar-body strong { color: var(--black); font-weight: 700; }

/* ── ACTION CARDS ───────────────────────────────────── */
.abt-actions {
  position: relative;
  padding: 104px 48px;
  background:
    radial-gradient(circle at 100% 100%, rgba(255,44,85,0.06) 0%, transparent 50%),
    var(--bg);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}

.abt-actions-header {
  position: relative;
  z-index: 1;
  margin-bottom: 56px;
  max-width: 820px;
}

.abt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}

.abt-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--red);
  display: inline-block;
}

.abt-eyebrow--dark { color: rgba(255,255,255,0.85); }
.abt-eyebrow--dark::before { background: rgba(255,255,255,0.5); }

.abt-actions-h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: var(--black);
}

.abt-actions-h2 em {
  font-style: italic;
  color: var(--red);
}

.abt-actions-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: stretch;
}

/* ── HERO CARD ─────────────────────────────────────── */
.abt-action-hero {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  background:
    radial-gradient(circle at 100% 0%, rgba(255,44,85,0.32) 0%, transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(255,44,85,0.12) 0%, transparent 55%),
    linear-gradient(155deg, #1a1a1a 0%, #0A0A0A 60%, #1a0a10 100%);
  color: var(--white);
  text-decoration: none;
  overflow: hidden;
  min-height: 520px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.abt-action-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  mask-image: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, transparent 60%);
  -webkit-mask-image: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, transparent 60%);
}

.abt-action-hero:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.3), 0 10px 24px rgba(0,0,0,0.18);
}

.abt-action-hero-media {
  position: relative;
  padding: 48px 48px 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.abt-action-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  align-self: flex-start;
}

.abt-action-hero-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: abt-pulse 2s ease-in-out infinite;
}

.abt-action-hero-watermark {
  position: absolute;
  top: 24px;
  right: 36px;
  font-size: clamp(8rem, 13vw, 13rem);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.08em;
  line-height: 0.85;
  color: rgba(255,255,255,0.06);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.abt-action-hero-avatars {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 1;
}

.abt-action-hero-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  color: var(--white);
  border: 2px solid #0A0A0A;
  margin-left: -14px;
  letter-spacing: 0;
  transition: transform 0.25s;
  position: relative;
}

.abt-action-hero-avatar:first-child { margin-left: 0; }

.abt-action-hero-avatar:nth-child(1) { background: linear-gradient(135deg, #FF2C55 0%, #7a0a20 100%); z-index: 5; }
.abt-action-hero-avatar:nth-child(2) { background: linear-gradient(135deg, #4a4a4a 0%, #1a1a1a 100%); z-index: 4; }
.abt-action-hero-avatar:nth-child(3) { background: linear-gradient(135deg, #6a6a6a 0%, #2a2a2a 100%); z-index: 3; }
.abt-action-hero-avatar:nth-child(4) { background: linear-gradient(135deg, #FF2C55 0%, #b01438 100%); z-index: 2; }
.abt-action-hero-avatar--more {
  background: rgba(255,255,255,0.08) !important;
  border: 2px dashed rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  letter-spacing: 0.05em;
  z-index: 1 !important;
}

.abt-action-hero:hover .abt-action-hero-avatar:nth-child(1) { transform: translateY(-4px) rotate(-4deg); }
.abt-action-hero:hover .abt-action-hero-avatar:nth-child(2) { transform: translateY(-2px); }
.abt-action-hero:hover .abt-action-hero-avatar:nth-child(3) { transform: translateY(-3px); }
.abt-action-hero:hover .abt-action-hero-avatar:nth-child(4) { transform: translateY(-2px) rotate(4deg); }

.abt-action-hero-stat-row {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
  position: relative;
  z-index: 1;
}

.abt-action-hero-stat-num {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--red);
  line-height: 1;
}

.abt-action-hero-stat-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}

.abt-action-hero-stat-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.18);
  align-self: center;
}

.abt-action-hero-body {
  position: relative;
  z-index: 1;
  padding: 36px 48px 48px;
}

.abt-action-hero-title {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: var(--white);
  margin-bottom: 18px;
}

.abt-action-hero-title em {
  font-style: italic;
  color: var(--red);
}

.abt-action-hero-desc {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  max-width: 440px;
}

.abt-action-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  background: var(--red);
  color: var(--white);
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.22s, gap 0.22s, transform 0.22s;
  box-shadow: 0 8px 20px rgba(255,44,85,0.25);
}

.abt-action-hero-cta svg { width: 16px; height: 16px; transition: transform 0.22s; }

.abt-action-hero:hover .abt-action-hero-cta {
  background: var(--white);
  color: var(--black);
  gap: 16px;
}

.abt-action-hero:hover .abt-action-hero-cta svg { transform: translateX(6px); }

/* ── SIDE STACK ────────────────────────────────────── */
.abt-actions-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.abt-action-compact {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid #EAEAEA;
  text-decoration: none;
  color: var(--black);
  padding: 36px 32px 32px;
  flex: 1;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.abt-action-compact::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.abt-action-compact::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,44,85,0) 0%, transparent 70%);
  transition: background 0.35s ease;
  pointer-events: none;
}

.abt-action-compact:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.07), 0 4px 12px rgba(0,0,0,0.04);
  border-color: rgba(255,44,85,0.25);
}

.abt-action-compact:hover::before { transform: scaleY(1); }
.abt-action-compact:hover::after {
  background: radial-gradient(circle, rgba(255,44,85,0.12) 0%, transparent 70%);
}

.abt-action-compact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.abt-action-compact-eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--red);
}

.abt-action-compact-title {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.abt-action-compact-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 22px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.abt-action-compact-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: auto;
  transition: gap 0.22s;
  position: relative;
  z-index: 1;
}

.abt-action-compact-cta svg { width: 14px; height: 14px; transition: transform 0.22s; }
.abt-action-compact:hover .abt-action-compact-cta { gap: 14px; }
.abt-action-compact:hover .abt-action-compact-cta svg { transform: translateX(4px); }

/* Hiring variant on Careers card */
.abt-action-compact--featured {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF5F7 100%);
  border-color: rgba(255,44,85,0.25);
}

.abt-action-compact-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: var(--red);
  color: var(--white);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(255,44,85,0.3);
}

.abt-action-compact-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
  animation: abt-pulse 2s ease-in-out infinite;
}

/* ── STATS SHOWCASE ─────────────────────────────────── */
.abt-stats {
  position: relative;
  padding: 104px 48px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255,44,85,0.16) 0%, transparent 45%),
    radial-gradient(circle at 100% 100%, rgba(255,44,85,0.08) 0%, transparent 50%),
    var(--black);
  color: var(--white);
  overflow: hidden;
}

.abt-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
}

.abt-stats-header {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
  max-width: 820px;
}

.abt-stats-h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: var(--white);
}

.abt-stats-h2 em {
  font-style: italic;
  color: var(--red);
}

.abt-stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.abt-stat {
  padding: 36px 36px 36px 0;
  border-right: 1px solid rgba(255,255,255,0.12);
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: background 0.25s;
}

.abt-stat:hover {
  background: linear-gradient(180deg, rgba(255,44,85,0.06) 0%, transparent 100%);
}

.abt-stat:nth-child(n+5) { border-bottom: 1px solid rgba(255,255,255,0.12); }
.abt-stat:last-child { border-right: none; }

.abt-stat-num {
  font-size: clamp(2.8rem, 4.6vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--red);
  line-height: 0.95;
  font-variant-numeric: tabular-nums;
}

.abt-stat-label {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}

.abt-stat-client {
  margin-top: auto;
  padding-top: 14px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ── MANIFESTO STRIP ────────────────────────────────── */
.abt-manifesto {
  padding: 88px 48px;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  position: relative;
}

.abt-manifesto-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
}

.abt-manifesto-mark {
  font-size: 120px;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.85;
  color: var(--red);
  font-style: italic;
  font-family: Georgia, 'Times New Roman', serif;
}

.abt-manifesto-quote {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--black);
}

.abt-manifesto-quote em {
  font-style: italic;
  color: var(--red);
}

.abt-manifesto-attribution {
  margin-top: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.abt-manifesto-attribution::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--red);
  display: inline-block;
}

/* ── BOTTOM CTA ─────────────────────────────────────── */
.abt-cta {
  position: relative;
  padding: 104px 48px;
  background:
    radial-gradient(circle at 100% 100%, rgba(255,44,85,0.18) 0%, transparent 50%),
    radial-gradient(circle at 0% 0%, rgba(255,44,85,0.08) 0%, transparent 45%),
    var(--bg);
  text-align: center;
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}

.abt-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10,10,10,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,10,10,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(circle at 50% 50%, rgba(0,0,0,0.4) 0%, transparent 65%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, rgba(0,0,0,0.4) 0%, transparent 65%);
}

.abt-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.abt-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  padding: 8px 14px;
  border: 1px solid rgba(255,44,85,0.35);
  background: rgba(255,44,85,0.08);
  margin-bottom: 26px;
}

.abt-cta-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: abt-pulse 2s ease-in-out infinite;
}

@keyframes abt-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}

.abt-cta-h2 {
  font-size: clamp(2.4rem, 4.6vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.02;
  color: var(--black);
  margin-bottom: 18px;
}

.abt-cta-h2 em {
  font-style: italic;
  color: var(--red);
}

.abt-cta-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 36px;
}

.abt-cta-actions {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.abt-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 38px;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 8px 24px rgba(255,44,85,0.25);
}

.abt-cta-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.22s;
}

.abt-cta-btn:hover {
  background: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.18);
}

.abt-cta-btn:hover svg { transform: translateX(4px); }

.abt-cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 32px;
  background: transparent;
  color: var(--black);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid var(--black);
  transition: background 0.18s, color 0.18s, transform 0.18s;
}

.abt-cta-btn-secondary:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .abt-pillars { grid-template-columns: 1fr; gap: 16px; }
  .abt-actions-grid { grid-template-columns: 1fr; }
  .abt-action-hero { min-height: 460px; }
  .abt-action-hero-media { padding: 36px 36px 0; }
  .abt-action-hero-body { padding: 28px 36px 36px; }
  .abt-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .abt-stat { padding: 28px 24px 28px 0; }
  .abt-stat:nth-child(2n) { border-right: none; padding-right: 0; }
  .abt-manifesto-inner { grid-template-columns: 1fr; gap: 24px; }
  .abt-manifesto-mark { font-size: 80px; }
}

@media (max-width: 720px) {
  .abt-hero { padding: 80px 24px 64px; }
  .abt-hero-watermark { display: none; }
  .abt-hero-meta { gap: 16px; }
  .abt-hero-meta-divider { display: none; }
  .abt-pillars-section { padding: 64px 24px; }
  .abt-pillars-header { margin-bottom: 36px; }
  .abt-actions { padding: 72px 24px; }
  .abt-actions-header { margin-bottom: 40px; }
  .abt-action-hero { min-height: 420px; }
  .abt-action-hero-media { padding: 28px 24px 0; }
  .abt-action-hero-body { padding: 24px 24px 28px; }
  .abt-action-hero-watermark { right: 18px; }
  .abt-action-compact { padding: 28px 22px 26px; }
  .abt-stats { padding: 64px 24px; }
  .abt-stats-grid { grid-template-columns: 1fr; }
  .abt-stat { border-right: none; padding: 24px 0; }
  .abt-stat:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,0.12); }
  .abt-manifesto { padding: 56px 24px; }
  .abt-cta { padding: 72px 24px; }
  .abt-cta-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .abt-cta-btn,
  .abt-cta-btn-secondary { justify-content: center; }
}
