:root {
  --ink: #101115;
  --ink-2: #1d2026;
  --paper: #f7f7f2;
  --paper-2: #ffffff;
  --muted: #6e737c;
  --line: rgba(16, 17, 21, 0.14);
  --white: #ffffff;
  --lime: #d7ff3f;
  --amber: #ffb21a;
  --cyan: #00c8d7;
  --coral: #ff6254;
  --leaf: #51b86b;
  --rose: #ee4f82;
  --shadow: 0 28px 80px rgba(16, 17, 21, 0.18);
  --radius: 8px;
  --max: 1180px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--lime);
  color: var(--ink);
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius);
  font-weight: 800;
}

.skip-link:focus {
  top: 1rem;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(16, 17, 21, 0.9);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(var(--max), calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--lime);
  color: var(--ink);
  border-radius: 50%;
  font-size: 0.78rem;
}

.pop-brand {
  flex: 0 0 auto;
}

.pop-brand-logo {
  width: 180px;
  height: 48px;
  object-fit: contain;
  padding: 6px 10px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
}

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

.nav-links {
  scrollbar-width: none;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.nav-links a {
  padding: 0.72rem 0.84rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  font-weight: 750;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.11);
}

.button,
.ghost-button,
.dark-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.78rem 1rem;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button {
  background: var(--lime);
  color: var(--ink);
}

.dark-button {
  background: var(--ink);
  color: var(--white);
}

.ghost-button {
  border: 1px solid currentColor;
  color: currentColor;
}

.button:hover,
.ghost-button:hover,
.dark-button:hover {
  transform: translateY(-2px);
}

.hero {
  min-height: 82svh;
  position: relative;
  isolation: isolate;
  color: var(--white);
  background: var(--ink);
  overflow: clip;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(16, 17, 21, 0.9) 0%, rgba(16, 17, 21, 0.54) 45%, rgba(16, 17, 21, 0.06) 100%),
    linear-gradient(0deg, rgba(16, 17, 21, 0.74) 0%, rgba(16, 17, 21, 0.08) 58%);
}

.hero-inner {
  width: min(var(--max), calc(100% - 32px));
  min-height: 82svh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(310px, 0.72fr);
  align-items: end;
  gap: clamp(32px, 6vw, 80px);
  padding: clamp(72px, 12vh, 140px) 0 58px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  color: var(--lime);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1rem;
  font-size: clamp(3rem, 8vw, 7.8rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 1.6rem;
}

.hero-panel {
  align-self: stretch;
  min-height: 420px;
  display: grid;
  align-content: end;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 32px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08)),
    rgba(16, 17, 21, 0.3);
  box-shadow: var(--shadow);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
}

.metric {
  min-height: 112px;
  padding: 18px;
  background: rgba(16, 17, 21, 0.52);
}

.metric strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.45rem, 2.8vw, 2.35rem);
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 0.44rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
  font-weight: 750;
}

.section {
  padding: clamp(62px, 8vw, 112px) 0;
}

.section.dark {
  background: var(--ink);
  color: var(--white);
}

.section.paper {
  background: var(--paper-2);
}

.section.band {
  background:
    linear-gradient(90deg, rgba(0, 200, 215, 0.16), transparent 36%),
    linear-gradient(270deg, rgba(255, 178, 26, 0.2), transparent 40%),
    var(--paper);
}

.section-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 32px;
  margin-bottom: clamp(28px, 5vw, 54px);
}

.section-head p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.dark .section-head p,
.dark .muted {
  color: rgba(255, 255, 255, 0.68);
}

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

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

.concept-card,
.feature-card,
.schedule-card,
.reference-card,
.contact-card,
.station-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper-2);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(16, 17, 21, 0.08);
}

.concept-card {
  display: grid;
  min-height: 520px;
  color: var(--white);
  position: relative;
  isolation: isolate;
}

.concept-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--card-image);
  background-size: cover;
  background-position: center;
  transition: transform 400ms ease;
}

.concept-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(16, 17, 21, 0.12), rgba(16, 17, 21, 0.9)),
    linear-gradient(90deg, rgba(16, 17, 21, 0.66), transparent);
}

.concept-card:hover::before {
  transform: scale(1.04);
}

.concept-card-content {
  align-self: end;
  padding: clamp(20px, 3vw, 30px);
}

