:root {
  --night: #021024;
  --navy: #052659;
  --blue: #5483b3;
  --steel: #7da0ca;
  --ice: #c1e8ff;
  --white: #f7fbff;
  --muted: #a8bfdb;
  --line: rgba(193, 232, 255, 0.18);
  --panel: rgba(5, 38, 89, 0.62);
  --panel-strong: rgba(8, 49, 108, 0.86);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(193, 232, 255, 0.2), transparent 30rem),
    radial-gradient(circle at 85% 12%, rgba(84, 131, 179, 0.32), transparent 28rem),
    linear-gradient(145deg, var(--night) 0%, #03193d 46%, #052659 100%);
  min-height: 100vh;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(193, 232, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(193, 232, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 80%);
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(2, 16, 36, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(193, 232, 255, 0.08);
  box-shadow: 0 0 28px rgba(239, 190, 45, 0.28);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a,
.header-cta {
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #dbeeff;
}

.main-nav a:hover {
  background: rgba(193, 232, 255, 0.09);
}

.header-cta {
  color: var(--night);
  background: linear-gradient(135deg, var(--ice), #64adff);
  box-shadow: 0 0 24px rgba(100, 173, 255, 0.24);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(193, 232, 255, 0.08);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ice);
}

.hero {
  width: min(1180px, calc(100% - 32px));
  margin: 58px auto 36px;
  min-height: calc(100vh - 138px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 42px;
  align-items: center;
}

.hero-copy {
  padding: 24px 0;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(193, 232, 255, 0.2);
  border-radius: 999px;
  color: var(--ice);
  background: rgba(84, 131, 179, 0.18);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 500px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 4.8vw, 4.35rem);
  line-height: 1.04;
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.05;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.22rem;
  margin-bottom: 10px;
}

.hero-lead,
.split-copy p,
.goal-section p,
.contact-copy p,
.solution-card p,
.benefit-grid p {
  color: #d7e7f8;
  line-height: 1.75;
}

.hero-lead {
  max-width: 650px;
  font-size: 1.08rem;
}

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

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 20px;
  font-weight: 800;
  border: 1px solid transparent;
}

.btn-primary {
  color: var(--night);
  background: linear-gradient(135deg, var(--ice), #5faeff);
  box-shadow: 0 16px 44px rgba(84, 131, 179, 0.36);
}

.btn-secondary {
  color: var(--ice);
  border-color: rgba(193, 232, 255, 0.3);
  background: rgba(2, 16, 36, 0.35);
}

.trust-strip {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-strip span,
.feature-marquee span,
.industry-cloud span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(193, 232, 255, 0.08);
  color: #dcefff;
  font-weight: 700;
}

.trust-strip span {
  padding: 10px 12px;
  font-size: 0.85rem;
}

.hero-visual {
  border: 1px solid rgba(193, 232, 255, 0.26);
  border-radius: 8px;
  padding: 10px;
  background: linear-gradient(145deg, rgba(193, 232, 255, 0.16), rgba(5, 38, 89, 0.22));
  box-shadow: var(--shadow);
}

.hero-video,
.hero-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top left;
  border-radius: 6px;
  background: rgba(2, 16, 36, 0.72);
}

.intro-band,
.goal-section,
.contact-section,
.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(5, 38, 89, 0.82), rgba(2, 16, 36, 0.68));
  box-shadow: var(--shadow);
}

.intro-band {
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.intro-band h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 86px auto;
}

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

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

.solution-card,
.benefit-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.solution-card {
  min-height: 100%;
  padding: 22px;
}

.featured-card {
  background: linear-gradient(160deg, rgba(84, 131, 179, 0.7), rgba(5, 38, 89, 0.62));
}

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--night);
  background: linear-gradient(135deg, var(--ice), var(--steel));
  font-weight: 900;
}

.solution-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.solution-card li {
  position: relative;
  padding-left: 20px;
  color: #edf7ff;
  font-size: 0.95rem;
}

.solution-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ice);
  box-shadow: 0 0 12px rgba(193, 232, 255, 0.7);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
}

.industry-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(2, 16, 36, 0.48);
}

.industry-cloud span {
  padding: 11px 14px;
}

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

.benefit-grid article {
  padding: 24px;
}

.benefit-grid span {
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--night);
  background: var(--ice);
  font-weight: 900;
}

.feature-marquee {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.feature-marquee span {
  padding: 13px 16px;
}

.goal-section {
  padding: 46px;
  background:
    linear-gradient(135deg, rgba(193, 232, 255, 0.12), transparent),
    linear-gradient(145deg, rgba(5, 38, 89, 0.88), rgba(2, 16, 36, 0.76));
}

.goal-section h2,
.goal-section p {
  max-width: 900px;
}

.contact-section {
  padding: 42px;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: center;
}

.cta-grid {
  justify-content: flex-end;
}

.cta-grid a {
  min-height: 56px;
  min-width: 220px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(193, 232, 255, 0.28);
  border-radius: 8px;
  padding: 0 18px;
  background: rgba(193, 232, 255, 0.09);
  color: var(--ice);
  font-weight: 800;
}

.cta-grid a:first-child {
  color: var(--night);
  background: linear-gradient(135deg, var(--ice), #64adff);
}

.site-footer {
  margin-bottom: 20px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open .main-nav,
  .site-header.is-open .header-cta {
    display: flex;
  }

  .site-header.is-open .main-nav {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .site-header.is-open .header-cta {
    width: 100%;
  }

  .hero,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    margin-top: 40px;
  }

  .solution-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-grid {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero,
  .intro-band,
  .section,
  .goal-section,
  .contact-section,
  .site-footer {
    width: min(100% - 22px, 1180px);
  }

  .hero {
    gap: 24px;
  }

  .hero-actions .btn,
  .intro-band .btn,
  .cta-grid a {
    width: 100%;
  }

  .hero-video,
  .hero-visual img {
    aspect-ratio: 3 / 4;
  }

  .intro-band,
  .goal-section,
  .contact-section {
    padding: 24px;
  }

  .section {
    margin: 62px auto;
  }

  .solution-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
