:root {
  color-scheme: dark;
  --background: #111418;
  --surface: #1a1f24;
  --card: #222831;
  --text: #eaeaea;
  --muted: #9aa4ae;
  --accent: #2f8cff;
  --accent-soft: rgba(47, 140, 255, 0.14);
  --blue-surface: #16324a;
  --line: rgba(234, 234, 234, 0.1);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --content-max: 1200px;
  --page-gutter: clamp(18px, 4vw, 40px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: clip;
  background: var(--background);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.96;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

h3 {
  font-size: 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(17, 20, 24, 0.88);
  backdrop-filter: blur(14px);
}

.header-inner,
.hero,
.section-inner {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--content-max));
  margin-right: auto;
  margin-left: auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 0;
  padding-bottom: 6px;
}

.brand img {
  display: block;
  width: auto;
  height: 42px;
  max-width: min(300px, 54vw);
  object-fit: contain;
}

.brand-labs {
  position: absolute;
  bottom: 3px;
  left: 59.5%;
  color: #eaeaea;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.5em;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: min(720px, calc(100vh - 76px));
  padding: clamp(66px, 8vw, 104px) 0 clamp(68px, 8vw, 104px);
}

.hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--page-gutter) * -1);
  z-index: -1;
  width: calc(100% + (var(--page-gutter) * 2));
  background:
    radial-gradient(circle at 72% 22%, rgba(47, 140, 255, 0.13), transparent 34%),
    linear-gradient(rgba(234, 234, 234, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(234, 234, 234, 0.025) 1px, transparent 1px);
  background-size: auto, 48px 48px, 48px 48px;
  content: "";
  opacity: 0.9;
}

.hero-copy {
  display: grid;
  gap: 22px;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 680px;
  margin: 0;
  color: #cfd6dd;
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 800;
}

.button.primary {
  background: var(--accent);
  color: #ffffff;
}

.button.secondary {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
}

.trust-note {
  max-width: 620px;
  margin: 0;
  font-size: 14px;
}

.hero-visual {
  position: relative;
  display: grid;
  justify-items: end;
  gap: 16px;
}

.phone-card,
.summary-card,
.steps article,
.fit-grid article,
.beta-panel,
.not-fit,
.founder-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.phone-card {
  display: grid;
  width: min(100%, 460px);
  gap: 12px;
  padding: 18px;
}

.phone-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.message {
  max-width: 86%;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.45;
}

.message.inbound {
  background: var(--surface);
  color: var(--text);
}

.message.outbound {
  justify-self: end;
  background: var(--accent);
  color: #ffffff;
}

.summary-card {
  width: min(100%, 460px);
  justify-self: end;
  padding: 22px;
  background: #1d242c;
}

.card-label {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.summary-card h2 {
  font-size: 26px;
}

.summary-card dl {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
}

.summary-card div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.summary-card dt {
  color: var(--muted);
  font-size: 13px;
}

.summary-card dd {
  margin: 0;
  color: var(--text);
  font-weight: 800;
  text-align: right;
}

.section {
  position: relative;
  padding: clamp(54px, 8vw, 96px) 0;
}

.band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.section.split,
.section.beta,
.section.contact {
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  padding-right: max(var(--page-gutter), calc((100% - var(--content-max)) / 2));
  padding-left: max(var(--page-gutter), calc((100% - var(--content-max)) / 2));
}

.section.split {
  border-top: 1px solid var(--line);
}

.section-copy {
  display: grid;
  max-width: 900px;
  gap: 16px;
  margin-bottom: 32px;
}

.section-copy p:last-child,
.split p,
.beta-panel p,
.contact p {
  max-width: 760px;
}

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

.steps article {
  padding: 20px;
  box-shadow: none;
}

.steps span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.steps h3 {
  margin-top: 18px;
}

.steps p,
.not-fit p,
.founder-card p {
  margin-bottom: 0;
  font-size: 14px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.split::before {
  content: "";
  display: none;
}

.split h2,
.contact h2 {
  margin-top: 12px;
}

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

.fit-grid article {
  padding: 18px;
  color: var(--text);
  font-weight: 800;
  box-shadow: none;
}

.beta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 18px;
  background: #151b21;
  border-top: 1px solid var(--line);
  border-right: 0;
  border-bottom: 1px solid var(--line);
  border-left: 0;
  border-radius: 0;
}

.beta::before {
  content: "";
  display: none;
}

.beta-panel,
.not-fit,
.founder-card {
  padding: clamp(22px, 4vw, 34px);
}

.beta-panel,
.not-fit {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.beta-panel h2,
.not-fit h3 {
  margin-top: 12px;
}

.beta-panel ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding-left: 20px;
  color: #cfd6dd;
  font-size: 16px;
  line-height: 1.5;
}

.not-fit {
  align-self: stretch;
  box-shadow: none;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: var(--blue-surface);
  border-top: 1px solid rgba(234, 234, 234, 0.16);
  border-bottom: 1px solid rgba(234, 234, 234, 0.12);
}

.contact::before {
  content: "";
  display: none;
}

.contact-copy {
  display: grid;
  gap: 16px;
}

.contact-copy p {
  margin: 0;
  color: #d4e2ef;
}

.contact-email {
  width: fit-content;
  margin-top: 4px;
  color: #ffffff;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.founder-card {
  display: grid;
  gap: 14px;
  background: rgba(17, 20, 24, 0.38);
  border-color: rgba(234, 234, 234, 0.16);
  box-shadow: none;
  padding: 16px;
}

.founder-photo {
  display: block;
  width: 100%;
  min-height: 320px;
  max-height: 420px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: 62% 36%;
  border: 1px solid rgba(234, 234, 234, 0.16);
  border-radius: 8px;
  background: rgba(234, 234, 234, 0.06);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 24px;
  padding: 28px max(var(--page-gutter), calc((100% - var(--content-max)) / 2));
  background: #10273a;
  color: #d4e2ef;
  font-size: 14px;
}

.site-footer strong {
  display: block;
  color: #ffffff;
  font-size: 16px;
}

.site-footer p {
  margin: 6px 0 0;
  color: #a9bfd3;
  font-size: 14px;
  line-height: 1.4;
}

.site-footer nav {
  display: flex;
  gap: 18px;
  font-weight: 800;
}

.site-footer a {
  color: #d8eaff;
}

.site-footer span {
  color: #a9bfd3;
}

.legal-page {
  width: min(calc(100% - (var(--page-gutter) * 2)), 920px);
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) 0;
}

.legal-document {
  display: grid;
  gap: 28px;
}

.legal-document h1 {
  max-width: 760px;
  font-size: clamp(42px, 6vw, 68px);
}

.legal-document h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.legal-document section {
  display: grid;
  gap: 14px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.legal-document p,
.legal-document li,
.legal-document address,
.legal-document blockquote {
  color: #cfd6dd;
  font-size: 16px;
  line-height: 1.7;
}

.legal-document p,
.legal-document ul {
  margin: 0;
}

.legal-document ul {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

.legal-note,
.legal-dates,
.legal-document blockquote,
.legal-document address {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 18px;
}

.legal-dates {
  display: grid;
  gap: 6px;
}

.legal-document blockquote,
.legal-document address {
  margin: 0;
  font-style: normal;
}

@media (max-width: 980px) {
  .hero,
  .split,
  .beta,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .summary-card {
    justify-self: start;
  }
}

@media (max-width: 700px) {
  .site-header {
    position: static;
  }

  .site-nav {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .button {
    width: 100%;
  }

  .steps,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .summary-card {
    justify-self: stretch;
    width: 100%;
  }

  .phone-card {
    width: 100%;
  }
}