.concept-card .tag {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.35rem 0.58rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: var(--lime);
  background: rgba(16, 17, 21, 0.42);
  font-weight: 900;
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1.4rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.42rem 0.68rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  font-size: 0.85rem;
  font-weight: 850;
}

.dark .pill {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}

.image-stack {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 12px;
}

.image-stack img,
.media-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-stack figure,
.media-tile {
  margin: 0;
  min-height: 250px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-stack figure:first-child {
  min-height: 440px;
}

.image-stack figure:nth-child(2) {
  align-self: end;
  min-height: 300px;
}

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

.feature-card {
  padding: clamp(22px, 3vw, 32px);
}

.feature-card .kicker,
.schedule-card .kicker,
.reference-card .kicker,
.station-card .kicker {
  margin-bottom: 0.75rem;
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dark .feature-card,
.dark .schedule-card,
.dark .reference-card,
.dark .contact-card,
.dark .station-card {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.dark .feature-card p,
.dark .schedule-card p,
.dark .reference-card p,
.dark .contact-card p,
.dark .station-card p {
  color: rgba(255, 255, 255, 0.7);
}

.service-list,
.timeline-list,
.contact-list {
  display: grid;
  gap: 10px;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.service-list li,
.timeline-list li,
.contact-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
}

.service-list li::before,
.timeline-list li::before,
.contact-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--accent, var(--cyan));
}

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

.schedule-card {
  padding: clamp(22px, 3vw, 30px);
}

.schedule-card strong {
  display: block;
  margin-bottom: 0.42rem;
  font-size: 1.12rem;
}

.time-table {
  display: grid;
  gap: 10px;
  margin-top: 1rem;
}

.time-row {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 14px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.dark .time-row {
  border-color: rgba(255, 255, 255, 0.14);
}

.time-row span {
  color: var(--muted);
  font-weight: 900;
}

.dark .time-row span {
  color: rgba(255, 255, 255, 0.56);
}

.reference-wall {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.reference-card {
  padding: clamp(24px, 3vw, 34px);
}

.logo-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.2rem;
}

.logo-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.48rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-2);
  font-weight: 850;
  font-size: 0.88rem;
}

.dark .logo-cloud span {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
}

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

.marquee-track span {
  display: inline-flex;
  align-items: center;
  min-height: 70px;
  padding: 0 28px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 900;
  white-space: nowrap;
}

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

.accent-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  min-height: 12px;
}

.accent-strip span:nth-child(1) {
  background: var(--lime);
}

.accent-strip span:nth-child(2) {
  background: var(--cyan);
}

.accent-strip span:nth-child(3) {
  background: var(--amber);
}

.accent-strip span:nth-child(4) {
  background: var(--coral);
}

.accent-strip span:nth-child(5) {
  background: var(--rose);
}

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

.station-card {
  padding: 20px;
}

.station-card strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 0.9rem;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
}

.dark .station-card strong {
  background: var(--lime);
  color: var(--ink);
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 16px;
  align-items: stretch;
}

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

.footer {
  padding: 34px 0;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
}

.footer a {
  color: var(--white);
  font-weight: 850;
}

.page-pop {
  --accent: var(--cyan);
}

.page-elsterwerda {
  --accent: var(--amber);
}

.page-doki {
  --accent: var(--leaf);
}

.theme-pop .eyebrow,
.theme-pop .tag,
.theme-pop .feature-card .kicker {
  color: var(--cyan);
}

.theme-elsterwerda .eyebrow,
.theme-elsterwerda .tag,
.theme-elsterwerda .feature-card .kicker {
  color: var(--amber);
}

.theme-doki .eyebrow,
.theme-doki .tag,
.theme-doki .feature-card .kicker {
  color: var(--leaf);
}

.logo-mark {
  max-width: 170px;
  max-height: 92px;
  object-fit: contain;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  padding: 8px;
}

.mood-panel {
  display: grid;
  gap: 14px;
}

.mood-panel .media-tile {
  min-height: 210px;
}

.microcopy {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 720;
}

.dark .microcopy {
  color: rgba(255, 255, 255, 0.6);
}

