:root {
  --bg: #070e1b;
  --bg-soft: #0b1729;
  --surface: #10243d;
  --surface-strong: #15345b;
  --line: #2d4f78;
  --text: #ecf4ff;
  --text-muted: #b6c8e2;
  --accent: #3ec5ff;
  --accent-strong: #1aa2db;
  --ok: #70f2c6;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --radius: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 15% -5%, #16406b 0%, transparent 40%),
    radial-gradient(circle at 88% 0%, #12314f 0%, transparent 35%), var(--bg);
  line-height: 1.6;
  letter-spacing: 0.01em;
}

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(99, 136, 183, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 136, 183, 0.12) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 20%, black 20%, transparent 80%);
  z-index: -1;
}

.edge-ai {
  position: fixed;
  top: 120px;
  bottom: 36px;
  width: 168px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 16px;
  pointer-events: none;
  z-index: 1;
}

.edge-ai-left {
  left: max(14px, calc((100vw - 1120px) / 2 - 188px));
}

.edge-ai-right {
  right: max(14px, calc((100vw - 1120px) / 2 - 188px));
}

.ai-symbol-card {
  margin: 0;
  padding: 12px 12px 10px;
  border-radius: 14px;
  border: 1px solid rgba(95, 148, 205, 0.34);
  background: linear-gradient(180deg, rgba(8, 31, 53, 0.8), rgba(5, 20, 35, 0.75));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.26);
  opacity: 0.88;
  animation: floatDrift 8s ease-in-out infinite;
  transition: border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
  --parallax-x: 0px;
  --parallax-y: 0px;
  overflow: hidden;
}

.ai-symbol-card:nth-child(2) {
  animation-delay: 1.6s;
}

.ai-symbol-card:nth-child(3) {
  animation-delay: 3.2s;
}

.ai-symbol-card::before {
  content: "";
  position: absolute;
  inset: -30% 20%;
  background: radial-gradient(circle, rgba(52, 183, 255, 0.26), transparent 70%);
  animation: ambientSweep 7.5s ease-in-out infinite;
  pointer-events: none;
}

.ai-symbol-card.is-active {
  border-color: rgba(105, 193, 255, 0.85);
  box-shadow: 0 0 30px rgba(38, 166, 255, 0.4), 0 16px 34px rgba(0, 0, 0, 0.3);
  background: linear-gradient(180deg, rgba(10, 42, 72, 0.88), rgba(6, 24, 42, 0.84));
}

.ai-symbol-media {
  position: relative;
  width: 62px;
  height: 62px;
  margin-bottom: 8px;
  transform: translate3d(var(--parallax-x), var(--parallax-y), 0);
  transition: transform 0.25s ease;
}

.ai-symbol-media img {
  display: block;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 8px rgba(45, 185, 255, 0.35));
  animation: symbolBreath 3.2s ease-in-out infinite;
}

.ai-symbol-pulse {
  position: absolute;
  inset: -7px;
  border-radius: 14px;
  border: 1px solid rgba(91, 186, 255, 0.5);
  opacity: 0.3;
  animation: pulseRing 2.8s ease-out infinite;
}

.ai-symbol-scan {
  position: absolute;
  left: 4px;
  right: 4px;
  top: 8px;
  height: 14px;
  border-radius: 9px;
  background: linear-gradient(90deg, rgba(43, 172, 255, 0), rgba(93, 228, 255, 0.88), rgba(43, 172, 255, 0));
  filter: blur(0.6px);
  mix-blend-mode: screen;
  opacity: 0;
  animation: scanLine 3.6s linear infinite;
}

.ai-symbol-card.is-active .ai-symbol-media img {
  transform: scale(1.08);
  filter: drop-shadow(0 0 10px rgba(118, 241, 255, 0.82));
}

.ai-symbol-card.is-active .ai-symbol-pulse {
  animation-duration: 1.7s;
  opacity: 0.55;
}

