/* =========================================================
   INDEX (home) — specific styles
   ========================================================= */

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  padding: 48px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 85% 20%, rgba(139,92,246,0.18), transparent 60%),
    radial-gradient(900px 600px at 10% 90%, rgba(198,255,61,0.12), transparent 60%),
    linear-gradient(180deg, #080a08 0%, #050705 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  opacity: 0.5;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 30%, transparent 80%);
}
.hero-slash-band {
  position: absolute;
  right: -60px; top: 20%;
  width: 520px; height: 140%;
  background-image: repeating-linear-gradient(-68deg, rgba(198,255,61,0.12) 0 2px, transparent 2px 14px);
  transform: rotate(-4deg);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: auto auto auto auto;
  gap: 16px;
  padding-bottom: 16px;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 12px;
}
.hero-coords {
  font-size: 11px;
  color: var(--ink-600);
  letter-spacing: 0.1em;
}

.hero-title {
  font-size: clamp(56px, 10vw, 168px);
  margin: 0;
  letter-spacing: -0.04em;
}
.ninja-word {
  display: inline-block;
  padding: 0 14px;
  background: var(--lime-500);
  color: #050705;
  transform: skewX(-6deg);
  margin: 0 6px;
  clip-path: polygon(0 10%, 100% 0, 100% 90%, 0% 100%);
}
.bleed {
  display: inline-block;
  position: relative;
}
.slash-big {
  font-size: 0.9em;
  color: var(--lime-500);
  margin-left: 6px;
  text-shadow: 0 0 18px rgba(198,255,61,0.7);
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1.2fr auto;
  align-items: end;
  gap: 48px;
}
.hero-lede {
  max-width: 560px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-800);
  margin: 0;
}
.lede-tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--lime-500);
  padding: 5px 10px;
  border: 1px solid rgba(198,255,61,0.3);
  border-radius: 4px;
}
.hero-ctas { display: flex; gap: 12px; }

/* Floating masks */
.hero-masks {
  position: absolute;
  right: 5vw;
  top: 14%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 1;
  pointer-events: none;
}
.mask {
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 6s ease-in-out infinite;
}
.mask:nth-child(2) { animation-delay: 0.8s; }
.mask:nth-child(3) { animation-delay: 1.6s; }
.mask:nth-child(4) { animation-delay: 2.4s; }
.mask { width: 120px; }
.mask svg { width: 80px; height: 40px; filter: drop-shadow(0 0 8px currentColor); flex: none; }
.mask-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-700);
}
.mask-don  { color: var(--don-purple); }
.mask-leo  { color: var(--leo-blue); }
.mask-raph { color: var(--raph-red); }
.mask-mike { color: var(--mike-orange); }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* Ticker */
.hero-ticker {
  margin-top: 40px;
  border-top: 1px solid var(--ink-400);
  border-bottom: 1px solid var(--ink-400);
  overflow: hidden;
  padding: 12px 0;
  background: rgba(5,7,5,0.4);
  transform: rotate(-0.6deg);
}
.ticker-track {
  display: inline-flex;
  gap: 40px;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-800);
  animation: tick 40s linear infinite;
}
.ticker-track b { color: var(--lime-500); }
.ticker-track .slash { color: var(--lime-500); }
@keyframes tick {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 900px) {
  .hero-masks { position: static; flex-direction: row; flex-wrap: wrap; margin-top: 24px; }
  .hero-bottom { grid-template-columns: 1fr; }
}

/* ---------- TRUSTED ---------- */
.trusted {
  padding: 40px 0;
  border-bottom: 1px solid var(--ink-300);
  background: var(--ink-000);
}
.trusted-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trusted-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-600);
  min-width: 220px;
}
.trusted-logos {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--ink-700);
  flex: 1;
}
.trusted-logos span { opacity: 0.8; transition: color 0.2s; }
.trusted-logos span:hover { color: var(--lime-500); opacity: 1; }

/* ---------- SECTION HEAD ---------- */
.section-head { margin-bottom: 64px; max-width: 780px; }
.section-head.split { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; max-width: none; margin-bottom: 48px; }
.section-title {
  font-size: clamp(40px, 6vw, 88px);
  margin: 14px 0 16px;
  line-height: 0.96;
}
.section-sub {
  font-size: 17px;
  color: var(--ink-700);
  max-width: 580px;
  margin: 0;
}