.source-note {
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.pop-experience {
  --spotlight-x: 74%;
  --spotlight-y: 32%;
  background: #08090b;
}

.pop-hero {
  min-height: calc(100svh - 72px);
  background:
    radial-gradient(circle at var(--spotlight-x) var(--spotlight-y), rgba(0, 200, 215, 0.34), transparent 26%),
    #08090b;
}

.pop-hero::before {
  animation: popHeroDrift 18s ease-in-out infinite alternate;
  filter: saturate(1.08) contrast(1.08);
}

.pop-hero::after {
  background:
    radial-gradient(circle at var(--spotlight-x) var(--spotlight-y), rgba(215, 255, 63, 0.22), transparent 22%),
    linear-gradient(90deg, rgba(5, 6, 8, 0.95) 0%, rgba(5, 6, 8, 0.58) 44%, rgba(5, 6, 8, 0.12) 100%),
    linear-gradient(0deg, rgba(5, 6, 8, 0.82) 0%, rgba(5, 6, 8, 0.04) 62%);
}

.pop-hero-inner {
  align-items: center;
}

.pop-hero-copy h1 {
  max-width: 900px;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.35);
}

.pop-beams {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.pop-beams span {
  position: absolute;
  bottom: -18%;
  width: 18vw;
  height: 120vh;
  transform-origin: bottom center;
  background: linear-gradient(0deg, rgba(0, 200, 215, 0), rgba(0, 200, 215, 0.24), rgba(215, 255, 63, 0));
  mix-blend-mode: screen;
  opacity: 0.55;
  filter: blur(10px);
  animation: popBeamSweep 9s ease-in-out infinite alternate;
}

.pop-beams span:nth-child(1) {
  left: 44%;
  transform: rotate(22deg);
}

.pop-beams span:nth-child(2) {
  left: 58%;
  transform: rotate(-12deg);
  animation-delay: -2.5s;
  background: linear-gradient(0deg, rgba(238, 79, 130, 0), rgba(238, 79, 130, 0.2), rgba(0, 200, 215, 0));
}

.pop-beams span:nth-child(3) {
  left: 72%;
  transform: rotate(14deg);
  animation-delay: -4s;
}

.pop-beams span:nth-child(4) {
  left: 83%;
  transform: rotate(-24deg);
  animation-delay: -6s;
  background: linear-gradient(0deg, rgba(255, 178, 26, 0), rgba(255, 178, 26, 0.2), rgba(0, 200, 215, 0));
}

.pop-wave {
  position: absolute;
  right: min(6vw, 74px);
  top: 122px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 88px;
  opacity: 0.72;
  pointer-events: none;
}

.pop-wave i {
  width: 5px;
  height: 26px;
  border-radius: 999px;
  background: rgba(215, 255, 63, 0.86);
  box-shadow: 0 0 22px rgba(215, 255, 63, 0.48);
  animation: popEqualize 1.2s ease-in-out infinite;
}

.pop-wave i:nth-child(2n) {
  background: rgba(0, 200, 215, 0.9);
  animation-duration: 0.92s;
}

.pop-wave i:nth-child(3n) {
  animation-delay: -0.36s;
}

.pop-command-deck {
  position: relative;
  min-height: 520px;
  display: grid;
  align-content: end;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
    rgba(8, 9, 11, 0.45);
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.pop-command-deck::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 12px);
  transform: translateX(-100%);
  animation: popDeckScan 8s linear infinite;
  opacity: 0.34;
  pointer-events: none;
}

.pop-command-deck > * {
  position: relative;
}

.pop-live-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pop-live-label strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lime);
}

.pop-live-label strong::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 18px currentColor;
  animation: popPulse 1.4s ease-in-out infinite;
}

.pop-eq {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: end;
  gap: 8px;
  height: 92px;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.pop-eq span {
  min-height: 18px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, var(--lime), var(--cyan));
  box-shadow: 0 0 20px rgba(0, 200, 215, 0.22);
  animation: popEqualize 1.35s ease-in-out infinite;
}

.pop-eq span:nth-child(2) { animation-delay: -0.2s; }
.pop-eq span:nth-child(3) { animation-delay: -0.55s; }
.pop-eq span:nth-child(4) { animation-delay: -0.1s; }
.pop-eq span:nth-child(5) { animation-delay: -0.72s; }
.pop-eq span:nth-child(6) { animation-delay: -0.34s; }
.pop-eq span:nth-child(7) { animation-delay: -0.6s; }