.ai-symbol-card figcaption {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(181, 213, 245, 0.95);
  font-weight: 700;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.ai-symbol-card.is-active figcaption {
  color: #d8f7ff;
  text-shadow: 0 0 10px rgba(90, 206, 255, 0.55);
}

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

@keyframes ambientSweep {
  0%,
  100% {
    transform: translateX(-20%) translateY(-6%);
    opacity: 0.16;
  }
  50% {
    transform: translateX(24%) translateY(8%);
    opacity: 0.42;
  }
}

@keyframes symbolBreath {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@keyframes pulseRing {
  0% {
    transform: scale(0.94);
    opacity: 0.56;
  }
  70% {
    transform: scale(1.08);
    opacity: 0.12;
  }
  100% {
    transform: scale(1.12);
    opacity: 0;
  }
}

@keyframes scanLine {
  0% {
    transform: translateY(0px);
    opacity: 0;
  }
  8% {
    opacity: 0.72;
  }
  60% {
    transform: translateY(34px);
    opacity: 0.55;
  }
  100% {
    transform: translateY(42px);
    opacity: 0;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(17, 37, 63, 0.3) 0%, rgba(6, 14, 25, 0) 100%);
  border-top: 1px solid rgba(80, 123, 171, 0.35);
  border-bottom: 1px solid rgba(80, 123, 171, 0.35);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  background: rgba(7, 14, 27, 0.68);
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 0 16px;
  border: 1px solid rgba(86, 132, 184, 0.35);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(9, 24, 41, 0.88), rgba(7, 18, 33, 0.82));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.brand-mark {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ok), var(--accent));
  box-shadow: 0 0 14px rgba(62, 197, 255, 0.8);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.site-nav a {
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.site-nav a:hover {
  color: var(--text);
  border-color: rgba(93, 143, 198, 0.42);
  background: rgba(16, 40, 67, 0.55);
}

.hero {
  padding-top: 92px;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.95fr;
  gap: 34px;
  align-items: stretch;
}

.badge,
.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--ok);
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 4.4vw, 3.5rem);
  max-width: 14ch;
}

.subtitle {
  margin: 18px 0 28px;
  color: var(--text-muted);
  font-size: 1.06rem;
  max-width: 58ch;
}

.hero-logo-strip {
  margin-bottom: 12px;
}

.hero-logo {
  display: block;
  width: min(260px, 58vw);
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(103, 157, 214, 0.44);
  background: #eef3fb;
  padding: 6px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.26);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(106, 149, 198, 0.6);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.small {
  padding: 9px 14px;
  font-size: 0.88rem;
}

.button.primary {
  background: linear-gradient(135deg, #2ebdf9 0%, #1591c8 100%);
  color: #001428;
  border-color: transparent;
}

.button.secondary {
  background: linear-gradient(160deg, rgba(24, 72, 116, 0.75), rgba(14, 40, 67, 0.75));
  border-color: rgba(95, 154, 214, 0.6);
}

.button.ghost {
  background: transparent;
}

.trust-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--text-muted);
}

.trust-points li::before {
  content: "+ ";
  color: var(--ok);
}

.hero-panel {
  padding: 24px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, #122b48 0%, #0a1a2e 100%);
  border: 1px solid rgba(87, 131, 183, 0.55);
  box-shadow: var(--shadow);
}

.panel-kicker {
  margin: 0 0 14px;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.panel-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.panel-list li {
  padding: 13px;
  border-radius: 12px;
  background: rgba(10, 25, 43, 0.8);
  border: 1px solid rgba(96, 138, 186, 0.33);
  display: grid;
  gap: 4px;
}

.tag {
  width: fit-content;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 8px;
  border-radius: 999px;
  color: #d2efff;
  background: rgba(31, 109, 159, 0.6);
}

.panel-list em {
  color: var(--text-muted);
  font-style: normal;
  font-size: 0.9rem;
}

.panel-foot {
  margin: 16px 0 0;
  color: var(--ok);
  font-weight: 600;
}

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

.hero-signal-grid article {
  border: 1px solid rgba(90, 138, 189, 0.45);
  border-radius: 12px;
  padding: 11px;
  background: rgba(9, 26, 46, 0.7);
}

.hero-signal-grid h3 {
  font-size: 0.92rem;
  margin-bottom: 4px;
}

.hero-signal-grid p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.modern-showcase {
  padding-top: 18px;
}

.modern-frame {
  border: 1px solid rgba(86, 137, 192, 0.38);
  border-radius: 20px;
  padding: 16px;
  background: linear-gradient(
      180deg,
      rgba(8, 32, 57, 0.82) 0%,
      rgba(6, 22, 39, 0.78) 100%
    ),
    radial-gradient(circle at 80% 5%, rgba(47, 158, 226, 0.2) 0%, transparent 50%);
  box-shadow: var(--shadow);
}

.modern-grid {
  display: grid;
  gap: 14px;
}

.modern-grid-top {
  grid-template-columns: 1fr 1fr;
  margin-bottom: 14px;
}

.modern-grid-mid {
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 14px;
}

.modern-card {
  position: relative;
  border: 1px solid rgba(91, 147, 206, 0.38);
  border-radius: 16px;
  padding: 18px;
  background: linear-gradient(160deg, rgba(10, 31, 54, 0.88), rgba(5, 19, 34, 0.8));
  overflow: hidden;
}

.modern-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -45% auto;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 173, 246, 0.26), transparent 70%);
  pointer-events: none;
}

