:root {
  --ink: #f5f8fb;
  --muted: #a9b8c7;
  --blue: #2c6f9f;
  --blue-bright: #56a9df;
  --line: rgba(255, 255, 255, 0.14);
  --panel: rgba(255, 255, 255, 0.075);
  --shadow: rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 82% 10%, rgba(86, 169, 223, 0.22), transparent 30rem),
    linear-gradient(135deg, #05080d 0%, #07111f 48%, #111722 100%);
}

a {
  color: inherit;
}

.page-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.header-link {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 18px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.header-link:hover {
  border-color: rgba(86, 169, 223, 0.7);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  align-items: center;
  gap: 64px;
  min-height: calc(100vh - 100px);
  padding: 34px 0 70px;
}

.hero-copy {
  max-width: 790px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue-bright);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 8.4vw, 6.9rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
  line-height: 1.2;
}

.lede {
  max-width: 650px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.42rem);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  background: linear-gradient(135deg, #ffffff, #b9e3ff);
  color: #07111f;
  box-shadow: 0 18px 40px rgba(44, 111, 159, 0.28);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}

.hero-media::before {
  position: absolute;
  width: min(33vw, 390px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.hero-media img {
  position: relative;
  width: min(410px, 100%);
  height: auto;
  filter: drop-shadow(0 34px 58px var(--shadow));
  animation: float 5s ease-in-out infinite;
}

.status-card {
  position: absolute;
  right: 0;
  bottom: 58px;
  width: min(250px, 78%);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: rgba(7, 17, 31, 0.82);
  box-shadow: 0 24px 54px var(--shadow);
  backdrop-filter: blur(16px);
}

.status-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.status-card strong {
  display: block;
  font-size: 1.32rem;
  line-height: 1.1;
}

.ticker {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.ticker span {
  min-height: 76px;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.055);
  color: #dce8f4;
  font-weight: 800;
  text-align: center;
}

.split-section,
.partner-note,
.cta {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: 52px;
  padding: 110px 0;
  border-bottom: 1px solid var(--line);
}

.split-section p:not(.eyebrow),
.partner-note p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.72;
}

.services,
.project-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.services {
  margin: 0 0 110px;
}

.services article,
.project-list article {
  min-height: 230px;
  padding: 28px;
  background: var(--panel);
}

.services span {
  display: block;
  margin-bottom: 46px;
  color: var(--blue-bright);
  font-size: 0.8rem;
  font-weight: 900;
}

.services p,
.project-list p {
  color: var(--muted);
  line-height: 1.58;
}

.projects {
  padding: 0 0 110px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.partner-note {
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.85fr);
  border-top: 1px solid var(--line);
}

.cta {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding-bottom: 100px;
  border-bottom: 0;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 900px) {
  .page-shell {
    width: min(100% - 28px, 720px);
  }

  .hero,
  .split-section,
  .partner-note,
  .cta {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 22px;
    min-height: auto;
    padding-top: 28px;
  }

  .hero-media {
    min-height: 330px;
  }

  .hero-media::before {
    width: min(70vw, 310px);
  }

  .hero-media img {
    width: min(320px, 86vw);
  }

  .status-card {
    right: 12px;
    bottom: 10px;
  }

  .ticker,
  .services,
  .project-list {
    grid-template-columns: 1fr 1fr;
  }

  .services {
    margin-bottom: 76px;
  }

  .split-section,
  .partner-note,
  .cta {
    gap: 28px;
    padding: 78px 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 20px;
  }

  .header-link,
  .button {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .ticker,
  .services,
  .project-list {
    grid-template-columns: 1fr;
  }

  .ticker span {
    min-height: 56px;
  }

  .services article,
  .project-list article {
    min-height: auto;
  }
}
