:root {
  --bg-primary: #0b0f1a;
  --bg-secondary: #0a0f2c;
  --panel: rgba(12, 22, 48, 0.72);
  --panel-strong: rgba(9, 19, 44, 0.9);
  --line: rgba(97, 154, 255, 0.18);
  --line-strong: rgba(95, 189, 255, 0.38);
  --text-primary: #edf4ff;
  --text-secondary: rgba(219, 234, 255, 0.72);
  --blue: #2d8cff;
  --cyan: #00d1ff;
  --violet: #8759ff;
  --aqua: #47f4ff;
  --shadow-glow: 0 0 30px rgba(0, 209, 255, 0.18);
  --shadow-card: 0 20px 45px rgba(3, 8, 24, 0.55);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1200px, calc(100vw - 48px));
  --digital-font: "Orbitron", "Noto Sans SC", sans-serif;
  --body-font: "Noto Sans SC", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#cms-intro,
#product-hub,
#vista-overview,
#vista-adv-cinema,
#vista-cinema-products,
#cinema-vista-hero,
#cinema-vista-global,
#vista-adv-hq,
#vista-adv-channels,
#vista-tech,
#vista-global,
#vista-history,
#product-veezi,
#product-movio,
#product-maccs,
#product-numero {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--body-font);
  color: var(--text-primary);
  background:
    radial-gradient(circle at 15% 20%, rgba(45, 140, 255, 0.18), transparent 28%),
    radial-gradient(circle at 80% 0%, rgba(135, 89, 255, 0.2), transparent 22%),
    radial-gradient(circle at 85% 60%, rgba(0, 209, 255, 0.16), transparent 30%),
    linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 45%, #070a14 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 95%);
  opacity: 0.35;
  pointer-events: none;
  z-index: -3;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

canvas#particle-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -4;
  pointer-events: none;
}

.hud-grid {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 19, 44, 0.04) 0%, transparent 40%),
    linear-gradient(90deg, rgba(45, 140, 255, 0.08), transparent 25%, transparent 75%, rgba(0, 209, 255, 0.08));
  z-index: -2;
  pointer-events: none;
}

.light-streak {
  position: fixed;
  width: 40vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(71, 244, 255, 0.95), transparent);
  filter: blur(1px);
  opacity: 0.36;
  pointer-events: none;
  z-index: -1;
}

.streak-a {
  top: 18%;
  left: -8vw;
  transform: rotate(-12deg);
  animation: streakMoveA 14s linear infinite;
}

.streak-b {
  top: 68%;
  right: -15vw;
  transform: rotate(12deg);
  animation: streakMoveB 18s linear infinite;
}

.page-shell {
  position: relative;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 44px 0 72px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(20px);
  background: linear-gradient(180deg, rgba(7, 10, 20, 0.82), rgba(7, 10, 20, 0.28));
  border-bottom: 1px solid rgba(96, 148, 255, 0.08);
}

.nav {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  position: relative;
  background:
    linear-gradient(135deg, rgba(45, 140, 255, 0.18), rgba(0, 209, 255, 0.28)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent);
  border: 1px solid rgba(111, 176, 255, 0.4);
  box-shadow: 0 0 18px rgba(0, 209, 255, 0.22), inset 0 0 18px rgba(45, 140, 255, 0.15);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 10px;
  border: 1px solid rgba(71, 244, 255, 0.38);
}

.brand-mark::after {
  inset: 17px 9px;
  border-left: 2px solid rgba(255, 255, 255, 0.8);
  border-right: 2px solid rgba(255, 255, 255, 0.25);
  border-top: 0;
  border-bottom: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--digital-font);
  letter-spacing: 0.08em;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text span {
  color: var(--text-secondary);
  font-size: 0.76rem;
}

.nav-links {
  display: inline-flex;
  gap: 28px;
  color: var(--text-secondary);
}

.nav-links a {
  position: relative;
}

.nav-dropdown {
  position: relative;
  z-index: 20;
}

.nav-dropdown-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  font-size: inherit;
  color: var(--text-secondary);
  cursor: pointer;
  text-decoration: none;
}

.nav-dropdown-chevron {
  display: inline-block;
  width: 0.38em;
  height: 0.38em;
  margin-top: -0.12em;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.72;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-chevron,
.nav-dropdown:focus-within .nav-dropdown-chevron {
  transform: rotate(45deg) translateY(2px);
  opacity: 0.95;
}

.nav-links a::after,
.nav-dropdown-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(71, 244, 255, 0.9), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-dropdown:hover .nav-dropdown-trigger::after,
.nav-dropdown:focus-within .nav-dropdown-trigger::after,
.nav-dropdown-trigger:hover::after,
.nav-dropdown-trigger:focus-visible::after {
  transform: scaleX(1);
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translate3d(-50%, -6px, 0);
  min-width: 220px;
  padding: 10px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(18, 28, 58, 0.94), rgba(8, 14, 32, 0.96));
  border: 1px solid rgba(97, 154, 255, 0.22);
  box-shadow:
    0 18px 40px rgba(3, 8, 24, 0.55),
    inset 0 0 24px rgba(81, 149, 255, 0.05);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    visibility 0.22s ease,
    transform 0.22s ease;
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(-50%, 0, 0);
}

.nav-dropdown-panel a {
  display: block;
  padding: 10px 14px;
  margin: 2px 0;
  border-radius: var(--radius-sm);
  color: rgba(219, 234, 255, 0.88);
  font-size: 0.96rem;
  letter-spacing: 0.02em;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.nav-dropdown-panel a::after {
  display: none;
}

.nav-dropdown-panel a:hover,
.nav-dropdown-panel a:focus-visible {
  color: var(--text-primary);
  background: rgba(45, 140, 255, 0.14);
  outline: none;
}

.nav-dropdown-panel a:focus-visible {
  box-shadow: 0 0 0 2px rgba(71, 244, 255, 0.35);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background-color 0.3s ease;
}

.nav-cta,
.button-primary {
  color: #061122;
  background: linear-gradient(135deg, #7fe5ff 0%, #2d8cff 45%, #00d1ff 100%);
  box-shadow: 0 0 24px rgba(45, 140, 255, 0.35);
}

.button-secondary {
  color: var(--text-primary);
  background: rgba(15, 27, 57, 0.35);
  border: 1px solid rgba(87, 155, 255, 0.26);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.nav-cta:hover,
.button:hover,
.nav-cta:focus-visible,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 12px 30px rgba(0, 209, 255, 0.18),
    0 0 20px rgba(45, 140, 255, 0.28);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: 42px;
  align-items: center;
  padding-top: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(74, 152, 255, 0.22);
  color: rgba(195, 230, 255, 0.88);
  background: rgba(10, 19, 43, 0.46);
  box-shadow: inset 0 0 12px rgba(45, 140, 255, 0.08);
  font-family: var(--digital-font);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, #7fe5ff, #00d1ff);
  box-shadow: 0 0 10px rgba(0, 209, 255, 0.8);
}

.hero h1,
.section-heading h2,
.showcase-copy h2,
.cta-panel h2 {
  margin: 22px 0 18px;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 6vw, 6rem);
}

.hero h1 span {
  display: block;
  background: linear-gradient(135deg, #d7f8ff 0%, #7fe5ff 25%, #65a3ff 65%, #b88cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 28px rgba(45, 140, 255, 0.18);
}

.hero-text,
.section-heading p,
.showcase-copy p,
.solution-card p,
.cta-panel p,
.capability-card p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 28px;
}

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

.glass-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    linear-gradient(135deg, rgba(20, 31, 67, 0.82), rgba(8, 15, 36, 0.8));
  border: 1px solid rgba(97, 154, 255, 0.16);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card), inset 0 0 28px rgba(81, 149, 255, 0.04);
  backdrop-filter: blur(24px);
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(117, 198, 255, 0.4), transparent 25%, transparent 70%, rgba(71, 244, 255, 0.36));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.glass-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -55% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(71, 244, 255, 0.16), transparent 72%);
  pointer-events: none;
}

.metric-card {
  padding: 22px 22px 20px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  animation: floatCard 6s ease-in-out infinite;
}

.metric-card:nth-child(2) {
  animation-delay: -1.5s;
}

.metric-card:nth-child(3) {
  animation-delay: -3s;
}

.metric-label,
.panel-kicker,
.widget-title,
.capability-card .card-index,
.mini-card span,
.feature-chip span,
.solution-tags span,
.metric-note {
  color: rgba(208, 228, 255, 0.68);
  letter-spacing: 0.03em;
}

.metric-value,
.mini-card strong,
.outcome-strip strong,
.arc-meter strong {
  font-family: var(--digital-font);
  letter-spacing: 0.04em;
}