.modern-card h2 {
  margin-bottom: 10px;
  max-width: 18ch;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.modern-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.2rem, 2vw, 1.9rem);
}

.modern-card p {
  margin: 0;
  color: var(--text-muted);
}

.modern-card-main {
  min-height: 330px;
  background: linear-gradient(160deg, rgba(7, 28, 49, 0.94), rgba(4, 17, 31, 0.88));
}

.modern-card-flow {
  min-height: 330px;
  background: linear-gradient(160deg, rgba(8, 29, 54, 0.95), rgba(4, 18, 34, 0.88));
}

.modern-card-oversight,
.modern-card-explain,
.modern-card-secure {
  min-height: 290px;
}

.modern-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 14px;
  align-items: center;
}

.modern-visual {
  position: relative;
  border: 1px solid rgba(95, 153, 211, 0.45);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(6, 21, 36, 0.86);
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --lift-y: 0px;
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y))
    translateY(var(--lift-y));
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.modern-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    rgba(18, 88, 142, 0) 25%,
    rgba(111, 230, 255, 0.16) 48%,
    rgba(18, 88, 142, 0) 72%
  );
  transform: translateX(-120%);
  animation: aiSweep 4.8s linear infinite;
  pointer-events: none;
}

.modern-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.ai-dynamic-image {
  --image-flash-offset: 0s;
  animation: aiImageFloat 5.8s ease-in-out infinite,
    aiImageGlow 4s ease-in-out infinite,
    aiImageFlashCycle 3.8s steps(1, end) infinite var(--image-flash-offset);
  transform-origin: center center;
  will-change: transform, filter;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.ai-dynamic-image.is-flashing {
  filter: brightness(1.3) saturate(1.28) contrast(1.05)
    drop-shadow(0 0 20px rgba(89, 211, 255, 0.8));
  transform: translate3d(0, -4px, 0) scale(1.02);
}

.modern-rail-item .ai-dynamic-image {
  animation-duration: 5s, 3.2s, 3s;
}

.platform-modal__image.ai-dynamic-image {
  animation-duration: 8s, 5s, 4.2s;
}

.modern-visual-main {
  min-height: 230px;
}

.modern-visual-flow {
  margin-top: 14px;
  min-height: 170px;
}

.modern-visual-oversight,
.modern-visual-secure {
  margin-top: 14px;
  min-height: 148px;
}

.modern-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--text-muted);
}

.modern-list li::before {
  content: "+ ";
  color: var(--accent);
}

.modern-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.modern-chip-row span {
  border: 1px solid rgba(94, 154, 211, 0.48);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(9, 29, 49, 0.8);
}

.flow-track {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.flow-track span {
  border: 1px solid rgba(95, 153, 211, 0.46);
  border-radius: 12px;
  padding: 8px 7px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  background: linear-gradient(160deg, rgba(11, 37, 61, 0.9), rgba(6, 22, 40, 0.78));
}

.explain-box {
  margin-top: 12px;
  border: 1px solid rgba(93, 149, 205, 0.4);
  border-radius: 12px;
  padding: 12px;
  background: rgba(8, 24, 42, 0.84);
}

.explain-box strong {
  display: block;
  margin-top: 10px;
  color: var(--text);
}

.explain-box strong:first-child {
  margin-top: 0;
}

.explain-box p {
  margin-top: 4px;
  font-size: 0.93rem;
}

.modern-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.modern-rail-item {
  border: 1px solid rgba(92, 147, 203, 0.35);
  border-radius: 13px;
  background: rgba(7, 24, 42, 0.8);
  padding: 11px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modern-rail-item img {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 8px rgba(45, 185, 255, 0.35));
}

.modern-rail-item strong {
  display: block;
  font-size: 0.9rem;
}

.modern-rail-item p {
  margin: 2px 0 0;
  color: var(--text-muted);
  font-size: 0.83rem;
}

.section-head {
  max-width: 78ch;
  margin-bottom: 26px;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  margin-bottom: 14px;
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
}

.modern-ai-features {
  padding-top: 26px;
}

.modern-ai-features-card {
  border: 1px solid rgba(93, 149, 207, 0.45);
  border-radius: 18px;
  padding: 12px;
  background: linear-gradient(160deg, rgba(8, 30, 52, 0.9), rgba(5, 19, 34, 0.84));
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.34);
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --lift-y: 0px;
  transform: perspective(980px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y))
    translateY(var(--lift-y));
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.modern-ai-features-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(95, 152, 212, 0.34);
}

