@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");

@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("fonts/space-grotesk-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}


:root {
  --bg: #030305;
  --panel: rgba(8, 9, 12, 0.82);
  --panel-strong: rgba(12, 13, 18, 0.96);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f4f4f5;
  --muted: #a1a1aa;
  --soft: #62626d;
  --red: #a50000;
  --red-hot: #ff3030;
  --red-dark: #470000;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.66);
  --radius: 8px;
  --font-brand: "Space Grotesk", system-ui, sans-serif;
  --font-example-body: "Inter", "Space Grotesk", system-ui, sans-serif;
  --font-example-display: "Inter", "Space Grotesk", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 10%, rgba(165, 0, 0, 0.18), transparent 26rem),
    radial-gradient(circle at 10% 70%, rgba(255, 255, 255, 0.05), transparent 20rem),
    var(--bg);
  color: var(--text);
  font-family: var(--font-brand);
  overflow-x: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: rgba(165, 0, 0, 0.35);
  color: #fff;
}

.font-display {
  font-family: var(--font-brand);
}

.page-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 3, 5, 0.7);
  backdrop-filter: blur(18px);
}

.home-page .site-header {
  position: fixed;
  inset: 0 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(20px);
}

.home-page .site-nav {
  width: 100%;
  max-width: 100%;
  padding: 14px 32px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.home-page .site-nav::before {
  display: none;
}

.site-nav {
  width: min(90rem, 100%);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(135deg, rgba(165, 0, 0, 0.9), rgba(0, 0, 0, 0.2));
  box-shadow: 0 0 24px rgba(165, 0, 0, 0.28);
  font-family: var(--font-brand);
  font-weight: 900;
  letter-spacing: -0.08em;
}

.home-page .brand-mark {
  border-radius: 0;
  background: radial-gradient(circle at 50% 20%, rgba(255, 48, 48, 0.75), rgba(165, 0, 0, 0.75) 46%, rgba(0, 0, 0, 0.9));
}

.brand-logo {
  width: 36px;
  height: 26px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #ff5a5a, var(--aero-red, #ef1d1d));
  -webkit-mask: url("psyqo-p-mask.png") center / contain no-repeat;
  mask: url("psyqo-p-mask.png") center / contain no-repeat;
  filter: drop-shadow(0 0 10px rgba(239, 29, 29, 0.5));
}

.brand-word {
  font-family: var(--font-brand);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 17px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a,
.mobile-panel a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.nav-links a {
  padding: 9px 12px;
  border: 1px solid transparent;
  border-radius: 8px;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  border-color: rgba(165, 0, 0, 0.36);
  background: rgba(165, 0, 0, 0.12);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.mobile-panel {
  display: none;
  padding: 0 24px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-panel.open {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.mobile-panel a {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

/* -- Nav: single source of truth (white strip, constrained, no overrides) -- */
.site-header,
.home-page .site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset, 0 10px 28px rgba(0, 0, 0, 0.08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-nav,
.home-page .site-nav {
  width: min(calc(100% - 64px), 80rem);
  max-width: 80rem;
  min-height: 68px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #050505;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr) max-content;
  align-items: center;
  gap: clamp(18px, 3.2vw, 56px);
}

.site-nav::before,
.home-page .site-nav::before {
  display: none;
}

.site-nav .brand,
.home-page .site-nav .brand {
  color: #050505;
  min-width: max-content;
}

.brand-logo,
.home-page .brand-logo {
  background: linear-gradient(135deg, #ff5a5a, #ef1d1d 58%, #8f0000);
  filter: drop-shadow(0 0 8px rgba(239, 29, 29, 0.35));
}

.brand-word,
.home-page .brand-word {
  color: #050505;
  font-size: 17px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
}

.nav-links,
.home-page .nav-links {
  justify-self: center;
  width: auto;
  max-width: 100%;
  display: flex;
  justify-content: center;
  gap: clamp(6px, 0.75vw, 12px);
}

.nav-links a,
.home-page .nav-links a {
  color: rgba(0, 0, 0, 0.68);
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  min-width: 0;
  min-height: 40px;
  padding: 9px 14px;
  display: inline-flex;
  align-items: center;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.nav-links a:hover,
.nav-links a.active,
.home-page .nav-links a:hover,
.home-page .nav-links a.active {
  color: #050505;
  border-color: rgba(239, 29, 29, 0.28);
  background: rgba(239, 29, 29, 0.08);
}

.header-actions,
.home-page .header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-actions .btn,
.home-page .header-actions .btn {
  color: #fff;
  border: 1px solid #050505;
  background: #050505;
  min-height: 40px;
}

.header-actions .btn:hover,
.home-page .header-actions .btn:hover {
  border-color: #ef1d1d;
  background: #ef1d1d;
}

.menu-toggle,
.home-page .menu-toggle {
  color: #050505;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: rgba(0, 0, 0, 0.04);
}

.menu-toggle i[data-lucide="menu"] {
  position: relative;
  display: block;
  width: 18px;
  height: 14px;
}

.menu-toggle i[data-lucide="menu"]::before,
.menu-toggle i[data-lucide="menu"]::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.menu-toggle i[data-lucide="menu"]::before {
  top: 2px;
  box-shadow: 0 5px 0 currentColor;
}

.menu-toggle i[data-lucide="menu"]::after {
  bottom: 2px;
}

.mobile-panel.open {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.mobile-panel.open a,
.mobile-panel a {
  color: #050505;
  border-color: rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.035);
}

/* -- Nav responsive (single source) -- */
@media (max-width: 980px) {
  .site-nav,
  .home-page .site-nav {
    width: min(calc(100% - 32px), 80rem);
    min-height: 64px;
    grid-template-columns: max-content minmax(0, 1fr) max-content;
  }

  .nav-links,
  .home-page .nav-links {
    display: none;
  }

  .header-actions .btn-quiet,
  .home-page .header-actions .btn-quiet {
    display: none;
  }

  .menu-toggle,
  .home-page .menu-toggle {
    display: inline-flex;
    justify-self: end;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid #050505;
    background: #050505;
  }

  .mobile-panel.open {
    width: min(74rem, calc(100% - 32px));
    margin: 8px auto 0;
    padding: 12px;
    border-radius: 8px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
}

@media (max-width: 640px) {
  .site-nav,
  .home-page .site-nav {
    width: calc(100% - 24px);
    min-height: 60px;
  }

  .mobile-panel.open {
    grid-template-columns: 1fr;
  }
}

.container {
  width: min(90rem, 100%);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 92px 0;
}

.section-tight {
  padding: 56px 0;
}

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

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--red);
  box-shadow: 0 0 18px rgba(165, 0, 0, 0.85);
}

.hero {
  position: relative;
  min-height: calc(100svh - 70px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.home-page .hero {
  min-height: 100svh;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  background: #000;
}

.hero-media > div {
  position: absolute !important;
  left: 50%;
  top: 50%;
  width: max(100vw, 177.78svh) !important;
  height: max(100svh, 56.25vw) !important;
  transform: translate(-50%, -50%) scale(1.04);
}

.hero-media > div > *,
.hero-media canvas,
.hero-media video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.hero-media iframe {
  position: absolute;
  left: 50%;
  top: 50%;
  width: max(100vw, 177.78svh);
  height: max(100svh, 56.25vw);
  transform: translate(-50%, -50%) scale(1.08);
  border: 0;
  opacity: 0.34;
  filter: saturate(1.15) contrast(1.12);
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 58% 48%, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.34) 42%, rgba(0, 0, 0, 0.78)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.3) 45%, rgba(0, 0, 0, 0.58));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  z-index: -1;
  background: linear-gradient(to bottom, transparent, var(--bg));
}

.hero-grid {
  min-height: calc(100svh - 70px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 40px;
  padding-top: 64px;
  padding-bottom: 64px;
}

.hero-grid-open {
  display: flex;
  align-items: end;
  justify-content: flex-start;
}

.hero-grid-open .hero-copy {
  align-self: end;
  width: min(760px, 100%);
  padding-bottom: clamp(36px, 8vh, 92px);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  color: #fff;
  font-family: var(--font-brand);
  font-size: clamp(54px, 8vw, 126px);
  line-height: 0.92;
  letter-spacing: 0;
}

.home-page .hero h1 {
  text-shadow: 0 18px 70px rgba(0, 0, 0, 0.85);
}

.hero h1 span,
.page-hero h1 span {
  color: var(--red-hot);
}

.home-page .hero h1 span {
  display: inline-block;
  background: linear-gradient(90deg, var(--red-hot), #fff 48%, var(--red-hot));
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: text-shine 5s linear infinite;
}

@keyframes text-shine {
  to {
    background-position: -220% center;
  }
}

.hero-copy {
  max-width: 760px;
}

.lede {
  max-width: 620px;
  color: rgba(244, 244, 245, 0.72);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.6;
  margin: 24px 0 0;
}

.hero-actions,
.row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.btn-primary {
  border-color: rgba(165, 0, 0, 0.68);
  background: linear-gradient(180deg, var(--red-hot), var(--red));
  box-shadow: 0 0 32px rgba(165, 0, 0, 0.32);
}

@property --cta-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.shiny-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-color: transparent;
  background:
    linear-gradient(#08080a, #030305) padding-box,
    conic-gradient(from var(--cta-angle), transparent 0%, var(--red) 6%, #fff 16%, var(--red-hot) 28%, transparent 40%, transparent 100%) border-box;
  animation: cta-spin 3.6s linear infinite;
}

.shiny-cta:not(.ghost) {
  background:
    linear-gradient(180deg, #ff3030, #a50000) padding-box,
    conic-gradient(from var(--cta-angle), transparent 0%, #fff 10%, var(--red-hot) 24%, transparent 42%, transparent 100%) border-box;
}

.shiny-cta::after {
  content: "";
  position: absolute;
  inset: -90%;
  z-index: -1;
  background: linear-gradient(50deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: rotate(20deg);
  animation: cta-sheen 4.8s linear infinite;
}

@keyframes cta-spin {
  to {
    --cta-angle: 360deg;
  }
}

@keyframes cta-sheen {
  to {
    transform: translateX(55%) rotate(20deg);
  }
}

.btn-quiet {
  background: rgba(0, 0, 0, 0.42);
}

.hero-dashboard,
.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent),
    var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-dashboard {
  position: relative;
  overflow: hidden;
}

.hero-dashboard::before,
.panel::before,
.channel-card::before,
.roster-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), transparent 35%, rgba(165, 0, 0, 0.12));
  opacity: 0.7;
}

.dashboard-head {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.dashboard-title {
  margin: 0;
  color: #fff;
  font-weight: 800;
}

.dashboard-subtitle {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.signal {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.signal::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--red-hot);
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(255, 48, 48, 0.9);
}

.dashboard-grid {
  position: relative;
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.metric {
  min-height: 120px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(3, 3, 5, 0.58);
}

.metric span {
  color: var(--soft);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.metric strong {
  display: block;
  margin-top: 14px;
  color: #fff;
  font-family: var(--font-brand);
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: 0;
}

.metric p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.6fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.section-head h2,
.page-hero h1 {
  margin: 0;
  color: #fff;
  font-family: var(--font-brand);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1;
  letter-spacing: 0;
}

.section-head p,
.page-hero p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.panel {
  position: relative;
  padding: 24px;
  overflow: hidden;
}

.panel h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 20px;
}

.panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.panel-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(165, 0, 0, 0.36);
  border-radius: 8px;
  background: rgba(165, 0, 0, 0.12);
  color: var(--red-hot);
}

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.home-page .marquee {
  margin-top: -34px;
  border-color: rgba(165, 0, 0, 0.22);
  background: linear-gradient(90deg, rgba(165, 0, 0, 0.08), rgba(255, 255, 255, 0.03), rgba(165, 0, 0, 0.08));
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}

.marquee span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 28px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
}

.psyqo-wave {
  position: relative;
  z-index: 2;
  height: 190px;
  margin-top: -132px;
  pointer-events: none;
  overflow: hidden;
  color: var(--red);
}

.psyqo-wave svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.psyqo-wave .wave-fill {
  opacity: 0.72;
}

.wave-top,
.wave-bottom {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
}

.wave-top {
  top: 0;
  height: 72px;
  background: linear-gradient(to bottom, var(--bg), transparent);
}

.wave-bottom {
  bottom: 0;
  height: 70px;
  background: linear-gradient(to top, var(--bg), transparent);
}

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

.page-hero {
  padding: 92px 0 48px;
}

.page-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.52fr);
  gap: 36px;
  align-items: end;
}

.stat-list {
  display: grid;
  gap: 10px;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 13px;
}

.stat-row strong {
  color: #fff;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 0.55fr);
  gap: 16px;
  align-items: stretch;
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.timeline-item time {
  color: var(--red-hot);
  font-weight: 900;
}

.timeline-item h3 {
  margin: 0 0 6px;
  color: #fff;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.channel-card,
.roster-card,
.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(165, 0, 0, 0.14), transparent 40%),
    rgba(8, 9, 12, 0.78);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.channel-card:hover,
.roster-card:hover,
.product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 48, 48, 0.42);
}

.channel-card {
  min-height: 230px;
  padding: 20px;
}

.channel-card h2,
.channel-card h3 {
  margin: 0;
  color: #fff;
  font-family: var(--font-brand);
  font-size: 24px;
}

.channel-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.channel-meta {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--soft);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.theater-frame {
  overflow: hidden;
  border: 1px solid rgba(165, 0, 0, 0.42);
  border-radius: 8px;
  background: #000;
  box-shadow: 0 0 70px rgba(165, 0, 0, 0.18), var(--shadow);
}

.video-box {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-box iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.theater-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-top: 1px solid var(--line);
  background: rgba(8, 9, 12, 0.94);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.tab {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.tab.active {
  border-color: rgba(255, 48, 48, 0.55);
  background: rgba(165, 0, 0, 0.24);
  color: #fff;
}

.roster-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 16px;
}

.filter-panel {
  position: sticky;
  top: 94px;
  align-self: start;
}

.roster-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.roster-card {
  padding: 18px;
}

.roster-tag {
  color: var(--red-hot);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.roster-card h3 {
  margin: 12px 0 8px;
  color: #fff;
  font-size: 22px;
}

.roster-card p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.55;
}

.roster-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.product-card {
  padding: 0;
}

.product-art {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(165, 0, 0, 0.12), transparent 45%),
    rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.15);
  font-family: var(--font-brand);
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
}

.product-body {
  padding: 18px;
}

.product-body h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
}

.product-price {
  display: block;
  margin-top: 8px;
  color: var(--red-hot);
  font-weight: 900;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(14px);
}

.modal.open {
  display: flex;
}

.modal-panel {
  width: min(880px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 20px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 42px 0;
  color: var(--soft);
}

.footer-grid {
  display: grid;
}

.footer strong {
  display: block;
  color: #fff;
  font-family: var(--font-brand);
  font-size: 22px;
  margin-bottom: 8px;
}

#psyqo-chat {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
}

#psyqo-chat-bubble {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 48, 48, 0.42);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--red-hot), var(--red));
  color: #fff;
  box-shadow: 0 0 34px rgba(165, 0, 0, 0.45);
}

#psyqo-chat-panel {
  position: absolute;
  right: 0;
  bottom: 72px;
  width: min(380px, calc(100vw - 32px));
  overflow: hidden;
  display: none;
  border: 1px solid var(--line);
  border-top-color: rgba(255, 48, 48, 0.66);
  border-radius: 8px;
  background: rgba(7, 7, 9, 0.98);
  box-shadow: var(--shadow);
}

#psyqo-chat-panel.open {
  display: block;
}

.chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  border-bottom: 1px solid var(--line);
}

.chat-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.chat-dot {
  width: 8px;
  height: 8px;
  background: var(--red-hot);
  border-radius: 999px;
  box-shadow: 0 0 16px rgba(255, 48, 48, 0.8);
}

.chat-close {
  border: 0;
  background: transparent;
  color: var(--muted);
}

#psyqo-chat-messages {
  min-height: 220px;
  max-height: 390px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px;
}

.psyqo-msg {
  display: flex;
}

.psyqo-msg-user {
  justify-content: flex-end;
}

.psyqo-msg-bubble {
  max-width: 84%;
  padding: 10px 12px;
  border-radius: 8px;
  color: #e7e7ea;
  font-size: 13px;
  line-height: 1.48;
}

.psyqo-msg-ai .psyqo-msg-bubble {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.psyqo-msg-user .psyqo-msg-bubble {
  background: var(--red);
  color: #fff;
}

.typing {
  display: inline-flex;
  gap: 4px;
}

.typing span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--muted);
  animation: typing 1s infinite;
}

.typing span:nth-child(2) {
  animation-delay: 160ms;
}

.typing span:nth-child(3) {
  animation-delay: 320ms;
}

@keyframes typing {
  50% {
    transform: translateY(-4px);
    opacity: 0.45;
  }
}

.chat-input {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--line);
}

.chat-input input {
  min-width: 0;
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding: 10px 11px;
  outline: 0;
}

.chat-input input:focus {
  border-color: rgba(255, 48, 48, 0.5);
}

.chat-input button {
  width: 40px;
  border: 0;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
}

.hidden {
  display: none !important;
}

@media (max-width: 980px) {

  .hero-grid,
  .section-head,
  .page-hero .container,
  .split,
  .roster-layout {
    grid-template-columns: 1fr;
  }

  .hero-dashboard {
    max-width: 620px;
  }

  .card-grid,
  .channel-grid,
  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .roster-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filter-panel {
    position: static;
  }
}

@media (max-width: 640px) {

  .container {
    padding: 0 16px;
  }

  .hero-grid {
    min-height: calc(100svh - 60px);
    padding-top: 44px;
  }

  .hero-actions,
  .row-actions,
  .theater-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .dashboard-grid,
  .card-grid,
  .channel-grid,
  .shop-grid,
  .roster-grid,
  .modal-panel {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }
}

.home-hero {
  min-height: 100svh;
  border: 1px solid rgba(255, 48, 48, 0.22);
  box-shadow: inset 0 0 42px rgba(255, 48, 48, 0.15);
}

.home-hero::before {
  background:
    radial-gradient(circle at 52% 52%, rgba(165, 0, 0, 0.18), rgba(0, 0, 0, 0.2) 25%, rgba(0, 0, 0, 0.74) 58%, rgba(0, 0, 0, 0.92)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1) 42%, rgba(0, 0, 0, 0.78));
}

.home-hero::after {
  height: 42%;
  background: linear-gradient(to bottom, transparent, rgba(3, 3, 5, 0.72) 52%, var(--bg));
}

.psyqo-hero-emblem {
  position: absolute;
  left: 50%;
  top: 51%;
  z-index: -1;
  width: min(62vw, 980px);
  min-width: 420px;
  transform: translate(-50%, -50%);
  opacity: 0.78;
  filter: drop-shadow(0 0 42px rgba(255, 48, 48, 0.48));
}

.psyqo-hero-emblem svg {
  width: 100%;
  overflow: visible;
}

.emblem-back {
  fill: rgba(165, 0, 0, 0.42);
  stroke: rgba(255, 48, 48, 0.25);
  stroke-width: 14;
  filter: url(#hero-emblem-glow);
}

.emblem-line,
.emblem-inner,
.emblem-cut {
  fill: none;
  stroke: url(#hero-emblem-stroke);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: url(#hero-emblem-glow);
}

.emblem-inner {
  fill: rgba(165, 0, 0, 0.22);
  stroke-width: 2;
}

.emblem-cut {
  stroke-width: 3;
  opacity: 0.74;
}

.home-page .hero-grid-open {
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  padding-top: clamp(110px, 15vh, 190px);
  padding-bottom: clamp(120px, 18vh, 200px);
}

.home-page .hero-grid-open .hero-copy {
  align-self: center;
  width: min(1500px, 100%);
  max-width: 1500px;
  padding-bottom: 0;
  text-align: center;
}

.home-page .hero h1 {
  font-size: clamp(58px, 7.6vw, 154px);
  line-height: 0.9;
  letter-spacing: 0;
  white-space: nowrap;
}

.home-page .hero h1 span {
  display: inline-block;
  background: linear-gradient(90deg, #9a0000 0%, #ff1e1e 42%, #ffd2d2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: none;
  text-shadow: none;
}

.home-page .lede {
  max-width: 950px;
  margin: 54px auto 0;
  color: rgba(244, 244, 245, 0.72);
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.34;
  font-weight: 700;
}

.home-page .hero-actions {
  justify-content: center;
  gap: 40px;
  margin-top: clamp(54px, 8vh, 106px);
}

.home-page .hero-actions .btn {
  min-width: min(318px, 42vw);
  min-height: 88px;
  border-radius: 16px;
  font-size: clamp(19px, 1.6vw, 28px);
  font-weight: 900;
}

.social-rail {
  position: relative;
  z-index: 4;
  margin-top: -88px;
  border: 0;
  background: transparent;
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
}

.social-rail .marquee-track {
  animation-duration: 34s;
}

.social-rail span {
  padding: 26px 42px;
  color: rgba(255, 255, 255, 0.52);
  font-size: clamp(18px, 1.5vw, 28px);
  letter-spacing: 0;
  text-shadow: none;
}

.social-rail span svg {
  width: 1em;
  height: 1em;
  color: currentColor;
  stroke-width: 2;
}

.ecosystem-section {
  padding-top: 130px;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.ecosystem-card {
  position: relative;
  min-height: 280px;
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background:
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.035)),
    rgba(6, 6, 8, 0.72);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.ecosystem-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 28%),
    radial-gradient(circle at 100% 0%, rgba(255, 48, 48, 0.2), transparent 42%);
  opacity: 0.62;
  pointer-events: none;
}

.ecosystem-card.feature-card {
  grid-column: span 8;
  min-height: 360px;
}

.ecosystem-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 48, 48, 0.42);
  background: rgba(10, 10, 12, 0.86);
}

.ecosystem-card svg {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  color: var(--red-hot);
  opacity: 0.86;
}