.metric-value {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.metric-note {
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
}

.hero.hero-command {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  min-height: calc(100vh - 96px);
  padding-top: 48px;
  padding-bottom: 92px;
  align-content: center;
  isolation: isolate;
  overflow: hidden;
}

.hero.hero-command .hero-copy {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.hero-vista-wordmark {
  margin: 20px 0 0;
  font-family: var(--digital-font);
  font-size: clamp(2.75rem, 6.5vw, 5.2rem);
  font-weight: 800;
  letter-spacing: 0.42em;
  line-height: 1.05;
  color: var(--text-primary);
  text-indent: 0.42em;
  text-shadow:
    0 0 32px rgba(127, 229, 255, 0.22),
    0 0 60px rgba(45, 140, 255, 0.12);
}

.hero.hero-command h1.hero-brand-line {
  margin: 18px 0 0;
  max-width: none;
  font-size: clamp(2.75rem, 6.5vw, 5.2rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.12;
  background: linear-gradient(120deg, #f0fbff 0%, #7fe5ff 35%, #a8c4ff 70%, #c9b8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 24px rgba(45, 140, 255, 0.15));
}

.hero-corporate-panel {
  position: relative;
  width: 100%;
  max-width: 920px;
  margin: 32px auto 0;
  padding: clamp(26px, 4.5vw, 40px) clamp(22px, 3.5vw, 38px);
  text-align: left;
  box-shadow: var(--shadow-card);
}

.hero-corporate-panel::after {
  opacity: 0.55;
}

.hero-corporate-heading {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(1.55rem, 3.2vw, 2.5rem);
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: 0.01em;
  color: var(--text-primary);
  text-wrap: balance;
}

.hero-corporate-desc {
  position: relative;
  z-index: 1;
  margin: clamp(14px, 2.2vw, 20px) 0 0;
  font-size: clamp(0.96rem, 1.55vw, 1.12rem);
  font-weight: 400;
  line-height: 1.72;
  letter-spacing: 0.01em;
  color: var(--text-secondary);
  max-width: 52em;
}

.hero-corporate-desc strong {
  font-weight: 600;
  color: var(--text-primary);
}

.product-cms-screen {
  padding-top: 36px;
  padding-bottom: 56px;
  position: relative;
}

.product-cms-heading {
  text-align: center;
  margin-bottom: 28px;
}

.product-cms-screen .hero-product-title {
  max-width: none;
  margin: 0;
  font-size: clamp(2.75rem, 6.5vw, 5.2rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.product-cms-screen .hero-product-title span {
  display: block;
  margin-top: 12px;
  font-size: clamp(0.95rem, 2vw, 1.55rem);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-family: var(--digital-font);
  background: linear-gradient(135deg, #d7f8ff 0%, #7fe5ff 25%, #65a3ff 65%, #b88cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 28px rgba(45, 140, 255, 0.18);
}

.product-cms-screen .hero-text {
  max-width: 680px;
  margin: 18px auto 0;
}

.hero.hero-command .hero-actions {
  justify-content: center;
  margin: 32px 0 0;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.backdrop-screen,
.backdrop-beam,
.backdrop-haze,
.seat-row {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.backdrop-screen {
  top: 3%;
  width: min(920px, 94vw);
  height: 248px;
  border-radius: 20px 20px 72px 72px / 10px 10px 110px 110px;
  background:
    radial-gradient(ellipse at 50% 10%, rgba(245, 251, 255, 0.4), rgba(184, 220, 238, 0.18) 34%, rgba(84, 132, 168, 0.08) 60%, transparent 82%),
    linear-gradient(180deg, rgba(182, 215, 232, 0.22), rgba(88, 128, 160, 0.12) 42%, rgba(21, 39, 73, 0.04) 76%, transparent 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -56px 84px rgba(7, 14, 29, 0.28),
    0 28px 80px rgba(127, 229, 255, 0.08);
  filter: blur(10px);
  opacity: 0.44;
  animation: screenWallPulse 8.4s ease-in-out infinite;
}

.backdrop-beam {
  top: 10%;
  width: min(1400px, 125%);
  height: 56%;
  background: radial-gradient(ellipse at 50% 0%, rgba(187, 232, 255, 0.14), rgba(95, 173, 226, 0.08) 28%, rgba(45, 140, 255, 0.04) 48%, transparent 74%);
  filter: blur(34px);
  opacity: 0.72;
  animation: beamDrift 10s ease-in-out infinite;
}

.backdrop-haze {
  inset: auto auto 6% 50%;
  width: min(980px, 96vw);
  height: 44%;
  background:
    radial-gradient(circle at center, rgba(12, 23, 53, 0.9), rgba(5, 10, 22, 0.08) 72%),
    linear-gradient(180deg, transparent, rgba(4, 8, 18, 0.78));
  transform: translateX(-50%);
  filter: blur(10px);
  opacity: 0.95;
}

.seat-row {
  bottom: 2%;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(14, 25, 54, 0.96), rgba(6, 10, 19, 0.9)),
    repeating-linear-gradient(
      90deg,
      rgba(127, 229, 255, 0.08) 0 14px,
      rgba(3, 10, 26, 0.04) 14px 26px
    );
  border: 1px solid rgba(71, 244, 255, 0.08);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(135, 208, 255, 0.06);
  filter: blur(0.4px);
}

.seat-row-a {
  width: min(1180px, 108%);
  height: 92px;
  bottom: 0;
}

.seat-row-b {
  width: min(980px, 92%);
  height: 74px;
  bottom: 70px;
  opacity: 0.9;
}

.seat-row-c {
  width: min(800px, 78%);
  height: 56px;
  bottom: 128px;
  opacity: 0.78;
}

.hero-stage {
  position: relative;
  z-index: 2;
  min-height: 680px;
  display: grid;
  place-items: center;
  padding-top: 18px;
}

.hero-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(101, 170, 255, 0.16);
  opacity: 0.34;
  pointer-events: none;
}

.hero-orbit-a {
  width: min(960px, 96vw);
  height: min(960px, 96vw);
  animation: spinSlow 28s linear infinite;
}

.hero-orbit-b {
  width: min(720px, 78vw);
  height: min(720px, 78vw);
  border-style: dashed;
  border-color: rgba(71, 244, 255, 0.16);
  animation: spinSlow 18s linear infinite reverse;
}

.hero-dashboard {
  position: relative;
  z-index: 2;
  width: min(1100px, 100%);
  padding: 24px;
  animation: floatCard 7s ease-in-out infinite;
}

.hero-dashboard::before {
  animation: borderBreath 4.8s ease-in-out infinite;
}

.hero-dashboard::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0, transparent 18%, transparent 82%, rgba(255, 255, 255, 0.03)),
    repeating-linear-gradient(
      180deg,
      rgba(124, 203, 255, 0.025) 0 1px,
      transparent 1px 5px
    );
  opacity: 0.24;
  pointer-events: none;
}

.hero-panel-header {
  position: relative;
  z-index: 1;
}

.hero-dashboard-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.92fr 1.18fr 1fr;
  grid-template-areas:
    "schedule boxoffice boxoffice"
    "map map occupancy";
  gap: 16px;
  margin-top: 22px;
}

.hero-widget {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(98, 166, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(4, 12, 30, 0.88), rgba(9, 17, 38, 0.92)),
    radial-gradient(circle at top left, rgba(71, 244, 255, 0.12), transparent 30%);
  box-shadow: inset 0 0 24px rgba(67, 145, 255, 0.04);
}

.hero-widget::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(127, 229, 255, 0.88), transparent);
  opacity: 0.8;
}

.schedule-widget {
  min-height: 246px;
  grid-area: schedule;
}

.boxoffice-widget {
  min-height: 246px;
  grid-area: boxoffice;
  display: flex;
  flex-direction: column;
}

.occupancy-widget {
  min-height: 228px;
  grid-area: occupancy;
}

.map-widget {
  min-height: 228px;
  grid-area: map;
}

.widget-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.widget-head strong {
  font-size: 1.04rem;
  letter-spacing: 0.02em;
}

.widget-head span {
  font-family: var(--digital-font);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  color: rgba(198, 228, 255, 0.64);
  text-transform: uppercase;
}

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

.schedule-item {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(9, 19, 43, 0.84);
  border: 1px solid rgba(88, 152, 255, 0.1);
}

.schedule-item span,
.occupancy-detail span,
.hero-stat-chip span,
.map-tag,
.hero-chart-axis span {
  color: rgba(207, 229, 255, 0.68);
}

.schedule-item b {
  font-size: 0.96rem;
  font-weight: 600;
}

.schedule-item strong {
  font-family: var(--digital-font);
  color: #7fe5ff;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
}

.data-flow {
  position: absolute;
  inset: auto 18px 14px 18px;
  height: 24px;
  overflow: hidden;
}

.data-flow span {
  position: absolute;
  left: -28%;
  width: 28%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(127, 229, 255, 0.95), transparent);
  box-shadow: 0 0 18px rgba(0, 209, 255, 0.4);
  animation: flowMove 3.6s linear infinite;
}

.data-flow span:nth-child(1) {
  bottom: 2px;
}

.data-flow span:nth-child(2) {
  bottom: 10px;
  animation-delay: -1.2s;
}

.data-flow span:nth-child(3) {
  bottom: 18px;
  animation-delay: -2.2s;
}

.hero-chart {
  position: relative;
  min-height: 170px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 70% 20%, rgba(71, 244, 255, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(7, 18, 42, 0.96), rgba(6, 12, 28, 0.92));
  border: 1px solid rgba(98, 166, 255, 0.12);
  overflow: hidden;
  isolation: isolate;
}

.hero-chart-grid {
  position: absolute;
  inset: 14px 16px 34px;
  border-radius: 16px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 54px 42px;
  animation: gridDrift 18s linear infinite;
}

.hero-chart-line {
  position: absolute;
  left: 18px;
  right: 18px;
  height: 120px;
  bottom: 42px;
  animation: lineFloat 7.2s ease-in-out infinite;
}

.hero-chart-line::after {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 2px solid currentColor;
  filter: drop-shadow(0 0 10px currentColor);
  animation: lineGlowPulse 6.2s ease-in-out infinite;
}

.hero-chart-line-a {
  clip-path: var(
    --hero-line-a-fill,
    polygon(0% 82%, 12% 74%, 24% 60%, 34% 64%, 48% 40%, 62% 46%, 78% 22%, 100% 6%, 100% 100%, 0% 100%)
  );
  background: linear-gradient(180deg, rgba(71, 244, 255, 0), rgba(71, 244, 255, 0.28));
  transition: clip-path 0.34s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-chart-line-a::after {
  color: #55efff;
  clip-path: var(
    --hero-line-a-stroke,
    polygon(0% 82%, 12% 74%, 24% 60%, 34% 64%, 48% 40%, 62% 46%, 78% 22%, 100% 6%)
  );
  transition: clip-path 0.34s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-chart-line-b {
  clip-path: var(
    --hero-line-b-fill,
    polygon(0% 90%, 11% 84%, 26% 70%, 40% 74%, 54% 56%, 68% 52%, 86% 28%, 100% 18%, 100% 100%, 0% 100%)
  );
  background: linear-gradient(180deg, rgba(109, 130, 255, 0), rgba(109, 130, 255, 0.22));
  animation-delay: -2.4s;
  transition: clip-path 0.34s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-chart-line-b::after {
  color: #8a93ff;
  clip-path: var(
    --hero-line-b-stroke,
    polygon(0% 90%, 11% 84%, 26% 70%, 40% 74%, 54% 56%, 68% 52%, 86% 28%, 100% 18%)
  );
  transition: clip-path 0.34s cubic-bezier(0.4, 0, 0.2, 1);
}

.scan-line {
  position: absolute;
  inset: 14px 16px 34px;
  border-radius: 16px;
  background: linear-gradient(180deg, transparent, rgba(127, 229, 255, 0.24), transparent);
  mix-blend-mode: screen;
  opacity: 0.6;
  animation: scanSweep 6.2s linear infinite;
}

.hero-chart-axis {
  position: absolute;
  inset: auto 16px 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--digital-font);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.boxoffice-footer {
  display: grid;
  gap: 12px;
  margin-top: 14px;
  flex: 1;
}

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

.boxoffice-kpi,
.boxoffice-panel {
  padding: 14px;
  border-radius: 16px;
  background: rgba(8, 17, 39, 0.82);
  border: 1px solid rgba(93, 157, 255, 0.1);
}

.boxoffice-kpi span,
.boxoffice-panel-head span,
.advice-list span {
  display: block;
  color: rgba(207, 229, 255, 0.66);
  font-size: 0.82rem;
}

.boxoffice-kpi strong,
.boxoffice-panel-head strong,
.advice-list b {
  display: block;
  margin-top: 6px;
}

.boxoffice-kpi strong {
  font-family: var(--digital-font);
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.boxoffice-kpi small {
  display: block;
  margin-top: 10px;
  color: rgba(208, 228, 255, 0.62);
  line-height: 1.6;
}

.boxoffice-lower {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  gap: 12px;
}

.boxoffice-panel {
  min-height: 160px;
}

.boxoffice-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.boxoffice-panel-head strong {
  margin-top: 0;
  font-size: 1rem;
}

.boxoffice-panel-head span {
  font-family: var(--digital-font);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.advice-list,
.boxoffice-feed {
  display: grid;
  gap: 10px;
}

.advice-list div,
.boxoffice-feed p {
  margin: 0;
  padding: 12px 12px 12px 16px;
  border-radius: 14px;
  background: rgba(10, 20, 45, 0.88);
  border: 1px solid rgba(97, 154, 255, 0.08);
  position: relative;
}

.advice-list div::before,
.boxoffice-feed p::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 18px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7fe5ff;
  box-shadow: 0 0 12px rgba(0, 209, 255, 0.42);
}

.advice-list b {
  margin-top: 8px;
  color: #dffaff;
  line-height: 1.6;
  font-size: 0.92rem;
}

.boxoffice-feed p {
  color: rgba(220, 236, 255, 0.76);
  line-height: 1.6;
}

.occupancy-gauge {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 16px;
  align-items: center;
}

.occupancy-ring {
  --occupancy-progress: 78.4;
  --occupancy-angle: 282deg;
  position: relative;
  width: 128px;
  height: 128px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 50%, rgba(127, 229, 255, 0.12), transparent 56%),
    conic-gradient(
      from -90deg,
      #7fe5ff 0deg calc(var(--occupancy-angle) - 18deg),
      #2d8cff calc(var(--occupancy-angle) - 18deg) var(--occupancy-angle),
      rgba(20, 39, 82, 0.88) var(--occupancy-angle) 360deg
    );
  box-shadow:
    0 0 26px rgba(0, 209, 255, 0.16),
    inset 0 0 28px rgba(71, 244, 255, 0.08);
  animation: gaugeBreath 7.4s ease-in-out infinite;
}

.occupancy-ring::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: rgba(5, 12, 27, 0.96);
  border: 1px solid rgba(90, 153, 255, 0.12);
}

.occupancy-ring::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(127, 229, 255, 0.18);
  animation: ringPulse 3.2s ease-in-out infinite;
}

.occupancy-ring.is-live {
  box-shadow:
    0 0 34px rgba(0, 209, 255, 0.24),
    inset 0 0 30px rgba(71, 244, 255, 0.1);
}

.occupancy-core {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  text-align: center;
}

.occupancy-core::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0 58%,
    rgba(127, 229, 255, 0.18) 74%,
    transparent 86%
  );
  opacity: 0.72;
  filter: blur(1px);
  mix-blend-mode: screen;
  animation: spinSlow 10.5s linear infinite;
}

.occupancy-core strong {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
  position: relative;
  z-index: 1;
  font-family: var(--digital-font);
  font-size: 1.45rem;
  letter-spacing: 0.04em;
}

.occupancy-core strong .counter {
  display: inline-block;
  position: relative;
  z-index: 1;
  margin-top: 0;
  font-size: 1em;
  line-height: 1;
  color: #ecfbff;
}

.occupancy-core > span {
  display: block;
  position: relative;
  z-index: 1;
  margin-top: 4px;
  font-size: 0.82rem;
  color: rgba(207, 229, 255, 0.64);
}

.occupancy-detail {
  display: grid;
  gap: 10px;
}

.occupancy-detail div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  position: relative;
  overflow: hidden;
  padding: 12px 14px 18px;
  border-radius: 14px;
  background: rgba(9, 18, 39, 0.82);
  border: 1px solid rgba(92, 152, 255, 0.1);
}

.occupancy-detail div::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 10px;
  height: 3px;
  border-radius: 999px;
  background: rgba(56, 92, 154, 0.22);
}

.occupancy-detail div::after {
  content: "";
  position: absolute;
  left: 14px;
  bottom: 10px;
  height: 3px;
  width: calc((100% - 28px) * var(--occupancy-level, 0.72));
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(127, 229, 255, 0.96), rgba(45, 140, 255, 0.48));
  box-shadow: 0 0 14px rgba(0, 209, 255, 0.2);
  transform-origin: left center;
  animation: occupancyBarScan 4.8s ease-in-out infinite;
}

.occupancy-detail div.is-live {
  border-color: rgba(127, 229, 255, 0.24);
  background: rgba(10, 21, 46, 0.9);
  box-shadow:
    inset 0 0 20px rgba(71, 244, 255, 0.06),
    0 0 18px rgba(45, 140, 255, 0.08);
}

.occupancy-detail div:nth-child(2)::after {
  animation-delay: -1.4s;
}

.occupancy-detail div:nth-child(3)::after {
  animation-delay: -2.6s;
}

.occupancy-detail div span,
.occupancy-detail div b {
  position: relative;
  z-index: 1;
}

.occupancy-detail b {
  font-family: var(--digital-font);
  color: #d7f8ff;
  font-size: 0.86rem;
}

.cinema-map {
  position: relative;
  min-height: 150px;
  border-radius: 20px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 24% 30%, rgba(71, 244, 255, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(7, 17, 39, 0.96), rgba(5, 11, 24, 0.92));
  border: 1px solid rgba(91, 157, 255, 0.1);
}

.cinema-map::before,
.cinema-map::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.cinema-map::before {
  inset: -18% -14%;
  z-index: 0;
  background: linear-gradient(
    108deg,
    transparent 34%,
    rgba(127, 229, 255, 0.04) 44%,
    rgba(127, 229, 255, 0.18) 50%,
    rgba(127, 229, 255, 0.04) 56%,
    transparent 66%
  );
  mix-blend-mode: screen;
  opacity: 0.72;
  animation: hudSweep 8.4s linear infinite;
}

