:root {
  --navy: #011f5d;
  --dark-blue: #1e2f6f;
  --indigo: #4e4a95;
  --soft-blue: #8fa7db;
  --lavender: #b8b9e6;
  --white: #ffffff;
  --light-gray: #f4f6fb;
  --bg-gradient: linear-gradient(135deg, #011f5d 0%, #233675 50%, #4e4a95 100%);
  --card-shadow: 0 14px 40px rgba(1, 31, 93, 0.35);
  --ring: 0 0 0 2px rgba(184, 185, 230, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Open Sans", sans-serif;
  color: var(--white);
  background: radial-gradient(circle at 80% -20%, rgba(143, 167, 219, 0.18), transparent 30%),
    radial-gradient(circle at 10% 20%, rgba(184, 185, 230, 0.1), transparent 40%),
    #020d2e;
  line-height: 1.6;
}

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

.container {
  width: min(1120px, calc(100% - 3rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(1, 31, 93, 0.84);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(184, 185, 230, 0.2);
}

.header-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: "Sora", "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(30, 47, 111, 0.45);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--lavender);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn-primary {
  padding: 0.9rem 1.5rem;
  color: var(--white);
  background: var(--bg-gradient);
  box-shadow: 0 8px 28px rgba(78, 74, 149, 0.45);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 12px 35px rgba(78, 74, 149, 0.6);
}

.btn-secondary {
  padding: 0.85rem 1.3rem;
  border: 1px solid rgba(184, 185, 230, 0.5);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--ring);
}

section {
  position: relative;
  padding: 84px 0;
}

.section-title {
  margin: 0 0 0.9rem;
  font-family: "Sora", "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(1.35rem, 3vw, 2.2rem);
}

.section-lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  max-width: 720px;
}

.hero {
  min-height: 76vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero::before {
  width: 420px;
  height: 420px;
  right: -120px;
  top: -120px;
  background: radial-gradient(circle, rgba(143, 167, 219, 0.3), transparent 70%);
}

.hero::after {
  width: 340px;
  height: 340px;
  left: -140px;
  bottom: -120px;
  border: 1px solid rgba(184, 185, 230, 0.4);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(184, 185, 230, 0.45);
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: "Sora", "Inter", sans-serif;
  text-transform: uppercase;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.1;
}

.hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-visual {
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(184, 185, 230, 0.23), rgba(30, 47, 111, 0.2));
  border: 1px solid rgba(184, 185, 230, 0.3);
  padding: 1.2rem;
  box-shadow: var(--card-shadow);
}

.hero-dashboard {
  border-radius: 18px;
  padding: 1rem;
  background: linear-gradient(160deg, rgba(1, 31, 93, 0.65), rgba(24, 40, 103, 0.8));
  border: 1px solid rgba(143, 167, 219, 0.33);
}

.hero-orbit {
  position: relative;
  border-radius: 16px;
  min-height: 190px;
  margin-bottom: 0.9rem;
  border: 1px solid rgba(184, 185, 230, 0.26);
  background: radial-gradient(circle at center, rgba(184, 185, 230, 0.18), rgba(1, 31, 93, 0.08) 65%);
  overflow: hidden;
}

.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(143, 167, 219, 0.5);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.hero-orbit::before {
  width: 118px;
  height: 118px;
}

.hero-orbit::after {
  width: 184px;
  height: 184px;
}

.pulse-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #b8b9e6;
  box-shadow: 0 0 0 7px rgba(184, 185, 230, 0.25);
}

.pulse-dot.dot-a {
  top: 45px;
  left: 78%;
}

.pulse-dot.dot-b {
  bottom: 28px;
  left: 24%;
}

.hero-orbit-label {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(184, 185, 230, 0.5);
  background: rgba(12, 25, 76, 0.75);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.hero-stream {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 0.8rem;
}

.stream-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0.7rem;
  border-radius: 12px;
  border: 1px solid rgba(184, 185, 230, 0.3);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.86rem;
}

.stream-item b {
  color: var(--lavender);
}