.card-index {
  position: absolute;
  top: 20px;
  left: 22px;
  color: rgba(255, 255, 255, 0.26);
  font-family: var(--font-brand);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.ecosystem-card h3 {
  position: relative;
  margin: 0 0 12px;
  color: #fff;
  font-family: var(--font-brand);
  font-size: clamp(24px, 2.7vw, 44px);
  line-height: 1;
}

.ecosystem-card p {
  position: relative;
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.visual-section {
  overflow: hidden;
}

.signal-map,
.environment-visual {
  position: relative;
  width: min(100%, 1080px);
  margin: 0 auto;
}

.signal-map svg,
.environment-visual svg {
  width: 100%;
  overflow: visible;
}

.signal-dots circle {
  fill: rgba(255, 255, 255, 0.2);
}

.signal-lines path {
  fill: none;
  stroke: url(#signal-line);
  stroke-width: 1.6;
  stroke-dasharray: 760;
  stroke-dashoffset: 760;
  animation: draw-line 1.7s ease forwards;
}

.signal-nodes circle {
  fill: rgba(165, 0, 0, 0.14);
  stroke: rgba(255, 255, 255, 0.72);
  stroke-width: 1.2;
  filter: drop-shadow(0 0 16px rgba(255, 48, 48, 0.28));
}

.signal-nodes text {
  fill: rgba(255, 255, 255, 0.78);
  font: 800 15px/1.1 var(--font-brand);
  text-anchor: middle;
}

@keyframes draw-line {
  to {
    stroke-dashoffset: 0;
  }
}

.environment-visual {
  min-height: 430px;
  display: grid;
  place-items: center;
}

.controller-halo {
  fill: rgba(165, 0, 0, 0.16);
  filter: drop-shadow(0 0 34px rgba(255, 48, 48, 0.38));
}

.controller-shell,
.controller-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.8);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.controller-shell {
  stroke: rgba(255, 255, 255, 0.76);
  filter: drop-shadow(0 0 18px rgba(255, 48, 48, 0.36));
}

.incoming-line {
  fill: none;
  stroke: rgba(255, 48, 48, 0.7);
  stroke-width: 2.2;
  stroke-dasharray: 140;
  animation: draw-line 1.1s ease forwards;
}

.deflect-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.62);
  stroke-width: 2;
  stroke-dasharray: 90;
  animation: draw-line 1.1s ease 0.45s forwards;
}

.controller-visual text {
  fill: rgba(255, 48, 48, 0.78);
  font: 800 14px/1.1 var(--font-brand);
  letter-spacing: 0.04em;
}

.strategy-panel h2 {
  margin: 0 0 16px;
  color: #fff;
  font-family: var(--font-brand);
  font-size: clamp(34px, 4vw, 66px);
  line-height: 1;
}

.program-grid {
  display: grid;
  gap: 10px;
}

.program-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 84px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.028);
}

.program-row strong {
  color: #fff;
  font-size: 19px;
}

.program-row span {
  color: var(--muted);
  line-height: 1.55;
}

.program-row a {
  min-width: 108px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 48, 48, 0.35);
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 980px) {

  .psyqo-hero-emblem {
    width: 88vw;
    min-width: 0;
  }

  .home-page .hero h1 {
    white-space: normal;
    font-size: clamp(64px, 15vw, 118px);
  }

  .home-page .lede {
    margin-top: 28px;
    font-size: 20px;
  }

  .ecosystem-card,
  .ecosystem-card.feature-card {
    grid-column: span 6;
    min-height: 260px;
  }

  .program-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {

  .home-page .hero-grid-open {
    padding-top: 116px;
  }

  .home-page .hero-actions {
    gap: 14px;
  }

  .home-page .hero-actions .btn {
    width: 100%;
    min-width: 0;
    min-height: 62px;
    font-size: 18px;
  }

  .social-rail {
    margin-top: -72px;
  }

  .social-rail span {
    padding: 20px 28px;
    font-size: 18px;
  }

  .ecosystem-card,
  .ecosystem-card.feature-card {
    grid-column: span 12;
  }

  .environment-visual {
    min-height: 260px;
  }

  .controller-visual text {
    display: none;
  }
}

/* Single-page PsyQo composition inspired by USETHIS, adapted without importing React/Tailwind. */
html {
  scroll-padding-top: 104px;
}

.one-page-site {
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 48, 48, 0.12), transparent 30rem),
    linear-gradient(180deg, #020102, #060202 40%, #020102);
}

.single-page-shell {
  width: min(100%, 1500px);
  margin: 0 auto;
  border-left: 1px solid rgba(255, 48, 48, 0.13);
  border-right: 1px solid rgba(255, 48, 48, 0.13);
  background:
    linear-gradient(90deg, rgba(255, 48, 48, 0.045) 1px, transparent 1px) 33.333% 0 / 1px 100% no-repeat,
    linear-gradient(90deg, rgba(255, 48, 48, 0.045) 1px, transparent 1px) 66.666% 0 / 1px 100% no-repeat,
    rgba(0, 0, 0, 0.26);
}

.home-hero {
  min-height: 100svh;
  border: 0;
  box-shadow: none;
}

.hero-media {
  background: #000;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.16) saturate(1.12) brightness(0.86);
  transform: scale(1.01);
}

.hero-dither {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 54%, rgba(165, 0, 0, 0.18), transparent 34rem),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 10px);
  mix-blend-mode: soft-light;
  opacity: 0.48;
}

.home-page .hero::before {
  background:
    radial-gradient(circle at 50% 48%, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.18) 38%, rgba(0, 0, 0, 0.72)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.06) 42%, rgba(0, 0, 0, 0.78));
}

.home-page .hero-grid-open {
  min-height: 100svh;
  padding-top: 116px;
  padding-bottom: 92px;
}

.home-page .hero-grid-open .hero-copy {
  width: min(880px, 100%);
}

.home-page .hero h1 {
  font-size: clamp(52px, 8vw, 128px);
  line-height: 0.92;
  text-shadow: 0 22px 90px rgba(0, 0, 0, 0.9);
}

.home-page .lede {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
}

.spa-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 48, 48, 0.13);
}

.frame-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 48, 48, 0.2);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(36, 4, 4, 0.78), rgba(8, 2, 2, 0.94)),
    rgba(0, 0, 0, 0.5);
  box-shadow:
    inset 0 1px 1px rgba(255, 120, 120, 0.12),
    inset 0 -16px 50px rgba(0, 0, 0, 0.5),
    0 24px 70px rgba(0, 0, 0, 0.36);
}

.frame-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(255, 48, 48, 0.14), transparent) 50% 50% / 100% 1px no-repeat,
    linear-gradient(180deg, transparent, rgba(255, 48, 48, 0.12), transparent) 50% 50% / 1px 100% no-repeat;
  opacity: 0.55;
}

.about-frame {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 28px;
  padding: clamp(24px, 4vw, 54px);
}

.about-frame h3,
.theater-copy h2 {
  position: relative;
  margin: 0 0 14px;
  color: #fff;
  font-family: var(--font-brand);
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1;
}

.about-frame p,
.theater-copy p {
  position: relative;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.theater-copy {
  padding: clamp(24px, 4vw, 42px);
}

.final-actions {
  justify-content: center;
  margin-top: 36px;
}

.one-page-site .ecosystem-card,
.one-page-site .channel-card,
.one-page-site .roster-card,
.one-page-site .program-row,
.one-page-site .product-card,
.one-page-site .panel {
  border-color: rgba(255, 48, 48, 0.16);
  background:
    linear-gradient(135deg, rgba(28, 5, 5, 0.62), rgba(3, 1, 1, 0.82)),
    rgba(0, 0, 0, 0.48);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.045);
}

.one-page-site .btn-primary {
  background: linear-gradient(90deg, #ef1d1d, #b40000);
  box-shadow:
    0 10px 28px rgba(165, 0, 0, 0.32),
    inset 0 1px 1px rgba(255, 255, 255, 0.26);
}

.one-page-site .btn-quiet {
  background: rgba(14, 14, 16, 0.78);
  border-color: rgba(255, 255, 255, 0.12);
}

@media (max-width: 980px) {
  .about-frame {
    grid-template-columns: 1fr;
  }

  .single-page-shell {
    border: 0;
  }
}

.home-hero {
  display: flex;
  align-items: center;
  min-height: 100svh;
  isolation: isolate;
  background: #000;
}

.hero-split {
  position: relative;
  z-index: 5;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: clamp(118px, 15vh, 170px);
  padding-bottom: clamp(70px, 10vh, 120px);
}

.hero-copy-left {
  position: relative;
  z-index: 50;
  width: min(980px, 100%);
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.hero-copy-left .eyebrow {
  margin-bottom: 20px;
}

.home-page .hero-copy-left h1 {
  font-size: clamp(58px, 8vw, 126px);
  line-height: 0.9;
  text-transform: uppercase;
  text-shadow: 0 24px 90px rgba(0, 0, 0, 0.95);
}

.home-page .hero-copy-left h1 .title-line {
  display: block;
  width: 100%;
  max-width: 100%;
  background: none;
  color: #fff;
  -webkit-text-fill-color: #fff;
}

.home-page .hero-copy-left h1 .title-accent {
  background: none;
  color: var(--red-hot);
  -webkit-text-fill-color: var(--red-hot);
  text-shadow:
    0 18px 64px rgba(0, 0, 0, 0.95),
    0 0 28px rgba(255, 48, 48, 0.22);
}

.home-page .hero-copy-left .lede {
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
  text-shadow: 0 12px 42px rgba(0, 0, 0, 0.95);
}

.home-page .hero-copy-left .hero-actions {
  justify-content: center;
}

.hero-video-stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  pointer-events: none;
}

.hero-video-stage::before {
  content: "";
  position: absolute;
  inset: 6% -4% 4% 4%;
  background: radial-gradient(circle at 54% 52%, rgba(255, 48, 48, 0.28), transparent 40%);
  filter: blur(22px);
  opacity: 0.85;
  display: none;
}

.hero-video-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 56% 50%, rgba(255, 48, 48, 0.13), transparent 44%);
  mix-blend-mode: soft-light;
  opacity: 0.42;
  display: none;
}

.hero-video-stage .hero-video {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 1;
  width: min(184vw, 2780px);
  height: auto;
  min-width: 1900px;
  min-height: 0;
  transform: translate(-50%, -50%) scale(1.08);
  object-fit: contain;
  filter: contrast(1.18) saturate(1.18) brightness(1.02);
  mix-blend-mode: normal;
  opacity: 0.94;
}

.home-page .hero::before {
  background: #000;
}

.home-page .hero::after,
.home-hero::after {
  display: none;
}

.hero-dither {
  display: none;
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.052) 0 1px, transparent 1px 11px),
    radial-gradient(circle at 72% 48%, rgba(255, 48, 48, 0.24), transparent 34rem),
    radial-gradient(circle at 22% 42%, rgba(255, 48, 48, 0.13), transparent 28rem);
  opacity: 0.5;
}

@media (max-width: 980px) {
  .hero-split {
    min-height: 100svh;
    padding-top: 118px;
  }

  .hero-copy-left {
    max-width: 100%;
    text-align: center;
  }

  .home-page .hero-copy-left .lede {
    margin-left: auto;
    margin-right: auto;
  }

  .home-page .hero-copy-left .hero-actions {
    justify-content: center;
  }

  .hero-video-stage {
    min-height: 0;
    margin: 0;
  }

  .hero-video-stage .hero-video {
    inset: 50% auto auto 50%;
    width: min(260vw, 1120px);
    height: auto;
    min-width: 860px;
    min-height: 0;
    transform: translate(-50%, -52%) scale(1);
    opacity: 0.86;
  }
}

@media (max-width: 640px) {
  .home-page .hero-copy-left h1 {
    font-size: clamp(40px, 12.6vw, 58px);
    line-height: 1;
  }

  .home-page .hero-copy-left h1 span {
    background: none;
    color: var(--red-hot);
    -webkit-text-fill-color: var(--red-hot);
  }

  .home-page .hero-copy-left h1 .title-line {
    color: #fff;
    -webkit-text-fill-color: #fff;
  }

  .home-page .hero-copy-left h1 .title-accent {
    color: var(--red-hot);
    -webkit-text-fill-color: var(--red-hot);
  }

  .home-page .hero::after,
  .home-hero::after {
    display: none;
  }

  .hero-video-stage {
    min-height: 0;
  }
}

/* Aeronet-style PsyQo rebuild */
:root {
  --aero-red: #ef1d1d;
  --aero-red-soft: #ff6b6b;
  --aero-red-dark: #7f0000;
  --aero-blue: #3b82f6;
  --aero-blue-soft: #93c5fd;
  --aero-black: #050505;
  --aero-surface: #0c0c0e;
  --aero-border: rgba(255, 255, 255, 0.08);
  --aero-muted: #71717a;
  --aero-font: var(--font-brand);
}

.home-page,
.home-page button,
.home-page a {
  font-family: var(--aero-font);
}

.home-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% -10%, rgba(239, 29, 29, 0.13), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(255, 107, 107, 0.07), transparent 28%),
    linear-gradient(180deg, #050505 0%, #050505 100%);
}

.home-page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(circle at center, black, transparent 82%);
  mask-image: radial-gradient(circle at center, black, transparent 82%);
}

.one-page-site {
  background: #050505;
}

.single-page-shell {
  width: 100%;
  max-width: none;
  border: 0;
  background: transparent;
}

.aeronet-hero {
  position: relative;
  display: block;
  height: 150vh;
  min-height: 1120px;
  width: 100%;
  overflow: visible;
  background: #000;
  isolation: isolate;
}

.psyqo-hero-sticky {
  position: sticky;
  top: 0;
  z-index: 15;
  height: 100dvh;
  min-height: 760px;
  width: 100%;
  overflow: hidden;
  background: #000;
  isolation: isolate;
}

.aeronet-hero::before,
.aeronet-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.aeronet-hero::before {
  z-index: 14;
  background:
    radial-gradient(ellipse at 76% 45%, rgba(255, 31, 31, 0.18) 0%, rgba(116, 0, 0, 0.1) 27%, transparent 52%),
    radial-gradient(ellipse at 62% 78%, rgba(239, 29, 29, 0.11) 0%, transparent 42%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.7) 33%, transparent 58%, rgba(0, 0, 0, 0.42) 100%),
    radial-gradient(ellipse at center, transparent 42%, rgba(0, 0, 0, 0.58) 78%, rgba(0, 0, 0, 0.92) 100%);
}

.aeronet-hero::after {
  z-index: 24;
  opacity: 0.115;
  mix-blend-mode: screen;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.22) 0 1px, transparent 1px 3px),
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.16) 0 1px, transparent 1.5px),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.12) 0 1px, transparent 1.4px);
  background-size: 100% 4px, 31px 31px, 43px 43px;
  animation: psyqoFilmGrain 1.3s steps(2, end) infinite;
}

.psyqo-hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 16;
  pointer-events: none;
  overflow: hidden;
}

.psyqo-haze {
  position: absolute;
  border-radius: 999px;
  filter: blur(42px);
  opacity: 0.48;
  transform: translate3d(0, 0, 0);
  mix-blend-mode: screen;
  animation: psyqoHazeDrift 8.5s ease-in-out infinite;
}

.psyqo-haze.haze-a {
  width: 52vw;
  height: 28vw;
  right: 5vw;
  top: 23%;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255, 36, 36, 0.28), rgba(138, 0, 0, 0.16) 36%, transparent 72%);
}

.psyqo-haze.haze-b {
  width: 38vw;
  height: 18vw;
  right: 22vw;
  top: 62%;
  opacity: 0.34;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255, 72, 72, 0.2), rgba(86, 0, 0, 0.16) 42%, transparent 75%);
  animation-delay: -3.8s;
}

@keyframes psyqoHazeDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.42;
  }

  50% {
    transform: translate3d(-2.4vw, 1.2vw, 0) scale(1.08);
    opacity: 0.56;
  }
}

@keyframes psyqoFilmGrain {
  0% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-1.5%, 1%, 0);
  }

  100% {
    transform: translate3d(1%, -1.5%, 0);
  }
}

@media (min-width: 768px) {
  .aeronet-hero {
    height: 155vh;
    min-height: 1180px;
  }

  .psyqo-hero-sticky {
    min-height: 820px;
  }
}

.psyqo-hero-webgl {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: transparent;
}


.psyqo-hero-webgl {
  z-index: 19;
  opacity: 0;
  filter: saturate(1.18) contrast(1.04);
  transition: opacity 420ms ease;
}

.psyqo-hero-webgl.is-ready {
  opacity: 1;
}

.psyqo-hero-webgl.is-hidden {
  opacity: 0;
}




.psyqo-hero-container {
  position: absolute;
  inset: 0;
  z-index: 20;
  width: 100%;
  max-width: calc(80rem + 64px);
  box-sizing: border-box;
  margin-inline: auto;
  padding-inline: 32px;
  pointer-events: none;
}

.psyqo-hero-copy {
  position: absolute;
  top: 29%;
  left: -16px;
  max-width: 40rem;
  pointer-events: none;
}

.psyqo-hero-copy h1 {
  margin: 0 0 24px;
  max-width: 12ch;
  font-size: clamp(48px, 5.8vw, 72px);
  line-height: 1.28;
  padding-bottom: 0.32em;
  font-weight: 300;
  letter-spacing: -0.025em;
  color: transparent;
  background: linear-gradient(135deg, #fff 0%, #e5e7eb 48%, var(--aero-red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.psyqo-hero-copy h1 .hero-h1-emphasis {
  font-weight: 500;
  text-transform: uppercase;
}

.psyqo-hero-copy p {
  max-width: 440px;
  margin: 0;
  color: #71717a;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.62;
  font-weight: 300;
}

.psyqo-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
  pointer-events: auto;
}

.psyqo-hero-actions .btn {
  min-height: 48px;
  border-radius: 0;
  padding-inline: 24px;
}

.psyqo-float-field {
  position: absolute;
  inset: 0;
  z-index: auto;
  pointer-events: none;
}

.psyqo-float-wrap {
  position: absolute;
  --float-y: 0px;
  --drift-x: 0px;
  --tilt: 0deg;
  --depth-scale: 1;
  /* Anchored to a projected 3D point (JS sets left/top); centered on it here. */
  transform: translate(-50%, -50%) translate(var(--drift-x), var(--float-y)) rotate(var(--tilt)) scale(var(--depth-scale));
  transform-origin: center;
  transition: opacity 200ms ease;
  will-change: transform, opacity;
}

.globe-float {
  position: relative;
  width: max-content;
  border: 1px solid rgba(255, 107, 107, 0.24);
  background: linear-gradient(135deg, rgba(36, 4, 4, 0.78), rgba(5, 5, 5, 0.58));
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.42),
    0 0 28px rgba(239, 29, 29, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 0;
  padding: 11px 13px;
  color: #fff1f1;
  transform-origin: center;
  animation: globeBreath 3.4s ease-in-out infinite;
  animation-delay: var(--breath-delay, 0s);
}

.globe-float::before,
.globe-float::after {
  display: none;
}

.globe-float::before {
  top: -1px;
  left: -1px;
  border-top: 1px solid rgba(255, 180, 180, 0.75);
  border-left: 1px solid rgba(255, 180, 180, 0.75);
}

.globe-float::after {
  right: -1px;
  bottom: -1px;
  border-right: 1px solid rgba(239, 29, 29, 0.7);
  border-bottom: 1px solid rgba(239, 29, 29, 0.7);
}

.globe-float-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.globe-float i,
.globe-float svg {
  color: var(--aero-red-soft);
  width: 18px;
  height: 18px;
  filter: drop-shadow(0 0 10px rgba(239, 29, 29, 0.65));
}

.globe-float strong {
  display: block;
  font-size: 13px;
  line-height: 1.1;
  font-weight: 500;
  color: #fff;
}