.cinema-map::after {
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 62% 48%, rgba(71, 244, 255, 0.14), transparent 18%),
    radial-gradient(circle at 62% 48%, rgba(45, 140, 255, 0.12), transparent 32%);
  opacity: 0.66;
  animation: mapAura 7.8s ease-in-out infinite;
}

.map-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.9;
  animation: gridDrift 26s linear infinite;
}

.map-node,
.map-link,
.map-tag {
  position: absolute;
  z-index: 1;
}

.map-node {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7fe5ff;
  box-shadow: 0 0 14px rgba(0, 209, 255, 0.78);
  animation: mapBlink 2.8s ease-in-out infinite;
}

.map-node::before,
.map-node::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.map-node::before {
  inset: -7px;
  border: 1px solid rgba(127, 229, 255, 0.34);
  animation: nodePing 3.8s ease-out infinite;
}

.map-node::after {
  inset: -18px;
  background: radial-gradient(circle, rgba(127, 229, 255, 0.32), transparent 70%);
  opacity: 0.72;
  animation: nodeHalo 5.6s ease-in-out infinite;
}

.map-node.is-live {
  background: #dffcff;
  box-shadow:
    0 0 18px rgba(0, 209, 255, 0.92),
    0 0 34px rgba(0, 209, 255, 0.28);
}

.map-node.is-live::before {
  border-color: rgba(127, 229, 255, 0.78);
  animation-duration: 2s;
}

.node-sh {
  top: 30%;
  left: 56%;
}

.node-hz {
  top: 42%;
  left: 60%;
  animation-delay: -0.6s;
}

.node-hz::before,
.node-hz::after {
  animation-delay: -0.6s;
}

.node-sz {
  top: 62%;
  left: 66%;
  animation-delay: -1.1s;
}

.node-sz::before,
.node-sz::after {
  animation-delay: -1.1s;
}

.node-nb {
  top: 48%;
  left: 70%;
  animation-delay: -1.8s;
}

.node-nb::before,
.node-nb::after {
  animation-delay: -1.8s;
}

.map-link {
  --link-travel: 96px;
  height: 1px;
  background: linear-gradient(90deg, rgba(127, 229, 255, 0.08), rgba(127, 229, 255, 0.82), rgba(127, 229, 255, 0.08));
  transform-origin: left center;
  overflow: visible;
  opacity: 0.84;
}

.map-link::before,
.map-link::after {
  content: "";
  position: absolute;
}

.map-link::before {
  left: -12px;
  top: -2px;
  width: 18px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(127, 229, 255, 0.92), rgba(255, 255, 255, 0.92), transparent);
  filter: blur(0.4px);
  box-shadow: 0 0 12px rgba(0, 209, 255, 0.24);
  animation: routePacket 3.8s linear infinite;
}

.map-link::after {
  inset: -2px 0;
  background: linear-gradient(90deg, transparent, rgba(127, 229, 255, 0.18), transparent);
  opacity: 0.72;
  animation: linkGlow 4.8s ease-in-out infinite;
}

.map-link.is-live {
  opacity: 1;
  background: linear-gradient(90deg, rgba(127, 229, 255, 0.12), rgba(127, 229, 255, 0.96), rgba(127, 229, 255, 0.12));
}

.map-link.is-live::before {
  animation-duration: 2.5s;
}

.link-b::before,
.link-b::after {
  animation-delay: -1s;
}

.link-c::before,
.link-c::after {
  animation-delay: -2s;
}

.link-a {
  --link-travel: 78px;
  top: 33%;
  left: 57%;
  width: 78px;
  transform: rotate(34deg);
}

.link-b {
  --link-travel: 90px;
  top: 44%;
  left: 60.5%;
  width: 90px;
  transform: rotate(20deg);
}

.link-c {
  --link-travel: 122px;
  top: 48%;
  left: 61%;
  width: 122px;
  transform: rotate(8deg);
}

.map-tag {
  padding: 8px 12px 8px 24px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(12, 24, 52, 0.9);
  border: 1px solid rgba(96, 148, 255, 0.12);
  font-family: var(--digital-font);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(218, 236, 255, 0.82);
  animation: tagBreath 7.6s ease-in-out infinite;
}

.map-tag::before,
.map-tag::after {
  content: "";
  position: absolute;
}

.map-tag::before {
  left: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: #7fe5ff;
  box-shadow: 0 0 10px rgba(0, 209, 255, 0.5);
  animation: pulse 2.6s ease-in-out infinite;
}

.map-tag::after {
  inset: 0;
  background: linear-gradient(110deg, transparent 18%, rgba(127, 229, 255, 0.14) 48%, transparent 78%);
  transform: translateX(-120%);
  animation: tagSweep 6.8s linear infinite;
}

.map-tag.is-live {
  border-color: rgba(127, 229, 255, 0.3);
  box-shadow:
    inset 0 0 20px rgba(71, 244, 255, 0.05),
    0 0 18px rgba(45, 140, 255, 0.1);
}

.tag-east {
  top: 18px;
  left: 18px;
}

.tag-south {
  bottom: 18px;
  left: 18px;
  animation-delay: -2.3s;
}

.tag-central {
  right: 18px;
  bottom: 18px;
  animation-delay: -4.4s;
}

.hero-dashboard-footer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.hero-stat-chip {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(8, 16, 36, 0.76);
  border: 1px solid rgba(97, 154, 255, 0.1);
}

.hero-stat-chip strong {
  display: block;
  margin-top: 8px;
  font-family: var(--digital-font);
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.cockpit-panel {
  padding: 28px;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(64, 125, 255, 0.08),
    0 0 36px rgba(0, 209, 255, 0.08);
}

.panel-header,
.screen-overlay,
.dashboard-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.panel-header h2 {
  margin: 8px 0 0;
  font-size: 1.6rem;
}

.panel-kicker,
.screen-overlay,
.dashboard-topline,
.panel-status {
  font-family: var(--digital-font);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.panel-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #a9f3ff;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #5bf0ff;
  box-shadow: 0 0 14px rgba(0, 209, 255, 0.9);
  animation: pulse 1.8s ease-in-out infinite;
}

.screen-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 18px;
  margin-top: 22px;
}

.screen-main,
.screen-side,
.mini-card,
.dash-widget,
.feature-chip,
.solution-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(92, 150, 255, 0.14);
  background: linear-gradient(180deg, rgba(4, 12, 30, 0.76), rgba(8, 17, 40, 0.88));
}

.screen-main {
  padding: 22px;
}

.screen-overlay {
  color: rgba(205, 238, 255, 0.84);
}

.screen-rings {
  position: absolute;
  right: 26px;
  top: 48px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
}

.screen-rings span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(102, 196, 255, 0.24);
  border-radius: 50%;
  animation: spinSlow 10s linear infinite;
}

.screen-rings span:nth-child(2) {
  inset: 12px;
  animation-direction: reverse;
  animation-duration: 8s;
}

.screen-rings span:nth-child(3) {
  inset: 26px;
  animation-duration: 6s;
}

.screen-chart {
  position: relative;
  min-height: 320px;
  margin-top: 18px;
  padding: 26px 18px 18px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 75% 20%, rgba(71, 244, 255, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(7, 20, 46, 0.96), rgba(7, 15, 34, 0.82));
  border: 1px solid rgba(88, 145, 255, 0.14);
}

.chart-grid {
  position: absolute;
  inset: 18px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  border-radius: 16px;
}

.chart-line {
  position: absolute;
  left: 22px;
  right: 22px;
  height: 120px;
  bottom: 118px;
  opacity: 0.95;
}

.line-a {
  border-bottom: 2px solid transparent;
  clip-path: polygon(0% 80%, 10% 72%, 24% 58%, 34% 65%, 50% 40%, 66% 48%, 80% 24%, 100% 0%, 100% 100%, 0% 100%);
  background: linear-gradient(180deg, rgba(71, 244, 255, 0), rgba(71, 244, 255, 0.34));
  box-shadow: 0 0 26px rgba(0, 209, 255, 0.2);
}

.line-a::after,
.line-b::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  border-top: 2px solid currentColor;
  clip-path: polygon(0% 80%, 10% 72%, 24% 58%, 34% 65%, 50% 40%, 66% 48%, 80% 24%, 100% 0%);
}

.line-a::after {
  color: #4df6ff;
}

.line-b {
  bottom: 72px;
  height: 102px;
  clip-path: polygon(0% 86%, 12% 68%, 27% 74%, 40% 54%, 58% 58%, 73% 32%, 88% 38%, 100% 12%, 100% 100%, 0% 100%);
  background: linear-gradient(180deg, rgba(89, 125, 255, 0), rgba(89, 125, 255, 0.24));
}

.line-b::after {
  color: #779cff;
  clip-path: polygon(0% 86%, 12% 68%, 27% 74%, 40% 54%, 58% 58%, 73% 32%, 88% 38%, 100% 12%);
}

.chart-bars {
  position: absolute;
  inset: auto 28px 28px 28px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  align-items: end;
  height: 140px;
}

.chart-bars span {
  display: block;
  height: var(--bar);
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, rgba(127, 229, 255, 0.96), rgba(45, 140, 255, 0.24));
  box-shadow: 0 0 20px rgba(0, 209, 255, 0.16);
  transform-origin: center bottom;
  animation: dataBarPulse 4.8s ease-in-out infinite;
}

.chart-bars span:nth-child(odd) {
  animation-delay: -0.8s;
}

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

.screen-hud div {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(9, 18, 39, 0.72);
  border: 1px solid rgba(91, 157, 255, 0.12);
}

.screen-hud span,
.signal-list span,
.feature-chip span,
.cta-panel .eyebrow {
  display: block;
  font-size: 0.86rem;
}

.screen-hud strong,
.signal-list b {
  display: block;
  margin-top: 6px;
  font-size: 1rem;
}

.screen-side {
  display: grid;
  gap: 14px;
  background: transparent;
  border: 0;
}

.mini-card {
  padding: 18px 16px;
  min-height: 110px;
}

.mini-card strong {
  display: inline-block;
  margin: 12px 0 6px;
  font-size: 1.55rem;
}

.mini-card small {
  color: rgba(204, 227, 255, 0.64);
}

.mini-log .event-feed {
  margin-top: 12px;
  display: grid;
  gap: 10px;
  animation: feedScroll 8s ease-in-out infinite;
}

.mini-log p {
  margin: 0;
  padding-left: 14px;
  color: rgba(223, 237, 255, 0.8);
  font-size: 0.86rem;
  line-height: 1.5;
  position: relative;
}

.mini-log p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7fe5ff;
  box-shadow: 0 0 12px rgba(0, 209, 255, 0.75);
}

.ticker-section {
  padding: 10px 0 20px;
}

.ticker-mask {
  overflow: hidden;
  border-block: 1px solid rgba(96, 148, 255, 0.12);
  background: rgba(8, 14, 30, 0.42);
}

.ticker-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  color: rgba(207, 231, 255, 0.78);
  font-family: var(--digital-font);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: tickerScroll 28s linear infinite;
}

.ticker-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  flex: 0 0 auto;
  width: max-content;
  min-width: 100%;
  padding: 18px 12px;
}

.ticker-track span {
  position: relative;
  padding-right: 34px;
  white-space: nowrap;
}

.ticker-track span::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 12px;
  height: 1px;
  background: rgba(127, 229, 255, 0.78);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.showcase-copy h2,
.cta-panel h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.capability-grid,
.solution-grid {
  display: grid;
  gap: 18px;
}

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

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

.featured-service-card {
  padding: 26px 22px 28px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 10px;
  border-bottom: 3px solid transparent;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.featured-service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(103, 183, 255, 0.34);
}

.featured-service-card[data-accent="veezi"]:hover {
  border-bottom-color: rgba(52, 211, 153, 0.85);
}

.featured-service-card[data-accent="movio"]:hover {
  border-bottom-color: rgba(56, 189, 248, 0.85);
}

.featured-service-card[data-accent="maccs"]:hover {
  border-bottom-color: rgba(129, 140, 248, 0.9);
}

.featured-service-card[data-accent="numero"]:hover {
  border-bottom-color: rgba(192, 132, 252, 0.88);
}

.featured-service-card[data-accent="veezi"] {
  border-bottom-color: rgba(52, 211, 153, 0.75);
}

.featured-service-card[data-accent="movio"] {
  border-bottom-color: rgba(56, 189, 248, 0.75);
}

.featured-service-card[data-accent="maccs"] {
  border-bottom-color: rgba(129, 140, 248, 0.8);
}

.featured-service-card[data-accent="numero"] {
  border-bottom-color: rgba(192, 132, 252, 0.75);
}

.featured-service-mark {
  font-family: var(--digital-font);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(200, 220, 255, 0.48);
}

