:root {
  --bg: #05060c;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.08);
  --text: #f5f2e8;
  --muted: #9ea0b2;
  --accent: #ff7a5c;
  --accent-2: #4cf1c0;
  --accent-3: #7b7eff;
  --accent-4: #ff8adf;
  --shadow: 0 28px 60px rgba(0, 0, 0, 0.5);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: radial-gradient(circle at 12% 12%, rgba(255, 122, 92, 0.08), transparent 18%),
              radial-gradient(circle at 86% 8%, rgba(124, 133, 255, 0.12), transparent 20%),
              radial-gradient(circle at 50% 70%, rgba(76, 241, 192, 0.08), transparent 28%),
              var(--bg);
  color: var(--text);
  font-family: 'Sora', 'Space Grotesk', system-ui, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  text-shadow: 0 1px 6px rgba(0,0,0,0.25);
  animation: bg-shift 30s ease-in-out infinite alternate;
}

::selection { background: var(--accent); color: #05060c; }

a { color: inherit; text-decoration: none; }

header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(5, 6, 12, 0.8);
  border-bottom: 1px solid var(--line);
}

header.stuck {
  background: rgba(5, 6, 12, 0.85);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-family: 'Space Grotesk', sans-serif;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}

.logo-mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  position: relative;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 16px 36px rgba(255, 122, 92, 0.45), 0 0 0 6px rgba(255,255,255,0.03);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.logo-mark::before {
  content: '';
  position: absolute;
  inset: -10%;
  border-radius: 18px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25), transparent 60%);
  filter: blur(10px);
  opacity: 0.7;
  z-index: 0;
}

.logo-mark img {
  width: 34px;
  height: 34px;
  filter: drop-shadow(0 8px 12px rgba(0,0,0,0.4));
}

.main-nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 600;
  align-items: center;
}

.main-nav a:hover { color: var(--text); }
.main-nav a.active { color: var(--accent-2); }

.pill {
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  font-weight: 700;
}

.frame {
  max-width: 1200px;
  margin: 0 auto;
  padding: 58px 22px 120px;
  position: relative;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  background-image: linear-gradient(transparent, transparent), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.11'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  z-index: 1;
  opacity: 0.28;
}

.mesh {
  position: fixed;
  inset: -20% -10% auto -10%;
  height: 80vh;
  background: radial-gradient(circle at 10% 20%, rgba(255, 122, 92, 0.15), transparent 40%),
              radial-gradient(circle at 80% 10%, rgba(123, 126, 255, 0.18), transparent 40%),
              conic-gradient(from 120deg, rgba(76, 241, 192, 0.18), rgba(255, 122, 92, 0.18), rgba(123, 126, 255, 0.18), rgba(76, 241, 192, 0.18));
  filter: blur(35px);
  opacity: 0.75;
  pointer-events: none;
  z-index: 0;
  animation: gradient-shift 14s ease-in-out infinite alternate;
}

.orb {
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.6;
  mix-blend-mode: screen;
  z-index: 0;
  pointer-events: none;
}

.orb.a { background: radial-gradient(circle, rgba(255, 122, 92, 0.55), transparent 55%); top: 12%; left: 14%; }
.orb.b { background: radial-gradient(circle, rgba(124, 133, 255, 0.45), transparent 55%); top: 6%; right: 10%; }
.orb.c { background: radial-gradient(circle, rgba(76, 241, 192, 0.45), transparent 55%); bottom: 6%; left: 8%; }

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-type {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  pointer-events: none;
  gap: 0;
  mix-blend-mode: overlay;
  z-index: 0;
}

.type-line {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(64px, 12vw, 98px);
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.12);
  line-height: 0.85;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 780px;
  display: grid;
  gap: 12px;
  justify-items: center;
  padding: 16px 22px;
  border-radius: 10px;
  background: radial-gradient(circle at top, rgba(0,0,0,0.35), transparent 65%);
}

.hero-visual .hero-type {
  z-index: 0;
}

.hero-visual .type-line {
  color: rgba(255, 255, 255, 0.08);
}

.type-front .type-line {
  color: #fff;
  text-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

.type-front {
  mix-blend-mode: normal;
  z-index: 3;
}

.story-wrap {
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.story-lead {
  font-size: 20px;
  margin: 0 0 10px;
  letter-spacing: 0.3px;
}

.story-sub {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 12px;
  color: var(--accent-2);
  font-weight: 700;
}

.eyebrow::before {
  content: '';
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-2));
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: 1px;
  margin: 16px 0 10px;
  color: var(--text);
  text-shadow: 0 0 20px rgba(0,0,0,0.35);
}

