:root {
  --navy: #071522;
  --navy-2: #0b1f33;
  --navy-3: #102a43;
  --panel: #0d2236;
  --panel-light: #132b42;
  --blue: #1e7cff;
  --cyan: #18c5dc;
  --text: #f5f8fb;
  --muted: #9fb3c8;
  --line: rgba(255, 255, 255, 0.09);
  --soft: rgba(255, 255, 255, 0.045);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(30,124,255,.08), transparent 30%),
    var(--navy);
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.narrow {
  max-width: 820px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 21, 34, .86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-right: auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--cyan), var(--blue));
  color: white;
  font-weight: 900;
  font-size: 20px;
  transform: skewY(-8deg);
}

.brand strong {
  font-size: 18px;
}

.brand small {
  color: var(--blue);
  font-weight: 700;
  margin-left: 4px;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a,
.nav-cta {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a:hover,
.nav-cta:hover {
  color: white;
}

.nav-cta {
  border: 1px solid rgba(30,124,255,.55);
  padding: 8px 15px;
  border-radius: 8px;
}

.hero {
  padding: 42px 0 54px;
}

.hero-image-wrap {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
}

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

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: .18s ease;
}

.button.primary {
  background: linear-gradient(135deg, var(--blue), #168eee);
  box-shadow: 0 12px 30px rgba(30,124,255,.25);
}

.button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(30,124,255,.34);
}

.button.secondary {
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.025);
}

.button.secondary:hover {
  background: rgba(255,255,255,.07);
}

.section {
  padding: 100px 0;
  border-top: 1px solid var(--line);
}

.section.alternate {
  background: rgba(255,255,255,.018);
}

.intro {
  text-align: center;
}

.eyebrow {
  display: inline-block;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  margin-bottom: 16px;
}

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

h1 {
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1.03;
  letter-spacing: -.045em;
  margin-bottom: 28px;
}

h1 span {
  color: var(--cyan);
}

h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -.035em;
  margin-bottom: 18px;
}

h3 {
  line-height: 1.2;
}

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

.lead {
  font-size: clamp(20px, 2.5vw, 25px);
  color: #d7e4f1;
}

.lead-small {
  font-size: 20px;
  color: #d7e4f1;
}

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

.section-heading p {
  font-size: 18px;
}

.problem-grid,
.module-grid,
.industry-grid,
.deployment-grid,
.docs-grid {
  display: grid;
  gap: 18px;
}

.problem-grid {
  grid-template-columns: repeat(4, 1fr);
}

.problem-card,
.module-card,
.feature-panel,
.ai-card,
.deployment-grid article {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(
    145deg,
    rgba(255,255,255,.045),
    rgba(255,255,255,.018)
  );
}

.problem-card {
  padding: 28px;
}

.problem-card > span,
.deployment-grid article > span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
}

.statement {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 42px;
  padding: 24px;
  border: 1px solid rgba(24,197,220,.25);
  border-radius: 14px;
  background: rgba(24,197,220,.045);
  font-size: 18px;
}

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

.statement.compact {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.flow-step {
  min-height: 150px;
  padding: 22px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--soft);
  display: flex;
  flex-direction: column;
}

.flow-step span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  margin-bottom: auto;
}

.flow-step strong {
  font-size: 18px;
}

.flow-step small {
  color: var(--muted);
}

.flow-arrow,
.vertical-arrow {
  color: var(--blue);
  font-size: 24px;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feature-panel {
  padding: 38px;
}

.panel-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--cyan), var(--blue));
  font-weight: 900;
  margin-bottom: 26px;
}

.feature-panel ul {
  padding-left: 18px;
  color: var(--muted);
}

.feature-panel li {
  margin: 8px 0;
}

.module-grid {
  grid-template-columns: repeat(4, 1fr);
}

.module-card {
  padding: 26px;
  min-height: 190px;
}

.module-card > span {
  font-size: 10px;
  letter-spacing: .16em;
  font-weight: 800;
  color: var(--cyan);
}

.module-card h3 {
  margin-top: 22px;
  font-size: 16px;
}

