:root {
  --black: #05060a;
  --black-2: #090d14;
  --white: #f7fbff;
  --paper: #eef3f7;
  --muted: #a9b3bf;
  --muted-2: #66727f;
  --blue: #429fd3;
  --cyan: #40d6c6;
  --ember: #ff7a31;
  --line: rgba(255, 255, 255, .14);
  --line-dark: rgba(5, 6, 10, .12);
  --shadow: 0 32px 90px rgba(0, 0, 0, .38);
  --font-body: Inter, "Segoe UI", Arial, sans-serif;
  --font-brand: KimberleyBl-Regular, "Space Grotesk", Inter, "Segoe UI", Arial, sans-serif;
  --font-display: KimberleyBl-Regular, "Space Grotesk", Inter, "Segoe UI", Arial, sans-serif;
}

@font-face {
  font-family: KimberleyBl-Regular;
  src: url("fonts/KimberleyBl-Regular.woff2") format("woff2"),
       url("fonts/KimberleyBl-Regular.woff") format("woff");
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body::selection {
  color: var(--black);
  background: var(--blue);
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 20px 9vw;
  background: rgba(5, 6, 10, .5);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: background .2s ease, border-color .2s ease;
}

.site-header.is-scrolled {
  background: rgba(5, 6, 10, .9);
  border-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(158px, 17vw, 260px);
  flex: 0 0 auto;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: rgba(247, 251, 255, .75);
  font-size: .95rem;
  font-weight: 600;
}

.site-nav a {
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.site-nav a:hover {
  color: var(--white);
}

.nav-cta {
  min-height: 46px;
  padding: 13px 20px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 8px;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, .08);
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 40;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, .04);
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  background: #05060a;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(63, 155, 212, .18), transparent 28%),
    radial-gradient(circle at 72% 18%, rgba(255, 122, 49, .16), transparent 24%),
    linear-gradient(180deg, rgba(5, 6, 10, .62), rgba(5, 6, 10, .98) 78%);
  z-index: 1;
}

.hero-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 24%, rgba(255, 255, 255, .5) 0 1px, transparent 2px),
    radial-gradient(circle at 68% 34%, rgba(255, 255, 255, .36) 0 1px, transparent 2px),
    radial-gradient(circle at 84% 20%, rgba(63, 155, 212, .52) 0 1px, transparent 2px),
    linear-gradient(105deg, #030407 0%, #07111a 48%, #100806 100%);
}

.planet {
  position: absolute;
  left: -8vw;
  right: -8vw;
  bottom: -280px;
  height: 500px;
  border-radius: 50% 50% 0 0;
  background:
    radial-gradient(ellipse at 72% 2%, rgba(255, 122, 49, .88), transparent 18%),
    radial-gradient(ellipse at 50% 2%, rgba(247, 251, 255, .72), rgba(63, 155, 212, .28) 8%, rgba(12, 23, 34, .95) 32%, rgba(2, 3, 6, 1) 70%);
  box-shadow: 0 -22px 80px rgba(63, 155, 212, .22);
  transform: rotate(-3deg);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.orbit-one {
  width: 760px;
  height: 210px;
  right: 8vw;
  bottom: 80px;
}

.orbit-two {
  width: 1020px;
  height: 290px;
  left: -12vw;
  bottom: 150px;
  border-color: rgba(63, 155, 212, .15);
}

.signal {
  position: absolute;
  display: block;
  height: 3px;
  border-radius: 999px;
}

.signal-a {
  width: 54px;
  left: 15vw;
  top: 330px;
  background: var(--blue);
}

.signal-b {
  width: 54px;
  left: calc(15vw + 66px);
  top: 330px;
  background: var(--cyan);
}

.signal-c {
  width: 54px;
  left: calc(15vw + 132px);
  top: 330px;
  background: var(--ember);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 70px;
  align-items: center;
  min-height: 820px;
  padding: 132px 9vw 96px;
}

.hero-copy {
  max-width: 780px;
  min-width: 0;
}

.accent-bars {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}

.accent-bars span {
  width: 54px;
  height: 5px;
  border-radius: 999px;
}

.accent-bars span:nth-child(1) { background: var(--blue); }
.accent-bars span:nth-child(2) { background: var(--cyan); }
.accent-bars span:nth-child(3) { background: var(--ember); }

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

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: 0;
}

h1 {
  margin-bottom: 26px;
  font-size: 4.65rem;
  line-height: .98;
}

h2 {
  margin-bottom: 18px;
  font-size: 3.35rem;
  line-height: 1.04;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
  line-height: 1.15;
}

.hero-copy p {
  max-width: 680px;
  color: rgba(247, 251, 255, .78);
  font-size: 1.18rem;
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

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

.button.primary {
  color: var(--black);
  background: var(--blue);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .46);
  background: rgba(255, 255, 255, .05);
}