.hero-title span { display: block; }

.hero-sub {
  color: var(--muted);
  max-width: 560px;
  font-size: 20px;
  margin: 0 0 22px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}

.cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  justify-content: center;
}

.btn {
  border: none;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.2px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: linear-gradient(120deg, var(--accent), #ffb199);
  color: #0c0c10;
  box-shadow: 0 12px 30px rgba(255, 122, 92, 0.4);
}

.btn.ghost {
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
}

.btn:hover { transform: translateY(-2px); }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 480px;
  width: 100%;
  display: grid;
  place-items: center;
  padding: 40px 0;
  background: radial-gradient(circle at 40% 20%, rgba(255,122,92,0.08), transparent 45%),
              radial-gradient(circle at 70% 70%, rgba(124,133,255,0.08), transparent 45%);
}

.hero-glow {
  position: absolute;
  inset: 8% 20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 92, 0.22), transparent 60%);
  filter: blur(40px);
  animation: glow-pulse 6s ease-in-out infinite;
}

.hero-orbit {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  mix-blend-mode: screen;
}

.orbit-one { animation: orbit-spin 22s linear infinite; }
.orbit-two { inset: 16%; animation: orbit-spin 28s linear infinite reverse; }

.hero-logo {
  width: min(72vw, 420px);
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.35));
  position: relative;
  z-index: 1;
}

.flow-block { margin-top: 90px; }

.flow-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.flow-head p { margin: 0; }

.flow-rail {
  position: relative;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px 20px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  overflow: hidden;
}

.flow-rail::before {
  content: '';
  position: absolute;
  left: 36px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  opacity: 0.7;
}

.flow-node {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  position: relative;
  padding: 10px 10px 10px 18px;
}

.flow-node + .flow-node {
  margin-top: 8px;
}

.flow-dot {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #0a0b11;
  box-shadow: 0 10px 24px rgba(255, 122, 92, 0.35);
  position: relative;
  z-index: 1;
}

.flow-node:last-child .flow-dot {
  box-shadow: 0 16px 30px rgba(255, 138, 223, 0.35);
  background: linear-gradient(135deg, var(--accent-4), var(--accent-2));
}

.flow-content h3 { margin: 0 0 6px; font-family: 'Space Grotesk', sans-serif; }
.flow-content p { margin: 0; color: var(--muted); }

.scroll-words {
  display: grid;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.scroll-word {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.16);
  white-space: nowrap;
}

.edge-card {
  background: linear-gradient(140deg, rgba(255, 122, 92, 0.06), rgba(76, 241, 192, 0.04));
}

.dark-block {
  background: #06090e;
  border-radius: 8px;
  padding: 30px 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.band {
  padding: 30px 24px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.band::after {
  content: '';
  position: absolute;
  inset: -20% -10%;
  background: radial-gradient(circle, rgba(124,133,255,0.18), transparent 45%);
  filter: blur(40px);
  opacity: 0.35;
  pointer-events: none;
}

.manifesto {
  font-size: 20px;
  letter-spacing: 0.6px;
  margin: 6px 0 0;
}

.wave-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}

.wave-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  padding: 14px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  min-height: 220px;
}

.wave-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 30px 70px rgba(0,0,0,0.7), 0 12px 30px rgba(255, 122, 92, 0.25);
  border-color: rgba(255,255,255,0.16);
}

.wave-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
}

.wave-tag {
  padding: 6px 10px;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  letter-spacing: 0.3px;
}

.wave-meta { color: var(--muted); font-size: 13px; }

.wave-bars {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 4px;
  align-items: end;
}

.wave-bars span {
  display: block;
  height: 20px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  border-radius: 2px;
  animation: wave 1.8s ease-in-out infinite;
}

.wave-bars span:nth-child(odd) { animation-delay: 0.2s; }
.wave-bars span:nth-child(3n) { height: 26px; animation-delay: 0.1s; }
.wave-bars span:nth-child(4n) { height: 32px; animation-delay: 0.3s; }

.audio-player { width: 100%; filter: drop-shadow(0 6px 12px rgba(0,0,0,0.2)); }
.ticker {
  margin: 70px 0 26px;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: var(--panel);
}

