:root {
  --bg-main: #071223;
  --bg-deep: #050d1a;
  --surface: rgba(11, 26, 46, 0.78);
  --surface-soft: rgba(14, 33, 59, 0.58);
  --line: rgba(125, 211, 252, 0.2);
  --text-main: #f3f7ff;
  --text-muted: #adc1de;
  --brand-cyan: #48d7ff;
  --brand-lime: #6cff95;
  --brand-amber: #f4b64a;
  --radius-xl: 28px;
  --radius-lg: 18px;
  --shadow-brand: 0 20px 60px rgba(72, 215, 255, 0.22);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Sora", "Segoe UI", sans-serif;
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 14% 20%, rgba(108, 255, 149, 0.25), transparent 42%),
    radial-gradient(circle at 82% 10%, rgba(72, 215, 255, 0.28), transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(244, 182, 74, 0.12), transparent 35%),
    linear-gradient(180deg, var(--bg-main), var(--bg-deep));
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(108, 255, 149, 0.08) 1.5px, transparent 1.5px),
    linear-gradient(90deg, rgba(72, 215, 255, 0.08) 1.5px, transparent 1.5px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 50%, transparent 100%);
  animation: gridPulse 4s ease-in-out infinite;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 25%, rgba(108, 255, 149, 0.15), transparent 25%),
    radial-gradient(circle at 88% 15%, rgba(72, 215, 255, 0.18), transparent 28%),
    radial-gradient(circle at 50% 85%, rgba(244, 182, 74, 0.08), transparent 30%),
    linear-gradient(115deg, transparent 20%, rgba(72, 215, 255, 0.12) 45%, transparent 70%),
    linear-gradient(300deg, transparent 18%, rgba(108, 255, 149, 0.1) 48%, transparent 75%);
  animation: energyWave 8s ease-in-out infinite;
}

.header {
  position: static;
  width: min(1320px, 94%);
  margin: 28px auto 0;
  min-height: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  z-index: 2;
}

.header::after {
  content: none;
}

.logo-wrap {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.logo-img {
  height: 88px;
  width: auto;
  object-fit: contain;
  border-radius: 18px;
  filter:
    drop-shadow(0 0 20px rgba(72, 215, 255, 0.35))
    drop-shadow(0 0 25px rgba(108, 255, 149, 0.22));
}

.layout-wrapper {
  width: min(1320px, 94%);
  margin: 0 auto;
}

.side-panel {
  display: none;
}

.nav-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(72, 215, 255, 0.25);
  background: rgba(8, 20, 38, 0.65);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(72, 215, 255, 0.15);
}

.nav-float a {
  position: relative;
  text-decoration: none;
  color: #d8e6fc;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.25s ease;
  white-space: nowrap;
}

.nav-float a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--brand-cyan), var(--brand-lime));
  transition: transform 0.25s ease;
}

.nav-float a:hover {
  color: #ffffff;
}

.nav-float a:hover::after {
  transform: scaleX(1);
}

.main-content {
  flex: 1;
  min-width: 0;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  padding: 48px 8% 90px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 72px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(72, 215, 255, 0.65), rgba(108, 255, 149, 0.65), transparent);
  box-shadow: 0 0 22px rgba(72, 215, 255, 0.45);
  animation: energyLinePulse 3s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  left: 8%;
  top: 50%;
  width: 3px;
  height: 400px;
  background: linear-gradient(180deg, transparent, rgba(108, 255, 149, 0.25), transparent);
  transform: translateY(-50%);
  filter: blur(6px);
  animation: energyFlow 4s linear infinite;
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-label {
  color: var(--brand-lime);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 10px 18px;
  margin-bottom: 24px;
  font-size: 14px;
  color: #cff8ff;
  border: 1px solid rgba(72, 215, 255, 0.35);
  background: rgba(8, 21, 39, 0.7);
}

.live-badge span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-lime);
  box-shadow: 0 0 14px var(--brand-lime);
  animation: pulseDot 1.4s infinite;
}

.hero h1 {
  font-family: "Rajdhani", "Sora", sans-serif;
  font-size: clamp(46px, 7vw, 84px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--brand-cyan);
  text-shadow: 0 0 20px rgba(72, 215, 255, 0.5);
}

