:root {
  --bg: #f5f8fd;
  --bg-alt: #eef3fb;
  --surface: #ffffff;
  --surface-soft: #f4f7fc;
  --text: #1a2b44;
  --muted: #5f7190;
  --primary: #1976d2;
  --primary-2: #36b6ff;
  --ring: rgba(54, 182, 255, 0.35);
  --border: rgba(24, 57, 103, 0.14);
  --success: #159a63;
  --accent-warm: #f5a623;
  --radius: 18px;
  --shadow: 0 18px 45px rgba(15, 43, 84, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", system-ui, -apple-system, sans-serif;
  background: linear-gradient(180deg, #f9fbff, #f1f5fc 58%, #f8fbff);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  z-index: 1200;
  background: linear-gradient(90deg, var(--primary), var(--primary-2), var(--accent-warm));
  box-shadow: 0 0 15px rgba(54, 182, 255, 0.45);
}

a {
  color: inherit;
  text-decoration: none;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
  z-index: -2;
}

.orb-1 {
  width: 460px;
  height: 460px;
  left: -120px;
  top: -70px;
  background: rgba(99, 172, 255, 0.16);
  animation: driftA 18s ease-in-out infinite;
}

.orb-2 {
  width: 340px;
  height: 340px;
  right: -60px;
  top: 220px;
  background: rgba(86, 182, 255, 0.14);
  animation: driftB 20s ease-in-out infinite;
}

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  background-image: linear-gradient(rgba(25, 74, 138, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 74, 138, 0.04) 1px, transparent 1px);
  background-size: 45px 45px;
  mask-image: radial-gradient(circle at 50% 30%, black 0, transparent 80%);
}

.container {
  width: min(1140px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.top-meta-bar {
  background: linear-gradient(90deg, #0f2546, #183c72);
  color: #e8f2ff;
  font-size: 0.8rem;
}

.meta-wrap {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.meta-wrap p {
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.meta-wrap div {
  display: flex;
  gap: 1rem;
}

.meta-wrap span {
  position: relative;
  opacity: 0.95;
}

.meta-wrap span + span::before {
  content: "";
  position: absolute;
  left: -0.52rem;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #8cc7ff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(24, 57, 103, 0.1);
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 25px rgba(18, 44, 80, 0.06);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--primary), var(--primary-2));
  color: #fff;
  box-shadow: 0 10px 20px rgba(25, 118, 210, 0.28);
}

.logo-text {
  letter-spacing: 0.02em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.main-nav a {
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--text);
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.78rem 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(130deg, var(--primary), #2087e8 56%, var(--primary-2));
  box-shadow: 0 12px 26px rgba(25, 118, 210, 0.25);
}

.btn-ghost {
  border-color: var(--border);
  color: var(--primary);
  background: rgba(25, 118, 210, 0.08);
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(25, 118, 210, 0.04);
}

.menu-btn span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--text);
}

.section {
  padding: 4.3rem 0;
}

.video-banner {
  position: relative;
  min-height: clamp(430px, 68vh, 690px);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  box-shadow: inset 0 -60px 120px rgba(4, 18, 36, 0.25);
  --spot-x: 50%;
  --spot-y: 50%;
}

.banner-image-layer {
  position: absolute;
  inset: 0;
}

.banner-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.9s ease, transform 4.8s ease;
}

.banner-image.active {
  opacity: 1;
  transform: scale(1);
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 16, 31, 0.82) 0%, rgba(7, 16, 31, 0.5) 42%, rgba(7, 16, 31, 0.2) 100%),
    linear-gradient(180deg, rgba(7, 16, 31, 0.04), rgba(7, 16, 31, 0.36));
}

.banner-spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(98, 188, 255, 0.3), rgba(7, 16, 31, 0) 34%);
  mix-blend-mode: screen;
}

.banner-content {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: 1.1rem;
  align-items: center;
  color: #fff;
  padding-top: 3.6rem;
  padding-bottom: 3.6rem;
}

.banner-copy {
  max-width: 650px;
}

.banner-kicker {
  margin: 0 0 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.77rem;
  color: #bde7ff;
  font-weight: 600;
}

.banner-content h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.1rem, 6vw, 4rem);
  line-height: 1.05;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
}

.banner-content p {
  margin: 1rem 0 1.2rem;
  font-size: 1.05rem;
  color: rgba(240, 247, 255, 0.92);
  max-width: 60ch;
}

