/*! tailwindcss v4.2.1 | MIT License | https://tailwindcss.com */
@layer theme, base, components, utilities;
@layer theme {
  :root, :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
      "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
      "Courier New", monospace;
    --spacing: 0.25rem;
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}
@layer base {
  *,
  ::after,
  ::before,
  ::backdrop,
  ::file-selector-button {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid;
  }
  html,
  :host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }
  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }
  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }
  b,
  strong {
    font-weight: bolder;
  }
  code,
  kbd,
  samp,
  pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }
  small {
    font-size: 80%;
  }
  sub,
  sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }
  :-moz-focusring {
    outline: auto;
  }
  progress {
    vertical-align: baseline;
  }
  summary {
    display: list-item;
  }
  ol,
  ul,
  menu {
    list-style: none;
  }
  img,
  svg,
  video,
  canvas,
  audio,
  iframe,
  embed,
  object {
    display: block;
    vertical-align: middle;
  }
  img,
  video {
    max-width: 100%;
    height: auto;
  }
  button,
  input,
  select,
  optgroup,
  textarea,
  ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    border-radius: 0;
    background-color: transparent;
    opacity: 1;
  }
  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }
  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }
  ::file-selector-button {
    margin-inline-end: 4px;
  }
  ::placeholder {
    opacity: 1;
  }
  @supports (not (-webkit-appearance: -apple-pay-button))  or
    (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentcolor;
      @supports (color: color-mix(in lab, red, red)) {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }
  textarea {
    resize: vertical;
  }
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }
  ::-webkit-datetime-edit {
    display: inline-flex;
  }
  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }
  ::-webkit-datetime-edit,
  ::-webkit-datetime-edit-year-field,
  ::-webkit-datetime-edit-month-field,
  ::-webkit-datetime-edit-day-field,
  ::-webkit-datetime-edit-hour-field,
  ::-webkit-datetime-edit-minute-field,
  ::-webkit-datetime-edit-second-field,
  ::-webkit-datetime-edit-millisecond-field,
  ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }
  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  button,
  input:where([type="button"], [type="reset"], [type="submit"]),
  ::file-selector-button {
    appearance: button;
  }
  ::-webkit-inner-spin-button,
  ::-webkit-outer-spin-button {
    height: auto;
  }
  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}
@layer utilities {
  .relative {
    position: relative;
  }
  .start {
    inset-inline-start: var(--spacing);
  }
  .table {
    display: table;
  }
}
:root {
  --navy: #07182c;
  --navy-2: #0b1f33;
  --blue: #087bff;
  --green: #00b36b;
  --light: #f2f4f7;
  --ink: #102033;
  --line: rgba(11,31,51,.14);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--light);
  color: var(--ink);
  font-family: var(--font-body),sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
