@font-face {
  font-family: Satoshi;
  src: url(./fonts/satoshi-400.woff2) format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Satoshi;
  src: url(./fonts/satoshi-500.woff2) format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: Satoshi;
  src: url(./fonts/satoshi-700.woff2) format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: JetBrains;
  src: url(./fonts/jetbrains-mono-latin-400-600.woff2) format("woff2");
  font-weight: 400 600;
  font-display: swap;
}
:root {
  --navy: #001330;
  --cobalt: #2d6bff;
  --deep: #174db8;
  --light: #8cb4ff;
  --canvas: #fff;
  --neutral: #f7f9fc;
  --selected: #dce8ff;
  --dark-raised: #0b2147;
  --ink: #0c172a;
  --muted: #53657a;
  --muted-dark: #b8c7d9;
  --border: #cbd6e4;
  --live: #2bcb78;
  --live-text: #147a45;
  --warning: #f2b544;
  --warning-text: #a25a00;
  --critical: #e25555;
  --critical-text: #b4232f;
  --shell: 1360px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: clip;
  scroll-padding-top: 88px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: Satoshi, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
.shell {
  width: min(calc(100% - 64px), var(--shell));
  margin-inline: auto;
}
.skip {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  background: var(--navy);
  transform: translateY(-160%);
}
.skip:focus {
  transform: none;
}
.lab-header {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}
.lab-header__row {
  min-height: 82px;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 28px;
}
.lab-logo {
  width: 118px;
}
.lab-logo img {
  width: 100%;
  height: auto;
}
.lab-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}
.lab-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.lab-nav a:hover,
.lab-nav a:focus-visible {
  color: var(--deep);
  text-decoration: underline;
  text-underline-offset: 6px;
}
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--navy);
  text-decoration: none;
  font-weight: 700;
}
.button--navy {
  color: #fff;
  background: var(--navy);
}
.button:focus-visible,
.text-link:focus-visible {
  outline: 3px solid var(--cobalt);
  outline-offset: 3px;
}
.menu,
.mobile-menu {
  display: none;
}
.intro {
  padding: 112px 0 104px;
  background: var(--canvas);
}
.intro__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 100px;
  align-items: end;
}
.eyebrow {
  display: block;
  margin-bottom: 22px;
  color: var(--deep);
  font-family: JetBrains, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(68px, 8vw, 118px);
  line-height: 0.9;
  letter-spacing: -0.066em;
}
.intro__copy p,
.section-head > p {
  max-width: 620px;
  color: var(--muted);
  font-size: 19px;
}
.palette-section {
  padding: 110px 0;
  background: var(--neutral);
}
.section-head {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 56px;
}
.section-head .eyebrow {
  grid-column: 1/-1;
}
.section-head h2 {
  margin-bottom: 0;
}
h2 {
  color: var(--navy);
  font-size: clamp(48px, 5.8vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.058em;
}
.palette-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--navy);
  border-left: 1px solid var(--border);
}
.swatch {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.swatch span {
  font-family: JetBrains, monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.swatch strong {
  margin: 12px 0 22px;
  font-size: 24px;
}
.swatch code {
  font-family: JetBrains, monospace;
  font-size: 11px;
}
.swatch--navy {
  color: #fff;
  background: var(--navy);
}
.swatch--cobalt {
  color: #fff;
  background: var(--cobalt);
}
.swatch--deep {
  color: #fff;
  background: var(--deep);
}
.swatch--light {
  color: var(--navy);
  background: var(--light);
}
.swatch--canvas {
  background: #fff;
}
.swatch--neutral {
  background: var(--neutral);
}
.swatch--selected {
  background: var(--selected);
}
.swatch--ink {
  color: #fff;
  background: var(--ink);
}
.ratio {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 22px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ratio span {
  padding: 18px;
  border-right: 1px solid var(--border);
  font-family: JetBrains, monospace;
  font-size: 10px;
  text-transform: uppercase;
}
.ratio span:last-child {
  border-right: 0;
}
.website-section,
.social-section,
.email-section,
.sales-section {
  padding: 110px 0;
  background: var(--canvas);
}
.website-frame {
  width: min(calc(100% - 40px), 1480px);
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
}
.site-chrome {
  min-height: 72px;
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 0 30px;
  border-bottom: 1px solid var(--border);
}
.site-chrome img {
  width: 102px;
  height: auto;
}
.site-chrome nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  font-size: 12px;
  font-weight: 600;
}
.site-cta,
.site-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--navy);
  font-weight: 700;
}
.site-cta {
  min-height: 42px;
  padding: 0 18px;
  font-size: 12px;
}
.site-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: var(--canvas);
}
.site-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.site-hero__copy {
  position: relative;
  z-index: 2;
  width: 46%;
  padding: 76px 30px 60px;
}
.site-hero__copy h3 {
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(66px, 7vw, 104px);
  line-height: 0.89;
  letter-spacing: -0.065em;
}
.site-hero__copy p {
  max-width: 470px;
  color: var(--muted);
  font-size: 18px;
}
.site-button {
  min-height: 48px;
  padding: 0 20px;
  font-size: 13px;
}
.site-link {
  display: inline-block;
  margin-left: 18px;
  color: var(--deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.site-hero__copy small {
  display: block;
  margin-top: 26px;
  color: var(--muted);
  font-family: JetBrains, monospace;
  font-size: 10px;
}
.social-section {
  background: var(--neutral);
}
.social-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.8fr;
  gap: 18px;
  align-items: start;
}
.social-card {
  margin: 0;
}
.social-card figcaption {
  padding: 14px 0;
  color: var(--muted);
  font-family: JetBrains, monospace;
  font-size: 10px;
  text-transform: uppercase;
}
.post {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
}
.social-card--landscape .post {
  aspect-ratio: 1200/627;
}
.social-card--square .post {
  aspect-ratio: 1;
}
.social-card--portrait .post {
  aspect-ratio: 1080/1350;
}
.post-logo {
  position: absolute;
  z-index: 3;
  top: 7%;
  left: 6%;
  width: 20%;
  height: auto;
}
.post-logo--white {
  filter: none;
}
.post-copy {
  position: absolute;
  z-index: 3;
  right: 6%;
  bottom: 9%;
  left: 6%;
}
.post-copy span {
  color: var(--deep);
  font-family: JetBrains, monospace;
  font-size: clamp(7px, 0.72vw, 11px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.post-copy h3 {
  max-width: 75%;
  margin: 10px 0;
  color: var(--navy);
  font-size: clamp(24px, 3vw, 50px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}
.post-copy p {
  max-width: 66%;
  margin: 0;
  color: var(--muted);
  font-size: clamp(9px, 1vw, 15px);
}
.post-hardware {
  position: absolute;
  right: -5%;
  bottom: -14%;
  width: 58%;
  height: 88%;
  object-fit: cover;
  object-position: center;
}
.post--brand {
  color: #fff;
  background: var(--navy);
}
.post--brand .post-copy span {
  color: var(--light);
}
.post--brand .post-copy h3 {
  color: #fff;
}
.post--brand .post-copy p {
  color: var(--muted-dark);
}
.post--brand .post-hardware {
  opacity: 0.9;
}
.post--gpu {
  background: #fff;
}
.post--gpu:before {
  position: absolute;
  top: 0;
  right: 0;
  width: 7px;
  height: 100%;
  background: var(--cobalt);
  content: "";
}
.post--proof {
  color: #fff;
  background: var(--navy);
}
.post--proof .post-copy {
  top: 34%;
  bottom: auto;
}
.post--proof .post-copy span {
  color: var(--light);
}
.post--proof .post-copy h3 {
  max-width: 100%;
  color: #fff;
  font-size: clamp(28px, 3.2vw, 54px);
}
.post--proof .post-copy p {
  max-width: 90%;
  color: var(--muted-dark);
}
.proof-line {
  position: absolute;
  right: 8%;
  bottom: 12%;
  left: 8%;
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.proof-line + .proof-line {
  bottom: 3%;
}
.proof-line strong {
  font-size: clamp(12px, 1.2vw, 19px);
}
.proof-line span {
  color: var(--muted-dark);
  font-size: clamp(8px, 0.8vw, 12px);
}
.profile-preview {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  margin-top: 72px;
  border-top: 1px solid var(--navy);
  border-bottom: 1px solid var(--border);
}
.profile-banner {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: var(--navy);
}
.profile-banner > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
}
.profile-banner > div {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
}
.profile-banner > div img {
  width: 160px;
}
.profile-banner p {
  max-width: 500px;
  margin: 18px 0 0;
  color: #fff;
  font-size: 24px;
}
.profile-copy {
  padding: 42px;
}
.profile-copy span {
  font-family: JetBrains, monospace;
  font-size: 10px;
  text-transform: uppercase;
}
.profile-copy h3 {
  margin: 30px 0 18px;
  color: var(--navy);
  font-size: 40px;
  line-height: 1;
}
.profile-copy p {
  color: var(--muted);
}
.email-grid,
.sales-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.email-preview {
  padding: 42px;
  border: 1px solid var(--border);
  background: var(--neutral);
}
.email-preview--dark {
  color: #fff;
  background: var(--navy);
}
.email-label {
  display: block;
  margin-bottom: 36px;
  font-family: JetBrains, monospace;
  font-size: 10px;
  text-transform: uppercase;
}
.signature {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.signature td {
  padding: 22px;
  vertical-align: top;
}
.signature__logo {
  width: 160px;
  border-right: 3px solid var(--cobalt);
}
.signature__logo img {
  width: 112px;
  height: auto;
}
.signature td:last-child > * {
  display: block;
}
.signature strong {
  color: var(--ink);
  font-size: 19px;
}
.signature span {
  margin: 2px 0 10px;
  color: var(--muted);
}
.signature a {
  color: var(--deep);
  text-decoration: none;
  font-size: 14px;
}
.signature small {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
}
.signature--dark {
  background: var(--dark-raised);
}
.signature--dark .signature__logo {
  border-color: var(--light);
}
.signature--dark strong,
.signature--dark a {
  color: #fff;
}
.signature--dark span,
.signature--dark small {
  color: var(--muted-dark);
}
.text-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--deep);
  font-weight: 700;
}
.email-preview--dark .text-link {
  color: var(--light);
}
.sales-section {
  background: var(--neutral);
}
.proposal-cover,
.one-pager {
  min-height: 620px;
}
.proposal-cover {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 54px;
  color: #fff;
  background: var(--navy);
}
.proposal-cover > img {
  width: 150px;
}
.proposal-cover > div span,
.one-pager header span {
  font-family: JetBrains, monospace;
  font-size: 10px;
  text-transform: uppercase;
}
.proposal-cover h3 {
  max-width: 660px;
  margin: 22px 0;
  color: #fff;
  font-size: 58px;
  line-height: 0.96;
  letter-spacing: -0.055em;
}
.proposal-cover p {
  color: var(--muted-dark);
}
.proposal-cover footer {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-family: JetBrains, monospace;
  font-size: 10px;
}
.one-pager {
  padding: 48px;
  border: 1px solid var(--border);
  background: #fff;
}
.one-pager header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.one-pager header img {
  width: 120px;
}
.one-pager h3 {
  max-width: 620px;
  margin: 70px 0 36px;
  color: var(--navy);
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.05em;
}
.service-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid var(--border);
}
.service-row span {
  color: var(--muted);
  font-family: JetBrains, monospace;
  font-size: 11px;
}
.one-pager > p {
  margin-top: 36px;
  color: var(--muted);
  font-size: 14px;
}
.admin-section {
  padding: 110px 0;
  color: #fff;
  background: var(--navy);
}
.section-head--dark h2 {
  color: #fff;
}
.section-head--dark > p {
  color: var(--muted-dark);
}
.section-head--dark .eyebrow {
  color: var(--light);
}
.admin-frame {
  display: grid;
  grid-template-columns: 230px 1fr;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--neutral);
}
.admin-nav {
  display: flex;
  flex-direction: column;
  padding: 28px;
  color: #fff;
  background: var(--dark-raised);
}
.admin-nav img {
  width: 120px;
  margin-bottom: 48px;
}
.admin-nav strong {
  margin-bottom: 18px;
  font-size: 13px;
}
.admin-nav a {
  padding: 12px;
  text-decoration: none;
  color: var(--muted-dark);
  font-size: 14px;
}
.admin-nav a.is-active {
  color: #fff;
  background: var(--deep);
}
.admin-main {
  color: var(--ink);
}
.admin-main > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.admin-main > header span,
.admin-summary span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}
.admin-main > header strong {
  font-size: 22px;
}
.admin-main button {
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  color: #fff;
  background: var(--cobalt);
  font: 700 13px Satoshi;
}
.admin-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--border);
}
.admin-summary article {
  padding: 26px 32px;
  border-right: 1px solid var(--border);
  background: #fff;
}
.admin-summary article:last-child {
  border-right: 0;
}
.admin-summary strong {
  display: block;
  margin-top: 12px;
  color: var(--navy);
  font-size: 36px;
}
.admin-table {
  margin: 28px 32px;
  border: 1px solid var(--border);
  background: #fff;
}
.admin-table > div {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 0.7fr;
  align-items: center;
  gap: 20px;
  padding: 18px;
  border-top: 1px solid var(--border);
}
.admin-table > div:first-child {
  border-top: 0;
}
.admin-table__head {
  color: var(--muted);
  background: var(--neutral);
  font-size: 12px;
}
.panel-links {
  display: grid;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  grid-template-columns: 1fr auto auto;
  background: var(--dark-raised);
}
.panel-links strong {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 15px;
}
.panel-links a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid var(--cobalt);
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}
.panel-links a:last-child {
  border-color: #c6a15b;
  color: #151515;
  background: #c6a15b;
}
.status {
  justify-self: start;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 700;
}
.status--live {
  color: var(--live-text);
  background: rgba(43, 203, 120, 0.12);
}
.status--warn {
  color: var(--warning-text);
  background: rgba(242, 181, 68, 0.14);
}
.status--critical {
  color: var(--critical-text);
  background: rgba(226, 85, 85, 0.12);
}
.decision-section {
  padding: 100px 0;
  background: #fff;
}
.decision-grid {
  display: grid;
  grid-template-columns: 180px 1fr 420px;
  gap: 60px;
  align-items: start;
}
.decision-grid h2 {
  margin: 0;
}
.decision-grid p {
  color: var(--muted);
}
.footer {
  padding: 28px 0;
  color: var(--muted-dark);
  background: var(--navy);
}
.footer__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  font-family: JetBrains, monospace;
  font-size: 10px;
}
.footer img {
  width: 92px;
}
.footer a {
  justify-self: end;
}
@media (max-width: 1000px) {
  .lab-nav,
  .lab-header .button {
    display: none;
  }
  .lab-header__row {
    grid-template-columns: 1fr auto;
  }
  .menu {
    display: flex;
    min-height: 44px;
    align-items: center;
    padding: 0 14px;
    border: 1px solid var(--navy);
    color: var(--navy);
    background: #fff;
    font: 700 14px Satoshi;
  }
  .mobile-menu {
    display: grid;
    padding: 14px 24px 22px;
    border-top: 1px solid var(--border);
    background: #fff;
  }
  .mobile-menu[hidden] {
    display: none;
  }
  .mobile-menu a {
    padding: 11px 0;
    text-decoration: none;
    font-weight: 600;
  }
  .intro__grid,
  .section-head,
  .profile-preview,
  .decision-grid {
    grid-template-columns: 1fr;
  }
  .intro__copy {
    max-width: 760px;
  }
  .palette-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .social-grid {
    grid-template-columns: 1fr 1fr;
  }
  .social-card--landscape {
    grid-column: 1/-1;
  }
  .email-grid,
  .sales-grid {
    grid-template-columns: 1fr;
  }
  .admin-frame {
    grid-template-columns: 190px 1fr;
  }
  .panel-links {
    grid-template-columns: 1fr auto auto;
  }
  .site-chrome nav {
    display: none;
  }
  .site-hero__copy {
    width: 55%;
  }
  .section-head .eyebrow {
    grid-column: auto;
  }
}
@media (max-width: 680px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }
  .intro,
  .palette-section,
  .website-section,
  .social-section,
  .email-section,
  .sales-section,
  .admin-section,
  .decision-section {
    padding: 74px 0;
  }
  .intro__grid {
    gap: 38px;
  }
  h1 {
    font-size: 58px;
  }
  h2 {
    font-size: 46px;
  }
  .palette-grid {
    grid-template-columns: 1fr;
  }
  .ratio {
    grid-template-columns: 1fr 1fr;
  }
  .site-chrome {
    grid-template-columns: 1fr auto;
    padding: 0 16px;
  }
  .site-hero {
    min-height: 820px;
  }
  .site-hero > img {
    height: 360px;
    top: auto;
    bottom: 0;
    object-position: 68% bottom;
  }
  .site-hero__copy {
    width: auto;
    padding: 48px 16px;
  }
  .site-hero__copy h3 {
    font-size: 58px;
  }
  .site-link {
    display: block;
    margin: 16px 0 0;
  }
  .social-grid {
    grid-template-columns: 1fr;
  }
  .social-card--landscape {
    grid-column: auto;
  }
  .profile-preview {
    display: block;
  }
  .profile-copy {
    padding: 30px 0;
  }
  .email-preview,
  .one-pager,
  .proposal-cover {
    padding: 28px;
  }
  .signature td {
    display: block;
  }
  .signature__logo {
    width: auto;
    border-right: 0;
    border-bottom: 3px solid var(--cobalt);
  }
  .proposal-cover h3 {
    font-size: 44px;
  }
  .admin-frame {
    grid-template-columns: 1fr;
  }
  .admin-nav {
    display: none;
  }
  .admin-summary {
    grid-template-columns: 1fr;
  }
  .admin-summary article {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
  .admin-table {
    margin: 16px;
    overflow-x: auto;
  }
  .admin-table > div {
    min-width: 660px;
  }
  .panel-links {
    grid-template-columns: 1fr;
  }
  .panel-links a {
    justify-content: center;
  }
  .decision-grid {
    gap: 28px;
  }
  .footer__row {
    grid-template-columns: 1fr auto;
  }
  .footer span {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