.hero-text {
  max-width: 680px;
  color: var(--text-muted);
  font-size: 19px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-highlights {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-highlights span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(72, 215, 255, 0.22);
  background: rgba(7, 20, 36, 0.52);
  color: #d7ecff;
  font-size: 13px;
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  border-radius: 999px;
  padding: 14px 24px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.btn-primary {
  color: #05213a;
  background: linear-gradient(100deg, var(--brand-lime), #c6ff6d);
  box-shadow: 0 8px 26px rgba(108, 255, 149, 0.42);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(108, 255, 149, 0.52);
}

.btn-secondary {
  color: #eef6ff;
  border: 1px solid rgba(72, 215, 255, 0.45);
  background: rgba(10, 28, 50, 0.68);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--brand-lime);
  box-shadow: 0 8px 24px rgba(72, 215, 255, 0.32);
}

.hero-panel {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(72, 215, 255, 0.22);
  background: linear-gradient(150deg, rgba(10, 27, 48, 0.88), rgba(8, 20, 37, 0.84));
  box-shadow: var(--shadow-brand);
  padding: 28px;
  animation: floatPanel 7s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(72, 215, 255, 0.6), transparent);
  animation: scannerTop 2.5s linear infinite;
}

.status-card {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  border-radius: var(--radius-lg);
  padding: 16px;
  border: 1px solid rgba(108, 255, 149, 0.26);
  background: rgba(108, 255, 149, 0.06);
}

.status-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--brand-lime);
  box-shadow: 0 0 12px var(--brand-lime);
}

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

.grid-panel div {
  min-height: 86px;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(72, 215, 255, 0.22);
  background: linear-gradient(145deg, rgba(72, 215, 255, 0.15), rgba(16, 41, 70, 0.75));
  display: flex;
  align-items: end;
  font-size: 14px;
  font-weight: 700;
}

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

.stat-box {
  border-radius: 14px;
  padding: 18px;
  border: 1px solid rgba(244, 182, 74, 0.22);
  background: linear-gradient(160deg, rgba(244, 182, 74, 0.1), rgba(11, 30, 52, 0.72));
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.stat-box:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(244, 182, 74, 0.3);
}

.stat-box h3 {
  font-family: "Rajdhani", "Sora", sans-serif;
  font-size: 32px;
  color: #ffdb9b;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-box p {
  color: #d6e2f4;
  font-size: 13px;
}

.cyber-divider {
  width: min(1240px, 100%);
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(72, 215, 255, 0.8), rgba(108, 255, 149, 0.72), transparent);
}

.partners {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
  padding: 28px 8%;
  color: rgba(199, 219, 245, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 16, 30, 0.55);
}

.partners span {
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.partners span:hover {
  color: #ecf9ff;
  text-shadow: 0 0 14px rgba(72, 215, 255, 0.62);
}

.operations-hub {
  display: grid;
  gap: 32px;
}

.hub-copy h2 {
  max-width: 13ch;
}

.hub-dashboard {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(72, 215, 255, 0.18);
  background: linear-gradient(180deg, rgba(8, 21, 38, 0.92), rgba(7, 17, 30, 0.88));
  box-shadow: 0 28px 80px rgba(4, 14, 28, 0.45), 0 0 60px rgba(72, 215, 255, 0.12);
  padding: 24px;
}

.hub-dashboard::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(108, 255, 149, 0.12), transparent 20%),
    radial-gradient(circle at 80% 16%, rgba(72, 215, 255, 0.12), transparent 24%),
    linear-gradient(120deg, transparent 0%, rgba(72, 215, 255, 0.06) 50%, transparent 100%);
  pointer-events: none;
}

