﻿:root {
  --navy: #030f27;
  --navy2: #071a3d;
  --blue: #1668f2;
  --cyan: #16cdf3;
  --text: #f4f7fb;
  --muted: #aab7ce;
  --border: rgba(255,255,255,.10);
  --card: rgba(255,255,255,.045);
  --light-bg: #f6f8fc;
  --dark-text: #0b1730;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: var(--navy);
  color: var(--text);
  line-height: 1.6;
}

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

.container {
  width: min(1180px, 90%);
  margin: auto;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(3,15,39,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  width: 165px;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav a {
  color: #d9e2f2;
  font-size: 14px;
  font-weight: 600;
}

nav a:hover {
  color: var(--cyan);
}

.nav-cta {
  padding: 11px 18px;
  border: 1px solid rgba(22,205,243,.5);
  border-radius: 6px;
}

.menu-btn {
  display: none;
  background: none;
  border: 0;
  color: white;
  font-size: 28px;
}

.hero {
  min-height: 100vh;
  padding: 165px 0 100px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 75% 35%, rgba(22,104,242,.20), transparent 32%),
    radial-gradient(circle at 25% 65%, rgba(22,205,243,.08), transparent 28%),
    linear-gradient(135deg,#020b1d,#06183a 55%,#020b1d);
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(20,98,255,.08);
  filter: blur(90px);
  right: -200px;
  top: -100px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 80px;
  align-items: center;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(46px,6vw,82px);
  line-height: 1.02;
  letter-spacing: -3px;
  margin-bottom: 30px;
}

h1 span {
  background: linear-gradient(90deg,var(--cyan),#2676ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  max-width: 720px;
  color: var(--muted);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin: 38px 0;
}

.btn {
  padding: 15px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  display: inline-block;
  transition: .25s;
}

.btn.primary {
  background: linear-gradient(90deg,#0aaee9,#1c62f2);
  color: white;
}

.btn.primary:hover {
  transform: translateY(-2px);
}

.btn.secondary {
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
}

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

.hero-tags span {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 30px;
  color: #b8c5da;
  font-size: 12px;
}

.hero-panel {
  padding: 28px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.035);
  backdrop-filter: blur(15px);
  border-radius: 14px;
}

.panel-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.execution-flow {
  display: grid;
  gap: 10px;
}

.flow-card {
  padding: 18px;
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 3px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,.025);
}

.flow-card small {
  grid-row: span 2;
  color: var(--cyan);
}

.flow-card strong {
  font-size: 16px;
}

.flow-card span {
  color: var(--muted);
  font-size: 13px;
}

.flow-card.active {
  border-color: rgba(22,205,243,.55);
  background: linear-gradient(90deg,rgba(22,205,243,.09),rgba(22,104,242,.08));
}

.statement {
  background: #071633;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 45px 0;
}

.statement p {
  max-width: 960px;
  margin: auto;
  text-align: center;
  font-size: 22px;
  color: #c3cee0;
}

.statement strong {
  color: white;
}

.section {
  padding: 115px 0;
  background: var(--light-bg);
  color: var(--dark-text);
}

.dark-section {
  background:
    radial-gradient(circle at 90% 30%,rgba(22,104,242,.12),transparent 28%),
    #04122d;
  color: white;
}

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

.section-heading h2,
.split h2,
.cta-box h2 {
  font-size: clamp(34px,4vw,55px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.section-heading p,
.split p {
  color: #62708a;
  font-size: 18px;
}

.dark-section .section-heading p,
.dark-section .split p {
  color: var(--muted);
}

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

.card {
  background: white;
  border: 1px solid #e3e8f0;
  border-radius: 10px;
  padding: 32px;
  transition: .25s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(15,34,70,.08);
}

.card-number {
  color: #1767ef;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 30px;
}

.card h3 {
  font-size: 23px;
  margin-bottom: 13px;
}

.card p {
  color: #64718a;
  margin-bottom: 20px;
}

.card ul {
  list-style: none;
}

.card li {
  padding: 6px 0;
  font-size: 14px;
  color: #374764;
}

.card li::before {
  content: "→";
  color: #1466ef;
  margin-right: 10px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.large-copy {
  font-size: 23px !important;
  color: inherit !important;
  margin-bottom: 22px;
}

.text-link {
  display: inline-block;
  margin-top: 28px;
  color: var(--cyan);
  font-weight: 700;
}

.agent-stack {
  display: grid;
  gap: 12px;
}

.agent-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: rgba(255,255,255,.03);
}

.agent-row > span {
  color: var(--cyan);
  font-weight: 700;
}

.agent-row strong {
  font-size: 18px;
}

.agent-row p {
  margin-top: 5px;
  font-size: 14px;
}

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

.feature {
  padding: 28px 0;
  border-top: 2px solid #1767ef;
}

.feature h3 {
  margin-bottom: 10px;
}

.feature p {
  color: #69768d;
}

.impact {
  background: linear-gradient(90deg,#0846ba,#087fd2);
  padding: 55px 0;
}

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

.impact-item {
  text-align: center;
  padding: 15px;
  border-right: 1px solid rgba(255,255,255,.18);
}

.impact-item:last-child {
  border-right: none;
}

.impact-item strong {
  display: block;
  font-size: 30px;
}

.impact-item span {
  color: rgba(255,255,255,.75);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 12px;
}

.industry {
  border: 1px solid #dfe5ef;
  background: white;
  padding: 28px 18px;
  text-align: center;
  font-weight: 700;
  border-radius: 7px;
}

.usecases {
  background: #eef3f9;
}

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

.usecase {
  background: white;
  padding: 30px;
  border-radius: 9px;
  border: 1px solid #e0e6ef;
}

.usecase span {
  color: #1467ef;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.usecase h3 {
  margin: 15px 0 10px;
}

.usecase p {
  color: #64718a;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 12px;
}

.step {
  padding: 25px;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.step > div {
  color: var(--cyan);
  margin-bottom: 35px;
  font-size: 13px;
}

.step h3 {
  margin-bottom: 10px;
}

.step p {
  color: var(--muted);
  font-size: 14px;
}

.cta-section {
  padding: 90px 0;
  background:
    radial-gradient(circle at 80% 50%,rgba(22,104,242,.2),transparent 30%),
    #06132d;
}

.cta-box {
  border: 1px solid var(--border);
  padding: 55px;
  border-radius: 12px;
  display: grid;
  grid-template-columns: 1.5fr .5fr;
  gap: 50px;
  align-items: center;
}

.cta-box p {
  color: var(--muted);
  max-width: 740px;
}

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

footer {
  background: #020a19;
  padding: 70px 0 25px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3,1fr);
  gap: 55px;
}

.footer-brand img {
  width: 180px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 2px;
  margin-top: 12px;
}

footer strong {
  display: block;
  margin-bottom: 18px;
}

footer a,
footer span {
  display: block;
  margin: 9px 0;
  color: var(--muted);
  font-size: 14px;
}

footer a:hover {
  color: var(--cyan);
}

.copyright {
  border-top: 1px solid var(--border);
  margin-top: 55px;
  padding-top: 25px;
  color: #65738b;
  font-size: 13px;
}

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

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

@media(max-width:900px) {

  .menu-btn {
    display: block;
  }

  nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    padding: 25px 5%;
    flex-direction: column;
    align-items: flex-start;
    background: #04112a;
    border-bottom: 1px solid var(--border);
  }

  nav.open {
    display: flex;
  }

  .hero-grid,
  .split,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 45px;
  }

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

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

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

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

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

@media(max-width:600px) {

  .hero {
    padding-top: 125px;
  }

  h1 {
    letter-spacing: -2px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .cards-grid,
  .feature-grid,
  .usecase-grid,
  .industry-grid,
  .steps,
  .impact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .impact-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.15);
  }

  .section {
    padding: 80px 0;
  }

  .cta-box {
    padding: 30px;
  }
}