.modern-visual.is-live,
.modern-ai-features-card.is-live {
  border-color: rgba(120, 214, 255, 0.72);
  box-shadow: 0 0 24px rgba(50, 178, 255, 0.33), 0 20px 42px rgba(0, 0, 0, 0.34);
}

.ai-flash-shell {
  position: relative;
}

.ai-flash-shell::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: -16%;
  height: 18%;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(27, 170, 255, 0),
    rgba(123, 236, 255, 0.9),
    rgba(27, 170, 255, 0)
  );
  filter: blur(1px);
  opacity: 0;
  transform: translateY(0);
  pointer-events: none;
  mix-blend-mode: screen;
}

.ai-flash-shell.is-flashing {
  border-color: rgba(124, 224, 255, 0.74);
  box-shadow: 0 0 0 1px rgba(119, 218, 255, 0.45),
    0 0 30px rgba(62, 183, 255, 0.28), 0 18px 38px rgba(0, 0, 0, 0.34);
}

.ai-flash-shell.is-flashing::before {
  animation: aiFlashScan 0.62s ease-out;
}

.card-grid {
  display: grid;
  gap: 16px;
}

.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  border-radius: var(--radius);
  border: 1px solid rgba(86, 131, 184, 0.42);
  padding: 22px;
  background: rgba(16, 36, 61, 0.78);
}

.card h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.card p {
  margin: 0;
  color: var(--text-muted);
}

.enterprise-grid .card {
  background: linear-gradient(170deg, rgba(12, 35, 60, 0.9), rgba(7, 22, 39, 0.82));
}

.pipeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.step {
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(11, 26, 44, 0.8);
  border: 1px solid rgba(90, 136, 192, 0.46);
  font-weight: 600;
}

.capability-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.capability-grid .card {
  display: grid;
  place-items: center start;
  min-height: 96px;
}

.governance-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 22px;
  align-items: start;
}

.gov-list {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--text-muted);
  display: grid;
  gap: 8px;
}

.workflow {
  background: linear-gradient(160deg, #122b48 0%, #0c2038 100%);
}

.workflow h3 {
  margin-bottom: 10px;
}

.workflow ol {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
  color: var(--text-muted);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(91, 135, 186, 0.43);
  border-radius: 14px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

th,
td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(86, 133, 185, 0.3);
}

thead th {
  background: rgba(18, 43, 72, 0.7);
  font-family: "Space Grotesk", sans-serif;
}

tbody td {
  color: var(--text-muted);
}

tbody td:first-child {
  color: var(--text);
  font-weight: 600;
}

.metric-card {
  border-radius: var(--radius);
  border: 1px solid rgba(88, 132, 181, 0.5);
  background: rgba(15, 34, 56, 0.8);
  padding: 22px;
}

.metric {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--accent);
}

.label {
  margin: 4px 0 0;
  color: var(--text-muted);
}

.roi-note {
  margin-top: 20px;
  color: var(--ok);
  font-weight: 600;
}

.cta-block {
  padding-top: 56px;
  padding-bottom: 92px;
}

.cta-layout {
  border: 1px solid rgba(90, 133, 180, 0.52);
  border-radius: var(--radius);
  padding: 30px;
  background: linear-gradient(140deg, rgba(19, 52, 88, 0.62), rgba(8, 20, 35, 0.8));
}

.cta-layout h2 {
  margin: 0 0 10px;
  max-width: 20ch;
}