.pop-cue-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.pop-cue-list span {
  display: grid;
  place-items: center;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.82rem;
  font-weight: 900;
}

.pop-snapshot {
  position: relative;
  z-index: 2;
  margin-top: -44px;
  color: var(--white);
}

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

.pop-snapshot article {
  min-height: 220px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    #12141a;
  box-shadow: var(--shadow);
}

.pop-snapshot article span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--lime);
  font-weight: 950;
  letter-spacing: 0.08em;
}

.pop-snapshot h2 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
}

.pop-snapshot p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.pop-services {
  margin-top: -90px;
  padding-top: clamp(132px, 14vw, 190px);
}

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

.pop-service-card {
  position: relative;
  min-height: 560px;
  display: grid;
  align-content: end;
  gap: 28px;
  padding: clamp(22px, 3vw, 34px);
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  box-shadow: var(--shadow);
}

.pop-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--service-image);
  background-size: cover;
  background-position: center;
  transition: transform 600ms ease, filter 600ms ease;
}

.pop-service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(8, 9, 11, 0.08), rgba(8, 9, 11, 0.9)),
    linear-gradient(90deg, rgba(8, 9, 11, 0.72), transparent);
}

.pop-service-card:hover::before {
  transform: scale(1.07);
  filter: saturate(1.18);
}

.pop-service-card p,
.pop-service-card li {
  color: rgba(255, 255, 255, 0.78);
}

.pop-service-card .kicker {
  color: var(--lime);
}

.portfolio-console {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 0.35fr) minmax(0, 1fr);
  gap: 14px;
  margin-top: 32px;
  padding: 14px;
  border: 1px solid rgba(16, 17, 21, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 12%, rgba(215, 255, 63, 0.2), transparent 28%),
    radial-gradient(circle at 92% 0%, rgba(0, 200, 215, 0.22), transparent 30%),
    #101115;
  color: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.portfolio-console::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.82), transparent);
  pointer-events: none;
}

.portfolio-tabs,
.portfolio-stage,
.portfolio-matrix {
  position: relative;
}

.portfolio-tabs {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 10px;
  min-height: 0;
}

.portfolio-tab,
.portfolio-matrix button {
  font: inherit;
  letter-spacing: 0;
  cursor: pointer;
}

.portfolio-tab {
  min-height: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "number title"
    "number text";
  gap: 4px 14px;
  align-content: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.72);
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.portfolio-tab span {
  grid-area: number;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--lime);
  font-size: 0.8rem;
  font-weight: 950;
}

.portfolio-tab strong {
  grid-area: title;
  color: var(--white);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.1;
}

.portfolio-tab small {
  grid-area: text;
  color: inherit;
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.35;
}

.portfolio-tab:hover,
.portfolio-tab:focus-visible,
.portfolio-tab.is-active {
  transform: translateX(4px);
  border-color: rgba(215, 255, 63, 0.6);
  background: linear-gradient(135deg, rgba(215, 255, 63, 0.16), rgba(0, 200, 215, 0.1));
  color: rgba(255, 255, 255, 0.88);
}

.portfolio-stage {
  height: clamp(620px, 38vw, 680px);
  min-height: 0;
}

.portfolio-panel {
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(250px, 0.9fr) minmax(0, 1.05fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
  padding: clamp(20px, 3vw, 34px);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.06);
}

.js .portfolio-panel {
  display: none;
}

.js .portfolio-panel.is-active {
  display: grid;
}

.portfolio-visual {
  position: relative;
  min-height: 0;
  height: 100%;
  display: grid;
  align-items: end;
  padding: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(8, 9, 11, 0.05), rgba(8, 9, 11, 0.86)),
    var(--panel-image) center / cover no-repeat;
}

.portfolio-visual::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 18%, rgba(215, 255, 63, 0.35), transparent 18%),
    radial-gradient(circle at 84% 22%, rgba(0, 200, 215, 0.32), transparent 22%),
    linear-gradient(135deg, rgba(8, 9, 11, 0), rgba(8, 9, 11, 0.66));
  mix-blend-mode: screen;
  animation: portfolioGlow 7s ease-in-out infinite alternate;
}