.banner-badges {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.banner-badges span {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 0.36rem 0.72rem;
  font-size: 0.79rem;
  color: #f4f8ff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

.mobile-badges {
  display: none;
}

.hero-live-widget {
  border: 1px solid rgba(186, 224, 255, 0.42);
  border-radius: 14px;
  background: rgba(6, 18, 38, 0.6);
  backdrop-filter: blur(10px);
  padding: 0.9rem;
  box-shadow: 0 14px 30px rgba(4, 14, 31, 0.28);
}

.widget-health-row {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 0.65rem;
  align-items: center;
  margin-bottom: 0.65rem;
}

.health-ring {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: conic-gradient(#67ddff 0 348deg, rgba(255, 255, 255, 0.15) 348deg 360deg);
  display: grid;
  place-items: center;
  position: relative;
}

.health-ring::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: inherit;
  background: rgba(8, 21, 43, 0.92);
}

.health-ring span {
  position: relative;
  z-index: 1;
  font-size: 1.08rem;
  font-weight: 700;
  color: #e8f7ff;
}

.health-title {
  margin: 0 0 0.2rem;
  color: #eaf5ff;
  font-size: 0.85rem;
  font-weight: 700;
}

.health-sub {
  margin: 0;
  color: #c5dbf2;
  font-size: 0.75rem;
}

.widget-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.6rem;
}

.widget-head p {
  margin: 0;
  color: #e7f5ff;
  font-size: 0.92rem;
  font-weight: 700;
}

.live-dot {
  font-size: 0.72rem;
  border-radius: 999px;
  padding: 0.16rem 0.52rem;
  color: #e8fff4;
  background: rgba(26, 183, 114, 0.28);
  border: 1px solid rgba(111, 240, 181, 0.55);
}

.widget-sparkline {
  height: 72px;
  margin-bottom: 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(186, 224, 255, 0.24);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.25rem;
}

.widget-sparkline svg {
  width: 100%;
  height: 100%;
}

.widget-sparkline polyline {
  fill: none;
  stroke: #76d8ff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: sparklineFlow 3.6s ease-out infinite;
}

.widget-insights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin-bottom: 0.72rem;
}

.incident-heatmap-card,
.geo-site-card {
  border: 1px solid rgba(186, 224, 255, 0.24);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.5rem;
}

.mini-title {
  margin: 0 0 0.38rem;
  color: #d7eaff;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}

.incident-heatmap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.26rem;
}

.heat-cell {
  border-radius: 5px;
  height: 17px;
  transition: background 0.35s ease, transform 0.35s ease;
}

.heat-cell.lv-1 {
  background: rgba(111, 240, 181, 0.45);
}

.heat-cell.lv-2 {
  background: rgba(255, 213, 111, 0.55);
}

.heat-cell.lv-3 {
  background: rgba(255, 127, 127, 0.6);
}

.geo-map-mock {
  position: relative;
  border-radius: 8px;
  height: 62px;
  background:
    radial-gradient(circle at 22% 40%, rgba(110, 176, 255, 0.28), rgba(110, 176, 255, 0) 35%),
    radial-gradient(circle at 72% 56%, rgba(110, 176, 255, 0.22), rgba(110, 176, 255, 0) 35%),
    rgba(16, 35, 62, 0.75);
  border: 1px solid rgba(170, 216, 255, 0.24);
  margin-bottom: 0.45rem;
}

.site-node {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.site-node.online {
  background: #6ff0b5;
  box-shadow: 0 0 0 0 rgba(111, 240, 181, 0.45);
  animation: nodePulseGreen 2.1s ease-in-out infinite;
}

.site-node.warning {
  background: #ffd56f;
  box-shadow: 0 0 0 0 rgba(255, 213, 111, 0.45);
  animation: nodePulseWarn 2.1s ease-in-out infinite;
}

#siteNodeWest {
  left: 18%;
  top: 38%;
}

#siteNodeCentral {
  left: 42%;
  top: 52%;
}

#siteNodeEast {
  left: 73%;
  top: 42%;
}

#siteNodeSouth {
  left: 58%;
  top: 72%;
}

.site-status-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.26rem;
}

.site-status-list li {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: #d5e8fb;
  font-size: 0.72rem;
}

.site-pill {
  width: 7px;
  height: 7px;
  border-radius: 999px;
}

.site-pill.online {
  background: #6ff0b5;
}

.site-pill.warning {
  background: #ffd56f;
}

.widget-events {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.48rem;
}

.widget-events li {
  color: #dcedff;
  font-size: 0.82rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.42rem;
}

