:root {
  --ink: #0b1220;
  --ink-2: #142036;
  --muted: #647084;
  --line: #dfe7ee;
  --soft: #f5f8fb;
  --soft-2: #eef6f8;
  --teal: #1aa6b7;
  --teal-dark: #168fa0;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(11, 18, 32, 0.10);
  --radius: 24px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(26, 166, 183, 0.10), transparent 26rem),
    radial-gradient(circle at 90% 5%, rgba(50, 92, 140, 0.08), transparent 26rem),
    var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(223, 231, 238, 0.86);
  backdrop-filter: blur(16px);
}

.site-header.compact {
  position: relative;
}

.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 220px;
  flex: 0 0 auto;
}

.brand img {
  width: 220px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 650;
  color: var(--ink-2);
  letter-spacing: -0.01em;
}

.nav-links a {
  opacity: 0.82;
  transition: opacity 160ms ease, color 160ms ease;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--teal-dark);
}

.contact-link {
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
}

.hero {
  padding: 96px 0 76px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.86fr);
  gap: 42px;
  align-items: start;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(36px, 4.55vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.054em;
}

.lead {
  max-width: 620px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.58;
  letter-spacing: -0.018em;
}

.hero-actions,
.cta-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 760;
  letter-spacing: -0.01em;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
}

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

.signal-panel {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 26px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(11, 18, 32, 0.98), rgba(12, 31, 50, 0.96)),
    var(--ink);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.signal-panel::before {
  content: "";
  position: absolute;
  inset: -70px -120px auto auto;
  width: 330px;
  height: 330px;
  background: radial-gradient(circle, rgba(26, 166, 183, 0.35), transparent 64%);
}

.signal-panel::after {
  content: "";
  position: absolute;
  inset: auto auto 28px 28px;
  width: calc(100% - 56px);
  height: 190px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  border-radius: 22px;
  opacity: 0.62;
}

.panel-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 6px rgba(26, 166, 183, 0.16);
}

.matrix {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 16px;
  margin-top: 72px;
}

.matrix div {
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
}

.matrix strong,
.matrix span {
  display: block;
}

.matrix strong {
  margin-bottom: 6px;
  font-size: 18px;
  letter-spacing: -0.025em;
}

.matrix span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}


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

.section-band-light {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(249,251,253,0.94) 100%);
  border-top: 1px solid rgba(223, 231, 238, 0.62);
  border-bottom: 1px solid rgba(223, 231, 238, 0.62);
}

.section-band-soft {
  background:
    linear-gradient(180deg, rgba(248,251,253,0.92) 0%, rgba(242,247,250,0.92) 100%);
  border-top: 1px solid rgba(223, 231, 238, 0.72);
  border-bottom: 1px solid rgba(223, 231, 238, 0.72);
}

.section-band-light + .section-band-soft,
.section-band-soft + .section-band-light,
.section-band-light + .section.muted,
.section.muted + .section-band-soft,
.section-band-soft + .section-band-light + .cta {
  margin-top: -1px;
}

.section.muted {
  background: linear-gradient(180deg, rgba(245,248,251,0.74), rgba(238,246,248,0.74));
  border-top: 1px solid rgba(223, 231, 238, 0.78);
  border-bottom: 1px solid rgba(223, 231, 238, 0.78);
}

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

.section-lead {
  max-width: 640px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.capabilities-intro {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1fr);
  gap: 46px;
  align-items: center;
  margin-bottom: 34px;
}

.capabilities-intro .section-heading {
  max-width: none;
  margin-bottom: 0;
}

.capabilities-art {
  max-width: 520px;
}

.capabilities-art img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.cards {
  display: grid;
  gap: 18px;
}

.cards.six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  min-height: 210px;
  padding: 28px;
  border: 1px solid rgba(223, 231, 238, 0.98);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 40px rgba(11,18,32,0.045);
}

.card h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.12;
  letter-spacing: -0.028em;
}

.card p,
.text-stack p,
.company-copy p,
.legal-wrap p,
.legal-wrap li {
  color: var(--muted);
  font-size: 16px;
}

.split {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 60px;
  align-items: start;
}

.text-stack {
  max-width: 650px;
}

.text-stack p {
  margin-bottom: 18px;
  font-size: 18px;
  line-height: 1.7;
}