.featured-service-card[data-accent="maccs"] .featured-service-mark,
.featured-service-card[data-accent="numero"] .featured-service-mark {
  text-transform: none;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.featured-service-card h3 {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.25;
}

.featured-service-card p {
  margin: 0;
  margin-top: auto;
  padding-top: 6px;
  color: var(--text-secondary);
  line-height: 1.65;
  font-size: 0.95rem;
}

.featured-service-card[data-accent="veezi"] .featured-service-mark {
  color: rgba(52, 211, 153, 0.85);
}

.featured-service-card[data-accent="movio"] .featured-service-mark {
  color: rgba(56, 189, 248, 0.88);
}

.product-hub-section {
  padding-top: 48px;
}

.product-hub-section .section-heading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.product-hub-section .section-heading h1 {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.product-hub-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 8px 0 32px;
}

.product-hub-tab {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(97, 154, 255, 0.22);
  background: rgba(10, 19, 43, 0.35);
  color: rgba(219, 234, 255, 0.78);
  font-family: var(--digital-font);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.product-hub-tab:hover,
.product-hub-tab.is-active {
  border-color: rgba(71, 244, 255, 0.45);
  color: var(--text-primary);
  background: rgba(45, 140, 255, 0.16);
  box-shadow: 0 0 18px rgba(45, 140, 255, 0.12);
}

.product-hub-panels {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}

.product-hub-panel[hidden] {
  display: none !important;
}

.product-hub-panel:not([hidden]) {
  animation: productHubFade 0.28s ease;
}

@keyframes productHubFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-hub-panel.featured-service-card {
  min-height: 240px;
}

.product-hub-panel.featured-service-card h2 {
  margin: 0;
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  line-height: 1.25;
}

.product-hub-panel-desc {
  margin: 0;
  margin-top: auto;
  padding-top: 8px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1.04rem;
}

.product-hub-panels--vista {
  max-width: min(1080px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.vista-product-shell {
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 3vw, 32px);
  width: 100%;
}

.vista-subnav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 12px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(19, 31, 70, 0.92), rgba(8, 15, 36, 0.88)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border-color: rgba(97, 154, 255, 0.2);
  box-shadow:
    0 20px 44px rgba(3, 9, 25, 0.34),
    inset 0 0 0 1px rgba(110, 176, 255, 0.06),
    inset 0 0 32px rgba(81, 149, 255, 0.04);
}

.vista-subnav::after {
  inset: auto auto -68% 50%;
  width: 260px;
  height: 260px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(71, 244, 255, 0.12), transparent 72%);
}

.vista-subnav-link {
  position: relative;
  margin: 0;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(97, 154, 255, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(14, 23, 52, 0.54), rgba(8, 14, 34, 0.4));
  display: flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  font-size: clamp(0.86rem, 1.1vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(219, 234, 255, 0.72);
  cursor: pointer;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    transform 0.24s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.24s ease;
}

a.vista-subnav-link {
  text-decoration: none;
  color: rgba(219, 234, 255, 0.72);
}

a.vista-subnav-link.is-active {
  color: #ecfbff;
}

.vista-subnav-link::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(127, 229, 255, 0.38);
  box-shadow: 0 0 10px rgba(71, 244, 255, 0.2);
  opacity: 0.45;
  transform: translateY(-50%) scale(0.72);
  transition:
    opacity 0.24s ease,
    transform 0.24s ease,
    background 0.24s ease,
    box-shadow 0.24s ease;
}

.vista-subnav-link:hover,
.vista-subnav-link:focus-visible {
  color: var(--text-primary);
  border-color: rgba(106, 185, 255, 0.22);
  background: linear-gradient(180deg, rgba(27, 46, 92, 0.76), rgba(9, 19, 45, 0.74));
  box-shadow:
    0 12px 22px rgba(3, 9, 25, 0.26),
    inset 0 0 0 1px rgba(127, 229, 255, 0.06);
  transform: translateY(-1px);
  outline: none;
}

.vista-subnav-link:hover::before,
.vista-subnav-link:focus-visible::before {
  opacity: 0.9;
  transform: translateY(-50%) scale(1);
  background: rgba(127, 229, 255, 0.82);
  box-shadow: 0 0 14px rgba(71, 244, 255, 0.4);
}

.vista-subnav-link.is-active {
  color: #ecfbff;
  border-color: rgba(117, 214, 255, 0.4);
  background: linear-gradient(135deg, rgba(17, 94, 181, 0.78), rgba(6, 33, 78, 0.92));
  box-shadow:
    0 16px 28px rgba(0, 0, 0, 0.28),
    0 0 24px rgba(0, 209, 255, 0.12),
    inset 0 0 0 1px rgba(127, 229, 255, 0.16);
  text-shadow: 0 0 16px rgba(71, 244, 255, 0.18);
}

.vista-subnav-link.is-active::before {
  opacity: 1;
  transform: translateY(-50%) scale(1.12);
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(0, 209, 255, 0.46);
}

.vista-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 44px) clamp(22px, 3vw, 40px);
}

.vista-hero-glow {
  position: absolute;
  inset: -40% -20% auto;
  height: 120%;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0, 209, 255, 0.14), transparent 55%),
    radial-gradient(ellipse at 80% 40%, rgba(135, 89, 255, 0.1), transparent 50%);
  pointer-events: none;
}

.vista-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 52em;
  margin: 0 auto;
  text-align: center;
}

.vista-hero-inner .eyebrow {
  justify-content: center;
}

.vista-hero-inner h2 {
  margin: 18px 0 16px;
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0.02em;
  color: var(--text-primary);
}

.vista-hero-lead {
  margin: 0;
  font-size: clamp(0.98rem, 1.5vw, 1.08rem);
  line-height: 1.85;
  color: var(--text-secondary);
  text-align: left;
}

.vista-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

.vista-section {
  width: 100%;
}

.vista-section-title {
  margin: 0 0 20px;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  text-align: center;
}

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

.vista-adv-card {
  padding: 26px 22px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  min-height: 180px;
}

.vista-adv-icon {
  color: rgba(127, 229, 255, 0.85);
}

.vista-adv-card-title {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text-primary);
}

.vista-adv-card-desc {
  margin: 0;
  margin-top: auto;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.vista-adv-more-link {
  margin-top: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cyan);
  text-decoration: none;
  transition: color 0.2s ease;
}

.vista-adv-more-link:hover,
.vista-adv-more-link:focus-visible {
  color: var(--aqua);
  outline: none;
}

.vista-cinema-products {
  width: 100%;
  margin-top: 6px;
}

.vista-cinema-products .vista-section-title {
  margin-bottom: 12px;
}

.vista-cinema-intro {
  margin: 0 auto 26px;
  max-width: 52em;
  text-align: center;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.vista-cinema-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vista-cinema-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(100px, 148px);
  gap: clamp(16px, 3vw, 28px);
  align-items: center;
  padding: clamp(18px, 2.5vw, 26px) clamp(18px, 2.5vw, 28px);
  text-align: left;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.vista-cinema-row:hover {
  border-color: rgba(103, 183, 255, 0.32);
  box-shadow: var(--shadow-card), 0 0 26px rgba(45, 140, 255, 0.1);
}

.vista-cinema-copy h4 {
  margin: 0 0 10px;
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-primary);
}

.vista-cinema-copy p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.72;
  color: var(--text-secondary);
}

.vista-cinema-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 14px;
  font-size: 0.86rem;
  font-weight: 600;
  font-family: var(--digital-font);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cyan);
  text-decoration: none;
  transition:
    color 0.2s ease,
    filter 0.2s ease;
}

.vista-cinema-more::after {
  content: "›";
  font-size: 1.12em;
  line-height: 1;
  font-family: var(--body-font);
}

.vista-cinema-more:hover,
.vista-cinema-more:focus-visible {
  color: var(--aqua);
  filter: brightness(1.08);
}

.vista-cinema-visual {
  display: grid;
  place-items: center;
  min-height: 96px;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, rgba(25, 42, 82, 0.55), rgba(8, 16, 38, 0.72));
  border: 1px solid rgba(97, 154, 255, 0.16);
  color: rgba(127, 229, 255, 0.9);
}

.vista-cinema-visual svg {
  display: block;
}

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

  .vista-cinema-visual {
    order: -1;
    min-height: 88px;
    max-width: 148px;
    margin: 0 auto;
  }
}

.vista-tech {
  padding: clamp(24px, 3vw, 36px);
  overflow: hidden;
}

.vista-tech-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(22px, 3vw, 36px);
  align-items: start;
}

.vista-tech-visual {
  position: relative;
  min-height: min(300px, 42vw);
  border-radius: var(--radius-md);
  background: linear-gradient(165deg, rgba(10, 16, 36, 0.98), rgba(6, 10, 24, 0.99));
  border: 1px solid rgba(97, 154, 255, 0.16);
  overflow: hidden;
  box-shadow: inset 0 0 40px rgba(45, 140, 255, 0.06);
}

.vista-tech-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

.vista-tech-visual-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  text-align: center;
  font-size: 0.65rem;
  line-height: 1.35;
  letter-spacing: 0.04em;
  color: rgba(186, 210, 245, 0.72);
  background: linear-gradient(180deg, transparent, rgba(4, 8, 20, 0.88));
  pointer-events: none;
}

.vista-tech-visual-caption span {
  display: block;
}

.vista-tech-copy .vista-section-title {
  text-align: left;
  margin-bottom: 18px;
}

.vista-tech-list-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 28px;
  align-items: start;
}

.vista-tech-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vista-tech-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.vista-tech-bullet {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 0.45em;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff8a4a, #ff5a2d);
  box-shadow: 0 0 12px rgba(255, 120, 60, 0.45);
}

.vista-tech-list strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.vista-tech-list p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.vista-tech-cta {
  margin-top: 24px;
}

.vista-global {
  padding: clamp(26px, 3vw, 40px) clamp(20px, 2.5vw, 32px);
  text-align: center;
}

.vista-global-title {
  margin: 0 0 24px;
  font-size: clamp(1.2rem, 2.4vw, 1.75rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-primary);
}

.vista-map {
  position: relative;
  aspect-ratio: 2000 / 667;
  border-radius: var(--radius-md);
  background-color: #070b18;
  border: 1px solid rgba(97, 154, 255, 0.15);
  overflow: hidden;
}

.vista-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 10, 26, 0.1), rgba(4, 8, 20, 0.18)),
    radial-gradient(circle at 50% 42%, rgba(82, 160, 255, 0.16), transparent 58%);
  pointer-events: none;
  z-index: 1;
}

.vista-map-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: brightness(1.18) contrast(1.05) saturate(1.08);
}

.vista-map-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(127, 229, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127, 229, 255, 0.12) 1px, transparent 1px);
  background-size: 48px 48px;
}

.vista-map-dots {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.vista-map-dots span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  padding: clamp(4px, 0.6vw, 6px) clamp(8px, 1vw, 10px);
  border-radius: 8px;
  font-size: clamp(0.66rem, 0.95vw, 0.78rem);
  font-weight: 600;
  color: rgba(240, 248, 255, 0.92);
  background: rgba(8, 14, 32, 0.72);
  border: 1px solid rgba(127, 229, 255, 0.22);
  white-space: nowrap;
}

.vista-history {
  padding: clamp(26px, 3vw, 38px) clamp(22px, 3vw, 40px);
}

.vista-history-body p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.9;
  color: var(--text-secondary);
}

.vista-history-body p + p {
  margin-top: 1.15em;
}

@media (max-width: 900px) {
  .vista-adv-grid {
    grid-template-columns: 1fr;
  }

  .vista-subnav {
    width: min(100%, 640px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .vista-tech-layout {
    grid-template-columns: 1fr;
  }

  .vista-tech-list-wrap {
    grid-template-columns: 1fr;
  }
}

.capability-card {
  padding: 26px;
  min-height: 300px;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 420px;
}

.capability-card:hover,
.solution-card:hover,
.feature-chip:hover,
.dashboard-frame:hover,
.mini-card:hover,
.cockpit-panel:hover {
  transform: translateY(-8px);
  border-color: rgba(103, 183, 255, 0.34);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.3),
    0 0 26px rgba(0, 209, 255, 0.12);
}

.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(115, 196, 255, 0.42);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.34),
    0 0 34px rgba(0, 209, 255, 0.18),
    inset 0 0 28px rgba(71, 244, 255, 0.06);
}

.capability-card .card-index {
  font-family: var(--digital-font);
  font-size: 0.84rem;
}

.capability-card h3,
.solution-card h3 {
  margin: 20px 0 12px;
  font-size: 1.35rem;
}

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

.capability-card li {
  position: relative;
  padding-left: 18px;
  color: rgba(226, 239, 255, 0.86);
}

.capability-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, #7fe5ff, #2d8cff);
  box-shadow: 0 0 14px rgba(0, 209, 255, 0.5);
}

.product-preview {
  position: relative;
  min-height: 188px;
  padding: 12px;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 16, 38, 0.96), rgba(6, 11, 25, 0.94)),
    radial-gradient(circle at 20% 15%, rgba(71, 244, 255, 0.14), transparent 28%);
  border: 1px solid rgba(97, 154, 255, 0.12);
}

.product-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.5;
  pointer-events: none;
}

.product-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(127, 229, 255, 0.08), transparent);
  transform: translateY(-110%);
  animation: scanSweep 5.2s linear infinite;
  opacity: 0.72;
  pointer-events: none;
}

.preview-topbar {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.preview-topbar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(207, 229, 255, 0.34);
}

.preview-topbar span:first-child {
  background: rgba(127, 229, 255, 0.9);
  box-shadow: 0 0 12px rgba(0, 209, 255, 0.5);
}

.preview-screen {
  position: relative;
  z-index: 1;
  min-height: 148px;
  border-radius: 16px;
  padding: 12px;
  background: rgba(7, 15, 34, 0.72);
  border: 1px solid rgba(93, 157, 255, 0.1);
}

.preview-label {
  margin-bottom: 12px;
  font-family: var(--digital-font);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(208, 228, 255, 0.72);
  text-transform: uppercase;
}

.preview-mini-panel,
.kpi-strip,
.ops-status-row {
  display: grid;
  gap: 10px;
}