.portfolio-visual span {
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(8, 9, 11, 0.38);
  color: var(--lime);
  font-size: 2rem;
  font-weight: 950;
  box-shadow: 0 0 42px rgba(215, 255, 63, 0.22);
}

.portfolio-visual i {
  position: absolute;
  right: 24px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 26px currentColor;
  animation: popPulse 1.6s ease-in-out infinite;
}

.portfolio-visual i:nth-of-type(1) {
  top: 28px;
  color: var(--lime);
}

.portfolio-visual i:nth-of-type(2) {
  top: 58px;
  color: var(--cyan);
  background: var(--cyan);
  animation-delay: -0.4s;
}

.portfolio-visual i:nth-of-type(3) {
  top: 88px;
  color: var(--coral);
  background: var(--coral);
  animation-delay: -0.8s;
}

.portfolio-detail {
  display: grid;
  align-content: center;
  min-height: 0;
}

.portfolio-detail h3 {
  margin: 0 0 1rem;
  max-width: 640px;
  font-size: clamp(1.9rem, 3.35vw, 3rem);
  line-height: 0.98;
  overflow-wrap: break-word;
  hyphens: auto;
}

.portfolio-detail p {
  color: rgba(255, 255, 255, 0.76);
}

.portfolio-detail .service-list {
  margin-top: 20px;
}

.portfolio-detail .service-list li {
  color: rgba(255, 255, 255, 0.82);
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 2px;
}

.portfolio-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.5rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  font-weight: 850;
}

.portfolio-matrix {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.portfolio-matrix button {
  min-height: 62px;
  padding: 0.75rem 0.86rem;
  border: 1px solid rgba(16, 17, 21, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.2;
  text-align: left;
  box-shadow: 0 14px 32px rgba(16, 17, 21, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.portfolio-matrix button:hover,
.portfolio-matrix button:focus-visible,
.portfolio-matrix button.is-active {
  transform: translateY(-3px);
  border-color: rgba(0, 200, 215, 0.55);
  background: #effcff;
}

.pop-show {
  position: relative;
  overflow: hidden;
}

.pop-show::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(90deg, rgba(0, 200, 215, 0.14), rgba(255, 178, 26, 0.12), transparent);
  pointer-events: none;
}

.pop-show-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(360px, 0.88fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
}

.pop-runline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.pop-runline span {
  min-height: 62px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.76);
  font-weight: 900;
}

.pop-collage {
  display: grid;
  grid-template-columns: 1fr 0.76fr;
  grid-template-rows: minmax(210px, 0.72fr) minmax(210px, 0.72fr);
  gap: 12px;
  min-height: 640px;
}

.pop-collage figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.pop-collage-main {
  grid-row: 1 / -1;
}

.pop-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms ease;
}

.pop-collage-main img {
  object-position: center bottom;
}

.pop-collage figure:hover img {
  transform: scale(1.05);
}

.pop-proof {
  padding: clamp(58px, 7vw, 96px) 0 0;
  background: #08090b;
  color: var(--white);
}

.pop-proof-head {
  margin-bottom: 30px;
}

.pop-proof-head h2 {
  max-width: 780px;
}

.pop-marquee {
  border-color: rgba(255, 255, 255, 0.14);
}

.pop-reference {
  background:
    linear-gradient(90deg, rgba(215, 255, 63, 0.12), transparent 32%),
    linear-gradient(270deg, rgba(0, 200, 215, 0.14), transparent 38%),
    #f7f7f2;
}

.pop-contact {
  background:
    linear-gradient(120deg, rgba(0, 200, 215, 0.18), transparent 42%),
    linear-gradient(270deg, rgba(215, 255, 63, 0.12), transparent 46%),
    #08090b;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes popHeroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.5%, 1%, 0);
  }
}

@keyframes popBeamSweep {
  from {
    opacity: 0.22;
    translate: -18px 0;
  }
  to {
    opacity: 0.72;
    translate: 22px 0;
  }
}

@keyframes popEqualize {
  0%,
  100% {
    transform: scaleY(0.35);
  }
  50% {
    transform: scaleY(1);
  }
}

@keyframes popPulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.82);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes portfolioGlow {
  from {
    transform: translate3d(-1.5%, -1%, 0) rotate(-1deg);
  }
  to {
    transform: translate3d(1.5%, 1%, 0) rotate(1deg);
  }
}