.company-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.company-card {
  min-height: 390px;
  border-radius: 34px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.dark-card {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 8%, rgba(26,166,183,0.34), transparent 18rem),
    linear-gradient(145deg, #0b1220, #101d32);
}

.company-card img {
  width: min(100%, 420px);
  margin-bottom: 26px;
}

.company-card p {
  max-width: 390px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.company-copy {
  max-width: 600px;
}

.facts {
  margin: 30px 0 0;
  border-top: 1px solid var(--line);
}

.facts div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.facts dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.facts dd {
  margin: 0;
  font-weight: 700;
  color: var(--ink-2);
}

.facts a {
  color: var(--teal-dark);
}

.cta {
  padding: 70px 0;
  background: linear-gradient(180deg, #09111d 0%, #08101a 100%);
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.cta .eyebrow {
  color: var(--teal);
}

.cta h2 {
  margin-bottom: 0;
  max-width: 620px;
}

.cta-inner {
  justify-content: space-between;
}

.cta .button.primary {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.site-footer {
  padding: 42px 0 28px;
  color: var(--white);
  background: #070c14;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-logo {
  width: 210px;
  height: auto;
  margin-bottom: 14px;
}

.site-footer p,
.copyright {
  color: rgba(255,255,255,0.56);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.72);
}

.copyright {
  padding-top: 28px;
}

.small-footer {
  margin-top: 80px;
}

.legal-page {
  padding: 72px 0 20px;
}

.legal-wrap {
  max-width: 800px;
}

.legal-wrap h1 {
  margin-bottom: 12px;
  font-size: clamp(42px, 6vw, 64px);
}

.updated {
  margin-bottom: 46px;
}

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

.legal-wrap h2 {
  margin-bottom: 10px;
  font-size: 25px;
  letter-spacing: -0.025em;
}

.legal-wrap a {
  color: var(--teal-dark);
  font-weight: 700;
}

@media (max-width: 920px) {
  .hero {
    padding-top: 64px;
  }

  .hero-grid,
  .split,
  .company-grid,
  .capabilities-intro {
    grid-template-columns: 1fr;
  }


  .capability-copy {
    order: 1;
  }

  .capabilities-art {
    order: 2;
  }

  .operations-grid .section-art {
    order: 1;
  }

  .operations-copy {
    order: 2;
  }

  .signal-panel {
    min-height: auto;
  }

  .matrix {
    margin-top: 44px;
  }

  .hero-art-wide {
    width: 100%;
    justify-self: stretch;
  }

  .capabilities-art {
    max-width: none;
  }

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

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .nav-wrap {
    min-height: 84px;
  }

  .brand,
  .brand img {
    width: 195px;
  }

  .nav-links {
    display: none;
  }

  h1 {
    letter-spacing: -0.052em;
  }

  .hero {
    padding: 52px 0 58px;
  }

  .section {
    padding: 62px 0;
  }

  .cards.six {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: auto;
  }

  .company-card {
    min-height: 310px;
  }

  .facts div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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

figure {
  margin: 0;
}

.hero-art,
.section-art,
.company-visual-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(223, 231, 238, 0.92);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.hero-art::before,
.section-art::before,
.company-visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(255,255,255,0.16), rgba(26,166,183,0.06));
  z-index: 1;
}

.hero-art img,
.section-art img,
.company-visual-card img {
  width: 100%;
  height: auto;
  transform: scale(1.04);
}

.hero-art {
  padding: 0;
}

.hero-art-wide {
  align-self: start;
  justify-self: end;
  width: min(100%, 560px);
  background: #f7fafc;
}

.hero-art-wide picture {
  display: block;
}

.hero-art-wide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  transform: none;
}

.operations-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.82fr);
  gap: 58px;
  align-items: center;
}

.operations-copy .text-stack {
  max-width: 690px;
}

.section-art,
.company-visual-card {
  padding: 0;
}

.company-visual-card {
  align-self: center;
}

@media (max-width: 920px) {
  .operations-grid {
    grid-template-columns: 1fr;
  }

  .hero-art,
  .section-art,
  .company-visual-card {
    border-radius: 28px;
  }
}

@media (max-width: 720px) {
  .hero-art,
  .section-art,
  .company-visual-card {
    border-radius: 24px;
  }
}

.section-lead {
  max-width: 640px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.art-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 10px 14px;
  border: 1px solid rgba(223, 231, 238, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.84fr) minmax(0, 0.96fr);
  gap: 58px;
  align-items: center;
}

.showcase-copy .text-stack {
  max-width: 690px;
}

@media (max-width: 920px) {
  .showcase-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .art-badge {
    left: 16px;
    right: 16px;
    bottom: 16px;
    text-align: center;
  }

  .section-lead {
    font-size: 15px;
  }
}