.preview-mini-panel div,
.kpi-strip div,
.ops-status-row div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(10, 19, 43, 0.9);
  border: 1px solid rgba(92, 150, 255, 0.1);
}

.preview-mini-panel span,
.kpi-strip span,
.ops-status-row span {
  color: rgba(208, 228, 255, 0.68);
  font-size: 0.82rem;
}

.preview-mini-panel b,
.kpi-strip b,
.ops-status-row b {
  font-family: var(--digital-font);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: #dffaff;
}

.schedule-bars {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.schedule-bars span {
  display: block;
  width: var(--w);
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(45, 140, 255, 0.28), rgba(127, 229, 255, 0.95));
  box-shadow: 0 0 14px rgba(0, 209, 255, 0.18);
  animation: previewBars 3.8s ease-in-out infinite;
  transition: width 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.schedule-bars span:nth-child(2) {
  animation-delay: -0.8s;
}

.schedule-bars span:nth-child(3) {
  animation-delay: -1.4s;
}

.mini-line-chart {
  position: relative;
  min-height: 96px;
  border-radius: 14px;
  background: rgba(6, 14, 32, 0.88);
  overflow: hidden;
  margin-bottom: 12px;
}

.mini-line-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 34px 24px;
}

.mini-line {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 72px;
  bottom: 12px;
}

.mini-line::after {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 2px solid currentColor;
}

.line-primary {
  clip-path: var(
    --mini-line-primary-fill,
    polygon(0% 86%, 14% 78%, 28% 62%, 42% 68%, 60% 40%, 76% 28%, 100% 6%, 100% 100%, 0% 100%)
  );
  background: linear-gradient(180deg, rgba(71, 244, 255, 0), rgba(71, 244, 255, 0.24));
  transition: clip-path 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.line-primary::after {
  color: #59f0ff;
  clip-path: var(
    --mini-line-primary-stroke,
    polygon(0% 86%, 14% 78%, 28% 62%, 42% 68%, 60% 40%, 76% 28%, 100% 6%)
  );
  transition: clip-path 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.line-secondary {
  clip-path: var(
    --mini-line-secondary-fill,
    polygon(0% 92%, 16% 82%, 30% 74%, 48% 56%, 64% 58%, 82% 32%, 100% 20%, 100% 100%, 0% 100%)
  );
  background: linear-gradient(180deg, rgba(122, 118, 255, 0), rgba(122, 118, 255, 0.18));
  transition: clip-path 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.line-secondary::after {
  color: #8c8dff;
  clip-path: var(
    --mini-line-secondary-stroke,
    polygon(0% 92%, 16% 82%, 30% 74%, 48% 56%, 64% 58%, 82% 32%, 100% 20%)
  );
  transition: clip-path 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.mini-scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(127, 229, 255, 0.18), transparent);
  animation: scanSweep 4.2s linear infinite;
}

.member-funnel {
  display: grid;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 18px;
}

.member-funnel span {
  display: block;
  width: var(--funnel);
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(135, 89, 255, 0.35), rgba(71, 244, 255, 0.95));
  animation: previewBars 4.2s ease-in-out infinite;
  transition: width 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.member-funnel span:nth-child(2) {
  animation-delay: -0.7s;
}

.member-funnel span:nth-child(3) {
  animation-delay: -1.3s;
}

.preview-chip-row,
.alert-pill-row,
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.preview-chip-row span,
.alert-pill-row span,
.product-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(12, 24, 52, 0.78);
  border: 1px solid rgba(96, 148, 255, 0.12);
  font-family: var(--digital-font);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(214, 233, 255, 0.82);
}

.preview-risk .preview-screen {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.risk-heatmap-caption {
  margin: 0 0 10px;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: rgba(186, 210, 255, 0.65);
  font-family: var(--digital-font);
}

.risk-heatmap {
  display: grid;
  grid-template-columns: 44px repeat(3, minmax(0, 1fr));
  grid-template-rows: 22px repeat(3, minmax(40px, 1fr));
  gap: 6px 8px;
  margin-bottom: 10px;
  align-items: stretch;
}

.risk-heatmap-corner {
  border-radius: 8px;
  border: 1px dashed rgba(96, 148, 255, 0.15);
  background: rgba(8, 16, 36, 0.35);
}

.risk-heatmap-axis {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--digital-font);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: rgba(200, 220, 255, 0.55);
  text-transform: uppercase;
}

.risk-heatmap-col {
  border-bottom: 1px solid rgba(96, 148, 255, 0.12);
  padding-bottom: 4px;
}

.risk-heatmap-row {
  justify-content: flex-end;
  padding-right: 4px;
  font-size: 0.68rem;
  color: rgba(214, 233, 255, 0.75);
  text-transform: none;
  letter-spacing: 0.04em;
}

.risk-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-family: var(--digital-font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 1px solid rgba(97, 154, 255, 0.14);
  background: linear-gradient(145deg, rgba(12, 22, 48, 0.95), rgba(8, 14, 32, 0.88));
  transition:
    box-shadow 0.45s ease,
    border-color 0.45s ease,
    color 0.45s ease,
    background 0.45s ease;
}

.risk-cell[data-tier="low"] {
  color: #7ef0d4;
  border-color: rgba(80, 220, 180, 0.35);
  box-shadow: inset 0 0 20px rgba(60, 200, 160, 0.08);
}

.risk-cell[data-tier="mid"] {
  color: #ffd78a;
  border-color: rgba(255, 190, 120, 0.35);
  box-shadow: inset 0 0 18px rgba(255, 180, 80, 0.07);
}

.risk-cell[data-tier="high"] {
  color: #ff9ec4;
  border-color: rgba(255, 120, 160, 0.45);
  box-shadow:
    0 0 14px rgba(255, 100, 150, 0.2),
    inset 0 0 22px rgba(255, 80, 130, 0.1);
  animation: riskPulse 3.2s ease-in-out infinite;
}

.risk-cell.is-spotlight {
  outline: 1px solid rgba(255, 160, 200, 0.55);
  transform: scale(1.02);
}

.risk-tier-legend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 12px;
  font-family: var(--digital-font);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  color: rgba(186, 210, 255, 0.55);
}

.risk-tier-legend > span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.risk-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.risk-dot-low {
  background: #5fe0c8;
  box-shadow: 0 0 8px rgba(80, 220, 180, 0.55);
}

.risk-dot-mid {
  background: #ffc46d;
  box-shadow: 0 0 8px rgba(255, 190, 100, 0.45);
}

.risk-dot-high {
  background: #ff7eb3;
  box-shadow: 0 0 8px rgba(255, 120, 160, 0.55);
}

.device-map {
  position: relative;
  min-height: 84px;
  margin-bottom: 12px;
  border-radius: 14px;
  background: rgba(7, 15, 34, 0.84);
  border: 1px solid rgba(93, 157, 255, 0.1);
}

.device-node,
.device-link {
  position: absolute;
}

.device-node {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7fe5ff;
  box-shadow: 0 0 12px rgba(0, 209, 255, 0.68);
  animation: mapBlink 2.8s ease-in-out infinite;
}

.device-node:nth-child(1) {
  left: 14%;
  top: 22%;
}

.device-node:nth-child(2) {
  left: 42%;
  top: 54%;
  animation-delay: -0.8s;
}

.device-node:nth-child(3) {
  left: 66%;
  top: 32%;
  animation-delay: -1.4s;
}

.device-node:nth-child(4) {
  left: 82%;
  top: 58%;
  animation-delay: -2s;
}

.device-link {
  height: 1px;
  background: linear-gradient(90deg, rgba(127, 229, 255, 0.08), rgba(127, 229, 255, 0.82), rgba(127, 229, 255, 0.08));
}

.device-link:nth-child(5) {
  left: 17%;
  top: 32%;
  width: 86px;
  transform: rotate(18deg);
}

.device-link:nth-child(6) {
  left: 46%;
  top: 48%;
  width: 92px;
  transform: rotate(-10deg);
}

.data-nodes {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.data-nodes span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(180deg, #7fe5ff, #2d8cff);
  box-shadow: 0 0 12px rgba(0, 209, 255, 0.44);
  animation: mapBlink 3.1s ease-in-out infinite;
}

.data-nodes span:nth-child(2) {
  animation-delay: -0.5s;
}

.data-nodes span:nth-child(3) {
  animation-delay: -1s;
}

.data-nodes span:nth-child(4) {
  animation-delay: -1.6s;
}

.data-nodes span:nth-child(5) {
  animation-delay: -2.1s;
}

.data-columns {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  align-items: end;
  min-height: 84px;
}

.data-columns span {
  display: block;
  height: var(--h);
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, rgba(127, 229, 255, 0.95), rgba(45, 140, 255, 0.26));
  animation: previewBars 4.4s ease-in-out infinite;
  transition: height 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.data-columns span:nth-child(2) {
  animation-delay: -0.6s;
}

.data-columns span:nth-child(3) {
  animation-delay: -1.2s;
}

.data-columns span:nth-child(4) {
  animation-delay: -1.8s;
}

.data-columns span:nth-child(5) {
  animation-delay: -2.4s;
}

.cockpit-showcase {
  padding: 34px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 26px;
  align-items: center;
}

.feature-stack {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.feature-chip {
  padding: 18px 20px;
}

.feature-chip strong {
  display: block;
  font-size: 1.06rem;
  margin-bottom: 4px;
}

.showcase-visual {
  min-width: 0;
}

.dashboard-frame {
  padding: 20px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 10% 20%, rgba(45, 140, 255, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(6, 16, 40, 0.9), rgba(7, 14, 32, 0.92));
  border: 1px solid rgba(97, 154, 255, 0.16);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.dashboard-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
}

.dash-widget {
  padding: 18px;
  min-height: 180px;
}

.dash-widget.large {
  min-height: 240px;
}

.dash-widget.wide {
  grid-column: 1 / -1;
  min-height: 170px;
}

.heatmap-widget .widget-head {
  margin-bottom: 18px;
}

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

.heat-cell {
  --heat-glow: rgba(127, 229, 255, 0.35);
  --heat-fill: rgba(45, 140, 255, 0.18);
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  padding: 14px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at 28% 28%, var(--heat-glow), transparent 24%),
    linear-gradient(135deg, var(--heat-fill), rgba(12, 24, 52, 0.92));
  border: 1px solid rgba(98, 169, 255, 0.14);
  box-shadow:
    inset 0 0 18px rgba(0, 209, 255, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.02);
  animation: heatPulse 5.6s ease-in-out infinite;
  transition:
    box-shadow 0.26s ease,
    border-color 0.26s ease,
    background 0.26s ease;
}

.heat-cell::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.55), transparent 68%);
  opacity: 0.6;
  animation: sparkPulse 6.8s ease-in-out infinite;
}

.heat-cell:nth-child(2n) {
  animation-delay: -0.9s;
}

.heat-cell:nth-child(3n) {
  animation-delay: -1.6s;
}

.heat-max {
  --heat-glow: rgba(127, 229, 255, 0.8);
  --heat-fill: rgba(45, 140, 255, 0.28);
}

.heat-high {
  --heat-glow: rgba(127, 229, 255, 0.58);
  --heat-fill: rgba(58, 120, 255, 0.24);
}

.heat-medium {
  --heat-glow: rgba(95, 185, 255, 0.42);
  --heat-fill: rgba(45, 95, 210, 0.2);
}

.heat-low {
  --heat-glow: rgba(82, 120, 220, 0.26);
  --heat-fill: rgba(36, 74, 165, 0.18);
}

.heat-city,
.heatmap-legend small {
  color: rgba(209, 228, 255, 0.7);
}

.heat-city {
  display: block;
  font-size: 0.86rem;
}

.heat-cell strong {
  display: block;
  font-family: var(--digital-font);
  font-size: 1.3rem;
  letter-spacing: 0.06em;
}

.heat-cell small {
  color: rgba(223, 238, 255, 0.82);
}