.hero-kpis {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.kpi {
  border-radius: 12px;
  padding: 0.7rem;
  border: 1px solid rgba(184, 185, 230, 0.28);
  background: rgba(1, 31, 93, 0.56);
}

.kpi strong {
  display: block;
  font-size: 1.18rem;
  line-height: 1.1;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.stat {
  background: rgba(1, 31, 93, 0.55);
  border: 1px solid rgba(143, 167, 219, 0.35);
  border-radius: 16px;
  padding: 1rem;
}

.stat strong {
  display: block;
  font-size: 1.65rem;
  margin-bottom: 0.2rem;
}

.split-panel {
  border-radius: 24px;
  border: 1px solid rgba(184, 185, 230, 0.28);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  background: rgba(30, 47, 111, 0.35);
}

.split-panel > div {
  padding: 2rem;
}

.split-panel .accent {
  background: linear-gradient(160deg, rgba(30, 47, 111, 0.8), rgba(78, 74, 149, 0.66));
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.chip {
  border: 1px solid rgba(184, 185, 230, 0.35);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.8rem;
}

.solutions-grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.card {
  background: linear-gradient(170deg, rgba(30, 47, 111, 0.9), rgba(12, 23, 68, 0.9));
  border: 1px solid rgba(184, 185, 230, 0.26);
  border-radius: 16px;
  padding: 1.3rem;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(78, 74, 149, 0.4);
}

.card h3 {
  margin-top: 0;
}

.industries-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  margin-top: 1.6rem;
}

.orbital {
  border-radius: 24px;
  border: 1px dashed rgba(184, 185, 230, 0.5);
  min-height: 320px;
  display: grid;
  place-items: center;
  position: relative;
}

.orbital::before,
.orbital::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(143, 167, 219, 0.5);
}

.orbital::before {
  width: 210px;
  height: 210px;
}

.orbital::after {
  width: 300px;
  height: 300px;
}

.orbital span {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(184, 185, 230, 0.2);
  border: 1px solid rgba(184, 185, 230, 0.5);
  font-weight: 700;
}

.industry-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.timeline {
  margin-top: 1.6rem;
  border-radius: 24px;
  border: 1px solid rgba(184, 185, 230, 0.25);
  overflow: hidden;
}

.timeline-step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  border-bottom: 1px solid rgba(184, 185, 230, 0.2);
  background: rgba(30, 47, 111, 0.28);
}

.timeline-step:last-child {
  border-bottom: none;
}

.timeline-step strong {
  color: var(--lavender);
}

.cta-strip {
  border-radius: 20px;
  padding: 2rem;
  background: var(--bg-gradient);
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 1.2rem;
  align-items: center;
  box-shadow: var(--card-shadow);
}

.contact-panel {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(184, 185, 230, 0.28);
  padding: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
  color: rgba(255, 255, 255, 0.82);
}

input,
textarea,
select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(184, 185, 230, 0.32);
  background: rgba(1, 31, 93, 0.45);
  color: var(--white);
  padding: 0.75rem 0.85rem;
  font: inherit;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  box-shadow: var(--ring);
}

textarea {
  min-height: 126px;
  resize: vertical;
}

.form-full {
  grid-column: 1 / -1;
}

.page-hero {
  padding: 96px 0 70px;
}

.light-section {
  background: var(--light-gray);
  color: #1e2f6f;
}

.light-section .section-title,
.light-section p,
.light-section li {
  color: #1b2555;
}

.policy-card {
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(30, 47, 111, 0.16);
  border-radius: 16px;
  padding: 1.2rem;
  margin-bottom: 0.9rem;
}

.site-footer {
  margin-top: 3rem;
  background: #011848;
  border-top: 1px solid rgba(184, 185, 230, 0.22);
}

.footer-grid {
  padding: 46px 0 30px;
  display: grid;
  grid-template-columns: 1.2fr repeat(4, minmax(120px, 1fr));
  gap: 1.1rem;
}

.footer-col h4 {
  margin: 0 0 0.8rem;
  color: var(--lavender);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
}

.footer-col a:hover {
  color: var(--lavender);
}

.copyright {
  padding: 0.9rem 0 1.3rem;
  border-top: 1px solid rgba(184, 185, 230, 0.2);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

@media (max-width: 960px) {
  .hero-layout,
  .split-panel,
  .industries-wrap,
  .cta-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .industry-list,
  .form-grid,
  .solutions-grid,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .main-nav {
    justify-content: flex-end;
  }

  .timeline-step {
    grid-template-columns: 1fr;
  }
}