.globe-float span {
  display: block;
  margin-top: 3px;
  color: #ffb4b4;
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.globe-float.is-mini {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.globe-float.is-wide {
  min-width: 156px;
}

.globe-anchor {
  display: none;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #ffb4b4;
  box-shadow:
    0 0 0 5px rgba(239, 29, 29, 0.18),
    0 0 22px rgba(255, 107, 107, 0.9);
  scale: 1;
  animation: anchorBreath 3.4s ease-in-out infinite;
}

.anchor-bottom { left: 24px; bottom: -12px; }
.anchor-top { left: 24px; top: -12px; }
.anchor-top.right { left: auto; right: 32px; }
.anchor-bottom.center,
.anchor-top.center {
  left: 50%;
  transform: translateX(-50%);
}

@keyframes globeBreath {
  0%, 100% {
    transform: scale(1);
    box-shadow:
      0 18px 44px rgba(0, 0, 0, 0.42),
      0 0 24px rgba(239, 29, 29, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }
  50% {
    transform: scale(1.085);
    box-shadow:
      0 24px 58px rgba(0, 0, 0, 0.5),
      0 0 52px rgba(239, 29, 29, 0.36),
      inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }
}

@keyframes anchorBreath {
  0%, 100% { scale: 1; opacity: 0.76; }
  50% { scale: 1.65; opacity: 1; }
}

.aero-section {
  position: relative;
  overflow: hidden;
  padding: 104px 24px;
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #f4f4f5;
}

.aero-section .container {
  width: min(80rem, 100%);
  padding: 0;
}

.aero-section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

.aero-section-header.narrow {
  display: block;
  max-width: 680px;
}

.aero-section-header.centered {
  display: block;
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  border: 1px solid rgba(239, 29, 29, 0.24);
  background: rgba(239, 29, 29, 0.08);
  padding: 6px 12px;
  color: #ffb4b4;
  font-size: 12px;
}

.section-kicker svg {
  width: 16px;
  height: 16px;
  color: #ffb4b4;
}

.aero-section h2 {
  margin: 0;
  color: #f4f4f5;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.02;
  font-weight: 300;
  letter-spacing: -0.025em;
}

.aero-section-header p,
.process-copy p,
.aero-section-header.centered p {
  max-width: 440px;
  margin: 0;
  color: #71717a;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 300;
}

.aero-section-header.centered p {
  margin: 20px auto 0;
}

.aero-fabric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 5, 5, 0.5);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.aero-cell {
  position: relative;
  min-height: 256px;
  padding: 32px;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #050505;
}

.corner-dot {
  position: absolute;
  top: -2px;
  left: -2px;
  width: 3px;
  height: 3px;
  z-index: 3;
  background: #050505;
  border: 1px solid rgba(255, 180, 180, 0.65);
}

.aero-cell h3,
.ops-grid h3,
.process-steps h3,
.drop-grid h3 {
  margin: 0 0 8px;
  color: #f4f4f5;
  font-size: 15px;
  font-weight: 400;
}

.aero-cell p,
.ops-grid p,
.process-steps p,
.drop-grid p,
.faq-list p {
  margin: 0;
  color: #71717a;
  font-size: 13px;
  line-height: 1.72;
  font-weight: 300;
}

.aero-cell-center {
  grid-row: span 2;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.orbital-rings {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0.3;
}

.orbital-rings svg {
  width: 300px;
  height: 300px;
}

.orbital-rings circle {
  fill: none;
  stroke: #fff;
  stroke-width: 0.2;
  stroke-dasharray: 1 3;
}

.blue-p-core {
  position: relative;
  width: 192px;
  height: 192px;
  display: grid;
  place-items: center;
}

.blue-p-core .blue-glow {
  position: absolute;
  inset: -28%;
  border-radius: 50%;
  background: rgba(239, 29, 29, 0.2);
  filter: blur(50px);
  transform: scale(1.5);
}

.blue-p-core::after {
  content: "";
  width: 100%;
  aspect-ratio: 1600 / 1025;
  background: linear-gradient(135deg, #ff6b6b, #a50000);
  filter: drop-shadow(0 0 18px rgba(239, 29, 29, 0.65));
  -webkit-mask: url("psyqo-p-mask.png") center / contain no-repeat;
  mask: url("psyqo-p-mask.png") center / contain no-repeat;
}

.blue-p-core img {
  display: none;
}

.layer-stack {
  position: absolute;
  left: 50%;
  bottom: 42px;
  width: 138px;
  transform: translateX(-50%);
}

.layer-stack polygon {
  fill: rgba(239, 29, 29, 0.08);
  stroke: rgba(255, 255, 255, 0.42);
  stroke-width: 1;
}

.layer-stack polygon:first-child {
  fill: rgba(239, 29, 29, 0.16);
}

.layer-stack circle {
  fill: var(--aero-red-soft);
  filter: drop-shadow(0 0 10px rgba(239, 29, 29, 0.9));
}

.layer-stack path {
  stroke: rgba(255, 107, 107, 0.72);
  stroke-width: 1;
  stroke-dasharray: 3 4;
}

.route-panel {
  position: relative;
  height: 150px;
  margin-bottom: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.025);
}

.route-head {
  position: absolute;
  inset: 16px 16px auto;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #71717a;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.route-head span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--aero-red-soft);
  box-shadow: 0 0 12px rgba(239, 29, 29, 0.9);
}

.route-head em {
  margin-left: auto;
  font-style: normal;
  color: #71717a;
  letter-spacing: 0;
  text-transform: none;
}

.route-panel svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.route-faint {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
}

.route-active-glow {
  fill: none;
  stroke: rgba(239, 29, 29, 0.22);
  stroke-width: 7;
  stroke-linecap: round;
}

.route-active {
  fill: none;
  stroke: var(--aero-red-soft);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-dasharray: 6 6;
}

.route-panel circle {
  fill: #050505;
  stroke: rgba(255, 255, 255, 0.55);
}

.route-panel circle:last-child {
  fill: var(--aero-red);
  stroke: #ffb4b4;
}

.route-card {
  position: absolute;
  left: 20px;
  bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(20, 2, 2, 0.8);
  padding: 8px 12px;
  color: #f4f4f5;
  font-size: 11px;
}

.route-card span {
  color: #ffb4b4;
}

/* Node-agent orbit cell */
.aero-node-cell {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    #050505;
  background-size: 26px 26px, 26px 26px, auto;
}

.node-orbit {
  position: relative;
  width: 180px;
  height: 140px;
  margin: 6px auto 22px;
  display: grid;
  place-items: center;
}

.node-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.node-ring-lg { width: 112px; height: 112px; }
.node-ring-sm { width: 80px; height: 80px; border-color: rgba(255, 255, 255, 0.05); }

.node-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}

.node-lines path {
  stroke: rgba(255, 180, 180, 0.16);
  stroke-width: 1;
  fill: none;
}

.node-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.nd-tl { left: 34px; top: 24px; }
.nd-tr { right: 34px; top: 24px; border-color: rgba(255, 107, 107, 0.6); }
.nd-bl { left: 34px; bottom: 30px; border-color: rgba(255, 255, 255, 0.18); }
.nd-br {
  right: 34px;
  bottom: 30px;
  background: var(--aero-red);
  border-color: #ffb4b4;
  box-shadow: 0 0 12px rgba(239, 29, 29, 0.75);
}

.node-core {
  position: relative;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.node-core-glow {
  position: absolute;
  inset: 0;
  background: rgba(239, 29, 29, 0.2);
  filter: blur(20px);
}

.node-core::after {
  content: "";
  position: relative;
  width: 60%;
  aspect-ratio: 1600 / 1025;
  background: linear-gradient(135deg, #ff6b6b, #a50000);
  filter: drop-shadow(0 0 10px rgba(239, 29, 29, 0.6));
  -webkit-mask: url("psyqo-p-mask.png") center / contain no-repeat;
  mask: url("psyqo-p-mask.png") center / contain no-repeat;
}

.node-pill {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  padding: 3px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 107, 107, 0.25);
  background: rgba(239, 29, 29, 0.1);
  color: #ffb4b4;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

.aero-cta-cell {
  display: grid;
  place-items: center;
  background: repeating-linear-gradient(-45deg, transparent, transparent 8px, rgba(255, 255, 255, 0.016) 8px, rgba(255, 255, 255, 0.016) 16px);
}

.aero-cta-cell a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: #050505;
  padding: 12px 24px;
  color: #f4f4f5;
  text-decoration: none;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.aero-cta-cell a:hover {
  border-color: rgba(255, 107, 107, 0.4);
  box-shadow: 0 0 28px rgba(239, 29, 29, 0.18);
}

.aero-cta-cell a span {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--aero-red);
}

.aero-cta-cell a span:nth-of-type(2) { background: rgba(239, 29, 29, 0.7); }
.aero-cta-cell a span:nth-of-type(3) { background: rgba(239, 29, 29, 0.4); }
.aero-cta-cell a span:nth-of-type(4) { background: rgba(239, 29, 29, 0.2); }

.aero-cta-pin {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #050505;
  border: 1px solid rgba(255, 180, 180, 0.5);
}

.aero-cta-pin.tl { top: -2px; left: -2px; }
.aero-cta-pin.br { bottom: -2px; right: -2px; }

/* Video wall: 3 vertically-scrolling columns (1:1 with Aeronet reviews). */
.video-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.testimonial-window {
  height: 430px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

.video-col-offset { transform: translateY(32px); }

.testimonial-track {
  display: flex;
  flex-direction: column;
  gap: 12px;
  will-change: transform;
}

.video-card {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    repeating-linear-gradient(-45deg, transparent, transparent 8px, rgba(255, 255, 255, 0.016) 8px, rgba(255, 255, 255, 0.016) 16px),
    rgba(255, 255, 255, 0.03);
  padding: 12px;
  color: inherit;
  text-decoration: none;
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.video-card:hover {
  border-color: rgba(255, 107, 107, 0.38);
  background:
    repeating-linear-gradient(-45deg, transparent, transparent 8px, rgba(255, 255, 255, 0.02) 8px, rgba(255, 255, 255, 0.02) 16px),
    rgba(239, 29, 29, 0.05);
  box-shadow: 0 0 40px rgba(239, 29, 29, 0.12);
}

.video-thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #000;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.08) brightness(0.78);
  transition: filter 220ms ease, transform 220ms ease;
}

.video-card:hover .video-thumb img {
  filter: saturate(1.05) contrast(1.12) brightness(0.92);
  transform: scale(1.025);
}

.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.48)),
    radial-gradient(circle at 50% 50%, rgba(239, 29, 29, 0.1), transparent 48%);
  pointer-events: none;
}

.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 180, 180, 0.5);
  background: rgba(239, 29, 29, 0.88);
  color: #fff;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 34px rgba(239, 29, 29, 0.48);
}

.video-play svg {
  width: 24px;
  height: 24px;
  margin-left: 3px;
}

.video-card strong {
  display: block;
  margin-top: 12px;
  color: #f4f4f5;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
}

.testimonial-up { animation: testimonialUp 20s ease-in-out infinite alternate; }
.testimonial-down { animation: testimonialDown 20s ease-in-out infinite alternate; }

@keyframes testimonialUp {
  from { transform: translateY(0); }
  to { transform: translateY(-200px); }
}

@keyframes testimonialDown {
  from { transform: translateY(-200px); }
  to { transform: translateY(0); }
}

@media (max-width: 1023px) {
  .testimonial-window {
    height: auto;
    overflow: visible;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .video-col-offset { transform: none; }
  .testimonial-track { animation: none !important; }
}

/* About: copy left, stock image right */
.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.about-copy h2 {
  margin: 14px 0 24px;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.08;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #f4f4f5;
}

.about-copy {
  position: relative;
  z-index: 40;
}

.about-copy p {
  margin: 0 0 18px;
  max-width: 520px;
  color: #a1a1aa;
  font-size: 16px;
  line-height: 1.72;
  font-weight: 300;
}

.about-copy p em {
  color: #6b6b73;
  font-style: italic;
  font-size: 13px;
}

.about-copy .stat-list {
  margin-top: 28px;
}

.about-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(255, 107, 107, 0.18);
  background:
    radial-gradient(circle at 50% 50%, rgba(239, 29, 29, 0.16), transparent 48%),
    linear-gradient(135deg, rgba(20, 0, 0, 0.92), rgba(0, 0, 0, 0.96));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 50px rgba(239, 29, 29, 0.1);
}

.about-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.42));
  background-size: 34px 34px, 34px 34px, auto;
  pointer-events: none;
  opacity: 1;
  transition: opacity 420ms ease;
}

.about-visual.logo-dock-ready::after {
  opacity: 0;
}

.about-visual.logo-docked {
  background:
    radial-gradient(circle at 50% 50%, rgba(239, 29, 29, 0.18), transparent 44%),
    linear-gradient(135deg, rgba(20, 0, 0, 0.92), rgba(0, 0, 0, 0.96));
}

.about-visual-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  padding: 6px 14px;
  border: 1px solid rgba(255, 107, 107, 0.3);
  background: rgba(0, 0, 0, 0.5);
  color: #ffb4b4;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Deployment-pipeline style timeline (channels section) */
.pipeline-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.pipeline-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 107, 107, 0.24);
  background: rgba(239, 29, 29, 0.08);
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 28px;
  color: #ffb4b4;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.pipeline-badge .badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--aero-red);
  box-shadow: 0 0 12px rgba(239, 29, 29, 0.9);
}

.pipeline-copy h2 {
  margin: 0 0 24px;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.02;
  font-weight: 300;
  letter-spacing: -0.03em;
  color: #f4f4f5;
}

.pipeline-copy h2 .grad {
  color: transparent;
  background: linear-gradient(135deg, #ff6b6b, var(--aero-red));
  -webkit-background-clip: text;
  background-clip: text;
}

.pipeline-copy p {
  margin: 0 0 36px;
  max-width: 440px;
  color: #71717a;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.7;
  font-weight: 300;
}

.pipeline-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 0;
}

.pipeline-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-left: 56px;
  --pipeline-progress: 0%;
}

.pipeline-spine {
  position: absolute;
  left: 21px;
  top: 30px;
  bottom: 30px;
  width: 1px;
  overflow: hidden;
  background: linear-gradient(to bottom, transparent, rgba(255, 107, 107, 0.22), transparent);
}

.pipeline-spine::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: var(--pipeline-progress);
  background: linear-gradient(to bottom, rgba(255, 107, 107, 0.1), rgba(239, 29, 29, 0.95), rgba(255, 107, 107, 0.72));
  box-shadow: 0 0 18px rgba(239, 29, 29, 0.75);
  transition: height 160ms linear;
}

.pipeline-step { position: relative; }

.pipeline-node {
  position: absolute;
  left: -56px;
  top: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 107, 107, 0.3);
  background: rgba(239, 29, 29, 0.06);
  transition: border-color 260ms ease, background 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.pipeline-node::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px solid rgba(255, 107, 107, 0.12);
  transition: border-color 260ms ease, transform 260ms ease, opacity 260ms ease;
}

.pipeline-node::after {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(239, 29, 29, 0.3);
  box-shadow: 0 0 8px rgba(239, 29, 29, 0.25);
  transition: background 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.pipeline-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  padding: 22px 26px;
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.pipeline-card:hover {
  border-color: rgba(255, 107, 107, 0.28);
  background: rgba(239, 29, 29, 0.04);
}

.pipeline-card h3 {
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 400;
  color: #f4f4f5;
}

.pipeline-card .step-num {
  color: var(--aero-red);
  margin-right: 8px;
}

.pipeline-card p {
  margin: 0;
  color: #71717a;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 300;
}

.pipeline-step.is-filled .pipeline-node {
  border-color: rgba(255, 107, 107, 0.72);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 145, 145, 0.26), transparent 54%),
    rgba(239, 29, 29, 0.18);
  box-shadow: 0 0 28px rgba(239, 29, 29, 0.24);
  transform: scale(1.04);
}

.pipeline-step.is-filled .pipeline-node::before {
  border-color: rgba(239, 29, 29, 0.42);
  opacity: 1;
  transform: scale(1.08);
}

.pipeline-step.is-filled .pipeline-node::after {
  background: var(--aero-red);
  box-shadow: 0 0 18px rgba(239, 29, 29, 0.95), 0 0 34px rgba(239, 29, 29, 0.32);
  transform: scale(1.18);
}

.pipeline-step.is-filled .pipeline-card {
  border-color: rgba(255, 107, 107, 0.25);
  background: rgba(239, 29, 29, 0.045);
  box-shadow: 0 18px 50px rgba(239, 29, 29, 0.08);
}

@media (prefers-reduced-motion: reduce) {
  .pipeline-spine::after,
  .pipeline-node,
  .pipeline-node::before,
  .pipeline-node::after,
  .pipeline-card {
    transition-duration: 1ms !important;
  }
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.process-copy h2 {
  margin: 0 0 20px;
  font-size: clamp(38px, 4.5vw, 62px);
  line-height: 1;
  font-weight: 300;
}

.process-steps {
  display: grid;
  gap: 12px;
}

.process-steps article {
  display: flex;
  gap: 24px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
}

.process-steps span {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(12, 12, 14, 0.9);
  color: #f4f4f5;
  font-size: 18px;
  font-weight: 300;
}

.ops-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.ops-grid article,
.drop-grid article,
.faq-list details {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    repeating-linear-gradient(-45deg, transparent, transparent 8px, rgba(255, 255, 255, 0.016) 8px, rgba(255, 255, 255, 0.016) 16px),
    rgba(255, 255, 255, 0.03);
  padding: 9px;
}

.ops-grid article > *,
.drop-grid article > * {
  position: relative;
}

.ops-grid article {
  min-height: 230px;
  padding: 24px;
}

.ops-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(12, 12, 14, 0.9);
}

.ops-icon svg {
  width: 22px;
  height: 22px;
  color: #fff;
}

.ops-wide {
  grid-column: span 2;
}

.ops-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.ops-stats span {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.5);
  padding: 16px;
  color: #71717a;
  font-size: 12px;
}

.ops-stats strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 32px;
  font-weight: 300;
}

.drop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.drop-grid article {
  position: relative;
  padding: 24px;
}

.drop-grid .featured {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.drop-grid .featured > span {
  position: absolute;
  right: 24px;
  top: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  color: #e5e7eb;
  font-size: 12px;
}

.drop-media {
  position: relative;
  aspect-ratio: 4 / 3;
  margin-bottom: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    repeating-linear-gradient(-45deg, transparent, transparent 9px, rgba(255, 255, 255, 0.02) 9px, rgba(255, 255, 255, 0.02) 18px),
    rgba(0, 0, 0, 0.35);
  display: grid;
  place-items: center;
}

.drop-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drop-media-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #52525b;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.drop-media-ph svg {
  width: 26px;
  height: 26px;
}

.drop-price {
  margin-top: 32px;
  color: #fff;
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 300;
  letter-spacing: -0.04em;
}

.drop-grid a {
  display: flex;
  justify-content: center;
  margin-top: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #fff;
  padding: 10px 16px;
  color: #000;
  text-decoration: none;
}

.drop-grid article:not(.featured) a {
  background: #090909;
  color: #e5e7eb;
}