.heatmap-legend {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.heatmap-legend div {
  padding: 12px;
  border-radius: 14px;
  background: rgba(10, 18, 37, 0.9);
  border: 1px solid rgba(96, 148, 255, 0.12);
}

.legend-swatch {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  box-shadow: 0 0 12px currentColor;
}

.level-max {
  color: #7fe5ff;
  background: #7fe5ff;
}

.level-high {
  color: #55cfff;
  background: #55cfff;
}

.level-medium {
  color: #4c9dff;
  background: #4c9dff;
}

.level-low {
  color: #6d79ff;
  background: #6d79ff;
}

.heatmap-legend b {
  display: inline-block;
  vertical-align: middle;
  font-family: var(--digital-font);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

.heatmap-legend small {
  display: block;
  margin-top: 8px;
}

.arc-meter {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 124px;
  margin-top: 16px;
}

.arc-meter strong {
  position: relative;
  z-index: 1;
}

.arc-ring {
  --gauge-pct: 0.71;
  position: absolute;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background: conic-gradient(
    from 220deg,
    rgba(0, 209, 255, 0.95) 0deg calc(var(--gauge-pct) * 248deg),
    rgba(135, 89, 255, 0.42) calc(var(--gauge-pct) * 248deg) calc(var(--gauge-pct) * 248deg + 28deg),
    rgba(28, 52, 110, 0.35) calc(var(--gauge-pct) * 248deg + 28deg) 360deg
  );
  mask: radial-gradient(circle, transparent 58%, black 60%);
  animation: gaugeBreath 7.2s ease-in-out infinite;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.arc-meter.is-tick {
  animation: cockpitMeterNudge 0.28s ease-out;
}

@keyframes cockpitMeterNudge {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

.forecast-widget {
  display: flex;
  flex-direction: column;
}

.forecast-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.forecast-metrics div,
.forecast-note {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(10, 18, 37, 0.9);
  border: 1px solid rgba(96, 148, 255, 0.12);
}

.forecast-metrics span,
.forecast-note p {
  color: rgba(209, 228, 255, 0.7);
}

.forecast-metrics b,
.forecast-note strong {
  display: block;
  margin-top: 8px;
  font-family: var(--digital-font);
  font-size: 0.84rem;
  letter-spacing: 0.06em;
}

.forecast-bars {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
  min-height: 108px;
  margin-top: 12px;
  padding: 14px 12px 10px;
  border-radius: 16px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(8, 16, 36, 0.92), rgba(7, 14, 30, 0.92));
  background-size: 26px 26px;
  border: 1px solid rgba(96, 148, 255, 0.1);
}

.forecast-bars div {
  display: grid;
  gap: 8px;
  justify-items: center;
  align-content: end;
}

.forecast-bars span {
  font-family: var(--digital-font);
  font-size: 0.64rem;
  letter-spacing: 0.06em;
  color: rgba(209, 228, 255, 0.7);
}

.forecast-bars b {
  display: block;
  width: 100%;
  height: var(--forecast);
  min-height: 16px;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, rgba(127, 229, 255, 0.98), rgba(45, 140, 255, 0.24));
  box-shadow: 0 0 18px rgba(0, 209, 255, 0.14);
  transform-origin: center bottom;
  animation: dataBarPulse 5.2s ease-in-out infinite;
  transition: height 0.28s cubic-bezier(0.4, 0, 0.2, 1), filter 0.22s ease;
}

.forecast-bars div:nth-child(2) b {
  animation-delay: -0.7s;
}

.forecast-bars div:nth-child(3) b {
  animation-delay: -1.3s;
}

.forecast-bars div:nth-child(4) b {
  animation-delay: -1.9s;
}

.forecast-bars div:nth-child(5) b {
  animation-delay: -2.5s;
}

.forecast-note {
  margin-top: 12px;
}

.forecast-note strong {
  margin-top: 0;
}

.forecast-note p {
  margin: 8px 0 0;
  line-height: 1.7;
  font-size: 0.88rem;
}

.alert-stack {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.alert-stack p,
.signal-list div {
  margin: 0;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(10, 18, 37, 0.9);
  border: 1px solid rgba(96, 148, 255, 0.12);
}

.signal-list {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.signal-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.signal-list b {
  color: #7fe5ff;
  font-family: var(--digital-font);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

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

.solution-card {
  padding: 26px;
  min-height: 240px;
}

.solution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.solution-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(16, 28, 59, 0.75);
  border: 1px solid rgba(101, 160, 255, 0.14);
  font-family: var(--digital-font);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.solutions-showcase {
  padding: 26px;
  overflow: hidden;
}

.solutions-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.solutions-tabs,
.solutions-nav,
.solutions-indicators {
  display: flex;
  align-items: center;
  gap: 10px;
}

.solution-tab,
.solution-nav-button {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(97, 154, 255, 0.14);
  background: rgba(10, 19, 43, 0.72);
  color: rgba(219, 234, 255, 0.82);
  font-family: var(--digital-font);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background-color 0.28s ease;
}

.solution-tab:hover,
.solution-tab:focus-visible,
.solution-tab.is-active,
.solution-nav-button:hover,
.solution-nav-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(118, 196, 255, 0.32);
  box-shadow:
    0 0 24px rgba(0, 209, 255, 0.12),
    inset 0 0 18px rgba(71, 244, 255, 0.06);
}

.solution-tab.is-active {
  background: linear-gradient(135deg, rgba(23, 53, 110, 0.88), rgba(9, 26, 60, 0.92));
}

.solutions-viewport {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  touch-action: pan-y;
}

@media (pointer: fine) {
  .solutions-viewport {
    cursor: grab;
  }

  .solutions-viewport.is-dragging {
    cursor: grabbing;
  }
}

.solutions-track {
  display: flex;
  width: 100%;
  transition: transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.solution-slide {
  position: relative;
  overflow: hidden;
  flex: 0 0 100%;
  min-width: 100%;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 30px;
  align-items: center;
  padding: 34px;
}

.solution-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 24%),
    linear-gradient(180deg, transparent, rgba(6, 12, 26, 0.42));
  pointer-events: none;
}

.scene-chain {
  background:
    radial-gradient(circle at 72% 20%, rgba(71, 244, 255, 0.16), transparent 20%),
    radial-gradient(circle at 82% 66%, rgba(45, 140, 255, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(8, 18, 42, 0.98), rgba(5, 10, 20, 0.98));
}

.scene-single {
  background:
    radial-gradient(circle at 76% 24%, rgba(127, 229, 255, 0.14), transparent 18%),
    radial-gradient(circle at 18% 18%, rgba(45, 140, 255, 0.12), transparent 24%),
    linear-gradient(135deg, rgba(8, 20, 46, 0.98), rgba(7, 12, 26, 0.98));
}

.scene-distributor {
  background:
    radial-gradient(circle at 74% 18%, rgba(135, 89, 255, 0.16), transparent 22%),
    radial-gradient(circle at 80% 62%, rgba(71, 244, 255, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(8, 18, 43, 0.98), rgba(5, 10, 22, 0.98));
}

.solution-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.solution-screen-glow,
.solution-beam,
.solution-floor-grid,
.solution-seat-row {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.solution-screen-glow {
  top: 3%;
  width: min(720px, 72vw);
  height: 176px;
  border-radius: 18px 18px 56px 56px / 10px 10px 78px 78px;
  background:
    radial-gradient(ellipse at 50% 12%, rgba(242, 250, 255, 0.36), rgba(177, 215, 235, 0.16) 34%, rgba(78, 132, 175, 0.08) 62%, transparent 82%),
    linear-gradient(180deg, rgba(176, 211, 229, 0.2), rgba(88, 129, 162, 0.12) 42%, rgba(21, 39, 73, 0.04) 76%, transparent 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -46px 72px rgba(7, 14, 29, 0.28),
    0 26px 60px rgba(127, 229, 255, 0.08);
  filter: blur(9px);
  opacity: 0.46;
  animation: screenWallPulse 8.4s ease-in-out infinite;
}

.solution-beam {
  top: 9%;
  width: min(1120px, 118%);
  height: 50%;
  background: radial-gradient(ellipse at 50% 0%, rgba(187, 232, 255, 0.13), rgba(95, 173, 226, 0.08) 28%, rgba(45, 140, 255, 0.04) 48%, transparent 74%);
  filter: blur(30px);
  opacity: 0.72;
  animation: beamDrift 10s ease-in-out infinite;
}

.solution-floor-grid {
  inset: auto auto 18% 50%;
  width: min(860px, 92%);
  height: 180px;
  transform: translateX(-50%) perspective(1200px) rotateX(78deg);
  transform-origin: center bottom;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.36;
}

.solution-seat-row {
  bottom: 0;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(12, 22, 48, 0.96), rgba(5, 9, 18, 0.92)),
    repeating-linear-gradient(
      90deg,
      rgba(127, 229, 255, 0.08) 0 16px,
      rgba(3, 10, 26, 0.02) 16px 30px
    );
  border: 1px solid rgba(71, 244, 255, 0.08);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(127, 229, 255, 0.06);
}

.seat-back {
  width: min(760px, 76%);
  height: 42px;
  bottom: 136px;
}

.seat-middle {
  width: min(920px, 92%);
  height: 56px;
  bottom: 74px;
}

.seat-front {
  width: min(1160px, 112%);
  height: 76px;
  bottom: 0;
}

.solution-scene-copy,
.solution-ui-stage {
  position: relative;
  z-index: 1;
  transition:
    transform 0.72s ease,
    opacity 0.72s ease;
}

.solution-scene-copy {
  opacity: 0.56;
  transform: translateX(30px);
}

.solution-ui-stage {
  opacity: 0.52;
  transform: translateX(44px) scale(0.98);
}

.solution-slide.is-active .solution-scene-copy,
.solution-slide.is-active .solution-ui-stage {
  opacity: 1;
  transform: none;
}

.solution-kicker {
  display: block;
  font-family: var(--digital-font);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(204, 228, 255, 0.68);
}

.solution-scene-copy h3 {
  margin: 18px 0 8px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.solution-scene-copy h4 {
  margin: 0 0 18px;
  font-size: 1.4rem;
  color: #7fe5ff;
  font-family: var(--digital-font);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.solution-scene-copy p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.85;
}

.solution-tags {
  margin-top: 24px;
}

.solution-points {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.solution-points div {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(8, 17, 39, 0.72);
  border: 1px solid rgba(96, 148, 255, 0.1);
}

.solution-points strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.solution-points span {
  color: rgba(210, 230, 255, 0.68);
}

.solution-ui-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 16px;
  align-items: start;
}

.scene-ui-panel {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(97, 154, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(7, 17, 39, 0.92), rgba(5, 11, 25, 0.96)),
    radial-gradient(circle at top left, rgba(71, 244, 255, 0.1), transparent 26%);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.34),
    inset 0 0 24px rgba(71, 244, 255, 0.04);
}

.scene-ui-main {
  min-height: 360px;
  padding: 18px;
}

.scene-ui-side {
  min-height: 280px;
  padding: 16px;
}

.scene-ui-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.scene-ui-topbar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(209, 228, 255, 0.28);
}

.scene-ui-topbar span:first-child {
  background: #7fe5ff;
  box-shadow: 0 0 12px rgba(0, 209, 255, 0.5);
}

.scene-ui-topbar b {
  margin-left: auto;
  font-family: var(--digital-font);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(212, 232, 255, 0.74);
}

.scene-ui-topbar.compact {
  margin-bottom: 14px;
}

.dispatch-kpis,
.analytics-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.dispatch-kpis div,
.analytics-kpis div,
.quick-actions div {
  padding: 12px;
  border-radius: 14px;
  background: rgba(9, 19, 43, 0.82);
  border: 1px solid rgba(92, 152, 255, 0.1);
}

.dispatch-kpis span,
.analytics-kpis span,
.quick-actions span,
.pos-label,
.schedule-line span {
  display: block;
  color: rgba(207, 229, 255, 0.66);
  font-size: 0.82rem;
}

.dispatch-kpis strong,
.analytics-kpis strong,
.quick-actions b,
.schedule-line b,
.pos-total b {
  display: block;
  margin-top: 6px;
  font-family: var(--digital-font);
  letter-spacing: 0.06em;
}

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

.dispatch-screen {
  padding: 14px;
  border-radius: 18px;
  background: rgba(8, 16, 36, 0.76);
  border: 1px solid rgba(93, 157, 255, 0.1);
}

.dispatch-screen span {
  display: block;
  color: rgba(209, 228, 255, 0.72);
  font-size: 0.88rem;
}

.dispatch-screen b {
  display: block;
  margin-top: 12px;
  font-family: var(--digital-font);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  color: #7fe5ff;
}

.dispatch-wave {
  position: relative;
  height: 44px;
  margin-top: 14px;
  border-radius: 12px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(8, 16, 36, 0.4), rgba(8, 16, 36, 0.16));
  background-size: 22px 22px;
  overflow: hidden;
}

.dispatch-wave::before {
  content: "";
  position: absolute;
  inset: 8px 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(127, 229, 255, 0.94), transparent);
  animation: flowMove 3.8s linear infinite;
}

.network-feed {
  display: grid;
  gap: 12px;
}

.network-feed p {
  margin: 0;
  padding: 12px 12px 12px 16px;
  border-radius: 14px;
  background: rgba(9, 19, 43, 0.84);
  border: 1px solid rgba(92, 152, 255, 0.1);
  color: rgba(219, 234, 255, 0.76);
  line-height: 1.6;
  position: relative;
}

.network-feed p::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 18px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7fe5ff;
  box-shadow: 0 0 12px rgba(0, 209, 255, 0.5);
}

.pos-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 14px;
}

.pos-receipt,
.schedule-board {
  padding: 16px;
  border-radius: 18px;
  background: rgba(8, 17, 39, 0.78);
  border: 1px solid rgba(93, 157, 255, 0.1);
}

.pos-ticket-card {
  margin-top: 14px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(10, 20, 45, 0.86);
  border: 1px solid rgba(97, 154, 255, 0.1);
}

.pos-ticket-card strong,
.pos-total b {
  display: block;
}

.pos-ticket-card span {
  display: block;
  margin-top: 8px;
  color: rgba(208, 228, 255, 0.68);
  line-height: 1.6;
}

.pos-total {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(12, 26, 58, 0.88);
}

.schedule-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(97, 154, 255, 0.08);
}

.schedule-line:last-child {
  border-bottom: 0;
}

.quick-actions {
  display: grid;
  gap: 12px;
}

.analytics-board {
  display: grid;
  gap: 14px;
}

.analytics-chart {
  position: relative;
  min-height: 188px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 74% 18%, rgba(71, 244, 255, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(7, 18, 42, 0.94), rgba(6, 12, 28, 0.92));
  overflow: hidden;
  border: 1px solid rgba(93, 157, 255, 0.1);
}

.analytics-grid {
  position: absolute;
  inset: 12px;
  border-radius: 14px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 42px 32px;
}

.analytics-line {
  position: absolute;
  left: 16px;
  right: 16px;
  height: 118px;
  bottom: 18px;
  animation: lineFloat 8.4s ease-in-out infinite;
}

.analytics-line::after {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 2px solid currentColor;
  filter: drop-shadow(0 0 10px currentColor);
  animation: lineGlowPulse 6.8s ease-in-out infinite;
}