.event-bullet {
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.event-info {
  background: #77ddff;
  box-shadow: 0 0 0 5px rgba(119, 221, 255, 0.16);
}

.event-warn {
  background: #ffd56f;
  box-shadow: 0 0 0 5px rgba(255, 213, 111, 0.16);
}

.event-critical {
  background: #ff7f7f;
  box-shadow: 0 0 0 5px rgba(255, 127, 127, 0.16);
}

.event-time {
  font-size: 0.72rem;
  color: #b5cee7;
}

.widget-kpis {
  position: relative;
  z-index: 1;
  margin-top: -1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.widget-kpis article {
  border: 1px solid rgba(24, 57, 103, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  padding: 0.7rem 0.75rem;
}

.kpi-value {
  margin: 0 0 0.14rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: #174986;
}

.widget-kpis article p:last-child {
  margin: 0;
  font-size: 0.8rem;
  color: #56719a;
}

.innovation-strip {
  padding: 0.9rem 0;
  background: linear-gradient(90deg, rgba(15, 37, 70, 0.98), rgba(25, 63, 115, 0.96));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.innovation-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
}

.innovation-label {
  margin: 0;
  color: #eef6ff;
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 700;
}

.innovation-track {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.innovation-track span {
  border-radius: 999px;
  border: 1px solid rgba(171, 220, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
  color: #dceeff;
  padding: 0.34rem 0.66rem;
  font-size: 0.78rem;
}

.innovation-lab {
  position: relative;
}

.future-grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.future-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem;
  background: linear-gradient(170deg, #f8fbff, #eef5ff);
  box-shadow: 0 10px 28px rgba(14, 44, 84, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  transform-style: preserve-3d;
}

.future-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(13, 40, 76, 0.14);
}

.future-kicker {
  margin: 0 0 0.45rem;
  color: #2075ca;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  font-weight: 700;
}

.future-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.06rem;
}

.future-card p {
  margin: 0;
  color: #607391;
}

.ai-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1100;
  border-radius: 999px;
  border: 1px solid rgba(126, 201, 255, 0.52);
  background: linear-gradient(130deg, #0f325e, #1a4b8a);
  color: #eff8ff;
  padding: 0.56rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 16px 30px rgba(9, 29, 58, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.ai-fab-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #74e6ff;
  box-shadow: 0 0 0 0 rgba(116, 230, 255, 0.45);
  animation: aiPulse 1.8s ease-in-out infinite;
}

.top-slider {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.section-alt {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #f0f5fc, #edf2fa);
}

.hero {
  padding-top: 2.4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.eyebrow {
  margin: 0 0 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.76rem;
  color: var(--primary);
  font-weight: 600;
}

h1 {
  font-size: clamp(2.1rem, 5vw, 3.55rem);
  line-height: 1.08;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.lead {
  max-width: 64ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  margin: 1.6rem 0 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-points {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--muted);
  display: grid;
  gap: 0.48rem;
}

.hero-points li::before {
  content: "✓";
  color: var(--primary-2);
  margin-right: 0.5rem;
}

.hero-panel {
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #ffffff, #f6f9ff);
  box-shadow: var(--shadow);
}

.panel-title {
  color: #1d3963;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.pulse-bars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.35rem;
  margin-bottom: 0.95rem;
}

.pulse-bars span {
  height: 36px;
  border-radius: 6px;
  background: linear-gradient(180deg, var(--primary-2), var(--primary));
  opacity: 0.68;
  transform-origin: bottom center;
  animation: pulse 1.5s ease-in-out infinite;
}

.pulse-bars span:nth-child(2) { animation-delay: 0.1s; }
.pulse-bars span:nth-child(3) { animation-delay: 0.2s; }
.pulse-bars span:nth-child(4) { animation-delay: 0.3s; }
.pulse-bars span:nth-child(5) { animation-delay: 0.4s; }

.kpi-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.kpi-list article {
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #ffffff;
  padding: 0.8rem;
}

.metric {
  margin: 0;
  font-size: 1.36rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.label {
  margin: 0.2rem 0 0;
  font-size: 0.86rem;
  color: var(--muted);
}

.card-note {
  margin: 0.9rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.section-head h2 {
  font-size: clamp(1.6rem, 3.8vw, 2.45rem);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.section-head p {
  color: var(--muted);
  max-width: 68ch;
}

.center-head {
  text-align: center;
}

.center-head p {
  margin-inline: auto;
}

.trust-strip {
  margin-top: -1rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.trust-grid article {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem;
}

.trust-grid h3 {
  margin: 0 0 0.3rem;
  font-size: 1.01rem;
}

.trust-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.brand-dna-grid {
  margin-top: 1.7rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.dna-card {
  padding: 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #fff, #f7faff);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.dna-card:hover {
  transform: translateY(-4px);
  border-color: rgba(86, 241, 255, 0.44);
  box-shadow: 0 12px 24px rgba(6, 12, 26, 0.35);
}

.dna-tag {
  display: inline-flex;
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #08152b;
  background: linear-gradient(140deg, var(--primary), var(--primary-2));
  margin-bottom: 0.65rem;
}

.dna-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.03rem;
}

.dna-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.blend-banner {
  margin-top: 1rem;
  border-radius: 14px;
  border: 1px solid rgba(25, 118, 210, 0.28);
  background: rgba(25, 118, 210, 0.08);
  padding: 0.86rem 1rem;
}

.blend-banner p {
  margin: 0;
  color: #21436c;
}

.cards {
  margin-top: 1.7rem;
  display: grid;
  gap: 1rem;
}

.cards.three {
  grid-template-columns: repeat(3, 1fr);
}

.cards.four {
  grid-template-columns: repeat(4, 1fr);
}

.cards.five {
  grid-template-columns: repeat(5, 1fr);
}

.product-tabs {
  margin-top: 1.6rem;
}

.product-tab-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--border);
  gap: 0.35rem;
  margin-bottom: 0.9rem;
}

.product-tab-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 500;
  padding: 0.8rem 0.4rem;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.product-tab-btn.active {
  color: var(--text);
  border-bottom-color: var(--accent-warm);
}

.product-tab-panel {
  display: none;
  grid-template-columns: 0.95fr 1.35fr;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 43, 84, 0.1);
}

.product-tab-panel.active {
  display: grid;
}

.product-panel-copy {
  padding: 1.35rem;
  background: linear-gradient(170deg, #34445f, #44597b);
  color: #f4f8ff;
  display: grid;
  align-content: center;
}

.product-panel-copy .eyebrow {
  color: #a8dcff;
}

.product-panel-copy h3 {
  margin: 0 0 0.7rem;
}

.product-panel-copy p {
  margin-bottom: 1rem;
  color: #e0e9f7;
}

.product-panel-copy .btn-primary {
  justify-self: start;
}

.product-panel-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.pillar-cards .card h3 {
  font-size: 1rem;
}

.card {
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 22px rgba(14, 44, 84, 0.04);
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(54, 182, 255, 0.45);
  box-shadow: 0 16px 30px rgba(12, 42, 82, 0.12);
}

.card h3 {
  margin-bottom: 0.54rem;
  font-size: 1.08rem;
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 0.7rem;
  color: var(--primary);
  font-weight: 600;
}

.split-grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.glass-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #f4f8ff);
  padding: 1.2rem;
}

.glass-card h3 {
  margin-bottom: 0.75rem;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
}

.check-list li::before {
  content: "•";
  color: var(--primary-2);
  margin-right: 0.48rem;
}

.integration-list {
  margin-top: 1.45rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.integration-list span {
  border-radius: 999px;
  border: 1px solid rgba(25, 118, 210, 0.24);
  color: #235487;
  background: rgba(25, 118, 210, 0.08);
  padding: 0.55rem 0.9rem;
  font-weight: 500;
}

.image-slider {
  position: relative;
  margin-top: 1.7rem;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
}

.slider-track {
  display: flex;
  transition: transform 0.65s ease;
  will-change: transform;
}

.slide {
  position: relative;
  min-width: 100%;
  margin: 0;
}

.slide img {
  width: 100%;
  height: clamp(240px, 45vw, 480px);
  object-fit: cover;
  display: block;
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1);
  transform-origin: center center;
  will-change: transform;
}

.slide.active img {
  animation: slideZoomPan 4.2s ease-out forwards;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 29, 58, 0.08), rgba(10, 29, 58, 0.62));
}

.slide-caption {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1rem;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  background: rgba(6, 12, 26, 0.6);
  backdrop-filter: blur(8px);
  padding: 0.72rem 0.85rem;
}

.slide-brand {
  margin: 0 0 0.2rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-2);
}

.slide-caption h3 {
  margin: 0;
  font-size: clamp(0.93rem, 2.2vw, 1.15rem);
  color: #eef6ff;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(6, 12, 26, 0.62);
  color: #f4f8ff;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease, transform 0.2s ease;
}

.slider-btn:hover {
  background: rgba(79, 140, 255, 0.55);
  transform: translateY(-50%) scale(1.04);
}

.slider-btn.prev {
  left: 0.8rem;
}

.slider-btn.next {
  right: 0.8rem;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 0.9rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  z-index: 2;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.dot.active {
  background: var(--primary-2);
  transform: scale(1.2);
}

.impact-grid {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
}

.impact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  box-shadow: 0 10px 24px rgba(12, 42, 82, 0.06);
}

.impact-number {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 0.25rem;
  color: var(--primary);
}

.impact-card p {
  margin: 0;
  color: var(--muted);
}

.results-grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.result-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 1.2rem;
}

.result-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.06rem;
}

.result-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.timeline {
  margin: 1.7rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.timeline li {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: #fff;
  padding: 1rem;
}

.timeline li::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 999px;
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  background: linear-gradient(140deg, var(--primary), var(--primary-2));
  box-shadow: 0 0 0 5px rgba(54, 182, 255, 0.16);
}

.timeline h3 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.timeline p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.cta-wrap {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 1.3rem;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(170deg, #e9f3ff, #f5f9ff 68%);
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 0.72rem;
}

.contact-form label {
  display: grid;
  gap: 0.33rem;
  color: #29496f;
  font-weight: 500;
  font-size: 0.93rem;
}

.contact-form input {
  border-radius: 11px;
  border: 1px solid rgba(24, 57, 103, 0.22);
  background: #fff;
  color: #1c2f49;
  padding: 0.72rem;
  outline: none;
}

.contact-form input:focus-visible {
  border-color: var(--primary-2);
  box-shadow: 0 0 0 3px var(--ring);
}

.form-status {
  margin: 0;
  min-height: 1.35rem;
  color: var(--success);
  font-size: 0.92rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #fff;
  padding: 1.2rem 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  color: var(--muted);
  font-size: 0.93rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes pulse {
  0%, 100% { transform: scaleY(0.45); }
  50% { transform: scaleY(1); }
}

@keyframes driftA {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, 30px); }
}

@keyframes driftB {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-40px, -20px); }
}

@keyframes slideZoomPan {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.06) translateX(1.1%);
  }
}