.drop-grid ul {
  display: grid;
  gap: 12px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.drop-grid li {
  color: #d1d5db;
  font-size: 14px;
}

.drop-grid li::before {
  content: "✓";
  margin-right: 10px;
  color: #fff;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
  gap: 48px;
}

.aero-mini-label {
  color: #a1a1aa;
  font-size: 12px;
}

.faq-layout h2 {
  margin-top: 12px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list summary {
  cursor: pointer;
  color: #f4f4f5;
  font-size: 16px;
  font-weight: 400;
}

.faq-list p {
  margin-top: 14px;
}

@media (max-width: 980px) {

  .aeronet-hero {
    height: 820px;
    min-height: 820px;
  }

  .psyqo-hero-container {
    padding-inline: 24px;
  }

  .psyqo-hero-copy {
    top: 34%;
    left: 24px;
    right: 24px;
    max-width: none;
    text-align: center;
  }

  .psyqo-hero-copy h1 {
    max-width: none;
    font-size: clamp(48px, 14vw, 70px);
  }

  .psyqo-hero-copy p {
    margin-inline: auto;
  }

  .psyqo-hero-actions {
    justify-content: center;
  }

  .psyqo-float-field {
    display: none;
  }

  .aero-section-header,
  .process-layout,
  .pipeline-layout,
  .about-split,
  .faq-layout {
    grid-template-columns: 1fr;
    display: grid;
  }

  .aero-fabric-grid,
  .ops-grid,
  .drop-grid,
  .video-wall {
    grid-template-columns: 1fr;
  }

  .aero-cell-center,
  .ops-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .testimonial-up,
  .testimonial-down {
    animation: none;
  }
}

@media (max-width: 640px) {
  .aero-section {
    padding: 82px 16px;
  }

  .psyqo-hero-actions {
    flex-direction: column;
  }

  .psyqo-hero-actions .btn {
    width: 100%;
  }

  .aero-cell {
    min-height: 220px;
    padding: 24px;
  }

  .ops-stats {
    grid-template-columns: 1fr;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Shop carousel cleanup ───────────────────────────────────────────── */
.aero-shop-section {
  background: #f7f7f3 !important;
  color: #050505 !important;
  border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.aero-shop-section::before,
.aero-shop-section::after {
  opacity: 0 !important;
}

.aero-shop-section .section-kicker {
  color: #9f0000 !important;
  border-color: rgba(239, 29, 29, 0.18) !important;
  background: rgba(239, 29, 29, 0.08) !important;
}

.aero-shop-section .section-kicker svg {
  color: #ef1d1d !important;
}

.aero-shop-section h2,
.aero-shop-section h3 {
  color: #050505 !important;
}

.aero-shop-section p {
  color: #575b63 !important;
}

.shop-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
}

.drop-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(286px, 360px);
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 2px;
  padding: 2px 2px 16px;
  scrollbar-width: none;
}

.drop-track::-webkit-scrollbar {
  display: none;
}

.drop-card {
  position: relative;
  scroll-snap-align: start;
  min-height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  padding: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.drop-card.featured {
  border-color: rgba(239, 29, 29, 0.36);
  box-shadow: 0 20px 52px rgba(239, 29, 29, 0.12);
}

.drop-card.featured > span {
  position: absolute;
  right: 22px;
  top: 22px;
  z-index: 2;
  border: 1px solid rgba(239, 29, 29, 0.22);
  background: #fff;
  padding: 6px 10px;
  color: #9f0000;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.drop-card .drop-media {
  border-color: rgba(0, 0, 0, 0.1);
  background:
    linear-gradient(135deg, rgba(239, 29, 29, 0.08), transparent 42%),
    repeating-linear-gradient(-45deg, transparent, transparent 9px, rgba(0, 0, 0, 0.035) 9px, rgba(0, 0, 0, 0.035) 18px),
    #eeeeea;
}

.drop-card .drop-media-ph {
  color: #6f737b;
}

.drop-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.drop-card p {
  min-height: 72px;
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.drop-card .drop-price {
  margin-top: 24px;
  color: #050505;
  font-size: clamp(34px, 3.2vw, 46px);
  font-weight: 300;
  letter-spacing: -0.04em;
}

.drop-card a {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  margin-top: 24px;
  border: 1px solid #050505;
  background: #050505;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.drop-card a:hover {
  border-color: #ef1d1d;
  background: #ef1d1d;
}

.drop-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.drop-card li {
  color: #3f4248;
  font-size: 14px;
}

.drop-card li::before {
  content: "+";
  margin-right: 10px;
  color: #ef1d1d;
  font-weight: 700;
}

.shop-arrow {
  align-self: start;
  width: 48px;
  height: 48px;
  margin-top: clamp(132px, 14vw, 190px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #050505;
  color: #fff;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, opacity 180ms ease;
}

.shop-arrow:hover {
  transform: translateY(-2px);
  background: #ef1d1d;
}

.shop-arrow:disabled {
  cursor: default;
  opacity: 0.32;
  transform: none;
}

.shop-arrow svg {
  width: 20px;
  height: 20px;
}

/* ── FAQ light section ───────────────────────────────────────────────── */
.aero-faq-section {
  background: #fff !important;
  color: #050505 !important;
  border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.aero-faq-section::before,
.aero-faq-section::after {
  opacity: 0 !important;
}

.aero-faq-section .aero-mini-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid rgba(239, 29, 29, 0.18);
  background: rgba(239, 29, 29, 0.08);
  padding: 0 12px;
  color: #9f0000;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.aero-faq-section h2 {
  color: #050505 !important;
}

.aero-faq-section .faq-list details {
  border-color: rgba(0, 0, 0, 0.1) !important;
  background: #f7f7f3 !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.055);
}

.aero-faq-section .faq-list summary {
  color: #050505 !important;
  font-weight: 700;
}

.aero-faq-section .faq-list p {
  color: #575b63 !important;
}

@media (max-width: 720px) {

  .shop-carousel {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 8px;
    margin-top: 36px;
  }

  .shop-arrow {
    width: 40px;
    height: 44px;
    margin-top: 132px;
  }

  .drop-track {
    grid-auto-columns: minmax(238px, 76vw);
    gap: 12px;
  }

  .drop-card {
    padding: 18px;
  }
}

body,
button,
input,
.btn,
.pipeline-card p,
.about-copy p,
.aero-section-header p,
.drop-card p,
.faq-list p {
  font-family: var(--font-brand);
}

/* ── PsyQo Space Grotesk type system ─────────────────────────────────── */
.psyqo-hero-copy h1 {
  margin: 0 0 24px;
  max-width: 12ch;
  font-family: var(--font-brand) !important;
  font-size: clamp(68px, 8.6vw, 112px);
  font-weight: 700 !important;
  line-height: 0.9;
  letter-spacing: -0.055em !important;
  padding-bottom: 0.12em;
  color: #fff !important;
  background: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: currentColor !important;
  text-transform: none;
}

.psyqo-hero-copy h1 .hero-h1-lead {
  display: block;
  margin-bottom: 0.02em;
  background: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  color: rgba(255, 255, 255, 0.92) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.92) !important;
  font-size: 0.74em;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.96;
  text-transform: none;
}

.psyqo-hero-copy h1 .hero-h1-emphasis {
  position: relative;
  display: block;
  background: linear-gradient(135deg, var(--aero-red) 0%, #ff2a2a 46%, #ffd0d0 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  font-family: inherit !important;
  font-size: 1em;
  font-weight: 700 !important;
  letter-spacing: -0.06em;
  line-height: 0.88;
  transform: none !important;
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}

.psyqo-hero-copy p {
  color: rgba(255, 255, 255, 0.82) !important;
}

.psyqo-hero-copy h1 .hero-h1-emphasis::after {
  content: attr(data-flash-text);
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    transparent 38%,
    rgba(255, 255, 255, 0.98) 48%,
    rgba(255, 225, 225, 0.92) 52%,
    transparent 62%,
    transparent 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-transform: inherit;
  white-space: inherit;
  -webkit-text-fill-color: transparent;
  animation: psyqo-eclipse-flash 6s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

@keyframes psyqo-eclipse-flash {
  0%,
  75% {
    background-position: 200% center;
    opacity: 0;
  }

  78% {
    opacity: 0.95;
  }

  100% {
    background-position: -200% center;
    opacity: 0;
  }
}

.about-copy h2,
.pipeline-copy h2,
.aero-section-header h2,
.process-copy h2,
.faq-layout h2,
.section-head h2 {
  font-family: var(--font-brand) !important;
}

@media (prefers-reduced-motion: reduce) {
  .psyqo-hero-copy h1 .hero-h1-emphasis::after {
    animation: none;
    opacity: 0;
  }
}

@media (max-width: 760px) {
  .psyqo-hero-copy h1 {
    max-width: none;
    font-size: clamp(56px, 16vw, 78px);
  }

  .psyqo-hero-copy h1 .hero-h1-lead {
    display: block;
    font-size: 0.72em;
    letter-spacing: -0.04em;
  }

.psyqo-hero-copy h1 .hero-h1-emphasis {
    font-size: 1em;
    letter-spacing: -0.055em;
    transform: none !important;
  }
}

.about-stat-graph {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transition: opacity 380ms ease;
}

.about-visual.logo-docked .about-stat-graph {
  opacity: 1;
}

.stat-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(28vw, 260px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 90, 90, 0.28);
  border-radius: 999px;
  box-shadow:
    0 0 42px rgba(239, 29, 29, 0.16),
    inset 0 0 42px rgba(239, 29, 29, 0.08);
}

.stat-ring::before,
.stat-ring::after,
.stat-burst {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(255, 180, 180, 0.12);
  border-radius: inherit;
}

.stat-ring::after {
  inset: 31%;
}

.stat-burst {
  left: 50%;
  top: 50%;
  width: min(34vw, 330px);
  height: min(34vw, 330px);
  inset: auto;
  transform: translate(-50%, -50%) rotate(18deg);
  border-color: rgba(239, 29, 29, 0.18);
  animation: statOrbit 9s linear infinite;
}

.burst-b {
  width: min(40vw, 390px);
  height: min(40vw, 390px);
  transform: translate(-50%, -50%) rotate(-23deg);
  animation-duration: 13s;
  animation-direction: reverse;
}

.stat-node {
  position: absolute;
  width: min(188px, 36%);
  border: 1px solid rgba(255, 107, 107, 0.22);
  background: rgba(8, 0, 0, 0.76);
  padding: 12px 14px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.36);
  transform: translateY(10px) scale(0.96);
  opacity: 0;
}

.stat-node::before {
  content: "";
  position: absolute;
  height: 1px;
  width: clamp(76px, 10vw, 148px);
  background: linear-gradient(90deg, rgba(239, 29, 29, 0), rgba(255, 107, 107, 0.56));
  box-shadow: 0 0 12px rgba(239, 29, 29, 0.36);
  opacity: 0.86;
  pointer-events: none;
}

.stat-node-head {
  display: flex;
  align-items: center;
  gap: 9px;
}

.stat-icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  color: #ef1d1d;
  filter: drop-shadow(0 0 12px rgba(239, 29, 29, 0.4));
}

.stat-icon-cake {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-icon-cake path:nth-child(2),
.stat-icon-cake path:nth-child(4) {
  fill: currentColor;
  stroke: currentColor;
}

.stat-icon-youtube {
  width: 31px;
  height: 24px;
  fill: currentColor;
}

.stat-icon-youtube .youtube-cutout {
  fill: #080000;
}

.views-bars {
  display: flex;
  align-items: end;
  gap: 5px;
  height: 38px;
  margin: 0 0 10px;
}

.views-bars span {
  display: block;
  width: 8px;
  height: var(--bar);
  min-height: 8px;
  border-radius: 999px 999px 2px 2px;
  background: linear-gradient(180deg, #ff7474, #ef1d1d 58%, #8f0000);
  box-shadow: 0 0 12px rgba(239, 29, 29, 0.35);
  transform: scaleY(0);
  transform-origin: bottom;
}

.about-visual.logo-docked .views-bars span {
  animation: viewsBarRise 1.15s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(360ms + (var(--i) * 80ms));
}

.about-visual.logo-docked .stat-node {
  animation: statNodeIn 520ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.stat-node strong,
.stat-node span {
  display: block;
}

.stat-node strong {
  color: #fff;
  font-size: clamp(16px, 1.35vw, 22px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.stat-node span {
  margin-top: 2px;
  color: rgba(255, 215, 215, 0.66);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.typing-line {
  min-height: 14px;
}

.typing-line em {
  display: inline-block;
  min-width: 58px;
  color: #fff;
  font-style: normal;
}

.typing-cursor {
  display: inline-block;
  width: 6px;
  height: 1em;
  margin-left: 3px;
  transform: translateY(2px);
  background: #ef1d1d;
  box-shadow: 0 0 10px rgba(239, 29, 29, 0.5);
  animation: psyqoCursorBlink 1s steps(1) infinite;
}

.stat-node-age {
  left: 7%;
  top: 14%;
  animation-delay: 40ms !important;
}

.stat-node-age::before {
  left: 100%;
  top: 74%;
  transform: rotate(29deg);
  transform-origin: left center;
}

.stat-node-subs {
  right: 7%;
  top: 18%;
  animation-delay: 120ms !important;
}

.stat-node-subs::before {
  right: 100%;
  top: 70%;
  transform: rotate(151deg);
  transform-origin: right center;
}

.stat-node-views {
  left: 8%;
  bottom: 16%;
  animation-delay: 200ms !important;
}

.stat-node-views::before {
  left: 100%;
  top: 28%;
  transform: rotate(-24deg);
  transform-origin: left center;
}

.stat-node-roster {
  right: 8%;
  bottom: 16%;
  animation-delay: 280ms !important;
}

.stat-node-roster::before {
  right: 100%;
  top: 32%;
  transform: rotate(204deg);
  transform-origin: right center;
}

.roster-accordion-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.roster-drop {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 12% 0%, rgba(239, 29, 29, 0.13), transparent 28%),
    rgba(255, 255, 255, 0.03);
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.roster-drop:hover,
.roster-drop[open] {
  border-color: rgba(239, 29, 29, 0.34);
  background:
    radial-gradient(circle at 12% 0%, rgba(239, 29, 29, 0.2), transparent 30%),
    rgba(255, 255, 255, 0.045);
}

.roster-drop summary {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  gap: 12px;
  cursor: pointer;
  list-style: none;
}

.roster-drop summary > :not(svg) {
  grid-column: 1;
}

.roster-drop summary::-webkit-details-marker {
  display: none;
}

.roster-drop summary svg {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: start;
  justify-self: end;
  width: 20px;
  height: 20px;
  color: rgba(255, 180, 180, 0.72);
  transition: transform 220ms ease;
}

.roster-drop[open] summary svg {
  transform: rotate(180deg);
}

.roster-drop summary p {
  margin-bottom: 0;
}

.member-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  list-style: none;
}

.member-list li {
  min-height: 38px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.38);
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.process-actions {
  margin-top: 28px;
}

.process-steps article {
  align-items: flex-start;
}

.partner-media-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.partner-card {
  display: grid;
  grid-template-rows: 170px minmax(0, 1fr);
  gap: 18px;
  padding: 14px !important;
}

.partner-wide {
  grid-column: span 2;
}

.partner-image {
  min-height: 170px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-size: cover;
  background-position: center;
  filter: saturate(0.82) contrast(1.08) brightness(0.78);
}

.partner-image-creator {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(20, 0, 0, 0.72)),
    url("https://images.unsplash.com/photo-1542751371-adc38448a05e?auto=format&fit=crop&w=900&q=72");
}

.partner-image-event {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(20, 0, 0, 0.72)),
    url("https://images.unsplash.com/photo-1511512578047-dfb367046420?auto=format&fit=crop&w=900&q=72");
}

.partner-image-drop {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(20, 0, 0, 0.72)),
    url("https://images.unsplash.com/photo-1556905055-8f358a7a47b2?auto=format&fit=crop&w=900&q=72");
}

.partner-image-studio {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(20, 0, 0, 0.72)),
    url("https://images.unsplash.com/photo-1616588589676-62b3bd4ff6d2?auto=format&fit=crop&w=1200&q=72");
}

@keyframes statNodeIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes statOrbit {
  to {
    transform: translate(-50%, -50%) rotate(378deg);
  }
}

@keyframes viewsBarRise {
  to {
    transform: scaleY(1);
  }
}

@keyframes psyqoCursorBlink {
  0%,
  48% {
    opacity: 1;
  }

  49%,
  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .views-bars span {
    transform: scaleY(1);
    animation: none !important;
  }

  .typing-cursor {
    animation: none !important;
  }
}

@media (max-width: 980px) {
  .roster-accordion-grid,
  .partner-media-grid {
    grid-template-columns: 1fr;
  }

  .partner-wide {
    grid-column: auto;
  }
}

@media (max-width: 720px) {

  .about-stat-graph {
    display: none;
  }

  .member-list {
    grid-template-columns: 1fr;
  }
}

.psyqo-hero-copy h1 {
  max-width: 13.4ch !important;
  overflow: visible !important;
  contain: none !important;
  line-height: 1 !important;
  padding: 0 0.16em 0.2em 0 !important;
}

.psyqo-hero-copy h1 .hero-h1-lead {
  line-height: 1.05 !important;
}

.psyqo-hero-copy h1 .hero-h1-emphasis {
  width: max-content;
  max-width: none;
  overflow: visible !important;
  line-height: 1.08 !important;
  padding: 0 0.12em 0.14em 0 !important;
  margin-bottom: -0.1em;
}

.psyqo-hero-copy h1 .hero-h1-emphasis::after {
  inset: 0 0.12em 0.14em 0;
  overflow: visible;
}

.stat-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.9;
  pointer-events: none;
}

.stat-lines path {
  fill: none;
  stroke: rgba(255, 107, 107, 0.42);
  stroke-width: 0.35;
  stroke-dasharray: 1.4 1.2;
  filter: drop-shadow(0 0 6px rgba(239, 29, 29, 0.26));
}

.stat-node {
  z-index: 3;
  width: min(210px, 38%);
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0 0 0 18px;
}

.stat-node::before {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50%;
  background: #ef1d1d !important;
  box-shadow: 0 0 0 9px rgba(239, 29, 29, 0.12), 0 0 20px rgba(239, 29, 29, 0.55);
  opacity: 1;
}

.stat-node::after {
  content: "";
  position: absolute;
  inset: -10px -14px -10px 0;
  z-index: -1;
  border: 1px solid rgba(255, 107, 107, 0.22);
  background: rgba(8, 0, 0, 0.58);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 12px, 100% 100%, 0 100%);
}

.stat-node-age::before,
.stat-node-views::before {
  left: -2px !important;
  top: 10px !important;
  transform: none !important;
}

.stat-node-subs::before,
.stat-node-roster::before {
  right: auto !important;
  left: -2px !important;
  top: 10px !important;
  transform: none !important;
}

.roster-split {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 76px);
  min-height: 520px;
  padding: clamp(24px, 4vw, 54px) 0;
}

.roster-lanes {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(18px, 3vw, 34px);
}

.roster-lane {
  position: relative;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 0;
  text-align: left;
  font-size: clamp(32px, 5vw, 78px);
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  transition: color 220ms ease, transform 220ms ease;
}

.roster-lane::after {
  content: "";
  position: absolute;
  left: calc(100% + 18px);
  top: 50%;
  width: clamp(48px, 7vw, 118px);
  height: 1px;
  background: linear-gradient(90deg, #ef1d1d, transparent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.roster-lane:hover,
.roster-lane.active {
  color: #ef1d1d;
  transform: translateX(6px);
}

.roster-lane.active::after {
  transform: scaleX(1);
}

.roster-detail {
  position: relative;
  min-height: 460px;
  display: grid;
  align-content: center;
  gap: 28px;
  padding: clamp(22px, 4vw, 44px);
}

.roster-detail::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 107, 107, 0.24);
  background:
    radial-gradient(circle at 0% 50%, rgba(239, 29, 29, 0.16), transparent 34%),
    linear-gradient(90deg, rgba(239, 29, 29, 0.08), rgba(255, 255, 255, 0.025));
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
}

.roster-description,
.roster-name-map {
  position: relative;
  z-index: 2;
}

.roster-detail-kicker {
  display: block;
  margin-bottom: 12px;
  color: #ef1d1d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.roster-description h3 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.roster-description p {
  max-width: 560px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.65;
}

.roster-name-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 16px;
  padding-top: 22px;
}

.roster-name {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.roster-name::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: #ef1d1d;
  box-shadow: 0 0 12px rgba(239, 29, 29, 0.5);
}

.roster-burst {
  position: absolute;
  left: -30px;
  top: 50%;
  z-index: 1;
  width: 120px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 29, 29, 0.75), rgba(239, 29, 29, 0.18) 38%, transparent 70%);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) scale(0.2);
}

.roster-split.bursting .roster-burst {
  animation: rosterBurst 480ms cubic-bezier(0.16, 1, 0.3, 1);
}

.process-copy .section-kicker span {
  text-transform: uppercase;
}

.process-steps {
  gap: 18px;
}

.process-steps article {
  min-height: 178px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) minmax(118px, 0.3fr);
  align-items: stretch !important;
  gap: 22px;
  padding: 18px;
}

.process-steps article > div:not(.process-thumb) {
  align-self: center;
}

.process-thumb {
  min-height: 126px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 107, 107, 0.2);
  background:
    radial-gradient(circle at 50% 38%, rgba(239, 29, 29, 0.24), transparent 42%),
    rgba(0, 0, 0, 0.38);
  color: #ff4a4a;
}

.process-thumb svg {
  width: 42px;
  height: 42px;
  stroke-width: 1.5;
}

.partners-container {
  width: min(96rem, calc(100% - 48px));
}

.partner-pitch {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.78fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: stretch;
  padding: clamp(22px, 4vw, 48px);
  border: 1px solid rgba(255, 107, 107, 0.2);
  background:
    radial-gradient(circle at 78% 22%, rgba(239, 29, 29, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
}

.partner-pitch-copy h3 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.partner-pitch-copy p {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.72;
}

.partner-offers {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.partner-offers span,
.partner-metrics span {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 14px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
}

.partner-offers strong,
.partner-metrics strong {
  display: block;
  color: #fff;
  font-size: 18px;
}

.partner-visual-stack {
  position: relative;
  min-height: 430px;
}

.partner-hero-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(20, 0, 0, 0.7)),
    url("https://images.unsplash.com/photo-1511512578047-dfb367046420?auto=format&fit=crop&w=1200&q=78");
  background-position: center;
  background-size: cover;
  filter: saturate(0.85) contrast(1.08) brightness(0.72);
}

.partner-campaign-svg {
  position: absolute;
  right: 8%;
  bottom: 8%;
  width: min(78%, 420px);
  padding: 22px;
  border: 1px solid rgba(255, 107, 107, 0.26);
  background: rgba(0, 0, 0, 0.5);
  overflow: visible;
}

.partner-campaign-svg path,
.partner-campaign-svg rect {
  fill: none;
  stroke: rgba(255, 255, 255, 0.76);
  stroke-width: 2;
}

.partner-campaign-svg path {
  stroke: #ef1d1d;
  filter: drop-shadow(0 0 10px rgba(239, 29, 29, 0.55));
}

.partner-campaign-svg circle {
  fill: #ef1d1d;
}

.partner-metrics {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-window {
  height: 560px;
}

.testimonial-up {
  animation: testimonialUp 12s linear infinite alternate;
}

.testimonial-down {
  animation: testimonialDown 12s linear infinite alternate;
}

@keyframes testimonialUp {
  from { transform: translateY(0); }
  to { transform: translateY(-54%); }
}

@keyframes testimonialDown {
  from { transform: translateY(-54%); }
  to { transform: translateY(0); }
}

.footer-grid > .footer-brand {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 18px;
  align-items: center;
}

.footer-logo {
  grid-row: span 2;
  width: 76px;
  height: 54px;
  background: linear-gradient(135deg, #ff5a5a, #ef1d1d 58%, #8f0000);
  -webkit-mask: url("psyqo-p-mask.png") center / contain no-repeat;
  mask: url("psyqo-p-mask.png") center / contain no-repeat;
  filter: drop-shadow(0 0 18px rgba(239, 29, 29, 0.45));
}

@keyframes rosterBurst {
  0% {
    opacity: 0;
    transform: translateY(-50%) scale(0.2);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-50%) scale(1.55);
  }
}

@media (max-width: 980px) {
  .roster-split,
  .partner-pitch,
  .process-steps article {
    grid-template-columns: 1fr;
  }

  .roster-name-map,
  .partner-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .roster-lane::after {
    display: none;
  }
}

@media (max-width: 720px) {

  .roster-name-map,
  .partner-metrics {
    grid-template-columns: 1fr;
  }

  .psyqo-hero-copy h1 .hero-h1-emphasis {
    white-space: normal;
  }
}

main section {
  scroll-margin-top: 88px;
}

/* Hero title choreography: lead line lifts, P-logo + SYQOLOGY slides in as one unit. */
.psyqo-hero-copy h1.hero-title-loop {
  position: relative;
  width: min(12.8ch, 100vw - 48px) !important;
  height: 2.04em;
  margin-bottom: 28px !important;
  overflow: visible !important;
  isolation: isolate;
}

.psyqo-hero-copy h1.hero-title-loop .hero-h1-lead {
  position: absolute;
  left: 0;
  top: 0;
  margin: 0 !important;
  will-change: transform, opacity;
  animation: heroLeadLiftLoop 6.8s cubic-bezier(0.16, 1, 0.3, 1) infinite both;
}

.psyqo-hero-copy h1.hero-title-loop .hero-wordmark {
  position: absolute;
  left: 0;
  top: 0.73em;
  display: inline-flex !important;
  align-items: center;
  gap: 0.018em;
  width: max-content;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 0.14em 0.2em 0 !important;
  line-height: 1 !important;
  letter-spacing: -0.065em !important;
  overflow: visible !important;
  will-change: transform, opacity, filter;
  animation: heroPsyqologyWordLoop 6.8s cubic-bezier(0.16, 1, 0.3, 1) infinite both;
}

.psyqo-hero-copy h1.hero-title-loop .hero-wordmark::after {
  content: none !important;
  display: none !important;
}

.hero-wordmark-p {
  width: 0.92em;
  height: 0.63em;
  flex: 0 0 auto;
  object-fit: contain;
  transform: translateY(-0.018em);
  filter:
    brightness(0)
    saturate(100%)
    invert(18%)
    sepia(100%)
    saturate(6085%)
    hue-rotate(354deg)
    brightness(113%)
    contrast(112%)
    drop-shadow(0 0 18px rgba(239, 29, 29, 0.38));
}

.psyqo-hero-copy h1.hero-title-loop .hero-wordmark span {
  display: inline-block;
  margin-left: -0.2em;
  background: linear-gradient(135deg, #ff2020 0%, #ff3434 46%, #ffd0d0 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}

@keyframes heroLeadLiftLoop {
  0%,
  9% {
    transform: translateY(0.75em);
    opacity: 0.98;
  }

  17%,
  79% {
    transform: translateY(0);
    opacity: 1;
  }

  88%,
  100% {
    transform: translateY(0.75em);
    opacity: 0.98;
  }
}

@keyframes heroPsyqologyWordLoop {
  0%,
  13% {
    transform: translateX(-118vw);
    opacity: 0;
    filter: blur(8px);
  }

  24%,
  78% {
    transform: translateX(0);
    opacity: 1;
    filter: blur(0);
  }

  87%,
  100% {
    transform: translateX(-118vw);
    opacity: 0;
    filter: blur(6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .psyqo-hero-copy h1.hero-title-loop .hero-h1-lead,
  .psyqo-hero-copy h1.hero-title-loop .hero-wordmark {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
  }
}

@media (max-width: 720px) {
  .psyqo-hero-copy h1.hero-title-loop {
    height: 2.15em;
  }

  .psyqo-hero-copy h1.hero-title-loop .hero-wordmark {
    top: 0.82em;
    gap: 0.012em;
  }
}

/* Refined kinetic title: full-size lead compresses upward as wordmark snaps in. */
.psyqo-hero-copy h1.hero-title-loop {
  height: 2.12em;
}

.psyqo-hero-copy h1.hero-title-loop .hero-h1-lead {
  font-size: 1em !important;
  line-height: 1 !important;
  letter-spacing: -0.06em !important;
  transform-origin: left top;
  animation: heroLeadResizeLoop 6.8s cubic-bezier(0.16, 1, 0.3, 1) infinite both;
}

.psyqo-hero-copy h1.hero-title-loop .hero-wordmark {
  top: 0.78em;
  gap: 0.1em;
  animation: heroWordmarkSnapLoop 6.8s cubic-bezier(0.16, 1, 0.3, 1) infinite both;
}

.psyqo-hero-copy h1.hero-title-loop .hero-wordmark span {
  position: relative;
}

.psyqo-hero-copy h1.hero-title-loop .hero-wordmark > span:last-child {
  margin-left: 0;
}

.psyqo-hero-copy h1.hero-title-loop .hero-wordmark > span:last-child::after {
  content: "SYQOLOGY";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    transparent 35%,
    rgba(255, 255, 255, 0.98) 48%,
    rgba(255, 220, 220, 0.92) 53%,
    transparent 66%,
    transparent 100%
  );
  background-size: 210% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: heroWordmarkShimmer 6.8s cubic-bezier(0.25, 1, 0.5, 1) infinite both;
}

.hero-wordmark-p-wrap {
  position: relative;
  width: 1.18em;
  height: 0.86em;
  flex: 0 0 auto;
  display: inline-block;
  transform: translateY(-0.018em);
}

.hero-wordmark-p-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    transparent 0%,
    transparent 35%,
    rgba(255, 255, 255, 0.98) 48%,
    rgba(255, 220, 220, 0.92) 53%,
    transparent 66%,
    transparent 100%
  );
  background-size: 210% auto;
  -webkit-mask: url("psyqo-p-mask.png") center / contain no-repeat;
  mask: url("psyqo-p-mask.png") center / contain no-repeat;
  opacity: 0;
  pointer-events: none;
  animation: heroWordmarkShimmer 6.8s cubic-bezier(0.25, 1, 0.5, 1) infinite both;
}

.hero-wordmark-p {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  animation: heroPLogoGlow 6.8s cubic-bezier(0.25, 1, 0.5, 1) infinite both;
}

@keyframes heroLeadResizeLoop {
  0%,
  10% {
    transform: translateY(0.78em) scale(1);
    opacity: 0.98;
  }

  17%,
  78% {
    transform: translateY(0) scale(0.74);
    opacity: 1;
  }

  85%,
  100% {
    transform: translateY(0.78em) scale(1);
    opacity: 0.98;
  }
}

@keyframes heroWordmarkSnapLoop {
  0%,
  11% {
    transform: translateX(-124vw);
    opacity: 0;
    filter: blur(8px);
  }

  17%,
  78% {
    transform: translateX(0);
    opacity: 1;
    filter: blur(0);
  }

  85%,
  100% {
    transform: translateX(-124vw);
    opacity: 0;
    filter: blur(6px);
  }
}

@keyframes heroWordmarkShimmer {
  0%,
  23% {
    opacity: 0;
    background-position: 200% center;
  }

  27% {
    opacity: 0.9;
  }

  42% {
    opacity: 0;
    background-position: -200% center;
  }

  43%,
  100% {
    opacity: 0;
    background-position: -200% center;
  }
}

@keyframes heroPLogoGlow {
  0%,
  17%,
  78%,
  100% {
    filter:
      brightness(0)
      saturate(100%)
      invert(18%)
      sepia(100%)
      saturate(6085%)
      hue-rotate(354deg)
      brightness(113%)
      contrast(112%)
      drop-shadow(0 0 18px rgba(239, 29, 29, 0.38));
  }

  31% {
    filter:
      brightness(0)
      saturate(100%)
      invert(20%)
      sepia(100%)
      saturate(6500%)
      hue-rotate(354deg)
      brightness(140%)
      contrast(112%)
      drop-shadow(0 0 26px rgba(255, 170, 170, 0.62));
  }
}

@media (prefers-reduced-motion: reduce) {
  .psyqo-hero-copy h1.hero-title-loop .hero-h1-lead {
    transform: translateY(0) scale(0.74) !important;
  }

  .psyqo-hero-copy h1.hero-title-loop .hero-wordmark {
    transform: translateX(0) !important;
  }

  .psyqo-hero-copy h1.hero-title-loop .hero-wordmark > span:last-child::after,
  .hero-wordmark-p-wrap::after,
  .hero-wordmark-p {
    animation: none !important;
  }
}

/* ── Scroll-driven hero title swap + static About logo ─────────────── */
:root {
  --psyqo-wordmark-progress: 0;
  --psyqo-p-lock-progress: 0;
  --psyqo-brand-exit: 0;
  --psyqo-controller-progress: 0;
}

@media (min-width: 761px) {
  .aeronet-hero {
    height: 178vh;
    min-height: 1320px;
  }

  .psyqo-float-field {
    z-index: 21;
  }

  .psyqo-hero-copy h1.hero-title-loop {
    width: min(15ch, 100vw - 64px) !important;
    height: 1.12em !important;
    font-size: clamp(88px, 9.6vw, 138px) !important;
    margin-bottom: 34px !important;
  }

  .psyqo-hero-copy h1.hero-title-loop .hero-h1-lead {
    top: 0 !important;
    font-size: 1em !important;
    font-weight: 700 !important;
    letter-spacing: -0.075em !important;
    line-height: 0.9 !important;
    color: rgba(255, 255, 255, 0.94) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.94) !important;
    animation: none !important;
    opacity: calc(1 - var(--psyqo-wordmark-progress)) !important;
    transform:
      translateX(calc(var(--psyqo-wordmark-progress) * -118vw))
      scale(calc(1 - (var(--psyqo-wordmark-progress) * 0.08))) !important;
    filter: blur(calc(var(--psyqo-wordmark-progress) * 8px));
  }

  .psyqo-hero-copy h1.hero-title-loop .hero-wordmark {
    top: 0 !important;
    gap: 0.1em !important;
    animation: none !important;
    opacity: var(--psyqo-wordmark-progress) !important;
    transform:
      translateX(calc((1 - var(--psyqo-wordmark-progress)) * 118vw))
      scale(calc(0.985 + (var(--psyqo-wordmark-progress) * 0.015))) !important;
    filter: blur(calc((1 - var(--psyqo-wordmark-progress)) * 8px));
  }

  .psyqo-hero-copy h1.hero-title-loop .hero-wordmark-p-wrap {
    opacity: var(--psyqo-p-lock-progress);
    transform:
      translateY(-0.018em)
      scale(calc(0.86 + (var(--psyqo-p-lock-progress) * 0.14))) !important;
  }

  .psyqo-hero-copy h1.hero-title-loop .hero-wordmark > span:last-child::after,
  .hero-wordmark-p-wrap::after,
  .hero-wordmark-p {
    animation-play-state: paused;
  }
}

.about-static-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: min(13.6vw, 151px);
  height: min(9.75vw, 109px);
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #ff5a5a 0%, #ef1d1d 52%, #8f0000 100%);
  -webkit-mask: url("psyqo-p-mask.png") center / contain no-repeat;
  mask: url("psyqo-p-mask.png") center / contain no-repeat;
  filter:
    drop-shadow(0 0 20px rgba(239, 29, 29, 0.48))
    drop-shadow(0 0 54px rgba(239, 29, 29, 0.18));
  opacity: 0.96;
  pointer-events: none;
}

/* ── About stat graph: real connected hub ──────────────────────────── */
/* Leader lines are computed in JS (center → each node's anchor dot) and use
   pathLength="1" so the dash draw-in is length-independent. */
.stat-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.95;
  pointer-events: none;
  overflow: visible;
}