.module-card.highlight {
  border-color: rgba(30,124,255,.55);
  background:
    linear-gradient(145deg, rgba(30,124,255,.14), rgba(24,197,220,.05));
}

.governance {
  background:
    radial-gradient(circle at 50% 50%, rgba(30,124,255,.07), transparent 45%);
}

.role-flow {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  justify-items: stretch;
  gap: 10px;
}

.role-card {
  display: grid;
  grid-template-columns: 60px 180px 1fr;
  align-items: center;
  padding: 20px 26px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.025);
}

.role-card span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
}

.role-card h3 {
  margin: 0;
}

.role-card p {
  margin: 0;
}

.vertical-arrow {
  text-align: center;
}

.ai-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ai-card {
  padding: 30px;
}

.ai-tag {
  color: var(--cyan);
  font-size: 10px;
  letter-spacing: .14em;
  font-weight: 800;
}

.ai-card h3 {
  font-size: 24px;
  margin-top: 24px;
}

.decision-grid {
  max-width: 700px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  text-align: center;
}

.decision-grid > div:not(.decision-divider) {
  padding: 28px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.decision-grid p {
  margin: 6px 0;
}

.decision-divider {
  color: var(--blue);
  font-size: 30px;
}

.visual-intelligence {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: center;
}

.mini-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
}

.mini-flow span {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 13px;
}

.mini-flow b {
  color: var(--blue);
}

.vision-box {
  border-radius: 18px;
  border: 1px solid rgba(30,124,255,.4);
  background:
    linear-gradient(145deg, rgba(30,124,255,.1), rgba(255,255,255,.025));
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
}

.vision-header {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .12em;
}

.vision-item {
  display: flex;
  gap: 15px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.vision-item:last-child {
  border-bottom: none;
}

.vision-item > span {
  color: var(--cyan);
  font-size: 20px;
}

.vision-item strong,
.vision-item small {
  display: block;
}

.vision-item small {
  color: var(--muted);
}

.industry-grid {
  grid-template-columns: repeat(4, 1fr);
}

.industry-grid div {
  min-height: 100px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--soft);
  font-weight: 700;
}

.deployment-grid {
  grid-template-columns: repeat(4, 1fr);
}

.deployment-grid article {
  padding: 28px;
}

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

.docs-grid a {
  display: flex;
  flex-direction: column;
  min-height: 170px;
  padding: 26px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--soft);
  text-decoration: none;
  transition: .18s ease;
}

.docs-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(30,124,255,.5);
  background: rgba(30,124,255,.06);
}

.docs-grid span {
  color: var(--cyan);
  font-size: 11px;
  margin-bottom: auto;
}

.docs-grid strong {
  margin-top: 28px;
}

.docs-grid small {
  color: var(--muted);
}

.final-cta {
  text-align: center;
  padding: 130px 0;
  background:
    radial-gradient(circle at 50% 100%, rgba(30,124,255,.16), transparent 42%);
}

footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-inner {
  min-height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  font-size: 13px;
}

.footer-inner strong,
.footer-inner span {
  display: block;
}

.footer-inner strong {
  color: white;
}

.footer-inner a {
  text-decoration: none;
}

@media (max-width: 1000px) {
  .nav-links {
    display: none;
  }

  .problem-grid,
  .module-grid,
  .industry-grid,
  .deployment-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .flow-arrow {
    transform: rotate(90deg);
    text-align: center;
  }

  .docs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .visual-intelligence {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .nav {
    height: 64px;
  }

  .nav-cta {
    font-size: 12px;
  }

  .hero {
    padding-top: 22px;
  }

  .hero-image-wrap {
    border-radius: 12px;
  }

  .section {
    padding: 72px 0;
  }

  .problem-grid,
  .module-grid,
  .industry-grid,
  .deployment-grid,
  .docs-grid,
  .two-column,
  .ai-grid {
    grid-template-columns: 1fr;
  }

  .role-card {
    grid-template-columns: 45px 1fr;
  }

  .role-card p {
    grid-column: 2;
    margin-top: 8px;
  }

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

  .decision-divider {
    transform: rotate(90deg);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 0;
  }
}

.brand-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex: 0 0 auto;
}