.hub-topbar {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.hub-pill,
.hub-status {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hub-pill {
  border: 1px solid rgba(72, 215, 255, 0.24);
  color: #d7f2ff;
  background: rgba(72, 215, 255, 0.1);
}

.hub-status {
  border: 1px solid rgba(108, 255, 149, 0.24);
  color: #dbffe6;
  background: rgba(108, 255, 149, 0.08);
}

.hub-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.hub-panel {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  border-radius: 22px;
  border: 1px solid rgba(72, 215, 255, 0.16);
  background: linear-gradient(160deg, rgba(12, 31, 56, 0.94), rgba(9, 22, 38, 0.78));
  padding: 22px;
}

.hub-panel-primary {
  min-height: 290px;
}

.hub-kicker {
  color: #8fafd2;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hub-panel h3 {
  font-family: "Rajdhani", "Sora", sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.95;
  margin-bottom: 10px;
  color: #f4fbff;
}

.hub-panel p {
  color: #adc1de;
}

.hub-bars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 12px;
  height: 120px;
  margin-top: 24px;
}

.hub-bars span {
  height: var(--bar);
  border-radius: 14px 14px 4px 4px;
  background: linear-gradient(180deg, rgba(108, 255, 149, 0.92), rgba(72, 215, 255, 0.3));
  box-shadow: 0 0 25px rgba(72, 215, 255, 0.18);
}

.hub-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.hub-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hub-list li:last-child {
  border-bottom: 0;
}

.hub-list strong {
  color: #f4fbff;
  font-weight: 600;
}

.hub-list span {
  color: #8ddcaf;
  text-align: right;
}

.alerts strong {
  min-width: 68px;
  color: #ffdb9b;
}

.hub-list.alerts li {
  display: grid;
  grid-template-columns: 72px 20px minmax(0, 1fr);
  align-items: center;
  justify-content: initial;
  gap: 10px;
}

.hub-list.alerts .event-value {
  display: inline-block;
  width: 100%;
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

.hub-list.alerts .event-trend {
  justify-self: center;
}

.hub-list.alerts li > span:last-child {
  color: #bfd0ea;
  text-align: left;
  justify-self: start;
}

.hub-map {
  min-height: 250px;
}

.map-nodes {
  position: relative;
  min-height: 160px;
  margin-top: 12px;
}

.map-nodes::before,
.map-nodes::after {
  content: "";
  position: absolute;
  inset: 50% 12% auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(72, 215, 255, 0.7), transparent);
}

.map-nodes::after {
  inset: 16% 50% 16% auto;
  width: 1px;
  height: auto;
  background: linear-gradient(180deg, transparent, rgba(108, 255, 149, 0.65), transparent);
}

.node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(72, 215, 255, 0.2);
  background: rgba(10, 26, 45, 0.88);
  color: #e5f4ff;
  font-size: 13px;
  box-shadow: 0 0 24px rgba(72, 215, 255, 0.14);
}

.node-a {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.node-b {
  top: 56px;
  left: 0;
}

.node-c {
  top: 56px;
  right: 0;
}

.node-d {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.section {
  padding: 104px 8%;
}

.section h2 {
  font-family: "Rajdhani", "Sora", sans-serif;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.02;
  margin-bottom: 24px;
  max-width: 16ch;
  text-transform: uppercase;
}

.two-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

.two-columns p,
.wide-text,
.contact p {
  color: var(--text-muted);
  font-size: 18px;
}

.dark-section {
  background:
    linear-gradient(180deg, rgba(7, 19, 35, 0.64), rgba(6, 16, 29, 0.82)),
    radial-gradient(circle at 18% 20%, rgba(72, 215, 255, 0.16), transparent 40%);
}

.cards {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border-radius: 22px;
  border: 1px solid rgba(72, 215, 255, 0.2);
  background: linear-gradient(165deg, rgba(13, 33, 58, 0.88), rgba(8, 20, 36, 0.7));
  padding: 24px;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
  cursor: pointer;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(72, 215, 255, 0.8), transparent);
  animation: scannerTop 2s linear infinite;
}

.card::after {
  content: "";
  position: absolute;
  left: -40%;
  top: -2px;
  width: 70%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-cyan), transparent);
  animation: cardScan 4s linear infinite;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(108, 255, 149, 0.75);
  box-shadow: 0 20px 50px rgba(72, 215, 255, 0.25), 0 0 50px rgba(108, 255, 149, 0.3);
}

.card h3 {
  font-family: "Rajdhani", "Sora", sans-serif;
  font-size: 27px;
  line-height: 1.02;
  margin-bottom: 12px;
}

.card p {
  color: #bfd0ea;
}

.audience-section {
  background:
    linear-gradient(180deg, rgba(8, 19, 35, 0.42), rgba(8, 18, 31, 0.12)),
    radial-gradient(circle at 75% 20%, rgba(72, 215, 255, 0.12), transparent 34%);
}

.audience-grid,
.process-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.audience-card,
.process-step {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(72, 215, 255, 0.16);
  background: linear-gradient(160deg, rgba(12, 31, 56, 0.9), rgba(8, 19, 34, 0.76));
}

.audience-card::before,
.process-step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(72, 215, 255, 0.08), transparent 40%);
  pointer-events: none;
}

.audience-card h3,
.process-step h3 {
  font-family: "Rajdhani", "Sora", sans-serif;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 12px;
}

.audience-card p,
.process-step p {
  color: #bfd0ea;
}