/* ---------- TEAM / AGENTS ---------- */
.team { background: linear-gradient(180deg, #050705 0%, #080a08 100%); position: relative; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.agent {
  --c: var(--lime-500);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  background: var(--ink-100);
  border: 1px solid var(--ink-400);
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  min-height: 380px;
  transition: transform 0.25s ease, background 0.25s ease;
}
.agent::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(500px 300px at 85% 0%, var(--c), transparent 60%);
  opacity: 0.08;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.agent::after {
  content: "";
  position: absolute;
  right: -40px; bottom: -40px;
  width: 200px; height: 200px;
  background-image: repeating-linear-gradient(-68deg, var(--c) 0 2px, transparent 2px 12px);
  opacity: 0.08;
  transition: opacity 0.3s ease;
}
.agent:hover { transform: translate(-3px, -3px); }
.agent:hover::before { opacity: 0.18; }
.agent:hover::after  { opacity: 0.18; }

.agent-don  { --c: var(--don-purple); }
.agent-leo  { --c: var(--leo-blue); }
.agent-raph { --c: var(--raph-red); }
.agent-mike { --c: var(--mike-orange); }

.agent-body { position: relative; z-index: 1; }
.agent-num {
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--ink-600);
  margin-bottom: 20px;
}
.agent-num .slash { color: var(--c); }
.agent-mask {
  color: var(--c);
  margin-bottom: 18px;
  filter: drop-shadow(0 0 12px currentColor);
}
.agent-mask svg { width: 120px; height: 60px; }
.agent-name {
  font-size: 48px;
  line-height: 0.95;
  margin-bottom: 8px;
  color: var(--ink-900);
}
.agent-role {
  color: var(--c);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.agent-list {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.agent-list li {
  padding-left: 20px;
  position: relative;
  font-size: 14px;
  color: var(--ink-800);
}
.agent-list li::before {
  content: "//";
  position: absolute; left: 0;
  color: var(--c);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  top: 4px;
}
.agent-weapon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--ink-400);
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-700);
}
.agent-weapon .w-icon { color: var(--c); font-size: 14px; }

.agent-cta {
  position: relative;
  z-index: 1;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--ink-400);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-700);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.agent-cta .arrow { color: var(--c); font-size: 18px; transition: transform 0.25s; }
.agent:hover .agent-cta { color: var(--ink-900); }
.agent:hover .agent-cta .arrow { transform: translateX(6px); }

@media (max-width: 760px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* ---------- PHILOSOPHY ---------- */
.philosophy {
  background: #050705;
  position: relative;
  overflow: hidden;
}
.philosophy::before {
  content: "";
  position: absolute;
  left: -80px; top: 50%;
  transform: translateY(-50%) rotate(-8deg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 620px;
  color: rgba(198,255,61,0.025);
  letter-spacing: -0.08em;
  line-height: 0.8;
  pointer-events: none;
}
.phil-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  position: relative;
}
.phil-left .eyebrow { margin-bottom: 20px; }
.phil-quote {
  font-size: clamp(32px, 4.4vw, 58px);
  line-height: 1.02;
  margin: 0;
  color: var(--ink-700);
  font-weight: 500;
}
.phil-quote-2 {
  color: var(--ink-900);
  margin-top: 10px;
}
.phil-quote .lime { color: var(--lime-500); }
.phil-sig {
  margin-top: 24px;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-600);
}

.phil-card {
  background: var(--ink-100);
  border: 1px solid var(--ink-400);
  padding: 28px;
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}
.phil-card-title {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime-500);
  margin-bottom: 14px;
}
.phil-card p { margin: 0 0 12px; color: var(--ink-800); font-size: 15px; }
.phil-card p:last-child { margin-bottom: 0; }

.phil-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.stat {
  background: var(--ink-000);
  border: 1px solid var(--ink-400);
  padding: 22px 18px;
  text-align: left;
}
.stat-num {
  font-size: 44px;
  line-height: 1;
  color: var(--lime-500);
  margin-bottom: 6px;
}
.stat-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-600);
}