.cta-layout p {
  margin: 0 0 20px;
  color: var(--text-muted);
  max-width: 68ch;
}

.site-footer {
  border-top: 1px solid rgba(89, 131, 176, 0.35);
  padding: 28px 0;
  color: var(--text-muted);
  text-align: center;
}

.footer-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.footer-logo {
  display: block;
  width: min(240px, 72vw);
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(98, 150, 206, 0.38);
  background: #eef3fb;
  padding: 6px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

#contact .card {
  background: linear-gradient(165deg, rgba(14, 37, 62, 0.86), rgba(8, 24, 42, 0.78));
}

body.modal-open {
  overflow: hidden;
}

.platform-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 26px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 40;
}

.platform-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.platform-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 15, 0.82);
  backdrop-filter: blur(5px);
}

.platform-modal__panel {
  position: relative;
  width: min(1420px, 94vw);
  max-height: calc(100vh - 52px);
  overflow: auto;
  border-radius: 16px;
  border: 1px solid rgba(98, 143, 193, 0.5);
  background: linear-gradient(180deg, #0e2239 0%, #071426 100%);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.platform-modal__header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(97, 144, 197, 0.42);
  background: rgba(9, 24, 42, 0.94);
}

.platform-modal__header h2 {
  font-size: 1.06rem;
}

.platform-modal__close {
  border: 1px solid rgba(98, 145, 198, 0.65);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font-family: inherit;
  font-weight: 700;
  padding: 8px 14px;
  cursor: pointer;
}

.platform-modal__close:hover {
  background: rgba(25, 56, 91, 0.6);
}

.platform-modal__image {
  display: block;
  width: 100%;
  height: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes aiSweep {
  0% {
    transform: translateX(-120%);
    opacity: 0.05;
  }
  35% {
    opacity: 0.48;
  }
  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

@keyframes aiImageFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -5px, 0) scale(1.012);
  }
}

@keyframes aiImageGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(88, 203, 255, 0.12));
  }
  50% {
    filter: drop-shadow(0 0 16px rgba(88, 203, 255, 0.36));
  }
}

@keyframes aiImageFlashCycle {
  0%,
  78%,
  100% {
    filter: brightness(1) saturate(1) contrast(1);
  }
  80% {
    filter: brightness(1.22) saturate(1.22) contrast(1.04)
      drop-shadow(0 0 16px rgba(89, 211, 255, 0.65));
  }
  82% {
    filter: brightness(0.96) saturate(1.04);
  }
  84% {
    filter: brightness(1.16) saturate(1.2) contrast(1.03)
      drop-shadow(0 0 11px rgba(89, 211, 255, 0.42));
  }
}

@keyframes aiFlashScan {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  12% {
    opacity: 0.82;
  }
  75% {
    transform: translateY(240%);
    opacity: 0.45;
  }
  100% {
    transform: translateY(300%);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ai-dynamic-image,
  .modern-visual::after,
  .ai-flash-shell::before {
    animation: none !important;
  }
}

@media (max-width: 1020px) {
  .hero-layout,
  .governance-layout,
  .three-col,
  .capability-grid,
  .modern-grid-top,
  .pipeline {
    grid-template-columns: 1fr 1fr;
  }

  .hero-layout > :first-child,
  .governance-layout > :first-child {
    grid-column: 1 / -1;
  }

  .modern-grid-mid {
    grid-template-columns: 1fr 1fr;
  }

  .modern-card-main,
  .modern-card-flow {
    min-height: 280px;
  }

  .modern-split {
    grid-template-columns: 1fr;
  }

  .modern-rail {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .hero-signal-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1460px) {
  .edge-ai {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-nav {
    display: none;
  }

  .section {
    padding: 60px 0;
  }

  .hero {
    padding-top: 72px;
  }

  .three-col,
  .capability-grid,
  .modern-grid-top,
  .modern-grid-mid,
  .modern-rail,
  .hero-signal-grid,
  .flow-track,
  .pipeline,
  .governance-layout {
    grid-template-columns: 1fr;
  }

  .cta-layout {
    padding: 22px;
  }

  .platform-modal {
    padding: 14px;
  }

  .platform-modal__header {
    padding: 12px;
  }

  .platform-modal__close {
    padding: 7px 12px;
    font-size: 0.84rem;
  }

  .modern-ai-features-card {
    padding: 8px;
  }
}