.ticker-track {
  display: flex;
  gap: 28px;
  padding: 12px 0;
  animation: marquee 16s linear infinite;
  white-space: nowrap;
  font-weight: 700;
  letter-spacing: 1px;
}

.ticker-track span { padding-left: 26px; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.grid {
  display: grid;
  gap: 14px;
}

.cols-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.cols-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.card {
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 18px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
  transform-style: preserve-3d;
}

.card:hover { border-color: rgba(255, 255, 255, 0.18); }

.card h3 {
  margin: 0 0 8px;
  font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.card small { color: var(--muted); }

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 122, 92, 0.08), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover::after { opacity: 1; }

.card[data-tag]::before,
.panel[data-tag]::before {
  content: attr(data-tag);
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #0a0b11;
  box-shadow: 0 8px 18px rgba(255, 122, 92, 0.35);
}

.slash {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 99px;
  margin-bottom: 10px;
}

.section {
  margin-top: 150px;
  position: relative;
  z-index: 2;
}

.section.compact {
  margin-top: 90px;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  margin: 0 0 12px;
  position: relative;
  padding-left: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 18px;
  border-radius: 6px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 22px rgba(255, 122, 92, 0.3);
}

.mute { color: var(--muted); }

.mosaic {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  padding: 18px;
  min-height: 160px;
  position: relative;
  overflow: hidden;
}

.panel::after {
  content: '';
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 50% 20%, rgba(255, 122, 92, 0.12), transparent 55%);
  filter: blur(30px);
  animation: pulse-panel 6s ease-in-out infinite;
}

.panel strong { display: block; font-size: 22px; margin-bottom: 6px; }
.panel span { color: var(--muted); }

.cta-block {
  margin-top: 60px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(120deg, rgba(255, 122, 92, 0.18), rgba(76, 241, 192, 0.12));
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-block::after {
  content: '';
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0.4;
}

.cta-block .btn { justify-self: end; }

footer {
  padding: 32px 22px 60px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  margin-top: 70px;
  background: rgba(5, 6, 12, 0.8);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.floating {
  animation: float 6s ease-in-out infinite;
}

@keyframes bg-shift {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(12deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.3; transform: scale(0.98); }
  50% { opacity: 0.6; transform: scale(1.02); }
}

@keyframes orbit-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse-panel {
  0%, 100% { opacity: 0.2; transform: scale(0.98); }
  50% { opacity: 0.4; transform: scale(1.02); }
}

@keyframes gradient-shift {
  0% { transform: translateY(0px) scale(1); }
  100% { transform: translateY(-20px) scale(1.02); }
}

@keyframes wave {
  0%, 100% { height: 16px; }
  50% { height: 34px; }
}

@media (max-width: 900px) {
  .hero { text-align: center; }
  .hero-visual { order: -1; min-height: 420px; }
  .cta-block { grid-template-columns: 1fr; }
  .main-nav {
    position: fixed;
    inset: 0;
    background: rgba(5,6,12,0.94);
    backdrop-filter: blur(12px);
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 90px 22px 24px;
    align-items: flex-start;
  }
  .main-nav.open {
    display: flex;
  }
  .nav-toggle { display: inline-flex; }
}

@media (max-width: 600px) {
  .frame { padding: 40px 16px 90px; }
  .hero-title { font-size: 44px; }
  .ticker-track { animation-duration: 12s; }
  .cta-row { flex-direction: column; align-items: flex-start; }
}



/* === Apollo Improved: new layout + personality === */

.section.compact {
  margin-top: 96px;
}

/* Sonic Scene visual break */
.visual-break {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: radial-gradient(circle at top left, rgba(123, 126, 255, 0.28), rgba(5, 6, 12, 0.96));
  padding: 28px 24px;
  overflow: hidden;
}

.visual-media {
  position: relative;
  display: grid;
  gap: 22px;
}

@media (min-width: 900px) {
  .visual-media {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    align-items: center;
  }
}

.visual-video {
  position: relative;
  min-height: 220px;
  border-radius: 12px;
  overflow: hidden;
  background: radial-gradient(circle at 15% 10%, rgba(255, 122, 92, 0.35), transparent 60%),
              radial-gradient(circle at 85% 80%, rgba(123, 126, 255, 0.45), transparent 55%);
  box-shadow: var(--shadow);
}

.faux-video {
  background:
    linear-gradient(135deg, rgba(255,122,92,0.18), rgba(124,133,255,0.16)),
    url('https://images.unsplash.com/photo-1511379938547-c1f69419868d?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
  animation: gradient-shift 16s ease-in-out infinite alternate;
}

.visual-copy {
  position: relative;
  z-index: 1;
  max-width: 440px;
}

/* Story block with visual column */
.story-wrap {
  display: grid;
  gap: 20px;
}

@media (min-width: 900px) {
  .story-wrap {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.6fr);
    align-items: center;
  }
}

.story-visual {
  min-height: 190px;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(255,122,92,0.18), rgba(124,133,255,0.14)),
    url('https://images.unsplash.com/photo-1453738773917-9c3eff1db985?auto=format&fit=crop&w=900&q=80');
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.story-visual::before {
  content: '';
  position: absolute;
  inset: -25%;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.3), transparent 60%);
  mix-blend-mode: screen;
  opacity: 0.4;
  pointer-events: none;
}