@media (max-width: 900px) { .phil-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- PATH ---------- */
.path { background: var(--ink-050); }

.path-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
.path-step {
  position: relative;
  padding: 24px;
  background: var(--ink-100);
  border: 1px solid var(--ink-400);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  transition: background 0.2s ease;
}
.path-step:hover { background: var(--ink-200); }
.step-num {
  font-size: 64px;
  color: var(--lime-500);
  line-height: 1;
  margin-bottom: 18px;
  text-shadow: 0 0 20px rgba(198,255,61,0.3);
}
.step-kanji {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-600);
  margin-bottom: 8px;
}
.step-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.step-body p {
  font-size: 14px;
  color: var(--ink-700);
  margin: 0 0 18px;
}
.step-out {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--lime-500);
  padding-top: 14px;
  border-top: 1px dashed var(--ink-400);
}
.step-line {
  position: absolute;
  right: -16px; top: 50%;
  width: 16px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--lime-500) 0 4px, transparent 4px 8px);
  display: none;
}
@media (min-width: 900px) {
  .path-step:not(:last-child) .step-line { display: block; }
}

.path-cta { margin-top: 48px; text-align: center; }

@media (max-width: 900px) { .path-list { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .path-list { grid-template-columns: 1fr; } }

/* ---------- CASES PREVIEW ---------- */
.cases-preview { background: #050705; }
.cases-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 16px;
}
.case-card {
  --c: var(--lime-500);
  position: relative;
  background: var(--ink-100);
  border: 1px solid var(--ink-400);
  padding: 28px;
  overflow: hidden;
  min-height: 340px;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.case-card:hover { transform: translate(-3px, -3px); }
.case-mask-bg {
  position: absolute;
  right: -80px; top: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--c), transparent 60%);
  opacity: 0.18;
  pointer-events: none;
}
.case-body { position: relative; z-index: 1; display: flex; flex-direction: column; height: 100%; gap: 14px; }
.case-title { font-size: 26px; line-height: 1.05; margin: 6px 0; }
.case-card p { color: var(--ink-700); font-size: 14px; margin: 0; flex: 1; }
.case-stats {
  display: flex;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px dashed var(--ink-400);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-600);
  flex-wrap: wrap;
}
.case-stats b { font-size: 14px; letter-spacing: -0.02em; }
.lime { color: var(--lime-500); }

@media (max-width: 1000px) { .cases-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 680px)  { .cases-grid { grid-template-columns: 1fr; } }

/* ---------- CTA ---------- */
.cta-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #080a08 0%, #050705 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-68deg, rgba(198,255,61,0.08) 0 2px, transparent 2px 18px);
  opacity: 0.5;
}
.cta-inner {
  position: relative;
  z-index: 1;
}
.cta-kanji {
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 320px;
  color: rgba(198,255,61,0.04);
  line-height: 1;
  pointer-events: none;
}
.cta-title {
  font-size: clamp(36px, 5.4vw, 76px);
  margin: 18px auto 32px;
  max-width: 1100px;
  line-height: 1.02;
}
.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-note {
  margin-top: 28px;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-600);
  text-transform: uppercase;
}

/* ==========================================================
   PHOTO BLOCKS — gpt-image-2 generated visuals
   ========================================================== */

/* ── HERO visual — поддержка img и video ── */
.hero-visual {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

/* общие стили для img и video */
.hero-visual img,
.hero-visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* фото-режим */
.hero-visual img {
  opacity: 0.28;
  mix-blend-mode: luminosity;
  filter: contrast(1.15) brightness(0.8);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.5) 20%, #000 55%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.5) 20%, #000 55%);
}

/* видео-режим: скрываем img когда есть видео */
.hero-visual:has(video) img { display: none; }

.hero-visual video {
  opacity: 0.35;
  mix-blend-mode: luminosity;
  filter: contrast(1.1) brightness(0.75) saturate(1.1);
}

/* тёмный оверлей поверх видео — текст читается */
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, #050705 0%, rgba(5,7,5,0.75) 30%, rgba(5,7,5,0.2) 65%, transparent 100%),
    linear-gradient(to bottom, rgba(5,7,5,0.4) 0%, transparent 40%, transparent 60%, rgba(5,7,5,0.6) 100%);
  pointer-events: none;
}

@media (max-width: 900px) { .hero-visual { display: none; } }

