@import url("https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700;800&display=swap");
:root {
  --ink: #f7f9fd;
  --muted: #a9b4c5;
  --blue: #0066ff;
  --line: rgba(190, 213, 244, 0.16);
  --night: #05080d;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--night);
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
}
.brand-intro {
  position: fixed;
  z-index: 20;
  inset: 0;
  display: grid;
  place-items: center;
  background: #05080d;
  transition:
    opacity 0.52s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.52s linear;
}
.site-ready .brand-intro {
  opacity: 0;
  visibility: hidden;
}
.intro-mark {
  width: min(500px, 78vw);
  animation: introDisappear 0.58s cubic-bezier(0.4, 0, 0.2, 1) 0.55s forwards;
}
.intro-mark img {
  display: block;
  width: 100%;
  height: auto;
}
.shell {
  max-width: 1180px;
  margin: auto;
  padding: 0 24px;
}
a {
  color: inherit;
  text-decoration: none;
}
.top,
footer {
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.logo-crop {
  width: 154px;
  height: auto;
}
.logo {
  width: 154px;
  height: auto;
  display: block;
}
.button {
  display: inline-flex;
  padding: 15px 23px;
  border-radius: 999px;
  background: var(--blue);
  border: 1px solid var(--blue);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  transition: 0.25s;
}
.button:hover {
  transform: translateY(-3px);
  background: #1476ff;
}
.ghost {
  background: transparent;
  border-color: var(--line);
}
.eyebrow,
small {
  font:
    500 0.76rem "DM Mono",
    monospace;
  letter-spacing: 0.12em;
  color: #65aeff;
  text-transform: uppercase;
  margin: 0 0 19px;
}
.hero {
  min-height: 640px;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 81% 24%,
      rgba(0, 102, 255, 0.31),
      transparent 28%
    ),
    linear-gradient(135deg, #060a10, #05080d 55%, #071425);
}
.hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  pointer-events: none;
  background: linear-gradient(transparent, var(--night));
}
.hero .shell {
  position: relative;
  z-index: 1;
}
.grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(116, 180, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(116, 180, 255, 0.1) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.5;
  transform: perspective(600px) rotateX(62deg) scale(1.4) translateY(25%);
}
h1 {
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  letter-spacing: -0.09em;
  line-height: 0.95;
  max-width: 1000px;
  margin: 0 0 27px;
}
h1 span,
.cta h2 span {
  color: #46a2ff;
}
.lead {
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 625px;
}
.signal {
  font:
    500 0.72rem "DM Mono",
    monospace;
  color: #9ecaff;
  letter-spacing: 0.06em;
  margin-top: 30px;
}
.signal i,
small i {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #54a5ff;
  border-radius: 50%;
  box-shadow: 0 0 16px #1986ff;
  margin-right: 10px;
}
.diagnosis,
.flow,
.founders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  padding-top: 125px;
  padding-bottom: 125px;
  position: relative;
}
.diagnosis:before,
.workflow:before,
.founders:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1132px, calc(100% - 48px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(101, 174, 255, 0.32), transparent);
}
h2 {
  font-size: clamp(2.25rem, 4.35vw, 4.15rem);
  line-height: 1.03;
  letter-spacing: -0.078em;
  margin: 0;
}
.diagnosis > div:last-child,
.flow > div:first-child > p:not(.eyebrow),
.cards p,
.founders-lead,
.founders-roles p,
.cta > div > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.05rem;
}
.founders { grid-template-columns: minmax(290px, .98fr) minmax(0, 1.12fr); align-items: center; }
.founders-photo { position: relative; overflow: hidden; min-height: 620px; border: 1px solid rgba(101,174,255,.25); border-radius: 18px; background: #07101b; isolation: isolate; box-shadow: 24px 30px 90px rgba(0, 54, 120, .22); }
.founders-photo:before { content: ""; position: absolute; z-index: -1; inset: 22px -18px -22px 22px; border: 1px solid rgba(101,174,255,.25); border-radius: 18px; transform: rotate(-2deg); }
.founders-photo:after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, transparent 57%, rgba(0, 0, 0, .72) 100%); pointer-events: none; }
.founders-photo img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; object-position: center top; display: block; filter: saturate(.92) contrast(1.04); transition: transform .7s cubic-bezier(.2,.75,.25,1); }
.founders-photo:hover img { transform: scale(1.035); }
.founders-photo span { position: absolute; z-index: 1; bottom: 22px; left: 23px; color: #fff; font: 500 .66rem/1 "DM Mono", monospace; letter-spacing: .13em; }
.founders-copy { padding: 15px 0; }
.founders-lead { max-width: 565px; margin: 25px 0 38px; }
.founders-roles { display: grid; gap: 0; border-top: 1px solid var(--line); }
.founders-roles article { padding: 22px 0 20px; border-bottom: 1px solid var(--line); }
.founders-roles h3 { margin: 0 0 5px; font-size: 1.14rem; letter-spacing: -.04em; }
.founders-roles span { color: #69b1ff; text-transform: uppercase; font: 500 .66rem/1.4 "DM Mono", monospace; letter-spacing: .1em; }
.founders-roles p { margin: 10px 0 0; max-width: 515px; font-size: .93rem; }
.solutions {
  padding: 111px 0;
  background: #070e18;
  border: 1px solid var(--line);
  border-left: 0;
  border-right: 0;
  position: relative;
  overflow: hidden;
}
.solutions:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 84% 10%, rgba(0, 102, 255, 0.12), transparent 28%);
}
.head {
  max-width: 800px;
  margin-bottom: 58px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.cards article {
  min-height: 315px;
  border: 1px solid var(--line);
  padding: 31px 28px;
  background: linear-gradient(
    145deg,
    rgba(22, 42, 67, 0.62),
    rgba(6, 12, 20, 0.9)
  );
  transition: transform 0.4s cubic-bezier(0.2, 0.75, 0.25, 1), border-color 0.4s ease, background 0.4s ease;
}
.cards article:hover {
  transform: translateY(-8px);
  border-color: rgba(74, 162, 255, 0.62);
  background: linear-gradient(145deg, rgba(24, 56, 91, 0.78), rgba(6, 12, 20, 0.94));
}
.cards b {
  font: 500 1.2rem "DM Mono";
  color: #65aeff;
  border: 1px solid rgba(101, 174, 255, 0.28);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
}
.cards h3 {
  font-size: 1.45rem;
  letter-spacing: -0.055em;
  margin: 43px 0 15px;
}
.workflow {
  padding: 122px 0;
}
.flow > div:first-child > p:not(.eyebrow) {
  max-width: 520px;
  margin: 24px 0 33px;
}
.terminal {
  border: 1px solid rgba(91, 166, 255, 0.34);
  background: #050a11;
  box-shadow: 0 28px 70px rgba(0, 38, 85, 0.27);
  font:
    400 0.88rem/1.9 "DM Mono",
    monospace;
  color: #c0d3e9;
  transition: transform 0.5s cubic-bezier(0.2, 0.75, 0.25, 1), box-shadow 0.5s ease;
}
.terminal:hover {
  transform: translateY(-5px);
  box-shadow: 0 34px 86px rgba(0, 62, 140, 0.34);
}
.terminal .bar {
  height: 43px;
  border-bottom: 1px solid var(--line);
  padding: 8px 14px;
  color: #7190b0;
}
.bar span {
  margin-left: 10px;
}
.terminal > div:last-child {
  padding: 28px;
  min-height: 244px;
}
.terminal p {
  margin: 0;
}
.terminal em {
  color: #65aeff;
}
.indent {
  padding-left: 18px;
  color: #8092a7;
}
.ok {
  color: #72c2ff;
}
.cursor {
  display: block;
  width: 8px;
  height: 17px;
  background: #62b0ff;
  margin-top: 8px;
  animation: blink 1s steps(1) infinite;
}
.cta {
  padding: 118px 0;
  background: linear-gradient(120deg, #062147, #0066d9 82%, #137deb);
}
.cta h2 {
  max-width: 930px;
}
.cta > div > p:not(.eyebrow) {
  color: #d6eaff;
  max-width: 530px;
  margin: 24px 0 31px;
}
.light {
  background: #fff;
  color: #082552;
  border-color: #fff;
}
footer {
  border-top: 1px solid var(--line);
  border-bottom: 0;
  color: var(--muted);
  font-size: 0.84rem;
}
.foot {
  width: 92px;
  height: auto;
}
.foot .logo {
  width: 92px;
  height: auto;
}
.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  filter: blur(5px);
  transition: opacity 0.72s ease, transform 0.72s cubic-bezier(0.2, 0.75, 0.25, 1), filter 0.62s ease;
}
.visible {
  opacity: 1;
  transform: none;
  filter: none;
}
.cards .reveal:nth-child(2) {
  transition-delay: 0.1s;
}
.cards .reveal:nth-child(3) {
  transition-delay: 0.2s;
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}
@keyframes introDisappear {
  to {
    opacity: 0;
    transform: scale(1.025);
  }
}
@media (prefers-reduced-motion: reduce) {
  .brand-intro {
    display: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
  .intro-mark {
    animation: none;
  }
}
@media (max-width: 760px) {
  .top {
    height: 82px;
  }
  .logo-crop {
    width: 116px;
  }
  .logo {
    width: 116px;
  }
  .top .button {
    padding: 10px 13px;
    font-size: 0.74rem;
  }
  .hero {
    min-height: 555px;
  }
  h1 {
    font-size: clamp(3.15rem, 14vw, 4.2rem);
  }
  .diagnosis,
  .flow,
  .founders {
    grid-template-columns: 1fr;
    gap: 37px;
    padding-top: 76px;
    padding-bottom: 76px;
  }
  .solutions,
  .workflow {
    padding: 76px 0;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .founders-photo, .founders-photo img { min-height: 460px; }
  .cards article {
    min-height: 255px;
  }
  .head {
    margin-bottom: 35px;
  }
  .cta {
    padding: 82px 0;
  }
  footer {
    height: 90px;
    font-size: 0.72rem;
  }
  .foot {
    width: 76px;
    height: auto;
  }
  .foot .logo {
    width: 76px;
    height: auto;
  }
}