.stat-lines path {
  fill: none;
  stroke: rgba(255, 120, 120, 0.5);
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  filter: drop-shadow(0 0 6px rgba(239, 29, 29, 0.32));
}

.about-visual.logo-docked .stat-lines path {
  animation: statLineDraw 620ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.about-visual.logo-docked .stat-lines path:nth-child(1) { animation-delay: 140ms; }
.about-visual.logo-docked .stat-lines path:nth-child(2) { animation-delay: 220ms; }
.about-visual.logo-docked .stat-lines path:nth-child(3) { animation-delay: 300ms; }
.about-visual.logo-docked .stat-lines path:nth-child(4) { animation-delay: 380ms; }

@keyframes statLineDraw {
  to { stroke-dashoffset: 0; }
}

/* Retire the old eyeballed connector/dot pseudo-elements. */
.stat-node { overflow: visible; }
.stat-node::before { display: none !important; }

/* A real, measurable anchor dot on each node's center-facing corner. */
.stat-dot {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ef1d1d;
  box-shadow: 0 0 0 5px rgba(239, 29, 29, 0.14), 0 0 16px rgba(239, 29, 29, 0.62);
  z-index: 4;
  opacity: 0;
  transform: scale(0.4);
}
.about-visual.logo-docked .stat-dot {
  animation: statDotIn 360ms cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.stat-node-age    .stat-dot { right: -5px; bottom: -5px; }
.stat-node-subs   .stat-dot { left:  -5px; bottom: -5px; }
.stat-node-views  .stat-dot { right: -5px; top:    -5px; }
.stat-node-roster .stat-dot { left:  -5px; top:    -5px; }
.about-visual.logo-docked .stat-node-age    .stat-dot { animation-delay: 140ms; }
.about-visual.logo-docked .stat-node-subs   .stat-dot { animation-delay: 220ms; }
.about-visual.logo-docked .stat-node-views  .stat-dot { animation-delay: 300ms; }
.about-visual.logo-docked .stat-node-roster .stat-dot { animation-delay: 380ms; }

@keyframes statDotIn {
  to { opacity: 1; transform: scale(1); }
}

/* One subtle orbit ring instead of the previous five concentric decorations. */
.stat-burst.burst-a { opacity: 0.5; }

/* Reduced motion: connected, but static. No orbit, no draw-in, no stagger. */
@media (prefers-reduced-motion: reduce) {
  .stat-burst { animation: none !important; }
  .about-visual.logo-docked .stat-lines path { animation: none !important; stroke-dashoffset: 0; }
  .about-visual.logo-docked .stat-dot { animation: none !important; opacity: 1; transform: none; }
  .about-visual.logo-docked .stat-node { animation: none !important; opacity: 1; transform: none; }
}

/* Mobile: the scroll dock is a desktop delight. Below 720px show the four stats
   as a clean static 2-up grid on a solid panel instead of hiding them. */
@media (max-width: 720px) {
  .about-visual {
    aspect-ratio: auto;
    min-height: 0;
  }
  .about-stat-graph {
    display: grid !important;
    position: static;
    inset: auto;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 18px;
    opacity: 1 !important;
    background: linear-gradient(135deg, rgba(20, 0, 0, 0.92), rgba(0, 0, 0, 0.96));
  }
  .stat-lines,
  .stat-ring,
  .stat-burst,
  .stat-dot {
    display: none !important;
  }
  .stat-node {
    position: static !important;
    inset: auto !important;
    width: auto !important;
    padding: 14px !important;
    transform: none !important;
    opacity: 1 !important;
    animation: none !important;
  }
  .stat-node::after {
    inset: 0 !important;
    clip-path: none !important;
    border-radius: 12px;
  }
  .views-bars span {
    transform: scaleY(1) !important;
    animation: none !important;
  }
}

/* ── Footer restructure ─────────────────────────────────────────────── */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 32px 64px;
  align-items: start;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.footer-brand {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 18px;
  align-items: center;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 11px;
  min-width: 120px;
}

.footer-col-label {
  color: var(--soft);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 2px;
}

.footer-col a {
  color: var(--muted);
  font-size: 14px;
  transition: color 160ms ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 9px;
}

.footer-social svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  opacity: 0.65;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  color: var(--soft);
  font-size: 13px;
}

.footer-join-btn {
  font-size: 13px !important;
  min-height: 32px !important;
  padding: 0 14px !important;
}

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

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

/* ── Partner SVG data labels ────────────────────────────────────────── */
.partner-svg-stat {
  fill: #fff;
  font-family: var(--font-brand);
  font-size: 13px;
  font-weight: 700;
  stroke: none;
}

.partner-svg-sub {
  fill: rgba(255, 255, 255, 0.52);
  font-family: var(--font-brand);
  font-size: 9px;
  font-weight: 400;
  stroke: none;
}

/* ── Studios cell: 98 Lessons dot grid ──────────────────────────────── */
.aero-episodes-cell {
  display: flex;
  flex-direction: column;
}

.aero-episodes-cell h3 {
  padding-right: 72px;
}

.episode-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 6px;
  width: min(190px, 100%);
  margin-top: auto;
  padding-top: 26px;
}

.episode-count {
  position: absolute;
  top: 30px;
  right: 32px;
  font-family: var(--font-brand);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.episode-count i {
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
  color: var(--soft);
}

.ep-dot {
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 240ms ease-out, transform 240ms cubic-bezier(0.23, 1, 0.32, 1);
}

.ep-dot-on {
  background: var(--aero-red);
  box-shadow: 0 0 5px rgba(239, 29, 29, 0.5);
}

.ep-dot-off {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.episodes-shown .ep-dot {
  opacity: 1;
  transform: scale(1);
}

/* ── Studios cell: clip → content ───────────────────────────────────── */
.clip-to-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.ctc-frame {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #000;
}

.ctc-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ctc-clip img {
  filter: saturate(0.5) brightness(0.78) contrast(1.05);
}

.ctc-video {
  border-color: rgba(255, 107, 107, 0.4);
  box-shadow: 0 0 24px rgba(239, 29, 29, 0.18);
}

.ctc-tag {
  position: absolute;
  top: 7px;
  left: 7px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 7px;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.ctc-tag-pub {
  background: rgba(165, 0, 0, 0.6);
  border-color: rgba(255, 107, 107, 0.5);
}

.ctc-rec {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--aero-red);
  box-shadow: 0 0 6px rgba(239, 29, 29, 0.9);
  animation: ctcRecBlink 1.4s steps(1) infinite;
}

@keyframes ctcRecBlink {
  50% { opacity: 0.25; }
}

.ctc-arrow {
  display: grid;
  place-items: center;
  color: #ffb4b4;
}

.ctc-arrow svg {
  width: 18px;
  height: 18px;
}

.ctc-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(239, 29, 29, 0.92);
  box-shadow: 0 0 16px rgba(239, 29, 29, 0.6);
}

.ctc-play svg {
  width: 15px;
  height: 15px;
  margin-left: 2px;
  fill: #fff;
}

.ctc-scrub {
  position: absolute;
  left: 7px;
  right: 7px;
  bottom: 7px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.25);
  overflow: hidden;
}

.ctc-scrub span {
  display: block;
  width: 62%;
  height: 100%;
  background: var(--aero-red);
}

@media (prefers-reduced-motion: reduce) {
  .ctc-rec {
    animation: none;
  }
  .ep-dot {
    transition: none;
  }
}

/* ── TEAM PSYQO hero direction ─────────────────────────────────────── */
.psyqo-hero-copy h1.hero-team-title {
  position: relative;
  width: min(7ch, 100vw - 64px) !important;
  height: 1.78em !important;
  max-width: none !important;
  margin: 0 0 26px !important;
  padding: 0 0 0.1em !important;
  overflow: visible !important;
  isolation: isolate;
  font-family: "Russo One", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif !important;
  font-weight: 400 !important;
  color: #fff !important;
  background: none !important;
  -webkit-text-fill-color: currentColor !important;
  letter-spacing: -0.035em !important;
  line-height: 0.78 !important;
  text-transform: uppercase;
}

.hero-team-stack,
.hero-controller-title {
  position: absolute;
  inset: 0 auto auto 0;
  display: block;
  will-change: transform, opacity, filter;
}

.hero-team-stack {
  opacity: calc(1 - var(--psyqo-brand-exit));
  transform:
    translate3d(calc(var(--psyqo-brand-exit) * -22vw), calc(var(--psyqo-brand-exit) * 30vh), 0)
    scale(calc(1 - (var(--psyqo-brand-exit) * 0.12)));
  filter: blur(calc(var(--psyqo-brand-exit) * 12px));
}

.hero-team-stack span {
  display: block !important;
  background: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  color: #f8f8f8;
  -webkit-text-fill-color: #f8f8f8;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 60px rgba(0, 0, 0, 0.55);
}

.hero-team-stack span + span {
  color: #ff2424;
  -webkit-text-fill-color: #ff2424;
  text-shadow:
    0 0 22px rgba(239, 29, 29, 0.34),
    0 18px 70px rgba(0, 0, 0, 0.68);
}

.hero-controller-title {
  display: block !important;
  background: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  color: #fff;
  -webkit-text-fill-color: #fff;
  opacity: var(--psyqo-controller-progress);
  transform:
    translate3d(calc((1 - var(--psyqo-controller-progress)) * 24vw), calc((1 - var(--psyqo-controller-progress)) * 12px), 0)
    scale(calc(0.94 + (var(--psyqo-controller-progress) * 0.06)));
  filter: blur(calc((1 - var(--psyqo-controller-progress)) * 10px));
  text-shadow:
    0 0 20px rgba(239, 29, 29, 0.22),
    0 24px 70px rgba(0, 0, 0, 0.62);
}

/* CREATE / MEMORIES — two-line stack. No font-size/line-height of its own so it
   inherits the h1 (150–220px desktop, 0.78 line-height) exactly like
   .hero-team-stack → same size + same location as TEAM / PSYQO. */
.hero-controller-title span {
  display: block !important;
  white-space: nowrap;
}

.hero-controller-title span:first-child,
.home-page .hero h1.hero-team-title .hero-controller-title span:first-child {
  color: #f8f8f8 !important;
  -webkit-text-fill-color: #f8f8f8 !important;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 60px rgba(0, 0, 0, 0.55) !important;
}

.hero-controller-title span:last-child,
.home-page .hero h1.hero-team-title .hero-controller-title span:last-child {
  color: #ff2424 !important;
  -webkit-text-fill-color: #ff2424 !important;
  text-shadow:
    0 0 22px rgba(239, 29, 29, 0.34),
    0 18px 70px rgba(0, 0, 0, 0.68) !important;
}

.home-page .hero h1.hero-team-title .hero-team-stack > span:first-child {
  background: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  color: #f8f8f8 !important;
  -webkit-text-fill-color: #f8f8f8 !important;
}

.home-page .hero h1.hero-team-title .hero-team-stack > span:last-child {
  background: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  color: #ff2424 !important;
  -webkit-text-fill-color: #ff2424 !important;
}

.home-page .hero h1.hero-team-title .hero-controller-title {
  background: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

.psyqo-hero-actions {
  opacity: calc(1 - var(--psyqo-brand-exit));
  transform: translateY(calc(var(--psyqo-brand-exit) * 42px));
  filter: blur(calc(var(--psyqo-brand-exit) * 8px));
  transition: opacity 120ms linear;
}

.hero-mission-strip {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 72px;
  z-index: 23;
  width: min(78rem, calc(100vw - 190px));
  max-width: none !important;
  margin: 0 !important;
  padding: 16px 28px 0;
  border-top: 1px solid rgba(255, 48, 48, 0.48);
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  font-family: var(--font-brand);
  font-size: clamp(13px, 1.08vw, 16px);
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform:
    translateX(-50%)
    translateY(calc(var(--psyqo-brand-exit) * 34px));
  opacity: calc(1 - var(--psyqo-brand-exit));
  filter: blur(calc(var(--psyqo-brand-exit) * 8px));
  pointer-events: none;
}

.psyqo-float-field {
  z-index: 19 !important;
  opacity: var(--psyqo-controller-progress);
  transition: opacity 180ms linear;
}

@media (min-width: 761px) {
  .psyqo-hero-copy {
    top: 37%;
    left: 0;
    max-width: 56rem;
    transform: translateY(-50%);
  }

  .psyqo-hero-copy h1.hero-team-title {
    font-size: clamp(150px, 13.8vw, 220px) !important;
  }

  .globe-float {
    border-color: rgba(255, 70, 70, 0.34);
    background: linear-gradient(135deg, rgba(50, 2, 2, 0.78), rgba(5, 5, 5, 0.68));
  }
}

@media (max-width: 760px) {
  .psyqo-hero-copy h1.hero-team-title {
    width: min(7ch, 100vw - 48px) !important;
    height: 1.82em !important;
    font-size: clamp(82px, 22vw, 118px) !important;
    line-height: 0.8 !important;
    letter-spacing: -0.035em !important;
  }

  .hero-mission-strip {
    bottom: 112px;
    width: min(100vw - 40px, 44rem);
    padding-inline: 8px;
    font-size: 11px;
    letter-spacing: 0.04em;
  }

  .hero-controller-title {
    width: min(8.6ch, 100vw - 48px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-team-stack {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .hero-controller-title {
    opacity: 0 !important;
  }

  .psyqo-hero-actions {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .hero-mission-strip {
    opacity: 1 !important;
    transform: translateX(-50%) !important;
    filter: none !important;
  }
}

/* ── Example fusion pass: Inter hero/nav + atmospheric rails ────────── */
.psyqo-hero-system {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.psyqo-hero-system::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 73% 42%, rgba(255, 28, 28, 0.18), rgba(100, 0, 0, 0.08) 34%, transparent 56%),
    radial-gradient(ellipse at 54% 92%, rgba(255, 42, 42, 0.14), transparent 48%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.48) 36%, transparent 62%, rgba(0, 0, 0, 0.48));
}

.psyqo-hero-system::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05), transparent 18%, transparent 72%, rgba(239, 29, 29, 0.08)),
    repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px 4px);
  mix-blend-mode: screen;
  animation: psyqoSystemGrain 1.6s steps(2, end) infinite;
}

.psyqo-hero-rails {
  position: absolute;
  inset: 0;
  left: 50%;
  display: flex;
  width: min(80rem, calc(100vw - 48px));
  transform: translateX(-50%);
  justify-content: space-evenly;
  border-left: 1px solid rgba(255, 255, 255, 0.045);
  border-right: 1px solid rgba(255, 255, 255, 0.045);
  opacity: 0.86;
}

.psyqo-rail {
  position: relative;
  display: block;
  width: 1px;
  height: 100%;
  overflow: hidden;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.08) 18%, rgba(255, 255, 255, 0.035) 78%, transparent);
}

.psyqo-rail span {
  position: absolute;
  left: 0;
  top: -34%;
  width: 100%;
  height: clamp(7rem, 16vh, 15rem);
  background: linear-gradient(to bottom, transparent, rgba(255, 44, 44, 0.06), rgba(255, 64, 64, 0.42), rgba(255, 255, 255, 0.26), rgba(255, 64, 64, 0.28), transparent);
  box-shadow: 0 0 20px rgba(239, 29, 29, 0.38);
  animation: psyqoRailBeam 7.8s linear infinite;
}

.rail-b span {
  height: clamp(10rem, 22vh, 18rem);
  animation-duration: 9.4s;
  animation-delay: -4.2s;
  opacity: 0.62;
}

.rail-c span {
  height: clamp(8rem, 18vh, 16rem);
  animation-duration: 6.8s;
  animation-delay: -2.6s;
  opacity: 0.9;
}

.rail-d span {
  height: clamp(11rem, 24vh, 19rem);
  animation-duration: 10.2s;
  animation-delay: -6.1s;
  opacity: 0.58;
}

.rail-e span {
  height: clamp(7rem, 14vh, 14rem);
  animation-duration: 8.6s;
  animation-delay: -1.2s;
  opacity: 0.72;
}

.psyqo-floor-grid {
  position: absolute;
  left: 50%;
  bottom: -8vh;
  width: min(92rem, 118vw);
  height: 54vh;
  transform: translateX(-50%) perspective(720px) rotateX(64deg);
  transform-origin: center bottom;
  opacity: calc(0.52 - (var(--psyqo-brand-exit) * 0.18));
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 40, 40, 0.12) 1px, transparent 1px);
  background-size: 92px 92px, 92px 92px;
  mask-image: linear-gradient(to top, black, rgba(0, 0, 0, 0.78) 34%, transparent 88%);
  -webkit-mask-image: linear-gradient(to top, black, rgba(0, 0, 0, 0.78) 34%, transparent 88%);
}

.psyqo-floor-grid::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(255, 46, 46, 0.55), transparent);
  box-shadow: 0 0 36px rgba(239, 29, 29, 0.28);
}

@keyframes psyqoRailBeam {
  0% {
    transform: translateY(-35vh);
  }

  100% {
    transform: translateY(145vh);
  }
}