.analytics-line-main {
  clip-path: polygon(0% 84%, 14% 78%, 28% 62%, 44% 66%, 58% 42%, 74% 28%, 100% 8%, 100% 100%, 0% 100%);
  background: linear-gradient(180deg, rgba(71, 244, 255, 0), rgba(71, 244, 255, 0.22));
}

.analytics-line-main::after {
  color: #5befff;
  clip-path: polygon(0% 84%, 14% 78%, 28% 62%, 44% 66%, 58% 42%, 74% 28%, 100% 8%);
}

.analytics-line-sub {
  clip-path: polygon(0% 92%, 18% 82%, 32% 72%, 48% 54%, 64% 58%, 80% 36%, 100% 24%, 100% 100%, 0% 100%);
  background: linear-gradient(180deg, rgba(122, 118, 255, 0), rgba(122, 118, 255, 0.18));
  animation-delay: -2.1s;
}

.analytics-line-sub::after {
  color: #9d97ff;
  clip-path: polygon(0% 92%, 18% 82%, 32% 72%, 48% 54%, 64% 58%, 80% 36%, 100% 24%);
}

.region-map {
  position: relative;
  min-height: 220px;
  border-radius: 18px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(7, 16, 38, 0.94), rgba(5, 11, 25, 0.92));
  background-size: 32px 32px;
  overflow: hidden;
}

.region-node,
.region-link,
.region-tag {
  position: absolute;
}

.region-node {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7fe5ff;
  box-shadow: 0 0 14px rgba(0, 209, 255, 0.6);
  animation: mapBlink 2.8s ease-in-out infinite;
}

.node-a {
  top: 34%;
  left: 44%;
}

.node-b {
  top: 48%;
  left: 58%;
  animation-delay: -0.8s;
}

.node-c {
  top: 62%;
  left: 66%;
  animation-delay: -1.6s;
}

.region-link {
  height: 1px;
  background: linear-gradient(90deg, rgba(127, 229, 255, 0.1), rgba(127, 229, 255, 0.88), rgba(127, 229, 255, 0.1));
}

.region-link-a {
  top: 39%;
  left: 45%;
  width: 92px;
  transform: rotate(22deg);
}

.region-link-b {
  top: 55%;
  left: 58%;
  width: 58px;
  transform: rotate(34deg);
}

.region-tag {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(12, 24, 52, 0.86);
  border: 1px solid rgba(96, 148, 255, 0.12);
  font-family: var(--digital-font);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(214, 233, 255, 0.82);
}

.tag-main {
  top: 16px;
  left: 16px;
}

.tag-sub {
  right: 16px;
  bottom: 16px;
}

.solutions-indicators {
  justify-content: center;
  margin-top: 18px;
}

