/* ============================================================
   Total.kz /about-tech v2 — cinematic landing
   ============================================================ */

:root {
  --at2-bg: #ffffff;
  --at2-surface: #f7f7f8;
  --at2-surface-2: #eeeef1;
  --at2-text: #0a0a0f;
  --at2-text-soft: #4a4a55;
  --at2-text-mute: #737380;
  --at2-border: #e6e6eb;
  --at2-accent: #007A8C;
  --at2-accent-2: #00a3b8;
  --at2-accent-3: #6366f1;
  --at2-danger: #dc2626;
  --at2-warning: #f59e0b;
  --at2-success: #10b981;
  --at2-dark-bg: #07080d;
  --at2-dark-surface: #111219;
  --at2-dark-text: #f5f5f7;
  --at2-dark-text-soft: #a5a5b3;
  --at2-dark-border: #1f2130;
}

[data-theme="dark"] {
  --at2-bg: #07080d;
  --at2-surface: #111219;
  --at2-surface-2: #171826;
  --at2-text: #f5f5f7;
  --at2-text-soft: #b5b5c3;
  --at2-text-mute: #737380;
  --at2-border: #1f2130;
}

.at2-root {
  font-family: 'Onest', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--at2-text);
  background: var(--at2-bg);
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.at2-root * { box-sizing: border-box; }

.at2-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   HERO
   ============================================================ */
.at2-hero {
  position: relative;
  background: var(--at2-dark-bg);
  color: var(--at2-dark-text);
  overflow: hidden;
  padding: 120px 0 100px;
  isolation: isolate;
}

.at2-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.at2-hero__grid {
  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: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
}

.at2-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: at2-float 18s ease-in-out infinite;
}

.at2-hero__orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #007A8C 0%, transparent 70%);
  top: -120px; left: -80px;
}

.at2-hero__orb--2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #6366f1 0%, transparent 70%);
  bottom: -200px; right: -120px;
  animation-delay: -6s;
}

.at2-hero__orb--3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #00a3b8 0%, transparent 70%);
  top: 30%; left: 45%;
  animation-delay: -12s;
  opacity: 0.35;
}

@keyframes at2-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.05); }
  66% { transform: translate(-30px, 20px) scale(0.95); }
}

.at2-hero__inner {
  position: relative;
  z-index: 1;
}

.at2-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  font-size: 13px;
  color: var(--at2-dark-text-soft);
  backdrop-filter: blur(12px);
  margin-bottom: 28px;
}

.at2-hero__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 12px #10b981;
  animation: at2-pulse 2s ease-in-out infinite;
}

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

.at2-hero__title {
  font-size: clamp(44px, 7vw, 96px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
}

.at2-hero__line { display: block; }

.at2-hero__line--grad {
  background: linear-gradient(135deg, #00a3b8 0%, #6366f1 50%, #ec4899 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: at2-grad 8s ease infinite;
  background-size: 200% 200%;
}

@keyframes at2-grad {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.at2-hero__lede {
  max-width: 680px;
  font-size: clamp(17px, 1.3vw, 20px);
  color: var(--at2-dark-text-soft);
  margin: 0 0 48px;
}

.at2-hero__kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 0 40px;
}

.at2-kpi {
  padding: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.at2-kpi:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.2);
}

.at2-kpi__value {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  letter-spacing: -0.03em;
  white-space: nowrap;
  background: linear-gradient(135deg, #ffffff 0%, #a5a5b3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}

.at2-kpi__label {
  font-size: 13px;
  color: var(--at2-dark-text-soft);
}

.at2-hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* buttons */
.at2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.at2-btn--primary {
  background: linear-gradient(135deg, #007A8C 0%, #00a3b8 100%);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(0,122,140,0.6);
}

.at2-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px rgba(0,122,140,0.8);
}

.at2-btn--ghost {
  background: rgba(255,255,255,0.05);
  color: #fff;
  border-color: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
}

.at2-btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
}

.at2-btn--lg { padding: 16px 28px; font-size: 16px; }

/* ============================================================
   SECTIONS
   ============================================================ */
.at2-section {
  padding: 100px 0;
  background: var(--at2-bg);
  position: relative;
}

.at2-section--dark {
  background: var(--at2-dark-bg);
  color: var(--at2-dark-text);
}

.at2-section__head {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}

.at2-section__head--light * { color: var(--at2-dark-text); }

.at2-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: var(--at2-surface);
  color: var(--at2-accent);
  border: 1px solid var(--at2-border);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.at2-eyebrow--light {
  background: rgba(255,255,255,0.05);
  color: #00d4c8;
  border-color: rgba(255,255,255,0.12);
}

.at2-h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  color: var(--at2-text);
}
.at2-h2--light { color: var(--at2-dark-text); }

.at2-h3 {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--at2-text);
}
.at2-h3--light { color: var(--at2-dark-text); }