@keyframes psyqoSystemGrain {
  0% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, 2px, 0);
  }

  100% {
    transform: translate3d(0, -2px, 0);
  }
}

.psyqo-hero-copy h1.hero-team-title {
  width: min(7.65ch, 100vw - 64px) !important;
  height: 1.72em !important;
  font-family: var(--font-example-display) !important;
  font-weight: 800 !important;
  letter-spacing: -0.075em !important;
  line-height: 0.78 !important;
}

.hero-team-stack span {
  font-family: inherit !important;
  font-weight: 800 !important;
}

.hero-controller-title {
  width: min(8.15ch, 100vw - 64px) !important;
  font-family: var(--font-example-display) !important;
  font-size: inherit !important;          /* inherit the h1 size = TEAM PSYQO 1:1 */
  font-weight: 800 !important;
  letter-spacing: -0.075em !important;       /* match team-title */
  line-height: 0.78 !important;             /* match team-title */
}

.psyqo-hero-actions .btn {
  border-radius: 0 !important;
  font-family: var(--font-example-display) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
}

.hero-mission-strip {
  font-family: var(--font-example-body) !important;
  font-weight: 500 !important;
  letter-spacing: 0.13em !important;
}

@media (min-width: 761px) {
  .psyqo-hero-copy h1.hero-team-title {
    font-size: clamp(128px, 11.6vw, 190px) !important;
  }
}

@media (max-width: 760px) {

  .psyqo-hero-rails {
    width: calc(100vw - 28px);
  }

  .psyqo-floor-grid {
    width: 138vw;
    height: 42vh;
    background-size: 58px 58px, 58px 58px;
  }

  .psyqo-hero-copy h1.hero-team-title {
    width: min(7.6ch, 100vw - 48px) !important;
    height: 1.74em !important;
    font-size: clamp(78px, 20vw, 116px) !important;
    letter-spacing: -0.075em !important;
    line-height: 0.78 !important;
  }

  .hero-controller-title {
    width: min(8.15ch, 100vw - 48px) !important;
    font-size: inherit !important;          /* match mobile team-title 1:1 */
  }
}

@media (prefers-reduced-motion: reduce) {
  .psyqo-rail span,
  .psyqo-hero-system::after {
    animation: none !important;
  }
}

/* ── PsyQo Brand Film hero pass: WebGL object + studio volume ───────── */
.aeronet-hero {
  background:
    radial-gradient(ellipse at 72% 48%, rgba(118, 0, 0, 0.3), transparent 38%),
    radial-gradient(ellipse at 50% 86%, rgba(239, 29, 29, 0.13), transparent 46%),
    #000 !important;
}

.psyqo-hero-sticky {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.62) 38%, rgba(0, 0, 0, 0.24) 66%, rgba(0, 0, 0, 0.84)),
    radial-gradient(ellipse at 72% 50%, rgba(239, 29, 29, 0.18), transparent 42%),
    #000 !important;
}

.psyqo-hero-sticky::before,
.psyqo-hero-sticky::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.psyqo-hero-sticky::before {
  z-index: 17;
  background:
    radial-gradient(ellipse at 72% 52%, transparent 0 30%, rgba(0, 0, 0, 0.2) 54%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.72), transparent 20%, transparent 70%, rgba(0, 0, 0, 0.9));
}

.psyqo-hero-sticky::after {
  z-index: 17;
  opacity: 0.16;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 4px),
    radial-gradient(circle at 24% 34%, rgba(255, 255, 255, 0.12) 0 1px, transparent 1.4px),
    radial-gradient(circle at 76% 68%, rgba(255, 64, 64, 0.16) 0 1px, transparent 1.5px);
  background-size: 100% 4px, 37px 37px, 53px 53px;
  mix-blend-mode: screen;
  animation: psyqoFilmGrain 1.5s steps(2, end) infinite;
}

.psyqo-hero-system::before {
  background:
    radial-gradient(ellipse at 72% 48%, rgba(255, 42, 42, 0.18), rgba(116, 0, 0, 0.1) 32%, transparent 58%),
    radial-gradient(ellipse at 56% 90%, rgba(239, 29, 29, 0.12), transparent 44%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.56) 38%, transparent 64%, rgba(0, 0, 0, 0.52));
}

.psyqo-hero-system::after {
  opacity: 0.11;
}

.psyqo-hero-rails {
  opacity: 0.48;
}

.psyqo-rail {
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.052) 22%, rgba(255, 255, 255, 0.02) 78%, transparent);
}

.psyqo-rail span {
  opacity: 0.72;
  background: linear-gradient(to bottom, transparent, rgba(255, 40, 40, 0.04), rgba(255, 64, 64, 0.34), rgba(255, 255, 255, 0.18), rgba(255, 64, 64, 0.2), transparent);
  box-shadow: 0 0 22px rgba(239, 29, 29, 0.26);
}

.psyqo-floor-grid {
  bottom: -13vh;
  height: 48vh;
  opacity: calc(0.34 - (var(--psyqo-brand-exit) * 0.12));
  background-size: 116px 116px, 116px 116px;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.038) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 40, 40, 0.075) 1px, transparent 1px);
}


.psyqo-hero-webgl {
  z-index: 19;
  filter:
    saturate(1.26)
    contrast(1.08)
    drop-shadow(0 0 26px rgba(239, 29, 29, 0.22))
    drop-shadow(0 34px 48px rgba(0, 0, 0, 0.54));
}

@media (min-width: 761px) {
  .psyqo-hero-copy {
    top: 38%;
    left: 0;
    max-width: 57rem;
  }

  .psyqo-hero-copy h1.hero-team-title {
    width: min(7.5ch, 100vw - 64px) !important;
    height: 1.74em !important;
    font-family: var(--font-example-display) !important;
    font-size: clamp(136px, 12.1vw, 204px) !important;
    font-weight: 800 !important;
    line-height: 0.79 !important;
    letter-spacing: -0.043em !important;
  }

  .hero-controller-title {
    width: min(8.05ch, 100vw - 64px) !important;
    letter-spacing: -0.043em !important;
    line-height: 0.79 !important;
  }
}

.hero-team-stack {
  transform:
    translate3d(calc(var(--psyqo-brand-exit) * -18vw), calc(var(--psyqo-brand-exit) * 26vh), 0)
    scale(calc(1 - (var(--psyqo-brand-exit) * 0.1)));
  filter: blur(calc(var(--psyqo-brand-exit) * 10px));
}

.hero-controller-title {
  transform:
    translate3d(calc((1 - var(--psyqo-controller-progress)) * 18vw), calc((1 - var(--psyqo-controller-progress)) * 8px), 0)
    scale(calc(0.965 + (var(--psyqo-controller-progress) * 0.035)));
  filter: blur(calc((1 - var(--psyqo-controller-progress)) * 8px));
}

.hero-team-stack span,
.hero-controller-title span:first-child {
  color: #f7f5f2 !important;
  -webkit-text-fill-color: #f7f5f2 !important;
}

.hero-team-stack span + span,
.hero-controller-title span:last-child {
  color: #ff2424 !important;
  -webkit-text-fill-color: #ff2424 !important;
}

.globe-float {
  border-color: rgba(255, 76, 76, 0.32);
  background: linear-gradient(135deg, rgba(35, 4, 4, 0.82), rgba(3, 3, 4, 0.72));
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.48),
    0 0 34px rgba(239, 29, 29, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.globe-float strong {
  font-weight: 700;
}

.hero-mission-strip {
  color: rgba(255, 255, 255, 0.92) !important;
  border-top-color: rgba(239, 29, 29, 0.5) !important;
}

body.psyqo-hero-nav #psyqo-chat {
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.96);
  pointer-events: none;
}

#psyqo-chat {
  transition:
    opacity 220ms cubic-bezier(0.23, 1, 0.32, 1),
    visibility 220ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 220ms cubic-bezier(0.23, 1, 0.32, 1);
}

@media (min-width: 761px) {
  .hero-controller-title {
    font-size: 0.9em !important;
    transform:
      translate3d(calc((1 - var(--psyqo-controller-progress)) * 18vw), calc(12px + ((1 - var(--psyqo-controller-progress)) * 8px)), 0)
      scale(calc(0.965 + (var(--psyqo-controller-progress) * 0.035)));
  }

  .psyqo-float-field {
    opacity: calc(var(--psyqo-controller-progress) * 0.82);
  }

  .psyqo-float-wrap.float-b,
  .psyqo-float-wrap.float-e {
    opacity: 0 !important;
  }
}

@media (max-width: 760px) {
  .psyqo-hero-copy {
    top: 27% !important;
    left: 24px !important;
    right: 24px !important;
    width: auto !important;
  }

  .psyqo-hero-copy h1.hero-team-title {
    width: min(7.35ch, 100vw - 48px) !important;
    height: 1.68em !important;
    font-size: clamp(70px, 18.5vw, 104px) !important;
    letter-spacing: -0.045em !important;
  }

  .psyqo-hero-actions {
    gap: 12px !important;
    margin-top: 26px !important;
  }

  .psyqo-hero-actions .btn {
    min-height: 58px !important;
    width: 100% !important;
    padding-inline: 18px !important;
    font-size: 13px !important;
  }

  .hero-mission-strip {
    bottom: 88px !important;
    font-size: 10px !important;
    line-height: 1.45 !important;
    letter-spacing: 0.055em !important;
  }

  #psyqo-chat {
    right: 16px;
    bottom: 16px;
  }

  #psyqo-chat-bubble {
    width: 50px;
    height: 50px;
  }
}

/* ── Apparel-board inversion pass: light brand film, dark merch bottom ── */
:root {
  --apparel-paper: #f7f7f2;
  --apparel-paper-2: #eceef3;
  --apparel-ink: #111216;
  --apparel-muted: #5c606a;
  --apparel-navy: #0a0f1f;
  --apparel-charcoal: #171a21;
  --apparel-red: #c81016;
  --apparel-hairline: rgba(10, 15, 31, 0.13);
  --apparel-ease: cubic-bezier(0.23, 1, 0.32, 1);
}

body.home-page {
  background:
    radial-gradient(circle at 74% 18%, rgba(200, 16, 22, 0.1), transparent 26rem),
    linear-gradient(180deg, #f8f8f4 0%, #f1f2f5 48%, #050506 88%) !important;
}

.aeronet-hero {
  background:
    radial-gradient(ellipse at 72% 48%, rgba(200, 16, 22, 0.2), transparent 35%),
    linear-gradient(135deg, rgba(183, 190, 207, 0.32), transparent 42%),
    var(--apparel-paper) !important;
}

.psyqo-hero-sticky {
  background:
    radial-gradient(ellipse at 72% 50%, rgba(200, 16, 22, 0.2), transparent 32%),
    radial-gradient(ellipse at 69% 53%, rgba(255, 255, 255, 0.82), transparent 34%),
    linear-gradient(90deg, rgba(247, 247, 242, 0.98), rgba(247, 247, 242, 0.92) 42%, rgba(232, 235, 244, 0.84) 66%, rgba(247, 247, 242, 0.98)),
    var(--apparel-paper) !important;
}

.psyqo-hero-sticky::before {
  z-index: 17;
  background:
    linear-gradient(90deg, rgba(10, 15, 31, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(10, 15, 31, 0.07) 1px, transparent 1px),
    radial-gradient(ellipse at 72% 52%, transparent 0 24%, rgba(255, 255, 255, 0.44) 46%, rgba(246, 246, 241, 0.94) 100%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.98), transparent 18%, transparent 76%, rgba(238, 239, 243, 0.96)) !important;
  background-size: 96px 96px, 96px 96px, auto, auto !important;
}

.psyqo-hero-sticky::after {
  opacity: 0.22 !important;
  mix-blend-mode: multiply !important;
  background:
    repeating-linear-gradient(0deg, rgba(10, 15, 31, 0.09) 0 1px, transparent 1px 4px),
    radial-gradient(circle at 22% 34%, rgba(10, 15, 31, 0.12) 0 1px, transparent 1.4px),
    radial-gradient(circle at 78% 70%, rgba(200, 16, 22, 0.16) 0 1px, transparent 1.5px) !important;
  background-size: 100% 4px, 35px 35px, 55px 55px !important;
}

.psyqo-hero-system::before {
  background:
    radial-gradient(ellipse at 72% 48%, rgba(200, 16, 22, 0.16), rgba(200, 16, 22, 0.08) 31%, transparent 58%),
    linear-gradient(90deg, rgba(247, 247, 242, 0.96), rgba(247, 247, 242, 0.58) 43%, transparent 64%, rgba(247, 247, 242, 0.72)) !important;
}

.psyqo-hero-system::after {
  opacity: 0.18 !important;
  mix-blend-mode: multiply !important;
}

.psyqo-hero-rails {
  opacity: 0.34 !important;
}

.psyqo-rail {
  background: linear-gradient(to bottom, transparent, rgba(10, 15, 31, 0.1) 22%, rgba(10, 15, 31, 0.04) 78%, transparent) !important;
}

.psyqo-rail span {
  background: linear-gradient(to bottom, transparent, rgba(200, 16, 22, 0.12), rgba(200, 16, 22, 0.44), rgba(255, 255, 255, 0.54), rgba(200, 16, 22, 0.3), transparent) !important;
  box-shadow: 0 0 28px rgba(200, 16, 22, 0.24) !important;
}

.psyqo-floor-grid {
  opacity: calc(0.28 - (var(--psyqo-brand-exit) * 0.1)) !important;
  background-image:
    linear-gradient(to right, rgba(10, 15, 31, 0.09) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(200, 16, 22, 0.1) 1px, transparent 1px) !important;
}

.psyqo-hero-atmosphere::before,
.psyqo-hero-atmosphere::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.psyqo-hero-atmosphere::before {
  right: clamp(18px, 6vw, 92px);
  top: clamp(116px, 18vh, 190px);
  width: min(34vw, 520px);
  height: min(28vw, 360px);
  background:
    linear-gradient(135deg, transparent 0 19%, rgba(10, 15, 31, 0.26) 19% 31%, transparent 31% 44%, rgba(10, 15, 31, 0.15) 44% 56%, transparent 56%),
    repeating-linear-gradient(135deg, rgba(10, 15, 31, 0.12) 0 2px, transparent 2px 13px);
  clip-path: polygon(16% 0, 100% 0, 68% 64%, 36% 64%, 0 100%, 18% 54%);
  opacity: 0.36;
  filter: blur(0.2px);
  mix-blend-mode: multiply;
}

.psyqo-hero-atmosphere::after {
  left: clamp(20px, 5vw, 88px);
  bottom: clamp(84px, 16vh, 150px);
  width: clamp(72px, 10vw, 136px);
  height: clamp(72px, 10vw, 136px);
  border: 1px solid rgba(200, 16, 22, 0.42);
  background:
    linear-gradient(90deg, transparent 0 42%, var(--apparel-red) 42% 58%, transparent 58%),
    linear-gradient(0deg, transparent 0 42%, var(--apparel-red) 42% 58%, transparent 58%);
  opacity: 0.34;
  transform: rotate(45deg);
}

.psyqo-haze {
  mix-blend-mode: multiply !important;
  filter: blur(50px) !important;
}

.psyqo-haze.haze-a {
  opacity: 0.3 !important;
  background: radial-gradient(ellipse at 50% 50%, rgba(200, 16, 22, 0.24), rgba(200, 16, 22, 0.12) 36%, transparent 72%) !important;
}

.psyqo-haze.haze-b {
  opacity: 0.2 !important;
  background: radial-gradient(ellipse at 50% 50%, rgba(10, 15, 31, 0.18), rgba(183, 190, 207, 0.16) 42%, transparent 75%) !important;
}

.psyqo-hero-webgl {
  filter:
    saturate(1.12)
    contrast(1.06)
    drop-shadow(0 0 22px rgba(200, 16, 22, 0.2))
    drop-shadow(0 26px 44px rgba(10, 15, 31, 0.24)) !important;
}


.psyqo-hero-copy h1.hero-team-title {
  text-shadow: none !important;
}

.hero-team-stack span,
.hero-controller-title span:first-child {
  color: var(--apparel-ink) !important;
  -webkit-text-fill-color: var(--apparel-ink) !important;
}

.hero-team-stack span + span,
.hero-controller-title span:last-child {
  color: var(--apparel-red) !important;
  -webkit-text-fill-color: var(--apparel-red) !important;
}

.home-page .hero h1.hero-team-title .hero-team-stack > span:first-child,
.home-page .hero h1.hero-team-title .hero-controller-title span:first-child {
  color: var(--apparel-ink) !important;
  -webkit-text-fill-color: var(--apparel-ink) !important;
  text-shadow: 0 18px 54px rgba(10, 15, 31, 0.18) !important;
}

.home-page .hero h1.hero-team-title .hero-team-stack > span:last-child,
.home-page .hero h1.hero-team-title .hero-controller-title span:last-child {
  color: var(--apparel-red) !important;
  -webkit-text-fill-color: var(--apparel-red) !important;
  text-shadow: 0 14px 46px rgba(200, 16, 22, 0.24) !important;
}

.psyqo-hero-actions .btn-primary {
  border-color: var(--apparel-red) !important;
  background: var(--apparel-red) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  box-shadow: 0 18px 44px rgba(200, 16, 22, 0.22) !important;
}

.psyqo-hero-actions .btn-quiet {
  border-color: rgba(10, 15, 31, 0.16) !important;
  background: rgba(255, 255, 255, 0.5) !important;
  color: var(--apparel-ink) !important;
  -webkit-text-fill-color: var(--apparel-ink) !important;
}

.hero-mission-strip {
  color: rgba(17, 18, 22, 0.84) !important;
  border-top-color: rgba(200, 16, 22, 0.5) !important;
}

.globe-float {
  border-color: rgba(200, 16, 22, 0.24) !important;
  background: rgba(255, 255, 255, 0.66) !important;
  color: var(--apparel-ink) !important;
  box-shadow:
    0 16px 36px rgba(10, 15, 31, 0.12),
    0 0 34px rgba(200, 16, 22, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.76) !important;
  backdrop-filter: blur(18px) !important;
}

.globe-float span {
  color: rgba(17, 18, 22, 0.58) !important;
}

.globe-float svg {
  color: var(--apparel-red) !important;
}

.social-rail {
  background: #fff !important;
  color: var(--apparel-ink) !important;
  border-block: 1px solid var(--apparel-hairline) !important;
}

.social-rail span {
  color: rgba(17, 18, 22, 0.68) !important;
}

#about,
#channels,
#theater,
#studios,
#roster,
#community,
#partners {
  background:
    linear-gradient(90deg, rgba(10, 15, 31, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(10, 15, 31, 0.035) 1px, transparent 1px),
    var(--apparel-paper) !important;
  background-size: 92px 92px, 92px 92px, auto !important;
  color: var(--apparel-ink) !important;
  border-top: 1px solid var(--apparel-hairline) !important;
}

#channels,
#studios,
#partners {
  background:
    radial-gradient(ellipse at 82% 8%, rgba(200, 16, 22, 0.08), transparent 30rem),
    linear-gradient(90deg, rgba(10, 15, 31, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(10, 15, 31, 0.035) 1px, transparent 1px),
    #f1f2f5 !important;
  background-size: auto, 92px 92px, 92px 92px, auto !important;
}

#about h2,
#channels h2,
#theater h2,
#studios h2,
#roster h2,
#community h2,
#partners h2,
#about h3,
#channels h3,
#theater h3,
#studios h3,
#roster h3,
#community h3,
#partners h3,
.aero-section:not(#shop):not(#faq) h2,
.aero-section:not(#shop):not(#faq) h3 {
  color: var(--apparel-ink) !important;
  -webkit-text-fill-color: var(--apparel-ink) !important;
}

#about p,
#channels p,
#theater p,
#studios p,
#roster p,
#community p,
#partners p,
#about li,
#channels li,
#theater li,
#studios li,
#roster li,
#community li,
#partners li,
.aero-section:not(#shop):not(#faq) p {
  color: var(--apparel-muted) !important;
}

.eyebrow,
.section-kicker,
.aero-mini-label,
#about .eyebrow,
.aero-section:not(#shop):not(#faq) .section-kicker {
  border-color: rgba(200, 16, 22, 0.18) !important;
  background: rgba(200, 16, 22, 0.075) !important;
  color: #98090d !important;
  -webkit-text-fill-color: #98090d !important;
}

.section-kicker svg,
.aero-section:not(#shop):not(#faq) .section-kicker svg {
  color: var(--apparel-red) !important;
}

.about-visual,
.pipeline-card,
.process-steps article,
.partner-pitch,
.partner-card,
.roster-display,
.roster-menu button,
.aero-video-shell,
.channel-card {
  border-color: rgba(10, 15, 31, 0.14) !important;
  background: rgba(255, 255, 255, 0.64) !important;
  color: var(--apparel-ink) !important;
  box-shadow: 0 22px 54px rgba(10, 15, 31, 0.08) !important;
}

.about-visual {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(232, 235, 244, 0.68)),
    repeating-linear-gradient(-45deg, transparent 0 10px, rgba(10, 15, 31, 0.045) 10px 12px) !important;
}

.about-visual .stat-node {
  border-color: rgba(10, 15, 31, 0.16) !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(226, 229, 238, 0.78)) !important;
  color: var(--apparel-ink) !important;
  box-shadow: 0 18px 38px rgba(10, 15, 31, 0.1) !important;
}

.about-visual .stat-node strong {
  color: var(--apparel-ink) !important;
}

.about-visual .stat-node span,
.about-visual .typing-line {
  color: rgba(17, 18, 22, 0.58) !important;
}

.pipeline-card:hover,
.pipeline-step.is-filled .pipeline-card {
  border-color: rgba(200, 16, 22, 0.28) !important;
  background: rgba(255, 255, 255, 0.84) !important;
  box-shadow: 0 22px 60px rgba(200, 16, 22, 0.1) !important;
}

.process-steps span {
  border-color: rgba(10, 15, 31, 0.16) !important;
  background: var(--apparel-ink) !important;
  color: #fff !important;
}

.pipeline-spine {
  background: rgba(10, 15, 31, 0.12) !important;
}

.pipeline-node {
  border-color: rgba(10, 15, 31, 0.18) !important;
  background: rgba(255, 255, 255, 0.86) !important;
}

#shop,
#faq,
.footer {
  background:
    radial-gradient(ellipse at 72% 8%, rgba(200, 16, 22, 0.22), transparent 32rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    #050506 !important;
  background-size: auto, 92px 92px, 92px 92px, auto !important;
  color: #f7f7f2 !important;
  border-top-color: rgba(255, 255, 255, 0.1) !important;
  border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}

#shop::before,
#shop::after,
#faq::before,
#faq::after {
  opacity: 0.24 !important;
}