.site-header {
  height: 92px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px,5vw,80px);
  border-bottom: 1px solid rgba(255,255,255,.17);
}
.brand,.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img,.footer-brand img {
  width: 48px;
  height: 48px;
  display: block;
}
.brand span,.footer-brand span {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  font-family: var(--font-display);
  line-height: .92;
}
.brand b,.footer-brand b {
  font-size: 19px;
  letter-spacing: .08em;
}
.brand em,.footer-brand em {
  margin-top: 7px;
  color: var(--blue);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: .42em;
  padding-left: .42em;
  transform: translateX(-3px);
}
nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #fff;
  font: 600 12px var(--font-display);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav-contact {
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,.45);
}
.hero {
  min-height: 860px;
  position: relative;
  overflow: hidden;
  padding: 150px clamp(24px,7vw,110px) 38px;
  color: white;
  background: radial-gradient(circle at 76% 48%,rgba(0,120,255,.2),transparent 28%),linear-gradient(135deg,#061426 0%,#0b1f33 62%,#07182c 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: linear-gradient(rgba(255,255,255,.11) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.11) 1px,transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg,transparent,black 50%,black);
  transform: perspective(700px) rotateY(-14deg) scale(1.2);
  transform-origin: right;
}
.eyebrow {
  position: relative;
  display: flex;
  justify-content: space-between;
  color: #9db0c6;
  text-transform: uppercase;
  font: 600 10px var(--font-display);
  letter-spacing: .18em;
}
.hero-copy {
  position: relative;
  z-index: 2;
  margin-top: 110px;
  max-width: 920px;
}
.kicker {
  margin: 0 0 28px;
  text-transform: uppercase;
  font: 600 14px var(--font-display);
  letter-spacing: .21em;
  color: #fff;
}
.kicker b {
  color: var(--green);
}
.kicker em {
  color: var(--blue);
  font-style: normal;
}
h1,h2,h3 {
  font-family: var(--font-display),sans-serif;
  margin: 0;
}
h1 {
  font-size: clamp(54px,7.4vw,112px);
  line-height: .92;
  letter-spacing: -.055em;
  max-width: 1100px;
}
.hero-intro {
  width: min(510px,100%);
  margin: 36px 0 32px;
  color: #b8c6d6;
  font-size: 17px;
  line-height: 1.7;
}
.primary-button {
  display: inline-flex;
  align-items: center;
  gap: 45px;
  background: var(--blue);
  color: #fff;
  padding: 17px 20px;
  font: 600 12px var(--font-display);
  letter-spacing: .07em;
  text-transform: uppercase;
}
.hero-mark {
  position: absolute;
  z-index: 1;
  width: 420px;
  height: 420px;
  right: 5vw;
  bottom: 70px;
  opacity: .1;
  filter: grayscale(1) brightness(2);
}
.hero-mark img {
  width: 100%;
}
.status-line {
  position: absolute;
  bottom: 30px;
  left: clamp(24px,7vw,110px);
  right: clamp(24px,7vw,110px);
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.16);
  font: 600 10px var(--font-display);
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #8fa3ba;
}
.status-line i,.project-status i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  margin-right: 9px;
  box-shadow: 0 0 12px var(--green);
}
.section-label {
  font: 600 10px var(--font-display);
  letter-spacing: .19em;
  text-transform: uppercase;
  color: #637083;
}
.manifesto {
  padding: 110px clamp(24px,7vw,110px) 70px;
  background: #fff;
}
.manifesto-text {
  margin: 48px 0 80px;
  max-width: 1180px;
  font: 500 clamp(30px,4.2vw,64px)/1.15 var(--font-display);
  letter-spacing: -.035em;
}
.principles {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-top: 1px solid var(--line);
  padding-top: 20px;
  color: #657083;
  font: 600 10px var(--font-display);
  text-transform: uppercase;
  letter-spacing: .11em;
}
.capabilities {
  display: grid;
  grid-template-columns: 36% 64%;
  padding: 110px clamp(24px,7vw,110px);
  background: var(--light);
}
.section-heading h2 {
  margin-top: 32px;
  font-size: clamp(42px,5vw,74px);
  line-height: 1;
  letter-spacing: -.045em;
}
.capability {
  display: grid;
  grid-template-columns: 50px 1fr minmax(220px,310px) 28px;
  gap: 22px;
  align-items: start;
  padding: 29px 0;
  border-top: 1px solid var(--line);
}
.capability:last-child {
  border-bottom: 1px solid var(--line);
}
.capability>span {
  color: var(--blue);
  font: 600 11px var(--font-display);
}
.capability h3 {
  font-size: 21px;
  letter-spacing: -.02em;
}
.capability p {
  margin: 0;
  color: #657083;
  font-size: 13px;
  line-height: 1.6;
}
.capability b {
  color: var(--blue);
}
.project {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  min-height: 680px;
  background: var(--navy);
  color: white;
}
.project-visual {
  min-height: 570px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: radial-gradient(circle,rgba(0,120,255,.28),transparent 43%);
  border-right: 1px solid rgba(255,255,255,.12);
}
.project-visual:before,.project-visual:after {
  content: "";
  position: absolute;
  background: rgba(255,255,255,.12);
}
.project-visual:before {
  width: 1px;
  height: 100%;
}
.project-visual:after {
  width: 100%;
  height: 1px;
}
.project-visual img {
  width: 180px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.38));
}
.signal {
  position: absolute;
  border: 1px solid rgba(0,120,255,.3);
  border-radius: 50%;
}
.signal-one {
  width: 310px;
  height: 310px;
}
.signal-two {
  width: 470px;
  height: 470px;
}
.signal-three {
  width: 650px;
  height: 650px;
}
.coordinate {
  position: absolute;
  font: 600 9px var(--font-display);
  letter-spacing: .18em;
  color: #698098;
}
.coordinate.top {
  top: 28px;
  left: 30px;
}
.coordinate.bottom {
  bottom: 28px;
  right: 30px;
}
.project-copy {
  padding: clamp(65px,8vw,120px) clamp(40px,7vw,100px);
}
.project-copy .section-label {
  color: #6e86a0;
}
.project-copy h2 {
  font-size: clamp(42px,5vw,72px);
  line-height: 1.02;
  letter-spacing: -.045em;
  margin: 32px 0;
}
.project-copy>p:not(.section-label) {
  color: #a9b8c8;
  line-height: 1.7;
  max-width: 520px;
}
.project-copy ul {
  list-style: none;
  padding: 0;
  margin: 38px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  font: 600 10px var(--font-display);
  text-transform: uppercase;
  letter-spacing: .09em;
}
.project-copy li:before {
  content: "+";
  color: var(--blue);
  margin-right: 9px;
}
.project-status {
  display: block;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 24px;
  color: #8195aa;
  font: 600 10px var(--font-display);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.cta {
  padding: 110px clamp(24px,7vw,110px) 120px;
  background: #fff;
}
.cta h2 {
  font-size: clamp(48px,7vw,105px);
  line-height: .96;
  letter-spacing: -.055em;
  margin: 45px 0 60px;
}
.cta a {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 25px 0;
  font: 600 clamp(16px,2vw,24px) var(--font-display);
}
.cta a span {
  color: var(--blue);
}
footer {
  padding: 60px clamp(24px,7vw,110px) 30px;
  background: #050f1d;
  color: #8ea0b5;
}
footer .footer-brand {
  width: max-content;
}
footer>p {
  margin: 28px 0 70px;
  font-size: 13px;
}
footer>div:last-child {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 20px;
  font: 600 9px var(--font-display);
  letter-spacing: .14em;
  text-transform: uppercase;
}
@media (max-width:900px) {
  nav a:not(.nav-contact) {
    display: none;
  }
  .brand img {
    width: 42px;
    height: 42px;
  }
  .hero {
    min-height: 760px;
  }
  .hero-copy {
    margin-top: 90px;
  }
  .hero-mark {
    width: 260px;
    right: -70px;
  }
  .principles {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .capabilities {
    grid-template-columns: 1fr;
  }
  .capability-list {
    margin-top: 55px;
  }
  .project {
    grid-template-columns: 1fr;
  }
  .project-visual {
    min-height: 450px;
  }
  .project-copy ul {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width:600px) {
  .site-header {
    height: 76px;
  }
  .nav-contact {
    padding: 10px;
    font-size: 9px;
  }
  .hero {
    padding-top: 120px;
    min-height: 720px;
  }
  .eyebrow span:last-child {
    display: none;
  }
  .hero-copy {
    margin-top: 75px;
  }
  .hero-intro {
    font-size: 15px;
  }
  .manifesto,.capabilities,.cta {
    padding-top: 80px;
  }
  .principles {
    grid-template-columns: 1fr;
  }
  .capability {
    grid-template-columns: 35px 1fr 20px;
  }
  .capability p {
    grid-column: 2/4;
  }
  .project-copy {
    padding: 65px 24px;
  }
  .project-copy ul {
    grid-template-columns: 1fr;
  }
  .cta {
    padding-bottom: 85px;
  }
  footer>div {
    gap: 20px;
    flex-direction: column;
  }
  .status-line span:last-child {
    display: none;
  }
}
@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }
}