@keyframes popDeckScan {
  0% {
    transform: translateX(-120%);
  }
  45%,
  100% {
    transform: translateX(120%);
  }
}

@media (max-width: 1020px) {
  .hero-inner,
  .split,
  .section-head,
  .reference-wall,
  .contact-band,
  .pop-show-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: auto;
  }

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

  .station-grid,
  .pop-snapshot-grid,
  .pop-service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pop-collage {
    min-height: 520px;
  }

  .portfolio-console,
  .portfolio-panel {
    grid-template-columns: 1fr;
  }

  .portfolio-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .portfolio-stage,
  .portfolio-panel {
    height: auto;
    min-height: auto;
  }

  .portfolio-visual {
    height: auto;
    min-height: 360px;
  }

  .portfolio-matrix {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .nav {
    min-height: auto;
    padding: 14px 0;
    align-items: center;
    gap: 12px;
    flex-direction: row;
  }

  .nav-links {
    width: auto;
    min-width: 0;
    flex: 1;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 4px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .nav-links a {
    border-radius: var(--radius);
    padding: 0.58rem 0.64rem;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .pop-experience .nav {
    width: min(var(--max), calc(100% - 24px));
    gap: 10px;
  }

  .pop-experience .brand {
    flex: 0 0 auto;
  }

  .pop-experience .pop-brand-logo {
    width: clamp(86px, 28vw, 112px);
    height: 40px;
    padding: 5px 7px;
  }

  .pop-experience .nav-links {
    justify-content: flex-end;
    overflow: visible;
    padding-bottom: 0;
  }

  .pop-experience .nav-links a {
    padding: 0.56rem clamp(0.32rem, 1.6vw, 0.5rem);
    font-size: clamp(0.64rem, 2.35vw, 0.74rem);
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    padding: 46px 0 34px;
  }

  h1 {
    font-size: clamp(2.35rem, 12.5vw, 3.7rem);
  }

  .metric-grid,
  .concept-grid,
  .feature-grid,
  .schedule-grid,
  .station-grid,
  .pop-snapshot-grid,
  .pop-service-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel .metric-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-panel .metric {
    min-height: 78px;
    padding: 10px;
  }

  .hero-panel .metric strong {
    font-size: 1.45rem;
  }

  .hero-panel .metric span {
    font-size: 0.74rem;
  }

  .hero-panel .pill-row {
    display: none;
  }

  .concept-card {
    min-height: 420px;
  }

  .image-stack {
    grid-template-columns: 1fr;
  }

  .image-stack figure:first-child,
  .image-stack figure:nth-child(2) {
    min-height: 260px;
  }

  .time-row {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .section {
    padding: 58px 0;
  }

  .pop-wave,
  .pop-beams {
    display: none;
  }

  .pop-command-deck {
    min-height: auto;
  }

  .pop-snapshot {
    margin-top: 0;
    padding: 14px 0;
    background: #08090b;
  }

  .pop-services {
    margin-top: 0;
    padding-top: 58px;
  }

  .pop-service-card {
    min-height: 460px;
  }

  .portfolio-console {
    margin-top: 24px;
    padding: 10px;
  }

  .portfolio-tabs {
    display: flex;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .portfolio-tabs::-webkit-scrollbar {
    display: none;
  }

  .portfolio-tab {
    min-width: 235px;
    min-height: 112px;
    padding: 15px;
  }

  .portfolio-tab:hover,
  .portfolio-tab:focus-visible,
  .portfolio-tab.is-active {
    transform: translateY(-2px);
  }

  .portfolio-panel {
    padding: 12px;
    gap: 22px;
  }

  .portfolio-visual {
    min-height: 300px;
  }

  .portfolio-visual span {
    width: 78px;
    height: 78px;
    font-size: 1.45rem;
  }

  .portfolio-detail h3 {
    font-size: clamp(1.9rem, 12vw, 3.2rem);
  }

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

  .portfolio-matrix button {
    min-height: 58px;
    font-size: 0.82rem;
  }

  .pop-runline {
    grid-template-columns: 1fr 1fr;
  }

  .pop-collage {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: auto;
  }

  .pop-collage figure,
  .pop-collage-main {
    min-height: 260px;
    grid-row: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