.process-section {
  background:
    linear-gradient(180deg, rgba(6, 15, 27, 0.58), rgba(8, 17, 30, 0.78)),
    radial-gradient(circle at 15% 25%, rgba(108, 255, 149, 0.1), transparent 28%);
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 14px;
  border: 1px solid rgba(108, 255, 149, 0.3);
  background: rgba(108, 255, 149, 0.08);
  color: #dfffe8;
  font-family: "Rajdhani", "Sora", sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.security {
  background:
    linear-gradient(180deg, rgba(6, 15, 28, 0.82), rgba(5, 12, 22, 0.92)),
    radial-gradient(circle at 80% 20%, rgba(72, 215, 255, 0.2), transparent 42%),
    radial-gradient(circle at 20% 75%, rgba(108, 255, 149, 0.16), transparent 48%);
}

.wide-text {
  max-width: 920px;
  margin-bottom: 30px;
}

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

.security-list span {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(244, 182, 74, 0.34);
  background: rgba(244, 182, 74, 0.1);
  color: #ffe8c0;
  font-size: 14px;
}

.contact {
  background:
    radial-gradient(circle at 18% 30%, rgba(72, 215, 255, 0.12), transparent 34%),
    radial-gradient(circle at 82% 70%, rgba(108, 255, 149, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(8, 20, 35, 0.88), rgba(5, 13, 24, 0.92));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact h2 {
  max-width: 12ch;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 26px;
  align-items: stretch;
}

.contact-copy,
.contact-panel {
  position: relative;
}

.contact-lead {
  max-width: 62ch;
  color: #c4d6ef;
  font-size: 18px;
  margin-bottom: 26px;
}

.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

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

.contact-card {
  min-height: 180px;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(72, 215, 255, 0.18);
  background: linear-gradient(165deg, rgba(12, 32, 58, 0.92), rgba(9, 22, 38, 0.82));
  box-shadow: 0 18px 44px rgba(5, 14, 27, 0.34);
}

.contact-card-wide {
  grid-column: 1 / -1;
  min-height: auto;
}

.contact-card-label {
  margin-bottom: 10px;
  color: var(--brand-lime);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-card h3 {
  font-family: "Rajdhani", "Sora", sans-serif;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 12px;
}

.contact-card p {
  color: #bfd0ea;
}

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

.event-value {
  transition: color 0.4s ease, text-shadow 0.4s ease;
}

.event-trend {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-left: 0;
  line-height: 18px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  vertical-align: middle;
  color: #8ea2c0;
}

.event-trend.trend-up {
  color: #6cff95;
  animation: trendPulse 0.6s ease-out;
}

.event-trend.trend-down {
  color: #ff6b6b;
  animation: trendPulse 0.6s ease-out;
}

.event-trend.trend-stable {
  color: #8ea2c0;
}

@keyframes trendPulse {
  0% {
    transform: scale(1.3);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.footer {
  padding: 30px 8%;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: #050c17;
  color: #8ea2c0;
  font-size: 14px;
  text-align: center;
}

.lab-note {
  margin-top: 6px;
  opacity: 0.5;
}

@keyframes energyFlow {
  from {
    transform: translateX(-12%);
  }

  to {
    transform: translateX(12%);
  }
}

@keyframes pulseDot {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.45);
    opacity: 0.72;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes floatPanel {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes cardScan {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(260%);
  }
}

@keyframes scannerTop {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}

@keyframes energyLinePulse {
  0% {
    opacity: 0.5;
    box-shadow: 0 0 22px rgba(72, 215, 255, 0.45);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 35px rgba(72, 215, 255, 0.75), 0 0 55px rgba(108, 255, 149, 0.45);
  }
  100% {
    opacity: 0.5;
    box-shadow: 0 0 22px rgba(72, 215, 255, 0.45);
  }
}

@keyframes gridPulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

@keyframes energyWave {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.02);
  }
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
}

@media (max-width: 1140px) {
  .header {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: auto;
  }

  .logo-img {
    height: 76px;
  }

  .nav-float {
    flex-direction: row;
    gap: 8px;
    align-items: center;
    padding: 14px 16px;
    right: 16px;
    bottom: 16px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 34px;
  }

  .hub-grid,
  .cards,
  .audience-grid,
  .process-grid,
  .contact-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 950px) {
  .header {
    width: 100%;
    margin: 8px 0 6px;
    min-height: 0;
    padding: 0 14px;
  }

  .logo-wrap {
    width: 100%;
    justify-content: center;
    padding: 0;
  }

  .logo-img {
    height: 68px;
  }

  .hero {
    min-height: auto;
    padding-top: 18px;
  }

  .two-columns,
  .grid-panel,
  .stats-grid,
  .cards,
  .audience-grid,
  .process-grid,
  .hub-grid,
  .contact-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-highlights {
    flex-direction: column;
    align-items: flex-start;
  }

  .hub-dashboard {
    padding: 18px;
  }

  .hub-list li {
    flex-direction: column;
    align-items: flex-start;
  }

  .hub-list span {
    text-align: left;
  }

  .contact h2 {
    max-width: none;
  }

  .contact-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .section {
    padding: 84px 0;
  }

  .section h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .hero h1 {
    font-size: clamp(38px, 13vw, 60px);
  }

  .hero::before {
    bottom: 28px;
  }
}