@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --navy: #0d1b2a;
  --orange: #ff6b00;
  --white: #ffffff;
  --ink: #05080d;
  --muted: #aab4c0;
  --metadata: #8d98a3;
  --border: rgb(255 255 255 / 12%);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  background: var(--ink);
}

body {
  overflow-x: hidden;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.site-shell {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: 100%;
  height: 100svh;
  min-height: 100svh;
  padding: 42px 5vw 54px;
  overflow: hidden;
  background:
    radial-gradient(circle at 79% 45%, rgb(255 107 0 / 9%), transparent 23%),
    radial-gradient(circle at 79% 48%, #0d1b2a 0, #08111b 29%, #05080d 67%);
}

.site-shell::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgb(255 255 255 / 1.8%) 1px, transparent 1px);
  background-size: 100% 64px;
  content: "";
  mask-image: linear-gradient(to bottom, transparent, #000 15%, #000 80%, transparent);
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-logo {
  display: block;
  width: clamp(148px, 14.5vw, 208px);
  height: auto;
  flex: 0 0 auto;
  animation: reveal 700ms cubic-bezier(.2, .8, .2, 1) both;
}

.header-actions,
.launch-status {
  display: flex;
  align-items: center;
}

.header-actions {
  gap: 28px;
}

.launch-status {
  gap: 10px;
  color: #d4dae1;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .13em;
  text-transform: uppercase;
  white-space: nowrap;
}

.status-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 18px rgb(255 107 0 / 76%);
}

.header-cta,
.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 720;
  letter-spacing: -.01em;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 200ms ease, border-color 200ms ease, background-color 200ms ease;
}

.header-cta:disabled,
.hero-cta:disabled {
  cursor: not-allowed;
}

.header-cta {
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid rgb(255 255 255 / 18%);
  background: rgb(255 255 255 / 6%);
  color: var(--white);
}

.header-cta:not(:disabled):hover,
.header-cta:not(:disabled):focus-visible {
  border-color: rgb(255 255 255 / 34%);
  background: rgb(255 255 255 / 10%);
  transform: translateY(-1px);
}

.main-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, .94fr);
  align-items: center;
  gap: clamp(24px, 3vw, 64px);
  min-height: 0;
  overflow: hidden;
}

.hero {
  position: relative;
  z-index: 10;
  width: min(100%, 680px);
  padding-left: 1.1vw;
  animation: hero-in 850ms 100ms cubic-bezier(.2, .8, .2, 1) both;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: #c7d0d9;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--orange);
  content: "";
}

h1 {
  margin: 0;
  font-size: clamp(52px, 5.1vw, 74px);
  font-weight: 520;
  letter-spacing: -.055em;
  line-height: .99;
}

h1 span {
  color: var(--orange);
}

.hero-copy {
  max-width: 590px;
  margin: 28px 0 34px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 430;
  letter-spacing: -.015em;
  line-height: 1.6;
}

.hero-cta {
  min-height: 58px;
  gap: 12px;
  padding: 0 26px;
  border: 1px solid var(--orange);
  background: var(--orange);
  color: var(--navy);
  box-shadow: 0 18px 46px rgb(255 107 0 / 20%);
}

.hero-cta:not(:disabled):hover,
.hero-cta:not(:disabled):focus-visible {
  background: #ff7a1a;
  transform: translateY(-2px);
}

.hero-cta svg {
  width: 18px;
  height: 18px;
}