.mission-card {
  align-self: end;
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  background: rgba(7, 11, 16, .68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.mission-card img {
  width: 300px;
  margin-bottom: 28px;
  filter: invert(1);
}

.mission-card p {
  color: rgba(247, 251, 255, .75);
  line-height: 1.7;
}

.mission-card dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 24px 0 0;
  background: var(--line);
}

.mission-card div {
  min-height: 108px;
  padding: 18px;
  background: rgba(255, 255, 255, .06);
}

.mission-card dt {
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
}

.mission-card dd {
  margin: 8px 0 0;
  color: rgba(247, 251, 255, .72);
  font-size: .9rem;
  line-height: 1.35;
}

.statement {
  padding: 96px 9vw;
  color: var(--black);
  background: var(--paper);
}

.statement p {
  margin-bottom: 18px;
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.statement h2 {
  max-width: 1040px;
  margin-bottom: 0;
}

.section {
  padding: 110px 9vw;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 44px;
}

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 72px;
  align-items: end;
  max-width: none;
}

.section-heading.split > p,
.method-panel p,
.proof-grid p,
.post-card p,
.post-view p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.services {
  background:
    linear-gradient(180deg, #05060a, #0b1119);
}

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

.service-card {
  position: relative;
  min-height: 360px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .045);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 20px 20px auto;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(63, 155, 212, .26);
  border-radius: 50%;
}

.service-card.featured {
  background:
    linear-gradient(145deg, rgba(63, 155, 212, .2), rgba(255, 255, 255, .045));
}

.service-card span {
  display: inline-flex;
  margin-bottom: 88px;
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 700;
}

.service-card p {
  color: var(--muted);
  line-height: 1.68;
}

.method {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, 1fr);
  gap: 72px;
  color: var(--black);
  background: #fff;
}

.method-panel {
  position: sticky;
  top: 120px;
  align-self: start;
}

.method-panel .eyebrow,
.proof .eyebrow {
  color: var(--blue);
}

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

.timeline article {
  padding: 30px;
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  background:
    linear-gradient(120deg, rgba(63, 155, 212, .08), transparent 42%),
    #fff;
}

.timeline span {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--ember);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
}

.timeline p {
  margin-bottom: 0;
  color: var(--muted-2);
  line-height: 1.7;
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1fr);
  gap: 70px;
  background:
    radial-gradient(circle at 84% 8%, rgba(64, 214, 198, .18), transparent 26%),
    #081019;
}

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

.proof-grid p {
  min-height: 154px;
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .05);
}

.contact {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1fr);
  gap: 70px;
  padding: 110px 9vw;
  overflow: hidden;
  background: var(--paper);
  color: var(--black);
}

.contact-visual {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.contact-visual span {
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(63, 155, 212, .24), rgba(64, 214, 198, .12) 42%, transparent 70%);
}

.contact-copy,
.contact-form {
  position: relative;
  z-index: 1;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(5, 6, 10, .08);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: var(--black);
  font-size: .86rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(5, 6, 10, .16);
  border-radius: 12px;
  background: #f8fbfd;
  color: var(--black);
  font: inherit;
  padding: 15px 16px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 132px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(66, 159, 211, .8);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(66, 159, 211, .14);
}

.contact-form button {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted-2);
  font-weight: 700;
}

.form-status[data-state="success"] {
  color: #137c55;
}

.form-status[data-state="error"] {
  color: #b13b31;
}

.contact-copy code {
  padding: 2px 6px;
  border-radius: 6px;
  color: var(--black);
  background: rgba(66, 159, 211, .16);
}

.contact-links a {
  padding: 22px;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: #fff;
  color: var(--black);
  font-weight: 800;
  overflow-wrap: anywhere;
  transition: transform .2s ease, border-color .2s ease;
}

.contact-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(63, 155, 212, .6);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 9vw;
  color: rgba(247, 251, 255, .66);
  background: #030407;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: block;
  width: clamp(112px, 10vw, 160px);
  flex: 0 0 auto;
}

.footer-brand img {
  width: 100%;
  height: auto;
  filter: invert(1);
}

@media (max-width: 1120px) {
  .hero-inner,
  .method,
  .proof,
  .contact,
  .section-heading.split {
    grid-template-columns: 1fr;
  }

  .mission-card {
    align-self: auto;
    max-width: 640px;
  }

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

  .method-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 74px;
    padding: 14px 22px;
  }

  .brand {
    width: 168px;
  }

  .nav-toggle {
    display: block !important;
  }

  .site-nav {
    position: fixed;
    top: 74px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(5, 6, 10, .96);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a,
  .nav-cta {
    padding: 14px;
    border: 0;
  }

  .hero,
  .hero-inner {
    min-height: 760px;
  }

  .hero-inner {
    padding: 112px 22px 64px;
    overflow: hidden;
  }

  .signal-a,
  .signal-b,
  .signal-c {
    top: 244px;
    left: 22px;
  }

  .signal-b {
    left: 86px;
  }

  .signal-c {
    left: 150px;
  }

  .planet {
    bottom: -210px;
    height: 380px;
  }

  h1 {
    max-width: 100%;
    font-size: 2.58rem;
    line-height: 1.04;
    overflow-wrap: break-word;
  }

  h2 {
    font-size: 2.08rem;
    line-height: 1.08;
  }

  .hero-copy p {
    max-width: 100%;
    font-size: 1.04rem;
    overflow-wrap: break-word;
  }

  .hero .eyebrow,
  .hero-copy h1,
  .hero-copy p {
    max-width: 330px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 330px;
  }

  .button {
    width: 100%;
  }

  .statement,
  .section,
  .contact {
    padding: 72px 22px;
  }

  .service-grid,
  .proof-grid,
  .mission-card dl {
    grid-template-columns: 1fr;
  }

  .mission-card {
    width: 100%;
    max-width: 330px;
    padding: 24px;
  }

  .mission-card img {
    width: 250px;
  }

  .service-card,
  .post-card {
    min-height: auto;
  }

  .service-card span {
    margin-bottom: 56px;
  }

  .site-footer {
    display: grid;
    padding: 26px 22px;
  }

  .contact-form {
    padding: 22px;
  }

  .contact-form button {
    justify-self: stretch;
  }
}