.at2-lede {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--at2-text-mute);
  margin: 0;
}
.at2-lede--light { color: var(--at2-dark-text-soft); }

/* ============================================================
   METRICS + CHARTS
   ============================================================ */
.at2-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 80px;
}

.at2-metric {
  padding: 24px;
  background: var(--at2-surface);
  border: 1px solid var(--at2-border);
  border-radius: 16px;
  transition: all 0.2s;
}

.at2-metric:hover {
  border-color: var(--at2-accent);
  transform: translateY(-2px);
}

.at2-metric__v {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--at2-text);
  white-space: nowrap;
  margin-bottom: 6px;
}

.at2-metric__l {
  font-size: 13px;
  color: var(--at2-text-mute);
}

.at2-charts {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}

.at2-chart {
  padding: 28px;
  background: var(--at2-surface);
  border: 1px solid var(--at2-border);
  border-radius: 20px;
}

.at2-chart__head { margin-bottom: 24px; }
.at2-chart__sub {
  font-size: 14px;
  color: var(--at2-text-mute);
  margin: 0;
}

/* country bars */
.at2-bars { display: flex; flex-direction: column; gap: 14px; }

.at2-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 12px;
  row-gap: 6px;
}

.at2-bar__head {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.at2-bar__name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--at2-text);
}