#shop h2,
#shop h3,
#faq h2,
#faq h3,
.footer strong {
  color: #f7f7f2 !important;
  -webkit-text-fill-color: #f7f7f2 !important;
}

#shop p,
#faq p,
.footer,
.footer-col a,
.footer-bottom {
  color: rgba(247, 247, 242, 0.66) !important;
}

#shop .section-kicker,
#faq .aero-mini-label {
  border-color: rgba(255, 255, 255, 0.16) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  color: #ffb3b3 !important;
  -webkit-text-fill-color: #ffb3b3 !important;
}

#shop .section-kicker svg {
  color: #ff4f4f !important;
}

#shop .drop-card {
  border-color: rgba(255, 255, 255, 0.13) !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    #0d0e12 !important;
  color: #f7f7f2 !important;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34) !important;
}

#shop .drop-card.featured {
  border-color: rgba(200, 16, 22, 0.54) !important;
  box-shadow: 0 24px 70px rgba(200, 16, 22, 0.22) !important;
}

#shop .drop-card.featured > span {
  border-color: rgba(200, 16, 22, 0.46) !important;
  background: var(--apparel-red) !important;
  color: #fff !important;
}

#shop .drop-card .drop-media {
  border-color: rgba(255, 255, 255, 0.12) !important;
  background:
    linear-gradient(135deg, rgba(200, 16, 22, 0.18), transparent 42%),
    repeating-linear-gradient(-45deg, transparent, transparent 9px, rgba(255, 255, 255, 0.04) 9px, rgba(255, 255, 255, 0.04) 18px),
    #15171e !important;
}

#shop .drop-card p,
#shop .drop-card li,
#shop .drop-card .drop-media-ph {
  color: rgba(247, 247, 242, 0.62) !important;
}

#shop .drop-card .drop-price {
  color: #fff !important;
}

#shop .drop-card a,
#shop .shop-arrow {
  border-color: rgba(255, 255, 255, 0.14) !important;
  background: #fff !important;
  color: #07080b !important;
  -webkit-text-fill-color: #07080b !important;
}

#shop .drop-card a:hover,
#shop .shop-arrow:hover {
  background: var(--apparel-red) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

#faq .faq-list details,
.aero-faq-section .faq-list details {
  border-color: rgba(255, 255, 255, 0.12) !important;
  background: rgba(255, 255, 255, 0.055) !important;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28) !important;
}

#faq .faq-list summary,
.aero-faq-section .faq-list summary {
  color: #f7f7f2 !important;
  -webkit-text-fill-color: #f7f7f2 !important;
}

#faq .faq-list p,
.aero-faq-section .faq-list p {
  color: rgba(247, 247, 242, 0.62) !important;
}

.footer-grid {
  border-bottom-color: rgba(255, 255, 255, 0.1) !important;
}

@media (max-width: 760px) {
  .psyqo-hero-sticky {
    background:
      radial-gradient(ellipse at 50% 54%, rgba(200, 16, 22, 0.16), transparent 38%),
      var(--apparel-paper) !important;
  }

  .psyqo-hero-atmosphere::before {
    right: -88px;
    top: 44%;
    width: 360px;
    height: 250px;
    opacity: 0.13;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(200, 16, 22, 0.52) 58%, rgba(10, 15, 31, 0.3)) !important;
    clip-path: none;
    -webkit-mask: url("psyqo-p-mask.png") center / contain no-repeat;
    mask: url("psyqo-p-mask.png") center / contain no-repeat;
    mix-blend-mode: multiply;
  }

  .psyqo-hero-atmosphere::after {
    left: 18px;
    bottom: 114px;
    width: 62px;
    height: 62px;
    opacity: 0.24;
  }
}

/* ── Brand-film refinement pass: premium metal stage + restored dark sections ── */
.psyqo-hero-sticky {
  background:
    radial-gradient(ellipse at 73% 47%, rgba(255, 255, 255, 0.9), transparent 18%),
    radial-gradient(ellipse at 72% 52%, rgba(244, 246, 252, 0.54), transparent 30%),
    radial-gradient(ellipse at 72% 52%, rgba(255, 35, 28, 0.03), transparent 28%),
    radial-gradient(ellipse at 68% 48%, rgba(255, 255, 255, 0.74), transparent 36%),
    linear-gradient(90deg, rgba(247, 247, 242, 0.99), rgba(247, 247, 242, 0.92) 39%, rgba(222, 226, 236, 0.86) 64%, rgba(247, 247, 242, 0.98)),
    var(--apparel-paper) !important;
}

.psyqo-hero-sticky::before {
  background:
    linear-gradient(90deg, rgba(10, 15, 31, 0.075) 1px, transparent 1px),
    linear-gradient(0deg, rgba(10, 15, 31, 0.062) 1px, transparent 1px),
    radial-gradient(ellipse at 72% 52%, transparent 0 19%, rgba(255, 255, 255, 0.18) 39%, rgba(246, 246, 241, 0.94) 100%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.98), transparent 18%, transparent 76%, rgba(238, 239, 243, 0.96)) !important;
}

.psyqo-hero-atmosphere::before {
  opacity: 0.08;
}

.psyqo-hero-atmosphere::after {
  opacity: 0.06;
}

.psyqo-haze.haze-a {
  opacity: 0 !important;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.18), rgba(255, 35, 28, 0.018) 34%, transparent 70%) !important;
}

.psyqo-hero-webgl {
  filter:
    saturate(1.06)
    contrast(1.15) !important;
}

.globe-float {
  transition:
    opacity 220ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 220ms cubic-bezier(0.23, 1, 0.32, 1),
    filter 220ms cubic-bezier(0.23, 1, 0.32, 1) !important;
}

#roster {
  background:
    radial-gradient(ellipse at 74% 22%, rgba(200, 16, 22, 0.16), transparent 30rem),
    radial-gradient(ellipse at 22% 78%, rgba(255, 255, 255, 0.035), transparent 28rem),
    #000 !important;
  background-size: auto !important;
  color: #f7f7f2 !important;
  border-top-color: rgba(255, 255, 255, 0.1) !important;
  border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}

#about {
  background:
    radial-gradient(ellipse at 78% 16%, rgba(200, 16, 22, 0.08), transparent 30rem),
    linear-gradient(90deg, rgba(10, 15, 31, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(10, 15, 31, 0.035) 1px, transparent 1px),
    var(--apparel-paper) !important;
  background-size: auto, 92px 92px, 92px 92px, auto !important;
  color: var(--apparel-ink) !important;
  border-top-color: var(--apparel-hairline) !important;
  border-bottom-color: var(--apparel-hairline) !important;
}

#about h2,
#about h3,
#roster h2,
#roster h3,
#roster .roster-description h3,
#roster .roster-lane {
  color: #f7f7f2 !important;
  -webkit-text-fill-color: #f7f7f2 !important;
}

#about h2,
#about h3 {
  color: var(--apparel-ink) !important;
  -webkit-text-fill-color: var(--apparel-ink) !important;
}

#about p,
#about li,
#roster p,
#roster li,
#roster .roster-description p {
  color: rgba(247, 247, 242, 0.66) !important;
}

#about p,
#about li {
  color: var(--apparel-muted) !important;
}

#about .eyebrow,
#roster .eyebrow {
  border-color: rgba(255, 255, 255, 0.14) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  color: #ffb3b3 !important;
  -webkit-text-fill-color: #ffb3b3 !important;
}

#about .eyebrow {
  border-color: rgba(200, 16, 22, 0.18) !important;
  background: rgba(200, 16, 22, 0.075) !important;
  color: #98090d !important;
  -webkit-text-fill-color: #98090d !important;
}

#about .about-visual,
#about .about-visual.logo-docked {
  border-color: rgba(255, 255, 255, 0.12) !important;
  background:
    radial-gradient(circle at 50% 50%, rgba(200, 16, 22, 0.16), transparent 45%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    #000 !important;
  background-size: auto, 42px 42px, 42px 42px, auto !important;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.52),
    0 0 64px rgba(200, 16, 22, 0.1) !important;
}

#about .about-visual::after {
  opacity: 0.72 !important;
  mix-blend-mode: screen;
}

#about .about-visual .stat-node {
  border-color: rgba(255, 255, 255, 0.13) !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045)) !important;
  color: #f7f7f2 !important;
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

#about .about-visual .stat-node strong {
  color: #f7f7f2 !important;
}

#about .about-visual .stat-node span,
#about .about-visual .typing-line {
  color: rgba(247, 247, 242, 0.6) !important;
}

#about .about-static-logo {
  filter:
    drop-shadow(0 0 24px rgba(200, 16, 22, 0.22))
    drop-shadow(0 18px 34px rgba(0, 0, 0, 0.32));
}

#roster .roster-lane:hover,
#roster .roster-lane.active {
  color: #ef1d1d !important;
  -webkit-text-fill-color: #ef1d1d !important;
}

#roster .roster-detail {
  color: #f7f7f2 !important;
}

#roster .roster-detail::before {
  border-color: rgba(255, 107, 107, 0.24) !important;
  background:
    radial-gradient(circle at 0% 50%, rgba(239, 29, 29, 0.16), transparent 34%),
    linear-gradient(90deg, rgba(239, 29, 29, 0.08), rgba(255, 255, 255, 0.025)) !important;
}

#roster .roster-name {
  color: rgba(247, 247, 242, 0.86) !important;
}

#roster .roster-split {
  min-height: 500px !important;
  gap: clamp(24px, 4.2vw, 64px) !important;
}

#roster .roster-lanes {
  gap: clamp(14px, 2.2vw, 24px) !important;
}

#roster .roster-lane {
  font-size: clamp(30px, 4.45vw, 64px) !important;
  line-height: 0.92 !important;
  letter-spacing: -0.055em !important;
}

#roster .roster-detail {
  min-height: 420px !important;
}

@media (max-width: 760px) {
  .psyqo-hero-sticky {
    background:
      radial-gradient(ellipse at 55% 58%, rgba(200, 16, 22, 0.17), transparent 40%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(235, 237, 244, 0.9)),
      var(--apparel-paper) !important;
  }
}

/* ── PsyQo cleanup pass: identity ribbon, lesson progress, home cinema ── */
.identity-ribbon {
  position: relative;
  z-index: 7;
  margin: 0 !important;
  overflow: hidden;
  mask-image: none !important;
  -webkit-mask-image: none !important;
  border-block: 1px solid rgba(255, 255, 255, 0.12) !important;
  background:
    linear-gradient(90deg, rgba(200, 16, 22, 0.22), transparent 18%, transparent 82%, rgba(200, 16, 22, 0.22)),
    #050506 !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 42px rgba(0, 0, 0, 0.18) !important;
}

.identity-ribbon::before,
.identity-ribbon::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(12vw, 180px);
  pointer-events: none;
}

.identity-ribbon::before {
  left: 0;
  background: linear-gradient(90deg, #050506, transparent);
}

.identity-ribbon::after {
  right: 0;
  background: linear-gradient(270deg, #050506, transparent);
}

.identity-ribbon .marquee-track {
  animation-duration: 24s !important;
}

.identity-ribbon span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 76px;
  padding: 0 clamp(28px, 4vw, 64px) !important;
  color: rgba(247, 247, 242, 0.92) !important;
  -webkit-text-fill-color: rgba(247, 247, 242, 0.92) !important;
  font-family: var(--font-brand);
  font-size: clamp(14px, 1.15vw, 18px) !important;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.18em !important;
  text-transform: uppercase;
}

.identity-ribbon span:nth-child(even) {
  color: #ff3d3d !important;
  -webkit-text-fill-color: #ff3d3d !important;
}

.identity-ribbon span::after {
  content: "";
  position: absolute;
  right: -4px;
  width: 8px;
  height: 8px;
  background: var(--apparel-red);
  transform: rotate(45deg);
  box-shadow: 0 0 18px rgba(200, 16, 22, 0.55);
}

.psyqo-hero-webgl {
  filter:
    saturate(1.12)
    contrast(1.12) !important;
}

#theater.lessons-progress-section {
  overflow: hidden;
  padding-block: clamp(92px, 10vw, 154px) !important;
  background:
    radial-gradient(ellipse at 78% 42%, rgba(200, 16, 22, 0.1), transparent 34rem),
    linear-gradient(90deg, rgba(10, 15, 31, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(10, 15, 31, 0.035) 1px, transparent 1px),
    var(--apparel-paper) !important;
  background-size: auto, 92px 92px, 92px 92px, auto !important;
  color: var(--apparel-ink) !important;
}

.lessons-progress-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(340px, 1.16fr);
  gap: clamp(36px, 6vw, 96px);
  align-items: center;
}

.lessons-progress-copy {
  max-width: 600px;
}

#theater .lessons-progress-copy h2 {
  max-width: 12.5ch;
  margin: 0;
  color: var(--apparel-ink) !important;
  -webkit-text-fill-color: var(--apparel-ink) !important;
  font-size: clamp(48px, 6.2vw, 88px);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.06em;
}

#theater .lessons-progress-copy p {
  max-width: 520px;
  margin: 28px 0 0;
  color: var(--apparel-muted) !important;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.65;
}

#theater .lessons-progress-copy .lessons-subline {
  margin-top: 22px;
  color: var(--apparel-red) !important;
  font-family: var(--font-brand);
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.025em;
}

.lessons-progress-stage {
  position: relative;
  min-height: clamp(430px, 46vw, 620px);
  display: grid;
  align-items: center;
  isolation: isolate;
}

.lessons-progress-stage::before {
  content: "";
  position: absolute;
  inset: 4% -4% -2% 10%;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(200, 16, 22, 0.18), transparent 42%),
    repeating-linear-gradient(-45deg, transparent 0 12px, rgba(10, 15, 31, 0.06) 12px 14px);
  clip-path: polygon(16% 0, 100% 0, 78% 100%, 0 100%);
  opacity: 0.58;
}

.lessons-score {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: rgba(17, 18, 22, 0.06);
  font-family: var(--font-brand);
  letter-spacing: -0.08em;
  pointer-events: none;
}

.lessons-score strong {
  font-size: clamp(150px, 22vw, 330px);
  line-height: 0.78;
  color: inherit;
}

.lessons-score span {
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 800;
}

.lessons-dot-field.episode-grid {
  position: relative;
  z-index: 2;
  width: min(520px, 100%);
  margin: 0 0 0 auto;
  padding: clamp(18px, 2vw, 28px);
  display: grid;
  grid-template-columns: repeat(10, minmax(13px, 1fr));
  gap: clamp(8px, 1vw, 13px);
  background: transparent !important;
}

.lessons-dot-field .episode-count {
  position: absolute;
  right: clamp(18px, 2vw, 28px);
  bottom: calc(100% + 18px);
  top: auto;
  color: var(--apparel-ink);
  font-size: clamp(42px, 5vw, 76px);
  letter-spacing: -0.07em;
}

.lessons-dot-field .episode-count i {
  color: rgba(17, 18, 22, 0.38);
  font-size: 0.42em;
}

.lessons-dot-field .ep-dot {
  border-radius: 0;
  transform: scale(0.72) rotate(45deg);
  transition:
    opacity 240ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 240ms cubic-bezier(0.23, 1, 0.32, 1);
}

.lessons-dot-field .ep-dot-on {
  background: linear-gradient(135deg, #ff3838, var(--apparel-red));
  box-shadow: 0 0 16px rgba(200, 16, 22, 0.22);
}

.lessons-dot-field .ep-dot-off {
  background: rgba(10, 15, 31, 0.05);
  border: 1px solid rgba(10, 15, 31, 0.18);
}

.lessons-dot-field.episodes-shown .ep-dot {
  opacity: 1;
  transform: scale(1) rotate(45deg);
}

#studios.home-cinema-section {
  overflow: hidden;
  padding-block: clamp(86px, 10vw, 148px) !important;
  background:
    radial-gradient(ellipse at 50% 18%, rgba(200, 16, 22, 0.24), transparent 34rem),
    radial-gradient(ellipse at 92% 62%, rgba(255, 255, 255, 0.08), transparent 26rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    #050506 !important;
  background-size: auto, auto, 92px 92px, 92px 92px, auto !important;
  color: #f7f7f2 !important;
}

#studios.home-cinema-section.aero-section:not(#shop):not(#faq) .aero-section-header h2,
#studios.home-cinema-section.aero-section:not(#shop):not(#faq) h2,
#studios.home-cinema-section.aero-section:not(#shop):not(#faq) h3,
#studios.home-cinema-section .aero-section-header h2,
#studios.home-cinema-section h2,
#studios.home-cinema-section h3 {
  background: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  color: #f7f7f2 !important;
  -webkit-text-fill-color: #f7f7f2 !important;
  text-shadow: none !important;
}

#studios.home-cinema-section.aero-section:not(#shop):not(#faq) .aero-section-header p,
#studios.home-cinema-section.aero-section:not(#shop):not(#faq) p,
#studios.home-cinema-section .aero-section-header p,
#studios.home-cinema-section p {
  color: rgba(247, 247, 242, 0.66) !important;
  -webkit-text-fill-color: rgba(247, 247, 242, 0.66) !important;
}

.home-cinema {
  position: relative;
  display: grid;
  grid-template-columns: minmax(150px, 0.36fr) minmax(0, 1.28fr) minmax(150px, 0.36fr);
  gap: clamp(16px, 2.2vw, 34px);
  align-items: center;
  min-height: clamp(520px, 56vw, 740px);
}

.home-cinema::before {
  content: "";
  position: absolute;
  inset: -8% 12%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.12), transparent 38%),
    radial-gradient(ellipse at 50% 70%, rgba(200, 16, 22, 0.18), transparent 42%);
  filter: blur(6px);
}

.cinema-main {
  position: relative;
  z-index: 2;
}

.cinema-screen {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #000;
  box-shadow:
    0 38px 100px rgba(0, 0, 0, 0.58),
    0 0 84px rgba(200, 16, 22, 0.2);
}

.cinema-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent 16%, transparent 84%, rgba(255, 255, 255, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 20%, transparent 82%, rgba(0, 0, 0, 0.24));
  mix-blend-mode: screen;
  opacity: 0.34;
}

.cinema-screen iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.cinema-screen.is-playing iframe {
  opacity: 1;
  pointer-events: auto;
}

.cinema-player-cover {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: #000;
  color: #fff;
  cursor: pointer;
}

.cinema-player-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.12) brightness(0.64);
  transform: scale(1.025);
  transition:
    transform 260ms cubic-bezier(0.23, 1, 0.32, 1),
    filter 260ms cubic-bezier(0.23, 1, 0.32, 1);
}

.cinema-player-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.7)),
    radial-gradient(circle at 50% 50%, rgba(200, 16, 22, 0.18), transparent 58%);
}

.cinema-player-cover:hover img {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.16) brightness(0.8);
}

.cinema-screen.is-playing .cinema-player-cover {
  opacity: 0;
  pointer-events: none;
}

.cinema-big-play {
  position: relative;
  z-index: 2;
  width: clamp(68px, 6vw, 96px);
  height: clamp(68px, 6vw, 96px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(200, 16, 22, 0.9);
  box-shadow:
    0 0 42px rgba(200, 16, 22, 0.58),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transition: transform 180ms cubic-bezier(0.23, 1, 0.32, 1);
}

.cinema-player-cover:active .cinema-big-play {
  transform: scale(0.96);
}

.cinema-big-play svg {
  width: 44%;
  height: 44%;
  margin-left: 5%;
}

.cinema-player-cover strong {
  position: absolute;
  left: clamp(18px, 2.6vw, 34px);
  right: clamp(18px, 2.6vw, 34px);
  bottom: clamp(16px, 2.4vw, 30px);
  z-index: 2;
  max-width: 720px;
  color: #fff;
  font-size: clamp(15px, 1.5vw, 24px);
  line-height: 1.2;
  text-align: left;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.58);
}

.cinema-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.cinema-controls .btn {
  min-height: 46px !important;
  padding-inline: 18px !important;
}

.cinema-now-playing {
  max-width: 760px;
  margin: 18px auto 0 !important;
  text-align: center;
  color: rgba(247, 247, 242, 0.68) !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.cinema-side {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.cinema-side-left {
  transform: perspective(900px) rotateY(9deg) translateX(8px);
}

.cinema-side-right {
  transform: perspective(900px) rotateY(-9deg) translateX(-8px);
}

.cinema-poster {
  display: grid;
  gap: 9px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(247, 247, 242, 0.64);
  text-align: left;
  cursor: pointer;
  transition:
    transform 180ms cubic-bezier(0.23, 1, 0.32, 1),
    color 180ms cubic-bezier(0.23, 1, 0.32, 1),
    opacity 180ms cubic-bezier(0.23, 1, 0.32, 1);
}

.cinema-poster:hover,
.cinema-poster[aria-pressed="true"] {
  color: #fff;
  transform: translateY(-3px);
}

.cinema-poster-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #000;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
}

.cinema-poster-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.68) contrast(1.08) brightness(0.64);
  transition:
    transform 220ms cubic-bezier(0.23, 1, 0.32, 1),
    filter 220ms cubic-bezier(0.23, 1, 0.32, 1);
}

.cinema-poster:hover .cinema-poster-thumb img,
.cinema-poster[aria-pressed="true"] .cinema-poster-thumb img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.12) brightness(0.9);
}

.cinema-poster-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.48)),
    radial-gradient(circle at 50% 50%, rgba(200, 16, 22, 0.12), transparent 52%);
  pointer-events: none;
}

.cinema-poster-thumb svg {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 34px;
  height: 34px;
  padding: 9px;
  border-radius: 50%;
  background: rgba(200, 16, 22, 0.88);
  color: #fff;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 28px rgba(200, 16, 22, 0.52);
}

.cinema-poster > span:last-child {
  display: -webkit-box;
  overflow: hidden;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.02em;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

@media (max-width: 1023px) {
  .lessons-progress-layout,
  .home-cinema {
    grid-template-columns: 1fr;
  }

  .lessons-progress-stage {
    min-height: 420px;
  }

  .lessons-dot-field.episode-grid {
    margin-inline: auto;
  }

  .cinema-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    transform: none;
  }
}

@media (max-width: 640px) {
  .identity-ribbon span {
    min-height: 58px;
    letter-spacing: 0.12em !important;
  }

  .lessons-progress-stage {
    min-height: 330px;
  }

  .lessons-dot-field.episode-grid {
    grid-template-columns: repeat(10, minmax(8px, 1fr));
    gap: 7px;
    padding: 8px;
  }

  .lessons-dot-field .episode-count {
    position: static;
    grid-column: 1 / -1;
    justify-self: end;
    margin-bottom: 8px;
  }

  .cinema-side {
    grid-template-columns: 1fr;
  }
}

/* Aeronet-inspired P scan chapter: keep the canvas luminous while the apparel
   board texture stays crisp underneath. */