.solutions-indicators span {
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: rgba(97, 154, 255, 0.18);
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.solutions-indicators span.is-active {
  background: linear-gradient(90deg, rgba(45, 140, 255, 0.72), rgba(127, 229, 255, 0.96));
  box-shadow: 0 0 14px rgba(0, 209, 255, 0.34);
  transform: scaleX(1.04);
}

@media (max-width: 1100px) {
  .solutions-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .solutions-nav {
    justify-content: flex-end;
  }

  .solutions-viewport {
    min-height: auto;
  }

  .solution-slide {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px;
  }

  .solution-ui-stage {
    grid-template-columns: 1fr;
  }

  .scene-ui-side {
    min-height: auto;
  }
}

@media (max-width: 860px) {
  .solutions-showcase {
    padding: 20px;
  }

  .solutions-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .solutions-nav {
    width: 100%;
  }

  .solution-nav-button {
    flex: 1;
  }

  .solution-slide {
    padding: 20px;
    gap: 20px;
  }

  .dispatch-kpis,
  .dispatch-grid,
  .analytics-kpis,
  .pos-layout {
    grid-template-columns: 1fr;
  }

  .forecast-metrics {
    grid-template-columns: 1fr;
  }

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

  .scene-ui-main {
    min-height: auto;
  }

  .solution-screen-glow {
    width: min(520px, 86vw);
    height: 132px;
  }

  .seat-back {
    width: min(620px, 72%);
    bottom: 110px;
  }

  .seat-middle {
    width: min(760px, 88%);
    bottom: 58px;
  }

  .seat-front {
    height: 64px;
  }
}

@media (max-width: 620px) {
  .vista-subnav {
    width: min(100%, 420px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
    border-radius: 24px;
  }

  .vista-subnav-link {
    min-height: 48px;
    padding: 0 14px 0 20px;
    font-size: 0.86rem;
  }

  .vista-subnav-link::before {
    left: 12px;
  }

  .solutions-showcase {
    padding: 16px;
  }

  .solutions-tabs {
    grid-template-columns: 1fr;
  }

  .solution-tab,
  .solution-nav-button {
    width: 100%;
    justify-content: center;
  }

  .solution-slide {
    padding: 16px;
  }

  .solution-scene-copy h3 {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .solution-scene-copy h4 {
    font-size: 1rem;
  }

  .scene-ui-main,
  .scene-ui-side {
    padding: 14px;
    border-radius: 20px;
  }

  .heatmap-legend {
    grid-template-columns: 1fr;
  }

  .forecast-bars {
    gap: 8px;
    padding-inline: 10px;
  }

  .solution-floor-grid {
    height: 120px;
  }

  .seat-back {
    height: 34px;
    bottom: 88px;
  }

  .seat-middle {
    height: 44px;
    bottom: 44px;
  }

  .seat-front {
    height: 54px;
  }

  .solution-screen-glow {
    width: min(360px, 92vw);
    height: 96px;
  }

  .solutions-indicators span {
    width: 28px;
  }
}

@media (max-width: 420px) {
  .vista-subnav {
    width: 100%;
    grid-template-columns: 1fr;
  }
}

.outcomes {
  padding-top: 8px;
}

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

.outcome-strip article {
  min-height: 160px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(10, 18, 40, 0.72);
  border: 1px solid rgba(96, 148, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.outcome-strip article span {
  color: rgba(219, 234, 255, 0.7);
}

.outcome-strip strong {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.cms-intro-panel {
  padding: 34px 38px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.cms-intro-copy {
  min-width: 0;
  width: 100%;
}

.cms-intro-copy h2 {
  margin: 18px 0 14px;
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.22;
  color: var(--text-primary);
}

.cms-intro-desc {
  margin: 0 0 16px;
  font-size: 1.04rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 52em;
}

.cms-intro-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
  font-weight: 600;
  font-family: var(--digital-font);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  text-decoration: none;
  transition:
    color 0.2s ease,
    filter 0.2s ease;
}

.cms-intro-link:hover,
.cms-intro-link:focus-visible {
  color: var(--aqua);
  filter: brightness(1.06);
}

.cms-intro-link-arrow {
  font-size: 1.1em;
  line-height: 1;
  font-family: var(--body-font);
}

.cms-intro-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-panel {
  padding: 38px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 0 34px;
  color: rgba(213, 230, 255, 0.64);
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--digital-font);
}

.site-footer p {
  margin: 0;
  line-height: 1.7;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

.tilt-card {
  transform-style: preserve-3d;
  transition:
    transform 0.28s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

@media (max-width: 1100px) {
  .hero,
  .cockpit-showcase {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .hero-visual {
    order: -1;
  }

  .capability-grid,
  .solution-grid,
  .outcome-strip,
  .featured-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .outcome-strip article:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .nav {
    min-height: 74px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-metrics,
  .capability-grid,
  .solution-grid,
  .outcome-strip,
  .featured-services-grid,
  .screen-shell,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .screen-hud {
    grid-template-columns: 1fr;
  }

  .cockpit-panel,
  .cockpit-showcase,
  .cta-panel,
  .cms-intro-panel {
    padding: 24px;
  }

  .product-card {
    min-height: auto;
  }

  .product-preview {
    min-height: 176px;
  }

  .cta-panel,
  .cms-intro-panel,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  :root {
    --container: min(1200px, calc(100vw - 28px));
  }

  .section {
    padding: 34px 0 58px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .panel-header,
  .dashboard-topline {
    flex-direction: column;
    align-items: flex-start;
  }

  .screen-main {
    padding: 18px;
  }

  .screen-chart {
    min-height: 280px;
  }

  .screen-rings {
    width: 108px;
    height: 108px;
    right: 18px;
  }

  .product-preview {
    min-height: 164px;
    padding: 10px;
  }

  .preview-screen {
    padding: 10px;
  }

  .product-card {
    padding: 20px;
  }
}

@media (max-width: 1100px) {
  .hero.hero-command {
    min-height: auto;
  }

  .hero-dashboard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "schedule schedule"
      "boxoffice boxoffice"
      "map occupancy";
  }

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

  .hero-stage {
    min-height: 760px;
  }

  .boxoffice-kpis,
  .boxoffice-lower {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .hero.hero-command {
    padding-top: 34px;
    padding-bottom: 70px;
  }

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

  .hero-dashboard {
    padding: 18px;
  }

  .hero-dashboard-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "schedule"
      "boxoffice"
      "occupancy"
      "map";
  }

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

  .occupancy-gauge {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .occupancy-detail {
    width: 100%;
  }

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

  .backdrop-screen {
    top: 9%;
    width: min(680px, 96vw);
    height: 188px;
  }
}

@media (max-width: 620px) {
  .hero.hero-command {
    gap: 18px;
    min-height: auto;
    padding-top: 26px;
    padding-bottom: 58px;
  }

  .hero-vista-wordmark {
    font-size: clamp(2.2rem, 11vw, 3.6rem);
    letter-spacing: 0.28em;
    text-indent: 0.28em;
  }

  .hero.hero-command h1.hero-brand-line {
    font-size: clamp(2.2rem, 11vw, 3.6rem);
    letter-spacing: 0.08em;
  }

  .hero-corporate-panel {
    margin-top: 24px;
    padding: 20px 18px;
    border-radius: var(--radius-md);
  }

  .hero-corporate-heading {
    font-size: clamp(1.35rem, 5.2vw, 2.1rem);
    line-height: 1.32;
  }

  .hero-corporate-desc {
    font-size: 0.95rem;
    line-height: 1.72;
  }

  .product-cms-screen .hero-product-title {
    font-size: clamp(2.2rem, 11vw, 3.6rem);
  }

  .product-cms-screen .hero-product-title span {
    margin-top: 10px;
    font-size: 0.94rem;
    letter-spacing: 0.12em;
  }

  .product-cms-screen .hero-text {
    text-align: left;
    text-align-last: auto;
    padding: 0 4px;
  }

  .hero-stage {
    padding-top: 8px;
  }

  .hero-dashboard {
    padding: 14px;
    border-radius: 24px;
  }

  .hero-widget {
    padding: 16px;
    border-radius: 20px;
  }

  .hero-dashboard-footer {
    grid-template-columns: 1fr;
  }

  .occupancy-ring {
    width: 116px;
    height: 116px;
  }

  .boxoffice-kpi,
  .boxoffice-panel {
    padding: 12px;
  }

  .backdrop-screen {
    width: min(460px, 96vw);
    height: 128px;
  }

  .seat-row-a {
    height: 64px;
  }

  .seat-row-b {
    height: 54px;
    bottom: 50px;
  }

  .seat-row-c {
    height: 40px;
    bottom: 96px;
  }

  .map-tag {
    font-size: 0.62rem;
    letter-spacing: 0.04em;
  }
}

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

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

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

@keyframes pulse {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.24);
  }
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes barPulse {
  0%,
  100% {
    filter: brightness(0.92);
  }
  50% {
    filter: brightness(1.15);
  }
}

@keyframes gridDrift {
  0%,
  100% {
    background-position: 0 0, 0 0;
  }
  50% {
    background-position: 8px 6px, -8px -6px;
  }
}

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

@keyframes lineGlowPulse {
  0%,
  100% {
    opacity: 0.82;
    filter: drop-shadow(0 0 8px currentColor) brightness(0.95);
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 0 12px currentColor) brightness(1.08);
  }
}

@keyframes dataBarPulse {
  0%,
  100% {
    transform: scaleY(0.96);
    filter: brightness(0.88) saturate(0.88);
  }
  50% {
    transform: scaleY(1.09);
    filter: brightness(1.16) saturate(1.12);
  }
}

@keyframes gaugeBreath {
  0%,
  100% {
    opacity: 0.82;
    filter: brightness(0.88) saturate(0.9);
  }
  50% {
    opacity: 1;
    filter: brightness(1.14) saturate(1.18);
  }
}

@keyframes occupancyBarScan {
  0%,
  100% {
    filter: brightness(0.94) saturate(0.94);
    transform: scaleX(0.985);
  }
  50% {
    filter: brightness(1.12) saturate(1.08);
    transform: scaleX(1.02);
  }
}

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

@keyframes feedScroll {
  0%,
  18%,
  100% {
    transform: translateY(0);
  }
  30%,
  48% {
    transform: translateY(-24%);
  }
  60%,
  78% {
    transform: translateY(-48%);
  }
}

@keyframes heatPulse {
  0%,
  100% {
    transform: scale(1);
    filter: saturate(0.85);
  }
  50% {
    transform: scale(1.1);
    filter: saturate(1.38);
  }
}

@keyframes hudSweep {
  0% {
    transform: translateX(-22%) translateY(0);
    opacity: 0;
  }
  18%,
  68% {
    opacity: 0.78;
  }
  100% {
    transform: translateX(22%) translateY(0);
    opacity: 0;
  }
}

@keyframes mapAura {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(0.98);
  }
  50% {
    opacity: 0.78;
    transform: scale(1.03);
  }
}

@keyframes sparkPulse {
  0%,
  100% {
    opacity: 0.34;
    transform: scale(0.82);
  }
  50% {
    opacity: 0.72;
    transform: scale(1.08);
  }
}

@keyframes nodePing {
  0% {
    opacity: 0.76;
    transform: scale(0.78);
  }
  75%,
  100% {
    opacity: 0;
    transform: scale(1.72);
  }
}

@keyframes nodeHalo {
  0%,
  100% {
    opacity: 0.34;
    transform: scale(0.92);
  }
  50% {
    opacity: 0.72;
    transform: scale(1.12);
  }
}

@keyframes routePacket {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  12%,
  82% {
    opacity: 1;
  }
  100% {
    transform: translateX(var(--link-travel, 96px));
    opacity: 0;
  }
}

@keyframes linkGlow {
  0%,
  100% {
    opacity: 0.38;
    filter: brightness(0.88);
  }
  50% {
    opacity: 0.82;
    filter: brightness(1.12);
  }
}

@keyframes streakMoveA {
  0% {
    transform: translate3d(-10vw, 0, 0) rotate(-12deg);
    opacity: 0;
  }
  10%,
  60% {
    opacity: 0.36;
  }
  100% {
    transform: translate3d(120vw, 0, 0) rotate(-12deg);
    opacity: 0;
  }
}

@keyframes streakMoveB {
  0% {
    transform: translate3d(10vw, 0, 0) rotate(12deg);
    opacity: 0;
  }
  12%,
  62% {
    opacity: 0.3;
  }
  100% {
    transform: translate3d(-120vw, 0, 0) rotate(12deg);
    opacity: 0;
  }
}

@keyframes borderBreath {
  0%,
  100% {
    opacity: 0.55;
    filter: brightness(0.95);
  }
  50% {
    opacity: 1;
    filter: brightness(1.25);
  }
}

@keyframes scanSweep {
  0% {
    transform: translateY(-112%);
    opacity: 0;
  }
  10%,
  70% {
    opacity: 1;
  }
  100% {
    transform: translateY(118%);
    opacity: 0;
  }
}

@keyframes flowMove {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  12%,
  80% {
    opacity: 1;
  }
  100% {
    transform: translateX(480%);
    opacity: 0;
  }
}

@keyframes ringPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.35;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.7;
  }
}

@keyframes mapBlink {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.25);
    opacity: 1;
  }
}

@keyframes tagBreath {
  0%,
  100% {
    transform: translateY(0);
    border-color: rgba(96, 148, 255, 0.12);
  }
  50% {
    transform: translateY(-1px);
    border-color: rgba(127, 229, 255, 0.28);
  }
}

@keyframes tagSweep {
  0% {
    transform: translateX(-120%);
    opacity: 0;
  }
  16%,
  70% {
    opacity: 1;
  }
  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

@keyframes screenGlow {
  0%,
  100% {
    opacity: 0.72;
    filter: blur(1px) brightness(0.95);
  }
  50% {
    opacity: 0.95;
    filter: blur(1.4px) brightness(1.08);
  }
}

@keyframes screenWallPulse {
  0%,
  100% {
    opacity: 0.4;
    filter: blur(9px) brightness(0.94);
  }
  50% {
    opacity: 0.54;
    filter: blur(11px) brightness(1.02);
  }
}

@keyframes beamDrift {
  0%,
  100% {
    opacity: 0.56;
    transform: translateX(-50%) scaleX(0.98);
  }
  50% {
    opacity: 0.76;
    transform: translateX(-50%) scaleX(1.03);
  }
}

@keyframes previewBars {
  0%,
  100% {
    filter: brightness(0.86);
    transform: scaleX(0.98);
  }
  50% {
    filter: brightness(1.32);
    transform: scaleX(1.06);
  }
}

@keyframes riskPulse {
  0%,
  100% {
    opacity: 0.52;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.news-page .section {
  padding-top: 36px;
  padding-bottom: 56px;
}

.news-hero {
  padding-top: 56px;
}

.news-hero-shell {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  padding: 38px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 24px;
  align-items: end;
}

.news-hero-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 18%, rgba(71, 244, 255, 0.16), transparent 20%),
    radial-gradient(circle at 82% 74%, rgba(45, 140, 255, 0.12), transparent 28%),
    linear-gradient(180deg, transparent, rgba(7, 14, 31, 0.34));
  pointer-events: none;
}

.news-hero-copy,
.news-hero-panels {
  position: relative;
  z-index: 1;
}

.news-hero-copy h1 {
  margin: 20px 0 16px;
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.news-hero-copy h1 span {
  display: block;
  margin-top: 16px;
  font-size: clamp(1rem, 2vw, 1.45rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--digital-font);
  background: linear-gradient(135deg, #7fe5ff, #9da3ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.news-hero-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-self: start;
}

.news-hero-metric {
  padding: 18px;
  border-radius: 20px;
  background: rgba(8, 16, 36, 0.74);
  border: 1px solid rgba(97, 154, 255, 0.12);
  backdrop-filter: blur(18px);
}

.news-hero-metric span {
  display: block;
  color: rgba(210, 230, 255, 0.66);
}

.news-hero-metric strong {
  display: block;
  margin-top: 14px;
  font-family: var(--digital-font);
  font-size: 1.18rem;
  letter-spacing: 0.05em;
}

.news-hero-hud {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.news-hero-ring,
.news-hero-beam,
.news-hero-grid {
  position: absolute;
}

.news-hero-ring {
  border-radius: 50%;
  border: 1px solid rgba(101, 170, 255, 0.16);
  animation: spinSlow 24s linear infinite;
}

.ring-a {
  width: 420px;
  height: 420px;
  right: 7%;
  top: 18px;
}

.ring-b {
  width: 280px;
  height: 280px;
  right: 15%;
  top: 88px;
  border-style: dashed;
  border-color: rgba(71, 244, 255, 0.16);
  animation-direction: reverse;
  animation-duration: 14s;
}

.news-hero-beam {
  width: 520px;
  height: 300px;
  right: 4%;
  top: 36px;
  background: radial-gradient(circle at center, rgba(127, 229, 255, 0.22), transparent 66%);
  filter: blur(20px);
  animation: screenGlow 6.4s ease-in-out infinite;
}

.news-hero-grid {
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at 74% 42%, black 24%, transparent 64%);
  opacity: 0.72;
}

.news-filter-bar {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.filter-copy h2 {
  margin: 8px 0 0;
  font-size: 1.5rem;
}

.news-filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.news-filter-chip {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(97, 154, 255, 0.14);
  background: rgba(10, 19, 43, 0.74);
  color: rgba(219, 234, 255, 0.82);
  font-family: var(--digital-font);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    color 0.28s ease;
}

.news-filter-chip:hover,
.news-filter-chip:focus-visible,
.news-filter-chip.is-active {
  transform: translateY(-2px);
  color: #e8fbff;
  border-color: rgba(122, 203, 255, 0.34);
  box-shadow:
    0 0 22px rgba(0, 209, 255, 0.12),
    inset 0 0 18px rgba(71, 244, 255, 0.06);
}

.news-filter-chip.is-active {
  background: linear-gradient(135deg, rgba(23, 53, 110, 0.88), rgba(9, 26, 60, 0.92));
}

.news-layout {
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.timeline-panel {
  position: sticky;
  top: 104px;
  padding: 24px;
}

.timeline-header h2 {
  margin: 8px 0 0;
  font-size: 1.5rem;
}

.timeline-track {
  position: relative;
  margin-top: 22px;
  padding-left: 18px;
  display: grid;
  gap: 22px;
}

.timeline-track::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, rgba(71, 244, 255, 0.72), rgba(71, 244, 255, 0.08));
  box-shadow: 0 0 18px rgba(0, 209, 255, 0.22);
}

.timeline-item {
  position: relative;
  padding-left: 18px;
}

.timeline-dot {
  position: absolute;
  left: -2px;
  top: 6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: linear-gradient(180deg, #7fe5ff, #2d8cff);
  box-shadow: 0 0 16px rgba(0, 209, 255, 0.5);
}

.timeline-item strong {
  display: block;
  font-family: var(--digital-font);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: #dff8ff;
}

.timeline-item p {
  margin: 8px 0 0;
  color: rgba(219, 234, 255, 0.72);
  line-height: 1.7;
  font-size: 0.92rem;
}

.timeline-item.is-current .timeline-dot {
  animation: pulse 1.8s ease-in-out infinite;
}

.timeline-item.is-current strong {
  color: #7fe5ff;
}

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

.news-card {
  min-height: 100%;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.news-card > a {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.news-card:hover {
  transform: translateY(-10px);
  border-color: rgba(118, 196, 255, 0.34);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.34),
    0 0 30px rgba(0, 209, 255, 0.14);
}

.news-card.is-hidden {
  display: none;
}

.news-cover {
  position: relative;
  overflow: hidden;
  min-height: 206px;
  border-bottom: 1px solid rgba(97, 154, 255, 0.1);
  transform-origin: center;
  transition: transform 0.45s ease;
}

.news-card:hover .news-cover {
  transform: scale(1.04);
}

.news-cover::before,
.news-cover::after {
  content: "";
  position: absolute;
  inset: 0;
}

.news-cover::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.48;
}

.news-cover::after {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 26%),
    linear-gradient(180deg, transparent, rgba(5, 11, 24, 0.88));
}

.cover-company {
  background:
    radial-gradient(circle at 20% 28%, rgba(71, 244, 255, 0.26), transparent 18%),
    radial-gradient(circle at 74% 34%, rgba(45, 140, 255, 0.28), transparent 26%),
    linear-gradient(135deg, rgba(12, 30, 62, 0.98), rgba(7, 14, 33, 0.98));
}

.cover-product {
  background:
    radial-gradient(circle at 26% 22%, rgba(127, 229, 255, 0.2), transparent 18%),
    linear-gradient(135deg, rgba(10, 28, 60, 0.98), rgba(11, 18, 44, 0.98));
}

.cover-insight {
  background:
    radial-gradient(circle at 74% 26%, rgba(135, 89, 255, 0.24), transparent 22%),
    linear-gradient(135deg, rgba(8, 24, 52, 0.98), rgba(8, 14, 30, 0.98));
}

.cover-partnership {
  background:
    radial-gradient(circle at 24% 72%, rgba(71, 244, 255, 0.2), transparent 18%),
    radial-gradient(circle at 78% 24%, rgba(86, 124, 255, 0.22), transparent 24%),
    linear-gradient(135deg, rgba(8, 24, 52, 0.98), rgba(7, 13, 28, 0.98));
}

.cover-membership {
  background:
    radial-gradient(circle at 28% 22%, rgba(135, 89, 255, 0.22), transparent 20%),
    radial-gradient(circle at 82% 62%, rgba(71, 244, 255, 0.22), transparent 24%),
    linear-gradient(135deg, rgba(12, 22, 54, 0.98), rgba(7, 14, 31, 0.98));
}

.cover-data {
  background:
    radial-gradient(circle at 18% 32%, rgba(71, 244, 255, 0.18), transparent 20%),
    radial-gradient(circle at 78% 52%, rgba(45, 140, 255, 0.24), transparent 22%),
    linear-gradient(135deg, rgba(7, 20, 42, 0.98), rgba(5, 11, 24, 0.98));
}

.cover-badge,
.cover-caption {
  position: absolute;
  z-index: 1;
}

.cover-badge {
  top: 16px;
  left: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(7, 17, 39, 0.82);
  border: 1px solid rgba(110, 180, 255, 0.22);
  font-family: var(--digital-font);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(228, 241, 255, 0.84);
}

.cover-caption {
  left: 18px;
  right: 18px;
  bottom: 18px;
}

.cover-caption span {
  display: block;
  font-family: var(--digital-font);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: rgba(209, 228, 255, 0.72);
  text-transform: uppercase;
}

.cover-caption strong {
  display: block;
  margin-top: 10px;
  font-size: 1.12rem;
  line-height: 1.15;
}

.news-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  font-family: var(--digital-font);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(209, 228, 255, 0.7);
}

.news-meta time {
  color: #7fe5ff;
}

.news-card h3 {
  margin: 0 0 12px;
  font-size: 1.22rem;
  line-height: 1.35;
}

.news-card p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.8;
}

@media (max-width: 1200px) {
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .news-hero-shell,
  .news-layout {
    grid-template-columns: 1fr;
  }

  .timeline-panel {
    position: static;
  }
}

@media (max-width: 860px) {
  .news-hero {
    padding-top: 34px;
  }

  .news-hero-shell,
  .news-filter-bar {
    padding: 24px;
  }

  .news-hero-shell {
    min-height: auto;
  }

  .news-hero-panels {
    grid-template-columns: 1fr;
  }

  .news-filter-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .ring-a {
    width: 320px;
    height: 320px;
    right: -20px;
  }

  .ring-b {
    width: 220px;
    height: 220px;
    right: 24px;
  }
}

@media (max-width: 620px) {
  .news-page .section {
    padding-top: 28px;
    padding-bottom: 42px;
  }

  .news-hero-shell,
  .news-filter-bar,
  .timeline-panel,
  .news-card-body {
    padding: 18px;
  }

  .news-hero-copy h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .news-hero-copy h1 span {
    letter-spacing: 0.1em;
  }

  .news-cover {
    min-height: 190px;
  }

  .news-filter-chip {
    width: 100%;
    justify-content: center;
  }

  .timeline-track {
    gap: 18px;
  }
}