/* ── AGENT portrait — половина карточки ── */
.agent-portrait {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 55%;
  z-index: 0;
  overflow: hidden;
  opacity: 0.28;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.agent-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  mix-blend-mode: luminosity;
  filter: contrast(1.2) brightness(1.05);
  /* плавное растворение слева и снизу */
  -webkit-mask-image:
    linear-gradient(to left, #000 30%, rgba(0,0,0,0.4) 65%, transparent 100%),
    linear-gradient(to top, transparent 0%, #000 25%);
  -webkit-mask-composite: destination-in;
  mask-image:
    linear-gradient(to left, #000 30%, rgba(0,0,0,0.4) 65%, transparent 100%),
    linear-gradient(to top, transparent 0%, #000 25%);
  mask-composite: intersect;
}
.agent:hover .agent-portrait {
  opacity: 0.55;
  transform: scale(1.04);
}

/* ── CASE CARD visual (full-bleed bg image) ── */
.case-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.case-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.1;
  mix-blend-mode: luminosity;
  filter: contrast(1.2) brightness(0.7);
  transition: opacity 0.3s ease;
}
.case-card:hover .case-visual img { opacity: 0.18; }

/* ── PHILOSOPHY Splinter image — по центру секции, без виньетки ── */
.phil-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phil-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.25;
  filter: contrast(1.15) brightness(0.85) saturate(1.1);
  display: block;
  /* плавное затухание по всем краям */
  -webkit-mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    #000 20%,
    rgba(0,0,0,0.7) 50%,
    rgba(0,0,0,0.2) 70%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    #000 20%,
    rgba(0,0,0,0.7) 50%,
    rgba(0,0,0,0.2) 70%,
    transparent 100%
  );
}
/* Контент поверх */
.philosophy .phil-grid { position: relative; z-index: 1; }

/* ── PROCESS STEP illustrations ── */
.step-visual {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin-bottom: 20px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.step-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.55;
  filter: grayscale(10%) contrast(1.15) brightness(0.75);
  transition: opacity 0.3s ease, transform 0.4s ease;
}
.path-step:hover .step-visual img {
  opacity: 0.8;
  transform: scale(1.04);
}

/* ==========================================================
   MOBILE ADAPTATION — ≤768px / ≤480px
   ========================================================== */

@media (max-width: 768px) {
  /* Hero */
  .hero { padding: 32px 0 48px; min-height: auto; }
  .hero-meta { gap: 10px; }
  .hero-coords { display: none; }
  .hero-title { font-size: clamp(44px, 12vw, 64px); }
  .hero-lede { font-size: 15px; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-ctas .btn,
  .hero-ctas .btn-ghost { width: 100%; justify-content: center; }
  .hero-ticker { margin-top: 24px; }

  /* Agents */
  .agent { min-height: 260px; padding: 24px; }
  .agent-name { font-size: 38px; }
  .agent-portrait { display: none; }

  /* Philosophy */
  .phil-quote { font-size: clamp(26px, 7vw, 40px); }
  .phil-stats { grid-template-columns: 1fr 1fr; gap: 8px; }
  .stat-num { font-size: 36px; }

  /* Path */
  .path-list { grid-template-columns: 1fr 1fr; }
  .step-num { font-size: 48px; }

  /* Cases preview */
  .cases-grid { grid-template-columns: 1fr; }

  /* CTA */
  .cta-section { padding: 64px 0; }
  .cta-title { font-size: clamp(28px, 8vw, 44px); }
  .cta-buttons { flex-direction: column; align-items: center; gap: 10px; }
  .cta-buttons .btn,
  .cta-buttons .btn-ghost { width: 100%; max-width: 360px; justify-content: center; }

  /* Section heads */
  .section-head { margin-bottom: 40px; }
  .section-title { font-size: clamp(30px, 9vw, 56px); }
  .section-sub { font-size: 15px; }

  /* Trusted */
  .trusted-inner { gap: 20px; }
  .trusted-label { min-width: auto; }
  .trusted-logos { gap: 20px; font-size: 13px; }
}

@media (max-width: 480px) {
  /* Hero */
  .hero { padding: 24px 0 40px; }
  .hero-title { font-size: clamp(38px, 11vw, 52px); }
  .ninja-word { padding: 0 8px; margin: 0 3px; }

  /* Agents — single column with compact layout */
  .team-grid { grid-template-columns: 1fr; gap: 12px; }
  .agent { min-height: 220px; padding: 20px; }
  .agent-name { font-size: 32px; }

  /* Philosophy stats — single column */
  .phil-stats { grid-template-columns: 1fr 1fr 1fr; }
  .stat { padding: 16px 12px; }
  .stat-num { font-size: 28px; }
  .stat-label { font-size: 9px; }

  /* Path — single column */
  .path-list { grid-template-columns: 1fr; }

  /* Ticker */
  .hero-ticker { transform: none; }
}