@keyframes sparklineFlow {
  0% {
    stroke-dashoffset: 400;
  }
  35% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -350;
  }
}

@keyframes aiPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(116, 230, 255, 0.45);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(116, 230, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(116, 230, 255, 0);
  }
}

@keyframes nodePulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(111, 240, 181, 0.45); }
  70% { box-shadow: 0 0 0 8px rgba(111, 240, 181, 0); }
  100% { box-shadow: 0 0 0 0 rgba(111, 240, 181, 0); }
}

@keyframes nodePulseWarn {
  0% { box-shadow: 0 0 0 0 rgba(255, 213, 111, 0.45); }
  70% { box-shadow: 0 0 0 8px rgba(255, 213, 111, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 213, 111, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .slide.active img {
    animation: none;
  }
}

@media (max-width: 980px) {
  .banner-content {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .hero-live-widget {
    max-width: 520px;
  }

  .widget-kpis {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0.9rem;
  }

  .widget-insights {
    grid-template-columns: 1fr;
  }

  .future-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid,
  .cta-wrap {
    grid-template-columns: 1fr;
  }

  .cards.three,
  .cards.four,
  .cards.five,
  .product-tab-list,
  .results-grid,
  .impact-grid,
  .timeline,
  .split-grid,
  .brand-dna-grid,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-tab-panel,
  .product-tab-panel.active {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .meta-wrap {
    min-height: 32px;
  }

  .meta-wrap p {
    display: none;
  }

  .meta-wrap div {
    width: 100%;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.73rem;
  }

  .innovation-wrap {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .innovation-track {
    gap: 0.42rem;
  }

  .banner-copy .banner-badges {
    display: none;
  }

  .mobile-badges {
    display: flex;
    margin-top: 0.8rem;
  }

  .hero-live-widget {
    padding: 0.75rem;
  }

  .geo-map-mock {
    height: 54px;
  }

  .widget-kpis {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }

  .future-grid {
    grid-template-columns: 1fr;
  }

  .kpi-value {
    font-size: 1.08rem;
  }

  .ai-fab {
    right: 0.7rem;
    bottom: 0.7rem;
    font-size: 0.75rem;
    padding: 0.5rem 0.7rem;
  }

  .menu-btn {
    display: inline-block;
  }

  .nav-cta {
    display: none;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.85rem 1.25rem 1rem;
  }

  .main-nav.open {
    display: flex;
  }

  .cards.three,
  .cards.four,
  .cards.five,
  .product-tab-list,
  .results-grid,
  .impact-grid,
  .timeline,
  .split-grid,
  .kpi-list,
  .brand-dna-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .product-panel-media img {
    min-height: 240px;
  }

  .slider-btn {
    width: 38px;
    height: 38px;
  }

  .slide-caption {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .section {
    padding: 3.3rem 0;
  }

  .video-banner {
    min-height: 420px;
  }

  .banner-content {
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
  }
}