.at2-bar__flag {
  display: inline-block;
  width: 20px;
  height: 14px;
  border-radius: 3px;
  background: var(--at2-accent);
}
.at2-bar__flag--kz { background: linear-gradient(to bottom, #00AFCA 50%, #FFD200 50%); }
.at2-bar__flag--az { background: linear-gradient(to bottom, #3F9C35 33%, #ED2939 33% 66%, #00B5E2 66%); }
.at2-bar__flag--kg { background: #E8112D; }
.at2-bar__flag--uz { background: linear-gradient(to bottom, #0099B5 33%, #fff 33% 66%, #1EB53A 66%); }
.at2-bar__flag--tj { background: linear-gradient(to bottom, #CC0000 33%, #fff 33% 66%, #006600 66%); }
.at2-bar__flag--mn { background: linear-gradient(to right, #C4272F 20%, #015197 20% 80%, #C4272F 80%); }

.at2-bar__val {
  font-variant-numeric: tabular-nums;
  color: var(--at2-text-soft);
  font-size: 13px;
}

.at2-bar__track {
  grid-column: 1;
  height: 8px;
  background: var(--at2-surface-2);
  border-radius: 999px;
  overflow: hidden;
}

.at2-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--at2-accent) 0%, var(--at2-accent-2) 100%);
  border-radius: 999px;
  transform-origin: left;
  animation: at2-bar-in 1s cubic-bezier(.2,.8,.2,1) both;
}

@keyframes at2-bar-in {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.at2-bar__pct {
  grid-column: 2;
  font-size: 12px;
  color: var(--at2-text-mute);
  font-variant-numeric: tabular-nums;
  min-width: 44px;
  text-align: right;
}

/* AI rings */
.at2-ai-rings {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.at2-ring {
  position: relative;
  aspect-ratio: 1;
  max-width: 120px;
  margin: 0 auto;
}

.at2-ring__svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.at2-ring__bg {
  fill: none;
  stroke: var(--at2-surface-2);
  stroke-width: 8;
}

.at2-ring__fg {
  fill: none;
  stroke: url(#at2-ring-grad);
  stroke: var(--at2-accent);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 314;
  stroke-dashoffset: calc(314 - (314 * var(--pct)) / 100);
  animation: at2-ring-in 1.4s cubic-bezier(.2,.8,.2,1) both;
}

@keyframes at2-ring-in {
  from { stroke-dashoffset: 314; }
}

.at2-ring__center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.at2-ring__v {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--at2-text);
}

.at2-ring__l {
  font-size: 11px;
  color: var(--at2-text-mute);
}

.at2-ai-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: var(--at2-text-soft);
}

.at2-ai-list li b { color: var(--at2-text); }

/* tag cloud */
.at2-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  align-items: baseline;
}

.at2-tag {
  font-weight: 600;
  color: var(--at2-accent);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* ============================================================
   ARCHITECTURE
   ============================================================ */
.at2-arch {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 8px;
  margin: 40px 0;
}

.at2-arch__zone {
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.at2-arch__zone::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, var(--zone-c) 0%, transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.at2-arch__zone--ingest   { --zone-c: #00a3b8; }
.at2-arch__zone--core     { --zone-c: #6366f1; }
.at2-arch__zone--ai       { --zone-c: #ec4899; }
.at2-arch__zone--storage  { --zone-c: #f59e0b; }
.at2-arch__zone--delivery { --zone-c: #10b981; }

.at2-arch__zone-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
}

.at2-arch__num {
  width: 26px; height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--zone-c);
  color: #000;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.at2-arch__name { color: #fff; }

.at2-arch__nodes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.at2-arch__node {
  padding: 10px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  transition: all 0.2s;
}

.at2-arch__node:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--zone-c);
  transform: translateX(2px);
}

.at2-arch__node-title {
  font-weight: 600;
  font-size: 13px;
  color: #fff;
  margin-bottom: 2px;
}

.at2-arch__node-sub {
  font-size: 11px;
  color: var(--at2-dark-text-soft);
}

.at2-arch__arrow {
  font-size: 24px;
  color: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
}

.at2-arch__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 32px;
}

.at2-arch__pill {
  padding: 10px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  font-size: 13px;
  color: var(--at2-dark-text-soft);
}
.at2-arch__pill b { color: #fff; }

/* ============================================================
   ASK section (real AI example)
   ============================================================ */
.at2-ask {
  max-width: 900px;
  margin: 0 auto;
  padding: 36px;
  background: var(--at2-surface);
  border: 1px solid var(--at2-border);
  border-radius: 24px;
}

.at2-ask__q {
  padding: 20px;
  background: linear-gradient(135deg, rgba(0,122,140,0.08) 0%, rgba(99,102,241,0.08) 100%);
  border-left: 3px solid var(--at2-accent);
  border-radius: 12px;
  margin-bottom: 24px;
}

.at2-ask__q-label,
.at2-ask__a-label,
.at2-ask__sources-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--at2-accent);
  margin-bottom: 8px;
}

.at2-ask__q-text {
  font-size: 20px;
  font-weight: 600;
  color: var(--at2-text);
  letter-spacing: -0.01em;
}

.at2-ask__flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.at2-ask__step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  background: var(--at2-bg);
  border: 1px solid var(--at2-border);
  border-radius: 10px;
  font-size: 13px;
  color: var(--at2-text-soft);
}
.at2-ask__step b { color: var(--at2-text); }

.at2-ask__step-num {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--at2-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

.at2-ask__a {
  padding: 20px;
  background: var(--at2-bg);
  border: 1px solid var(--at2-border);
  border-radius: 12px;
  margin-bottom: 20px;
}

.at2-ask__a-text {
  font-size: 16px;
  color: var(--at2-text);
  line-height: 1.7;
}

.at2-ask__sources { margin-bottom: 20px; }

.at2-ask__sources-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.at2-ask__src {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: var(--at2-bg);
  border: 1px solid var(--at2-border);
  border-radius: 10px;
  transition: all 0.2s;
}

.at2-ask__src:hover {
  border-color: var(--at2-accent);
  transform: translateX(2px);
}

.at2-ask__src-n {
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: var(--at2-accent);
  color: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.at2-ask__src-title {
  font-weight: 600;
  color: var(--at2-text);
  margin-bottom: 4px;
  font-size: 14px;
}

.at2-ask__src-meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--at2-text-mute);
}

.at2-ask__src-dom {
  color: var(--at2-accent);
  font-weight: 500;
}

.at2-ask__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--at2-border);
  margin-bottom: 20px;
}

.at2-ask__meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 14px;
  background: var(--at2-bg);
  border: 1px solid var(--at2-border);
  border-radius: 8px;
  min-width: 100px;
}

.at2-ask__meta-item span {
  font-size: 11px;
  color: var(--at2-text-mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.at2-ask__meta-item b {
  font-size: 14px;
  color: var(--at2-text);
  font-variant-numeric: tabular-nums;
}

.at2-ask__cta {
  text-align: center;
  padding-top: 8px;
}

/* ============================================================
   ECONOMICS
   ============================================================ */
.at2-econ__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}

.at2-econ-card {
  padding: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  transition: all 0.2s;
}

.at2-econ-card--accent {
  background: linear-gradient(135deg, rgba(0,163,184,0.2) 0%, rgba(99,102,241,0.2) 100%);
  border-color: rgba(0,163,184,0.4);
}

.at2-econ-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.3);
}

.at2-econ-card__label {
  font-size: 12px;
  color: var(--at2-dark-text-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.at2-econ-card__value {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 6px;
  white-space: nowrap;
}

.at2-econ-card__sub {
  font-size: 13px;
  color: var(--at2-dark-text-soft);
}

.at2-econ__compare {
  padding: 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
}

.at2-econ__row {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 20px;
  margin: 18px 0;
}

.at2-econ__who {
  font-weight: 600;
  color: var(--at2-dark-text);
}

.at2-econ__bar {
  position: relative;
  height: 36px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  overflow: hidden;
}

.at2-econ__bar-fill {
  height: 100%;
  border-radius: 8px;
  animation: at2-bar-in 1.2s cubic-bezier(.2,.8,.2,1) both;
  transform-origin: left;
}

.at2-econ__bar--trad .at2-econ__bar-fill { background: linear-gradient(90deg, #dc2626, #f59e0b); }
.at2-econ__bar--mid  .at2-econ__bar-fill { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.at2-econ__bar--ours .at2-econ__bar-fill { background: linear-gradient(90deg, #00a3b8, #10b981); }

.at2-econ__bar-val {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.at2-econ__note {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: var(--at2-dark-text-soft);
  font-size: 15px;
  line-height: 1.6;
}
.at2-econ__note b { color: #fff; }

/* ============================================================
   COMPETITORS TABLE
   ============================================================ */
.at2-vs__wrap {
  max-width: 1000px;
  margin: 0 auto;
  overflow-x: auto;
  border-radius: 20px;
  border: 1px solid var(--at2-border);
  background: var(--at2-surface);
}

.at2-vs {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.at2-vs th,
.at2-vs td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--at2-border);
}

.at2-vs thead th {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--at2-text-mute);
  background: var(--at2-surface-2);
}

.at2-vs tbody tr:hover { background: var(--at2-surface-2); }

.at2-vs__us {
  background: linear-gradient(135deg, rgba(0,122,140,0.08), rgba(99,102,241,0.08));
  border-left: 2px solid var(--at2-accent);
  color: var(--at2-text);
  font-weight: 600;
}

.at2-vs thead .at2-vs__us {
  background: linear-gradient(135deg, rgba(0,122,140,0.15), rgba(99,102,241,0.15));
  color: var(--at2-accent);
}

.at2-vs__y { color: var(--at2-success); font-weight: 700; font-size: 16px; }
.at2-vs__n { color: var(--at2-text-mute); }
.at2-vs__partial { color: var(--at2-warning); font-size: 13px; }

/* ============================================================
   STACK
   ============================================================ */
.at2-stack {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.at2-stack__group {
  padding: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
}

.at2-stack__group-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--at2-dark-text-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.at2-stack__items {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.at2-stack__item {
  padding: 6px 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  font-size: 13px;
  color: var(--at2-dark-text);
}

/* ============================================================
   TIMELINE
   ============================================================ */
.at2-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 780px;
  margin-inline: auto;
  position: relative;
}

.at2-timeline::before {
  content: '';
  position: absolute;
  left: 100px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--at2-border) 0%, var(--at2-accent) 50%, var(--at2-accent-3) 100%);
}

.at2-tl {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: flex-start;
  gap: 28px;
  padding: 20px 0;
  position: relative;
}

.at2-tl::before {
  content: '';
  position: absolute;
  left: 92px;
  top: 26px;
  width: 18px; height: 18px;
  background: var(--at2-bg);
  border: 2px solid var(--at2-accent);
  border-radius: 50%;
  z-index: 1;
}

.at2-tl--latest::before {
  background: var(--at2-accent);
  box-shadow: 0 0 0 4px rgba(0,122,140,0.2);
  animation: at2-pulse 2s ease-in-out infinite;
}

.at2-tl__v {
  text-align: right;
  font-weight: 700;
  color: var(--at2-accent);
  font-variant-numeric: tabular-nums;
  padding-top: 18px;
}

.at2-tl__b {
  padding: 18px 20px;
  background: var(--at2-surface);
  border: 1px solid var(--at2-border);
  border-radius: 12px;
}

.at2-tl__b b {
  display: block;
  color: var(--at2-text);
  margin-bottom: 4px;
  font-size: 15px;
}

.at2-tl__b span {
  font-size: 14px;
  color: var(--at2-text-mute);
}

/* ============================================================
   PITCH
   ============================================================ */
.at2-pitch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto 48px;
}

.at2-pitch__col {
  padding: 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
}

.at2-pitch__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.at2-pitch__col li {
  padding: 10px 0 10px 26px;
  position: relative;
  color: var(--at2-dark-text-soft);
  font-size: 15px;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.at2-pitch__col li:last-child { border-bottom: none; }

.at2-pitch__col li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--at2-accent-2);
  font-weight: 700;
}

.at2-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .at2-charts { grid-template-columns: 1fr 1fr; }
  .at2-stack  { grid-template-columns: repeat(3, 1fr); }
  .at2-arch {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .at2-arch__arrow {
    transform: rotate(90deg);
    padding: 4px 0;
  }
}

@media (max-width: 840px) {
  .at2-hero { padding: 80px 0 70px; }
  .at2-hero__kpis { grid-template-columns: repeat(2, 1fr); }
  .at2-metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .at2-charts { grid-template-columns: 1fr; }
  .at2-ask__flow { grid-template-columns: 1fr 1fr; }
  .at2-econ__cards { grid-template-columns: repeat(2, 1fr); }
  .at2-econ__row { grid-template-columns: 1fr; gap: 8px; }
  .at2-econ__who { font-size: 14px; }
  .at2-stack { grid-template-columns: repeat(2, 1fr); }
  .at2-pitch { grid-template-columns: 1fr; }
  .at2-section { padding: 72px 0; }
  .at2-tl__v { font-size: 13px; padding-top: 20px; }
  .at2-timeline::before { left: 70px; }
  .at2-tl::before { left: 62px; }
  .at2-tl { grid-template-columns: 70px 1fr; gap: 20px; }
  .at2-ask { padding: 20px; }
  .at2-ask__q-text { font-size: 17px; }
}

@media (max-width: 560px) {
  .at2-hero__title { font-size: clamp(34px, 9vw, 56px); }
  .at2-ask__flow { grid-template-columns: 1fr; }
  .at2-econ__cards { grid-template-columns: 1fr; }
  .at2-metrics-grid { grid-template-columns: 1fr 1fr; }
  .at2-metric { padding: 16px; }
  .at2-metric__v { font-size: 20px; }
  .at2-stack { grid-template-columns: 1fr; }
  .at2-vs { font-size: 12px; }
  .at2-vs th, .at2-vs td { padding: 10px 8px; }
}

/* ============================================================
   DARK THEME overrides for light surfaces when site is dark
   ============================================================ */
[data-theme="dark"] .at2-root {
  background: var(--at2-dark-bg);
  color: var(--at2-dark-text);
}
[data-theme="dark"] .at2-section { background: var(--at2-dark-bg); }
[data-theme="dark"] .at2-h2 { color: var(--at2-dark-text); }
[data-theme="dark"] .at2-metric,
[data-theme="dark"] .at2-chart,
[data-theme="dark"] .at2-ask,
[data-theme="dark"] .at2-vs__wrap,
[data-theme="dark"] .at2-tl__b {
  background: var(--at2-dark-surface);
  border-color: var(--at2-dark-border);
}
[data-theme="dark"] .at2-metric__v,
[data-theme="dark"] .at2-ask__q-text,
[data-theme="dark"] .at2-ask__a-text,
[data-theme="dark"] .at2-tl__b b,
[data-theme="dark"] .at2-ring__v,
[data-theme="dark"] .at2-ask__src-title,
[data-theme="dark"] .at2-ask__meta-item b {
  color: var(--at2-dark-text);
}
[data-theme="dark"] .at2-ask__step,
[data-theme="dark"] .at2-ask__a,
[data-theme="dark"] .at2-ask__src,
[data-theme="dark"] .at2-ask__meta-item {
  background: var(--at2-dark-bg);
  border-color: var(--at2-dark-border);
}
[data-theme="dark"] .at2-bar__track { background: var(--at2-dark-border); }
[data-theme="dark"] .at2-eyebrow {
  background: var(--at2-dark-surface);
  border-color: var(--at2-dark-border);
  color: var(--at2-accent-2);
}
[data-theme="dark"] .at2-vs thead th { background: #1a1b28; color: var(--at2-dark-text-soft); }
[data-theme="dark"] .at2-vs tbody tr:hover { background: #181929; }

/* ═══════════════════════════════════════════════════════════════════
   v3 additions — honest numbers, growth chart, graph, screenshots, 3-day timeline
   ═══════════════════════════════════════════════════════════════════ */

/* ── ENRICHMENT bars (replaces AI rings) ── */
.at3-enrich { display: flex; flex-direction: column; gap: 18px; margin-top: 4px; }
.at3-enrich__row { display: flex; flex-direction: column; gap: 5px; }
.at3-enrich__head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.at3-enrich__name { font-size: 0.95rem; font-weight: 600; color: #1f2937; line-height: 1.3; }
.at3-enrich__val { display: inline-flex; gap: 8px; align-items: baseline; white-space: nowrap; }
.at3-enrich__val b { font-variant-numeric: tabular-nums; font-weight: 700; color: #0f172a; font-size: 1rem; }
.at3-enrich__pct { font-size: 0.82rem; color: #6b7280; font-weight: 500; }
.at3-enrich__track { height: 9px; background: #eef2ff; border-radius: 6px; overflow: hidden; }
.at3-enrich__fill { height: 100%; border-radius: 6px; transition: width .6s ease; }
.at3-enrich__fill--ent  { background: linear-gradient(90deg, #6366f1, #8b5cf6); }
.at3-enrich__fill--nlp  { background: linear-gradient(90deg, #10b981, #34d399); }
.at3-enrich__fill--tag  { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.at3-enrich__fill--enr  { background: linear-gradient(90deg, #ec4899, #f472b6); }
.at3-enrich__fill--bert { background: linear-gradient(90deg, #0ea5e9, #38bdf8); }
.at3-enrich__fill--ai   { background: linear-gradient(90deg, #ef4444, #fb7185); }
.at3-enrich__note { font-size: 0.78rem; color: #6b7280; }
.at3-enrich__summary {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid #e5e7eb;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}
.at3-enrich__summary-item { display: flex; flex-direction: column; gap: 2px; }
.at3-enrich__summary-v { font-size: 1.5rem; font-weight: 700; color: #0f172a; line-height: 1.1; font-variant-numeric: tabular-nums; }
.at3-enrich__summary-l { font-size: 0.82rem; color: #374151; font-weight: 500; }
.at3-enrich__summary-sub { font-size: 0.72rem; color: #6b7280; }

/* ── GROWTH area chart ── */
.at3-growth { display: flex; flex-direction: column; gap: 18px; }
.at3-growth__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  padding: 16px 18px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
}
.at3-growth__meta-item { display: flex; flex-direction: column; gap: 2px; }
.at3-growth__meta-item b { font-size: 1.4rem; color: #0f172a; font-weight: 700; line-height: 1.1; font-variant-numeric: tabular-nums; }
.at3-growth__meta-item span { font-size: 0.78rem; color: #6b7280; }
.at3-growth__chart {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 18px 12px 6px;
  overflow: hidden;
}
.at3-growth__svg { width: 100%; height: auto; display: block; }
.at3-growth__foot { text-align: right; padding-right: 6px; }
.at3-disclaimer {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.74rem;
  color: #6b7280;
  font-weight: 500;
  background: #f3f4f6;
  padding: 3px 9px;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
}

/* ── ECONOMICS v3 ── */
.at3-econ { display: flex; flex-direction: column; gap: 28px; }
.at3-econ__block {
  background: var(--at2-dark-surface, #1a1b28);
  border: 1px solid var(--at2-dark-border, #2a2b3d);
  border-radius: 16px;
  padding: 24px;
}
.at3-econ__block h3 { margin: 0 0 14px; font-size: 1.15rem; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.at3-econ__block .at3-disclaimer {
  background: rgba(255,255,255,0.06);
  color: #cbd5e1;
  border-color: rgba(255,255,255,0.12);
}
.at3-econ__facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
}
.at3-fact {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.at3-fact__v {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f1f5f9;
  line-height: 1.15;
  font-variant-numeric: tabular-nums;
}
.at3-fact__l { font-size: 0.8rem; color: #94a3b8; }
.at3-fact--accent {
  background: linear-gradient(135deg, rgba(99,102,241,0.18), rgba(139,92,246,0.1));
  border-color: rgba(139,92,246,0.35);
}
.at3-fact--accent .at3-fact__v { color: #c4b5fd; }
.at3-econ__volumes {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.at3-vol {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: #cbd5e1;
}
.at3-vol__name { color: #cbd5e1; font-weight: 500; }
.at3-vol__bar {
  height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
  display: block;
}
.at3-vol__fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  border-radius: 4px;
}
.at3-vol__v { color: #f1f5f9; font-variant-numeric: tabular-nums; font-weight: 600; }
.at3-econ__honest {
  margin: 14px 0 0;
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border-left: 3px solid #8b5cf6;
  border-radius: 0 8px 8px 0;
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.55;
}
.at3-econ__honest b { color: #e9d5ff; }
.at3-econ__ask {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}
.at3-ask-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.at3-ask-item span { font-size: 0.72rem; color: #94a3b8; text-transform: uppercase; letter-spacing: .04em; }
.at3-ask-item b { color: #f1f5f9; font-weight: 600; font-variant-numeric: tabular-nums; }
.at3-ask-item--accent {
  background: linear-gradient(135deg, rgba(34,197,94,0.18), rgba(16,185,129,0.08));
  border-color: rgba(34,197,94,0.35);
}
.at3-ask-item--accent b { color: #86efac; }

/* ── ENTITY GRAPH ── */
.at3-graph { display: flex; flex-direction: column; gap: 28px; }
.at3-graph__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}
.at3-graph-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.at3-graph-card__icon { font-size: 1.8rem; color: #c4b5fd; line-height: 1; margin-bottom: 4px; }
.at3-graph-card__v { font-size: 2rem; font-weight: 700; color: #f1f5f9; font-variant-numeric: tabular-nums; line-height: 1.1; }
.at3-graph-card__l { font-size: 0.95rem; color: #cbd5e1; font-weight: 500; }
.at3-graph-card__sub { font-size: 0.78rem; color: #94a3b8; margin-top: 4px; line-height: 1.4; }
.at3-graph-card__sub code {
  background: rgba(139,92,246,0.14);
  color: #ddd6fe;
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.78rem;
}
.at3-graph-card--accent {
  background: linear-gradient(135deg, rgba(99,102,241,0.22), rgba(139,92,246,0.1));
  border-color: rgba(139,92,246,0.4);
}
.at3-graph__tables h3 { margin: 0 0 14px; font-size: 1.1rem; }
.at3-graph__table-list { display: flex; flex-direction: column; gap: 8px; }
.at3-jt {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  font-size: 0.88rem;
}
.at3-jt code {
  background: rgba(139,92,246,0.15);
  color: #ddd6fe;
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: 500;
}
.at3-jt span { color: #cbd5e1; }
.at3-jt b { color: #f1f5f9; font-variant-numeric: tabular-nums; font-weight: 600; text-align: right; }
.at3-graph__why h3 { margin: 0 0 12px; font-size: 1.1rem; }
.at3-graph__why ul { margin: 0; padding-left: 20px; color: #cbd5e1; line-height: 1.8; font-size: 0.92rem; }
.at3-graph__why ul b { color: #f1f5f9; }

/* ── SCREENSHOTS ── */
.at3-shots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
}
.at3-shot {
  margin: 0;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(15,23,42,0.06);
  display: flex;
  flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
}
.at3-shot:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(15,23,42,0.1); }
.at3-shot img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: top center;
  background: #f1f5f9;
  display: block;
}
.at3-shot figcaption {
  padding: 12px 16px 16px;
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.5;
}
.at3-shot figcaption b { color: #0f172a; display: block; margin-bottom: 3px; font-size: 0.94rem; }

/* ── TIMELINE v3 (3 days) ── */
.at3-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.at3-timeline::before {
  content: "";
  position: absolute;
  left: 44px;
  top: 14px;
  bottom: 14px;
  width: 2px;
  background: linear-gradient(180deg, #c7d2fe, #e9d5ff);
  border-radius: 2px;
}
.at3-tl {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  align-items: flex-start;
  position: relative;
}
.at3-tl__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 2px solid #c7d2fe;
  border-radius: 12px;
  padding: 10px 8px;
  min-height: 78px;
  z-index: 1;
}
.at3-tl--latest .at3-tl__date {
  border-color: #8b5cf6;
  background: linear-gradient(180deg, #ede9fe, #ffffff);
}
.at3-tl__day { font-size: 2rem; font-weight: 700; color: #4f46e5; line-height: 1; font-variant-numeric: tabular-nums; }
.at3-tl--latest .at3-tl__day { color: #7c3aed; }
.at3-tl__mon { font-size: 0.78rem; color: #6b7280; margin-top: 2px; text-transform: lowercase; }
.at3-tl__body {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 1px 3px rgba(15,23,42,0.04);
}
.at3-tl__title { font-weight: 700; font-size: 1.02rem; color: #0f172a; margin-bottom: 6px; }
.at3-tl__body p { margin: 0 0 10px; font-size: 0.9rem; line-height: 1.6; color: #374151; }
.at3-tl__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.at3-tl__tags span {
  font-size: 0.72rem;
  color: #6366f1;
  background: #eef2ff;
  padding: 3px 9px;
  border-radius: 99px;
  font-weight: 500;
}
.at3-tl--latest .at3-tl__tags span { background: #f3e8ff; color: #7c3aed; }
.at3-timeline__disclaimer {
  margin: 22px 0 0;
  padding: 14px 18px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 10px;
  font-size: 0.86rem;
  color: #78350f;
  line-height: 1.6;
}
.at3-timeline__disclaimer b { color: #451a03; }

/* Dark-mode adjustments for v3 */
[data-theme="dark"] .at3-enrich__name { color: var(--at2-dark-text); }
[data-theme="dark"] .at3-enrich__val b { color: var(--at2-dark-text); }
[data-theme="dark"] .at3-enrich__pct { color: var(--at2-dark-text-soft); }
[data-theme="dark"] .at3-enrich__track { background: var(--at2-dark-border); }
[data-theme="dark"] .at3-enrich__note { color: var(--at2-dark-text-soft); }
[data-theme="dark"] .at3-enrich__summary { border-top-color: var(--at2-dark-border); }
[data-theme="dark"] .at3-enrich__summary-v { color: var(--at2-dark-text); }
[data-theme="dark"] .at3-enrich__summary-l { color: var(--at2-dark-text-soft); }
[data-theme="dark"] .at3-enrich__summary-sub { color: var(--at2-dark-text-soft); }
[data-theme="dark"] .at3-growth__meta {
  background: var(--at2-dark-surface);
  border-color: var(--at2-dark-border);
}
[data-theme="dark"] .at3-growth__meta-item b { color: var(--at2-dark-text); }
[data-theme="dark"] .at3-growth__chart {
  background: var(--at2-dark-surface);
  border-color: var(--at2-dark-border);
}
[data-theme="dark"] .at3-disclaimer {
  background: var(--at2-dark-surface);
  color: var(--at2-dark-text-soft);
  border-color: var(--at2-dark-border);
}
[data-theme="dark"] .at3-shot {
  background: var(--at2-dark-surface);
  border-color: var(--at2-dark-border);
}
[data-theme="dark"] .at3-shot figcaption { color: var(--at2-dark-text-soft); }
[data-theme="dark"] .at3-shot figcaption b { color: var(--at2-dark-text); }
[data-theme="dark"] .at3-tl__body {
  background: var(--at2-dark-surface);
  border-color: var(--at2-dark-border);
}
[data-theme="dark"] .at3-tl__title { color: var(--at2-dark-text); }
[data-theme="dark"] .at3-tl__body p { color: var(--at2-dark-text-soft); }
[data-theme="dark"] .at3-tl__date {
  background: var(--at2-dark-bg);
  border-color: var(--at2-accent-2);
}
[data-theme="dark"] .at3-timeline__disclaimer {
  background: rgba(251,191,36,0.08);
  border-color: rgba(251,191,36,0.22);
  color: #fcd34d;
}
[data-theme="dark"] .at3-timeline__disclaimer b { color: #fef3c7; }

/* Mobile responsive */
@media (max-width: 720px) {
  .at3-jt { grid-template-columns: 1fr; gap: 4px; }
  .at3-jt b { text-align: left; }
  .at3-vol { grid-template-columns: 120px 1fr auto; font-size: 0.78rem; }
  .at3-timeline::before { left: 30px; }
  .at3-tl { grid-template-columns: 64px 1fr; gap: 12px; }
  .at3-tl__date { min-height: 62px; padding: 6px 4px; }
  .at3-tl__day { font-size: 1.5rem; }
  .at3-tl__mon { font-size: 0.7rem; }
  .at3-growth__meta { grid-template-columns: repeat(2, 1fr); }
  .at3-shot img { height: 180px; }
}