.hero-cta path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.signal-stage {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.signal-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.signal-lines path {
  fill: none;
  stroke-linecap: round;
}

.signal-lines .fine {
  stroke: rgb(255 255 255 / 11%);
  stroke-width: 1;
}

.signal-lines .secondary {
  stroke: rgb(255 255 255 / 7%);
}

.signal-lines .pulse {
  stroke: url(#signal-gradient);
  stroke-width: 2;
  stroke-dasharray: 7 18;
  animation: signal-flow 10s linear infinite;
}

.mark-glow {
  position: absolute;
  top: 50%;
  right: 4%;
  width: 66%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgb(255 107 0 / 8%);
  filter: blur(58px);
  transform: translateY(-50%);
}

.signal-mark {
  position: relative;
  width: auto;
  max-width: 96%;
  height: min(82%, 560px);
  margin-right: -2%;
  opacity: .93;
  filter: drop-shadow(0 32px 70px rgb(0 0 0 / 48%));
  animation: mark-in 900ms 160ms cubic-bezier(.2, .8, .2, 1) both;
}

.signal-meta {
  position: absolute;
  right: 5%;
  bottom: 5%;
  display: flex;
  gap: 18px;
  color: var(--metadata);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.signal-meta strong {
  color: var(--orange);
}

.capabilities {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--border);
}

.capability {
  min-height: 112px;
  padding: 28px 32px 0 0;
}

.capability + .capability {
  padding-left: 34px;
  border-left: 1px solid var(--border);
}

.capability-index {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .16em;
}

.capability-name {
  color: #eef2f6;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -.02em;
}

@media (min-width: 761px) and (max-width: 1100px) {
  .site-shell {
    padding-inline: 5vw;
  }

  .main-stage {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
    gap: 18px;
  }

  .hero {
    padding-left: 0;
  }

  h1 {
    font-size: clamp(48px, 5.6vw, 60px);
  }

  .hero-copy {
    font-size: 16px;
  }

  .signal-mark {
    max-width: 94%;
    height: min(74%, 440px);
  }

  .capability-name {
    font-size: 15px;
  }
}

@media (min-width: 761px) and (max-height: 800px) {
  .site-shell {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .header-cta {
    min-height: 42px;
    padding-inline: 20px;
  }

  .eyebrow {
    margin-bottom: 15px;
    font-size: 12px;
  }

  h1 {
    font-size: clamp(46px, 4.05vw, 58px);
  }

  .hero-copy {
    max-width: 540px;
    margin: 18px 0 22px;
    font-size: 15.5px;
    line-height: 1.5;
  }

  .hero-cta {
    min-height: 50px;
    padding-inline: 22px;
  }

  .signal-mark {
    max-width: 92%;
    height: min(86%, 430px);
  }

  .signal-meta {
    right: 6%;
    bottom: 4%;
    font-size: 10px;
  }

  .capability {
    min-height: 84px;
    padding: 19px 28px 0 0;
  }

  .capability + .capability {
    padding-left: 30px;
  }

  .capability-index {
    margin-bottom: 7px;
    font-size: 11px;
  }

  .capability-name {
    font-size: 15px;
  }
}

@media (max-width: 760px) {
  .site-shell {
    grid-template-rows: auto auto auto;
    height: auto;
    min-height: 100svh;
    padding: 22px 22px 18px;
    overflow: hidden;
    background:
      radial-gradient(circle at 92% 71%, rgb(255 107 0 / 10%), transparent 24%),
      radial-gradient(circle at 90% 70%, #0d1b2a 0, #08111b 32%, #05080d 72%);
  }

  .site-shell::after {
    background-size: 100% 48px;
    mask-image: linear-gradient(to bottom, transparent, #000 10%, #000 92%, transparent);
  }

  .site-header {
    gap: 12px;
  }

  .brand-logo {
    width: clamp(140px, 38vw, 148px);
  }

  .header-actions {
    min-width: 0;
    gap: 0;
  }

  .launch-status {
    gap: 7px;
    font-size: 11px;
    letter-spacing: .06em;
  }

  .status-dot {
    width: 6px;
    height: 6px;
  }

  .header-cta {
    display: none;
  }

  .main-stage {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto 190px;
    gap: 18px;
    margin-top: 48px;
    overflow: hidden;
  }

  .hero {
    width: 100%;
    padding-left: 0;
  }

  .eyebrow {
    gap: 9px;
    margin-bottom: 18px;
    font-size: 11px;
    letter-spacing: .13em;
  }

  .eyebrow::before {
    width: 18px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(42px, 12.3vw, 48px);
    letter-spacing: -.057em;
    line-height: .99;
  }

  .hero-copy {
    max-width: 100%;
    margin: 21px 0 24px;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-cta {
    min-height: 52px;
    padding: 0 22px;
    font-size: 14px;
  }

  .signal-stage {
    height: 190px;
    min-height: 190px;
    border-top: 1px solid rgb(255 255 255 / 7%);
  }

  .signal-lines {
    top: -50px;
    left: -120px;
    width: 590px;
    height: 280px;
  }

  .mark-glow {
    right: -10%;
    width: 66%;
  }

  .signal-mark {
    width: auto;
    max-width: none;
    height: 190px;
    margin-right: -28px;
    opacity: .74;
  }

  .signal-meta {
    display: none;
  }

  .capabilities {
    grid-template-columns: minmax(0, 1fr);
    background: rgb(5 8 13 / 88%);
    backdrop-filter: blur(5px);
  }

  .capability {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    align-items: center;
    min-height: 43px;
    padding: 0;
    border-bottom: 1px solid rgb(255 255 255 / 8%);
  }

  .capability + .capability {
    padding-left: 0;
    border-left: 0;
  }

  .capability:last-child {
    border-bottom: 0;
  }

  .capability-index {
    margin: 0;
    font-size: 11px;
  }

  .capability-name {
    font-size: 15px;
  }
}

@media (max-width: 380px) {
  .site-shell {
    padding-inline: 18px;
  }

  .launch-status {
    font-size: 10px;
  }

  .main-stage {
    margin-top: 42px;
  }

  h1 {
    font-size: 42px;
  }
}

@media (max-width: 340px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .main-stage {
    margin-top: 34px;
  }
}

@keyframes reveal {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes mark-in {
  from { opacity: 0; transform: translateX(24px) scale(.98); }
  to { opacity: .93; transform: translateX(0) scale(1); }
}

@keyframes signal-flow {
  to { stroke-dashoffset: -250; }
}

@media (max-width: 760px) {
  @keyframes mark-in {
    from { opacity: 0; transform: translateX(20px) scale(.98); }
    to { opacity: .74; transform: translateX(0) scale(1); }
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

.error-shell {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 100svh;
  padding: 32px;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 48%, rgb(255 107 0 / 10%), transparent 24%),
    radial-gradient(circle at 72% 50%, #0d1b2a 0, #08111b 31%, #05080d 70%);
}

.error-content {
  position: relative;
  z-index: 2;
  width: min(100%, 680px);
  text-align: center;
}

.error-logo {
  width: clamp(160px, 18vw, 220px);
  height: auto;
  margin-bottom: 64px;
}

.error-code {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.error-title {
  margin: 0;
  font-size: clamp(48px, 7vw, 82px);
  font-weight: 520;
  letter-spacing: -.055em;
  line-height: 1;
}

.error-copy {
  margin: 28px auto 34px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.error-link {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--navy);
  font-size: 13px;
  font-weight: 720;
  text-decoration: none;
}

.error-mark {
  position: absolute;
  right: -10vw;
  bottom: -28vh;
  width: min(56vw, 620px);
  opacity: .08;
}

@media (max-width: 560px) {
  .error-logo {
    margin-bottom: 48px;
  }

  .error-copy {
    font-size: 15px;
  }
}