:root {
  --psyqo-network-progress: 0;
  --psyqo-float-progress: 0;
}


.psyqo-hero-copy,
.psyqo-hero-actions,
.hero-mission-strip {
  z-index: 24 !important;
}

.psyqo-float-field {
  z-index: 25 !important;
  opacity: var(--psyqo-float-progress) !important;
}

.psyqo-hero-sticky {
  --scan-heat: calc(var(--psyqo-network-progress) * 1);
}

.psyqo-hero-webgl {
  filter:
    saturate(calc(1.12 + (var(--psyqo-network-progress) * 0.18)))
    contrast(calc(1.06 + (var(--psyqo-network-progress) * 0.08)))
    drop-shadow(0 0 calc(22px + (var(--psyqo-network-progress) * 18px)) rgba(200, 16, 22, 0.24))
    drop-shadow(0 26px 44px rgba(10, 15, 31, 0.2)) !important;
}

.globe-float {
  box-shadow:
    0 16px 36px rgba(10, 15, 31, 0.12),
    0 0 calc(34px + (var(--psyqo-network-progress) * 18px)) rgba(200, 16, 22, calc(0.1 + (var(--psyqo-network-progress) * 0.16))),
    inset 0 1px 0 rgba(255, 255, 255, 0.76) !important;
}

@media (prefers-reduced-motion: reduce) {
  .psyqo-hero-sticky::after,
  .psyqo-hero-atmosphere::before,
  .psyqo-hero-atmosphere::after,
  .psyqo-rail span,
  .globe-anchor,
  .globe-float {
    animation: none !important;
    transition: none !important;
  }
}

/* ── PsyQo Globe Film Hero ─────────────────────────────────────────── */
body.home-page .hero.aeronet-hero:not(.psyqo-globe-hero) {
  height: 260svh !important;
  min-height: 2400px !important;
}

body.home-page .hero.aeronet-hero:not(.psyqo-globe-hero) .psyqo-hero-sticky {
  position: sticky !important;
  top: 0 !important;
  height: 100svh !important;
  min-height: 760px !important;
}

:root {
  --psyqo-globe-invert: 0;
  --psyqo-brutal-exit: 0;
  --psyqo-psyqo-enter: 0;
}

html.psyqo-lenis-active {
  scroll-behavior: auto !important;
}

body.home-page .psyqo-globe-hero,
body.home-page .hero.psyqo-globe-hero.aeronet-hero {
  position: relative !important;
  min-height: 320svh !important;
  height: auto !important;
  overflow: clip !important;
  background: #050505 !important;
  color: #fff !important;
  border: 0 !important;
}

body.home-page .psyqo-globe-hero::before,
body.home-page .psyqo-globe-hero::after {
  display: none !important;
}

.psyqo-globe-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  min-height: 720px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse at 50% 54%, rgba(165, 0, 0, calc(0.32 * (1 - var(--psyqo-globe-invert)))), transparent 34%),
    radial-gradient(ellipse at 50% 42%, rgba(255, 255, 255, calc(0.16 * var(--psyqo-globe-invert))), transparent 38%),
    #050505;
}

.psyqo-globe-sticky::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(to bottom, transparent 0 58%, rgba(0, 0, 0, 0.52) 100%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 4px),
    radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.08), transparent 58%);
  opacity: calc(1 - (var(--psyqo-globe-invert) * 0.55));
  pointer-events: none;
}

.psyqo-globe-sticky::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.98), rgba(246, 246, 244, 0.98)),
    repeating-linear-gradient(0deg, rgba(10, 15, 31, 0.035) 0 1px, transparent 1px 4px);
  opacity: var(--psyqo-globe-invert);
  pointer-events: none;
}

.psyqo-globe-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  filter:
    saturate(calc(1.1 + (var(--psyqo-globe-invert) * 0.18)))
    contrast(1.08)
    drop-shadow(0 0 32px rgba(165, 0, 0, calc(0.38 * (1 - var(--psyqo-globe-invert)))));
}

.psyqo-globe-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 0 42%, rgba(0, 0, 0, calc(0.72 * (1 - var(--psyqo-globe-invert)))) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, calc(0.56 * (1 - var(--psyqo-globe-invert)))), transparent 28%, transparent 72%, rgba(0, 0, 0, calc(0.68 * (1 - var(--psyqo-globe-invert)))));
}

.psyqo-globe-title-layer {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  display: grid;
  place-items: center;
  text-align: center;
}

.psyqo-globe-title {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(12ch, calc(100vw - 36px));
  margin: 0;
  font-family: Inter, var(--font-brand), system-ui, sans-serif;
  font-size: clamp(64px, 12.4vw, 188px);
  line-height: 0.84;
  font-weight: 900;
  letter-spacing: -0.075em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #f7f7f7;
  -webkit-text-fill-color: #f7f7f7 !important;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.16),
    0 28px 88px rgba(0, 0, 0, 0.48);
  transform: translate(-50%, -50%);
  will-change: transform, opacity, filter;
}

.psyqo-globe-title-brutal {
  opacity: calc(1 - var(--psyqo-brutal-exit));
  transform:
    translate(-50%, -50%)
    translate3d(calc(var(--psyqo-brutal-exit) * 58vw), 0, 0)
    skewX(calc(var(--psyqo-brutal-exit) * -6deg));
  filter: blur(calc(var(--psyqo-brutal-exit) * 10px));
}

.psyqo-globe-title-psyqo {
  color: #09090b;
  -webkit-text-fill-color: #09090b !important;
  opacity: var(--psyqo-psyqo-enter);
  transform:
    translate(-50%, -50%)
    translate3d(calc((1 - var(--psyqo-psyqo-enter)) * -42vw), calc((1 - var(--psyqo-psyqo-enter)) * 16px), 0)
    skewX(calc((1 - var(--psyqo-psyqo-enter)) * 5deg));
  filter: blur(calc((1 - var(--psyqo-psyqo-enter)) * 10px));
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.42),
    0 28px 88px rgba(0, 0, 0, 0.16);
}

.psyqo-globe-caption {
  position: absolute;
  left: 50%;
  bottom: clamp(28px, 5vh, 60px);
  z-index: 4;
  margin: 0;
  color: rgba(255, 255, 255, calc(0.56 * (1 - var(--psyqo-brutal-exit))));
  font-family: Inter, var(--font-brand), system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateX(-50%);
  pointer-events: none;
}

@media (max-width: 760px) {
  body.home-page .psyqo-globe-hero,
  body.home-page .hero.psyqo-globe-hero.aeronet-hero {
    min-height: 280svh !important;
  }

  .psyqo-globe-sticky {
    min-height: 640px;
  }

  .psyqo-globe-title {
    width: calc(100vw - 28px);
    font-size: clamp(52px, 15vw, 86px);
    letter-spacing: -0.06em;
  }

  .psyqo-globe-caption {
    width: calc(100vw - 40px);
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home-page .psyqo-globe-hero,
  body.home-page .hero.psyqo-globe-hero.aeronet-hero {
    min-height: 100svh !important;
  }

  .psyqo-globe-title-brutal,
  .psyqo-globe-title-psyqo,
  .psyqo-globe-caption {
    transition: none !important;
  }
}

/* Clean PsyQo 3D hero: remove legacy scan nodes, rails, and floater callouts. */
body.home-page .aeronet-hero .psyqo-hero-system,
body.home-page .aeronet-hero .psyqo-hero-rails,
body.home-page .aeronet-hero .psyqo-floor-grid,
body.home-page .aeronet-hero .psyqo-float-field,
body.home-page .aeronet-hero .psyqo-float-wrap,
body.home-page .aeronet-hero [data-float],
body.home-page .aeronet-hero .globe-float,
body.home-page .aeronet-hero .psyqo-haze {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

body.home-page .aeronet-hero .psyqo-hero-sticky::after,
body.home-page .aeronet-hero .psyqo-hero-atmosphere::before,
body.home-page .aeronet-hero .psyqo-hero-atmosphere::after {
  display: none !important;
}

body.home-page .aeronet-hero .psyqo-hero-webgl {
  filter:
    saturate(1.12)
    contrast(1.04)
    drop-shadow(0 0 26px rgba(200, 16, 22, 0.2))
    drop-shadow(0 30px 46px rgba(0, 0, 0, 0.46)) !important;
}


/* Inverted PsyQo colorway: black hero/content, white nav and utility sections. */
:root {
  --psyqo-invert-black: #030304;
  --psyqo-invert-ink: #090a0d;
  --psyqo-invert-white: #f7f7f2;
  --psyqo-invert-muted-dark: rgba(247, 247, 242, 0.68);
  --psyqo-invert-muted-light: rgba(9, 10, 13, 0.62);
}

body.home-page {
  background:
    radial-gradient(circle at 72% 10%, rgba(200, 16, 22, 0.12), transparent 28rem),
    linear-gradient(180deg, #030304 0%, #030304 52%, #f7f7f2 100%) !important;
  color: var(--psyqo-invert-white) !important;
}

body.home-page .hero.aeronet-hero:not(.psyqo-globe-hero),
body.home-page .hero.aeronet-hero:not(.psyqo-globe-hero) .psyqo-hero-sticky,
.aeronet-hero,
.psyqo-hero-sticky {
  background:
    radial-gradient(ellipse at 73% 50%, rgba(200, 16, 22, 0.2), transparent 32%),
    radial-gradient(ellipse at 72% 52%, rgba(255, 255, 255, 0.018), transparent 28%),
    linear-gradient(90deg, #030304 0%, #030304 44%, #08090d 70%, #030304 100%) !important;
}

body.home-page .aeronet-hero .psyqo-hero-sticky::before {
  display: none !important;
}

.psyqo-hero-copy h1.hero-team-title,
.hero-team-stack span,
.hero-controller-title span:first-child,
.home-page .hero h1.hero-team-title .hero-team-stack > span:first-child,
.home-page .hero h1.hero-team-title .hero-controller-title span:first-child {
  color: var(--psyqo-invert-white) !important;
  -webkit-text-fill-color: var(--psyqo-invert-white) !important;
  text-shadow: 0 22px 64px rgba(0, 0, 0, 0.56) !important;
}

.hero-team-stack span + span,
.hero-controller-title span:last-child,
.home-page .hero h1.hero-team-title .hero-team-stack > span:last-child,
.home-page .hero h1.hero-team-title .hero-controller-title span:last-child {
  color: #d80b12 !important;
  -webkit-text-fill-color: #d80b12 !important;
}

.psyqo-hero-actions .btn-quiet {
  border-color: rgba(247, 247, 242, 0.24) !important;
  background: rgba(247, 247, 242, 0.06) !important;
  color: var(--psyqo-invert-white) !important;
  -webkit-text-fill-color: var(--psyqo-invert-white) !important;
}

.hero-mission-strip {
  color: rgba(247, 247, 242, 0.78) !important;
  border-top-color: rgba(200, 16, 22, 0.6) !important;
}

#about,
#channels,
#theater,
#community,
#partners {
  background:
    radial-gradient(ellipse at 76% 18%, rgba(200, 16, 22, 0.16), transparent 32rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.036) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    var(--psyqo-invert-black) !important;
  background-size: auto, 92px 92px, 92px 92px, auto !important;
  color: var(--psyqo-invert-white) !important;
  border-top-color: rgba(255, 255, 255, 0.1) !important;
  border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}

#about h2,
#about h3,
#channels h2,
#channels h3,
#theater h2,
#theater h3,
#community h2,
#community h3,
#partners h2,
#partners h3,
#about .about-copy h2,
.aero-section:not(#shop):not(#faq) h2,
.aero-section:not(#shop):not(#faq):not(#studios) h3 {
  color: var(--psyqo-invert-white) !important;
  -webkit-text-fill-color: var(--psyqo-invert-white) !important;
}

#about p,
#about li,
#channels p,
#channels li,
#theater p,
#theater li,
#community p,
#community li,
#partners p,
#partners li,
.aero-section:not(#shop):not(#faq):not(#studios) p {
  color: var(--psyqo-invert-muted-dark) !important;
  -webkit-text-fill-color: var(--psyqo-invert-muted-dark) !important;
}

#about .eyebrow,
#channels .section-kicker,
#theater .section-kicker,
#community .section-kicker,
#partners .section-kicker,
.aero-section:not(#shop):not(#faq):not(#studios) .section-kicker {
  border-color: rgba(255, 255, 255, 0.15) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  color: #ffb3b3 !important;
  -webkit-text-fill-color: #ffb3b3 !important;
}

#about .about-visual,
#about .about-visual.logo-docked,
#theater .lessons-progress-stage,
#theater .lessons-dot-field.episode-grid {
  border-color: rgba(255, 255, 255, 0.12) !important;
  background:
    radial-gradient(circle at 50% 46%, rgba(200, 16, 22, 0.16), transparent 48%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    #000 !important;
  background-size: auto, 42px 42px, 42px 42px, auto !important;
  color: var(--psyqo-invert-white) !important;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.5),
    0 0 58px rgba(200, 16, 22, 0.12) !important;
}

#theater.lessons-progress-section {
  background:
    radial-gradient(ellipse at 76% 18%, rgba(200, 16, 22, 0.16), transparent 32rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.036) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    var(--psyqo-invert-black) !important;
  background-size: auto, 92px 92px, 92px 92px, auto !important;
  color: var(--psyqo-invert-white) !important;
}

#theater.lessons-progress-section .lessons-progress-copy h2,
#theater.lessons-progress-section .lessons-progress-copy p {
  color: inherit !important;
  -webkit-text-fill-color: currentColor !important;
}

#theater.lessons-progress-section .lessons-progress-copy p {
  color: var(--psyqo-invert-muted-dark) !important;
  -webkit-text-fill-color: var(--psyqo-invert-muted-dark) !important;
}

#about .about-visual .stat-node {
  border-color: rgba(255, 255, 255, 0.14) !important;
  background: rgba(255, 255, 255, 0.075) !important;
  color: var(--psyqo-invert-white) !important;
}

#about .about-visual .stat-node strong,
#theater .lessons-dot-field .episode-count {
  color: var(--psyqo-invert-white) !important;
  -webkit-text-fill-color: var(--psyqo-invert-white) !important;
}

#about .about-visual .stat-node span,
#about .about-visual .typing-line,
#theater .lessons-dot-field .episode-count i {
  color: var(--psyqo-invert-muted-dark) !important;
  -webkit-text-fill-color: var(--psyqo-invert-muted-dark) !important;
}

#studios,
#roster,
#shop,
#faq,
.footer,
.identity-ribbon {
  background:
    radial-gradient(ellipse at 78% 12%, rgba(200, 16, 22, 0.08), transparent 30rem),
    linear-gradient(90deg, rgba(9, 10, 13, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(9, 10, 13, 0.035) 1px, transparent 1px),
    var(--psyqo-invert-white) !important;
  background-size: auto, 92px 92px, 92px 92px, auto !important;
  color: var(--psyqo-invert-ink) !important;
  border-top-color: rgba(9, 10, 13, 0.12) !important;
  border-bottom-color: rgba(9, 10, 13, 0.1) !important;
}

#studios.home-cinema-section {
  background:
    radial-gradient(ellipse at 78% 12%, rgba(200, 16, 22, 0.08), transparent 30rem),
    linear-gradient(90deg, rgba(9, 10, 13, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(9, 10, 13, 0.035) 1px, transparent 1px),
    var(--psyqo-invert-white) !important;
  background-size: auto, 92px 92px, 92px 92px, auto !important;
  color: var(--psyqo-invert-ink) !important;
}

#studios h2,
#studios h3,
#studios.home-cinema-section.aero-section:not(#shop):not(#faq) .aero-section-header h2,
#studios.home-cinema-section.aero-section:not(#shop):not(#faq) h2,
#studios.home-cinema-section.aero-section:not(#shop):not(#faq) h3,
#roster h2,
#roster h3,
#shop h2,
#shop h3,
#faq h2,
#faq h3,
.footer strong,
.identity-ribbon span,
#studios.home-cinema-section .aero-section-header h2,
#studios.home-cinema-section h2,
#studios.home-cinema-section h3 {
  color: var(--psyqo-invert-ink) !important;
  -webkit-text-fill-color: var(--psyqo-invert-ink) !important;
}

#studios p,
#roster p,
#roster li,
#shop p,
#faq p,
.footer,
.footer-col a,
.footer-bottom,
#studios.home-cinema-section .aero-section-header p,
#studios.home-cinema-section p {
  color: var(--psyqo-invert-muted-light) !important;
  -webkit-text-fill-color: var(--psyqo-invert-muted-light) !important;
}

#studios .section-kicker,
#shop .section-kicker,
#faq .aero-mini-label {
  border-color: rgba(200, 16, 22, 0.18) !important;
  background: rgba(200, 16, 22, 0.075) !important;
  color: #98090d !important;
  -webkit-text-fill-color: #98090d !important;
}

#studios .cinema-screen,
#studios .cinema-player-cover,
#studios .cinema-poster-thumb {
  background: #000 !important;
}

#shop .drop-card,
#faq .faq-list details,
.aero-faq-section .faq-list details,
#roster .roster-display,
#roster .roster-menu button {
  border-color: rgba(9, 10, 13, 0.13) !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(232, 235, 244, 0.58)) !important;
  color: var(--psyqo-invert-ink) !important;
  box-shadow: 0 22px 54px rgba(9, 10, 13, 0.08) !important;
}

#shop .drop-card p,
#shop .drop-card li,
#faq .faq-list p,
.aero-faq-section .faq-list p,
#roster .roster-description p {
  color: var(--psyqo-invert-muted-light) !important;
  -webkit-text-fill-color: var(--psyqo-invert-muted-light) !important;
}

.identity-ribbon::before {
  background: linear-gradient(90deg, var(--psyqo-invert-white), transparent) !important;
}

.identity-ribbon::after {
  background: linear-gradient(270deg, var(--psyqo-invert-white), transparent) !important;
}

.identity-ribbon span:nth-child(even) {
  color: #c81016 !important;
  -webkit-text-fill-color: #c81016 !important;
}

/* Single-object 3D hero refinement: WebGL mark + clean BE PSYQO headline. */
body.home-page .aeronet-hero .psyqo-hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 73% 48%, rgba(200, 16, 22, 0.22), transparent 25rem),
    linear-gradient(90deg, rgba(3, 3, 4, 0.92), rgba(3, 3, 4, 0.34) 48%, rgba(3, 3, 4, 0.68));
}

body.home-page .aeronet-hero .psyqo-hero-webgl {
  z-index: 2;
}

body.home-page .aeronet-hero .hero-static-mark {
  position: absolute;
  right: clamp(72px, 9vw, 150px);
  top: 50%;
  z-index: 2;
  display: block;
  width: clamp(360px, 39vw, 640px);
  aspect-ratio: 1600 / 1025;
  background:
    linear-gradient(135deg, #ff5f5a 0%, #e30613 44%, #91040a 100%);
  filter:
    drop-shadow(0 0 26px rgba(200, 16, 22, 0.26))
    drop-shadow(0 42px 58px rgba(0, 0, 0, 0.52));
  opacity: 0;
  pointer-events: none;
  transform: translateY(-46%) perspective(900px) rotateX(-8deg) rotateY(-19deg);
  -webkit-mask: url("psyqo-p-mask.png") center / contain no-repeat;
  mask: url("psyqo-p-mask.png") center / contain no-repeat;
}

.psyqo-hero3d-unavailable body.home-page .aeronet-hero .hero-static-mark,
body.home-page .aeronet-hero .psyqo-hero-webgl.is-disabled + .hero-static-mark {
  opacity: 1;
}

body.home-page .aeronet-hero .psyqo-hero-container,
body.home-page .aeronet-hero .hero-mission-strip,
body.home-page .aeronet-hero .hero-scroll-cue {
  position: relative;
  z-index: 3;
}

body.home-page .aeronet-hero .psyqo-hero-copy {
  top: clamp(150px, 25vh, 230px) !important;
  left: clamp(32px, 4.6vw, 72px) !important;
  max-width: min(620px, 45vw) !important;
}

body.home-page .aeronet-hero .psyqo-hero-eyebrow {
  margin: 0 0 18px;
  color: rgba(247, 247, 242, 0.72);
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

body.home-page .aeronet-hero .psyqo-hero-copy h1.hero-title-loop {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: min(7.9ch, 100vw - 48px) !important;
  height: auto !important;
  margin: 0 0 34px !important;
  line-height: 0.78 !important;
  letter-spacing: 0 !important;
  animation: none !important;
}

body.home-page .aeronet-hero .hero-title-line,
body.home-page .aeronet-hero .hero-title-accent {
  display: block;
  position: static !important;
  font-size: clamp(84px, 10.4vw, 160px);
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: uppercase;
  transform: none !important;
  animation: none !important;
  opacity: 1 !important;
  -webkit-text-fill-color: currentColor !important;
}

body.home-page .aeronet-hero .hero-title-line {
  color: var(--psyqo-invert-white, #f7f7f2) !important;
}

body.home-page .aeronet-hero .hero-title-accent {
  color: var(--apparel-red, #e30613) !important;
}

body.home-page .aeronet-hero .hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: clamp(72px, 9vh, 112px);
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: rgba(247, 247, 242, 0.72);
  border: 1px solid rgba(247, 247, 242, 0.18);
  background: rgba(255, 255, 255, 0.035);
  transform: translateX(-50%);
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease;
}

body.home-page .aeronet-hero .hero-scroll-cue:hover,
body.home-page .aeronet-hero .hero-scroll-cue:focus-visible {
  color: #fff;
  border-color: rgba(200, 16, 22, 0.62);
  transform: translateX(-50%) translateY(2px);
}

body.home-page .aeronet-hero .hero-scroll-cue svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.6;
}

body.home-page .aeronet-hero .hero-scroll-cue:empty::before,
body.home-page .aeronet-hero .hero-scroll-cue:not(:has(svg))::before {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

@media (max-width: 760px) {
  body.home-page .aeronet-hero .psyqo-hero-eyebrow {
    margin-bottom: 14px;
    font-size: 11px;
  }

  body.home-page .aeronet-hero .psyqo-hero-copy {
    top: clamp(132px, 22vh, 180px) !important;
    left: 24px !important;
    right: 24px !important;
    max-width: none !important;
    text-align: left !important;
  }

  body.home-page .aeronet-hero .hero-title-line,
  body.home-page .aeronet-hero .hero-title-accent {
    font-size: clamp(62px, 18vw, 88px);
  }

  body.home-page .aeronet-hero .hero-static-mark {
    right: 50%;
    top: 62%;
    width: min(82vw, 390px);
    transform: translate(50%, -50%) perspective(900px) rotateX(-7deg) rotateY(-17deg);
  }

  body.home-page .aeronet-hero .hero-scroll-cue {
    bottom: 42px;
  }
}