/* Mantra band */
.band.band-soft {
  margin-top: 120px;
  border-radius: 14px;
  background: radial-gradient(circle at 10% 0%, rgba(124,133,255,0.22), rgba(5,6,12,0.96));
}

.band-orbit {
  position: absolute;
  inset: 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  opacity: 0.5;
  animation: orbit-spin 26s linear infinite;
}

.manifesto {
  font-size: 22px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

/* Macro service blocks */
.macro {
  margin-top: 22px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: radial-gradient(140deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  padding: 18px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
  position: relative;
  overflow: hidden;
}

.macro-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.macro-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  color: var(--muted);
  background: rgba(5,6,12,0.9);
}

.macro-header p {
  margin: 10px 0 0;
  color: var(--muted);
}

.macro-body {
  display: grid;
  gap: 10px 24px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.08);
  grid-template-columns: 1fr;
}

.macro-line strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  margin-bottom: 4px;
}

.macro-line span {
  color: var(--muted);
}

@media (min-width: 900px) {
  .macro-body {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.macro::after {
  content: '';
  position: absolute;
  inset: -40% auto auto -10%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,133,255,0.18), transparent 55%);
  filter: blur(40px);
  opacity: 0.4;
}

.macro-visual {
  min-height: 140px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.academy-vis {
  background-image: linear-gradient(135deg, rgba(255,122,92,0.16), rgba(124,133,255,0.14)), url('https://images.unsplash.com/photo-1470229538611-16ba8c7ffbd7?auto=format&fit=crop&w=900&q=80');
}

.media-vis {
  background-image: linear-gradient(135deg, rgba(76,241,192,0.16), rgba(124,133,255,0.14)), url('https://images.unsplash.com/photo-1483412033650-1015ddeb83d1?auto=format&fit=crop&w=900&q=80');
}

.macro-partner {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  font-size: 12px;
  letter-spacing: 0.4px;
}

/* After Caposile partner block */
.section.after {
  display: grid;
  gap: 26px;
  align-items: center;
}

@media (min-width: 900px) {
  .section.after {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  }
}

.after-text {
  max-width: 460px;
}

.after-photo {
  min-height: 260px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 122, 92, 0.26), transparent 60%),
    radial-gradient(circle at 82% 88%, rgba(124, 133, 255, 0.4), transparent 60%),
    url('https://images.unsplash.com/photo-1514525253161-7a46d19cd819?auto=format&fit=crop&w=900&q=80');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.after-photo::before {
  content: '';
  position: absolute;
  inset: -20%;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.3), transparent 40%),
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.3), transparent 60%);
  mix-blend-mode: screen;
  opacity: 0.55;
}

/* Flow rail as connected timeline */

/* Moodboard & team accents */
.slash.neon {
  position: relative;
}

.slash.neon::after {
  content: '';
  position: absolute;
  inset: -6px -12px;
  background: radial-gradient(circle at 50% 50%, rgba(76,241,192,0.3), transparent 60%);
  opacity: 0.6;
  filter: blur(10px);
  pointer-events: none;
}

/* Team section */
.team-grid {
  margin-top: 18px;
}

.team-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

/* After footer logo softer */
footer .logo-mark img {
  filter: drop-shadow(0 12px 22px rgba(0,0,0,0.8));
}
