:root {
  --blue: #3047ff;
  --ivory: #f4f1e8;
  --content-width: 1720px;
  --gutter: clamp(1.25rem, 4vw, 6rem);
  --line: rgba(48, 71, 255, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--blue);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

main {
  width: 100%;
}

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 5.75rem;
  padding: 1.2rem var(--gutter);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(12rem, 14vw, 15rem);
  min-width: 0;
  overflow: visible;
}

.brand-logo {
  width: 100%;
  height: auto;
  overflow: visible;
}

nav {
  display: flex;
  gap: clamp(1.5rem, 2.5vw, 3rem);
}

nav a,
.text-link {
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.35em;
}

.site-header > .button {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.75rem 1.2rem;
  border: 2px solid var(--blue);
  border-radius: 999px;
  background: var(--blue);
  color: var(--ivory);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: transparent;
  color: var(--blue);
}

.button-small {
  min-height: 2.75rem;
  padding-inline: 1rem;
  font-size: 0.85rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  grid-template-rows: minmax(0, 1fr) auto;
  width: 100%;
  min-height: calc(100svh - 5.75rem);
}

.hero-copy {
  align-self: center;
  width: 100%;
  max-width: 860px;
  padding: clamp(4rem, 9vh, 8rem) clamp(2.5rem, 6vw, 9rem) clamp(4rem, 8vh, 7rem) var(--gutter);
}

.eyebrow {
  margin: 0 0 1.25rem;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

h1,
h2,
h3,
blockquote {
  margin-top: 0;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 {
  max-width: 10.5ch;
  margin-bottom: 1.8rem;
  font-size: clamp(3.6rem, 5.35vw, 8.5rem);
  font-weight: 850;
}

h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.8rem, 4.8vw, 5.8rem);
  font-weight: 850;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
}

.lead {
  max-width: 660px;
  margin: 0 0 2.2rem;
  font-size: clamp(1.08rem, 1.3vw, 1.35rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  min-height: 38rem;
  overflow: hidden;
  background: var(--blue);
  isolation: isolate;
}

.hero-photo,
.hero-visual-wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-photo {
  object-fit: cover;
  object-position: 62% center;
  filter: grayscale(0.35) contrast(1.08) saturate(0.8);
}

.hero-visual-wash {
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(48, 71, 255, 0.05), rgba(48, 71, 255, 0.62)),
    linear-gradient(0deg, rgba(16, 30, 130, 0.55), transparent 55%);
  mix-blend-mode: multiply;
}

.hero-mark {
  position: absolute;
  z-index: 2;
  top: 2rem;
  right: 2rem;
  width: 9rem;
  height: 9rem;
  object-fit: contain;
  opacity: 0.96;
}

.visual-card {
  position: absolute;
  z-index: 3;
  right: clamp(1.5rem, 4vw, 5rem);
  bottom: clamp(2rem, 4vw, 5rem);
  width: min(27rem, calc(100% - 3rem));
  padding: clamp(1.5rem, 2.2vw, 2.5rem);
  background: var(--ivory);
  color: var(--blue);
}

.visual-card span,
.visual-card small {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.visual-card strong {
  display: block;
  margin: 1.25rem 0 2rem;
  font-size: clamp(1.75rem, 2.6vw, 3.2rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.photo-credit {
  position: absolute;
  z-index: 3;
  bottom: 0.8rem;
  left: 1rem;
  color: rgba(244, 241, 232, 0.82);
  font-size: 0.72rem;
  text-underline-offset: 0.2em;
}

.proof-line {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 1.5rem var(--gutter);
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.proof-line span:nth-child(2) {
  text-align: center;
}

.proof-line span:last-child {
  text-align: right;
}

.signal-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: center;
  min-height: 8rem;
  padding: 1.75rem var(--gutter);
  overflow: hidden;
  background: var(--blue);
  color: var(--ivory);
  font-size: clamp(1.4rem, 2.2vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
}

.signal-band span:nth-child(2) {
  text-align: center;
}

.signal-band span:last-child {
  text-align: right;
}

.statement,
.use-cases,
.origin {
  display: grid;
  grid-template-columns: minmax(70px, 0.25fr) minmax(0, 1.75fr);
  gap: clamp(2rem, 7vw, 8rem);
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: clamp(6rem, 10vw, 11rem) var(--gutter);
}

.statement {
  position: relative;
}

.statement::after {
  position: absolute;
  right: var(--gutter);
  bottom: 4rem;
  width: clamp(8rem, 16vw, 16rem);
  height: clamp(5rem, 10vw, 10rem);
  background: url("assets/logo-mark.png?v=8") center / contain no-repeat;
  content: "";
  opacity: 0.08;
  pointer-events: none;
}

.section-number,
.step-number {
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.statement > div:last-child {
  max-width: 1050px;
}

.statement p:not(.eyebrow) {
  max-width: 820px;
  font-size: clamp(1.15rem, 1.55vw, 1.55rem);
}

.process {
  position: relative;
  overflow: hidden;
  background: var(--blue);
  color: var(--ivory);
  padding: clamp(6rem, 10vw, 10rem) max(var(--gutter), calc((100vw - var(--content-width)) / 2 + var(--gutter)));
}

.process::after {
  position: absolute;
  top: -9rem;
  right: -8rem;
  width: 32rem;
  height: 23rem;
  background: url("assets/logo-mark-inverse.png?v=8") center / contain no-repeat;
  content: "";
  opacity: 0.08;
  pointer-events: none;
}

.process .section-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.42fr 1.58fr;
  gap: 2rem;
  align-items: start;
}

.steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 5rem 0 0;
  padding: 0;
  border-top: 1px solid rgba(244, 241, 232, 0.55);
  list-style: none;
}

.steps li {
  min-height: 300px;
  padding: 1.7rem 3rem 1.5rem 0;
  border-right: 1px solid rgba(244, 241, 232, 0.55);
}

.steps li + li {
  padding-left: 3rem;
}

.steps li:last-child {
  border-right: 0;
}

.steps .step-number {
  display: block;
  margin-bottom: 6rem;
}

.steps p {
  max-width: 360px;
  margin-bottom: 0;
}

.use-cases {
  grid-template-rows: auto auto;
}

.deployment {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  padding: clamp(6rem, 10vw, 11rem) var(--gutter);
}

.deployment-intro {
  display: grid;
  grid-template-columns: minmax(150px, 0.38fr) minmax(0, 1.22fr) minmax(250px, 0.55fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: start;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.deployment-intro h2,
.deployment-intro p {
  margin-bottom: 0;
}

.deployment-intro > p:last-child {
  max-width: 34rem;
  padding-top: 0.4rem;
  font-size: clamp(1.02rem, 1.25vw, 1.25rem);
}

.hardware-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 1.25rem;
  align-items: stretch;
}

.hardware-card {
  display: grid;
  grid-template-rows: clamp(26rem, 34vw, 46rem) auto;
  min-width: 0;
  border: 1px solid var(--blue);
  background: var(--ivory);
}

.hardware-card figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #d8d6d0;
}

.hardware-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hardware-card:hover img {
  transform: scale(1.025);
}

.hardware-card-compact img {
  object-position: center 42%;
}

.hardware-card-power {
  grid-template-rows: clamp(26rem, 34vw, 46rem) auto;
}

.hardware-card-power img {
  object-position: center;
}

.hardware-card figcaption {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.6rem 0.75rem;
  background: var(--ivory);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.hardware-card figcaption span {
  padding-right: 0.75rem;
  border-right: 1px solid var(--line);
}

.hardware-copy {
  padding: clamp(2rem, 3vw, 3.5rem);
}

.hardware-name {
  margin: 0 0 2.75rem;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hardware-copy h3 {
  max-width: 15ch;
  font-size: clamp(2rem, 3vw, 3.6rem);
}

.hardware-copy > p:last-child {
  max-width: 38rem;
  margin-bottom: 0;
}

.hardware-card-power .hardware-copy {
  background: var(--blue);
  color: var(--ivory);
}

.deployment-note {
  max-width: 60rem;
  margin: 1.5rem 0 0 auto;
  font-size: 0.78rem;
  font-weight: 700;
}

.use-cases .section-heading {
  max-width: 980px;
}

.case-list {
  grid-column: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  grid-template-rows: repeat(2, minmax(230px, auto));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.case-list article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(2rem, 3vw, 3.5rem);
  border: 1px solid var(--blue);
}

.case-list article:first-child {
  grid-row: 1 / span 2;
  min-height: 32rem;
  background: var(--blue);
  color: var(--ivory);
}

.case-list article > span {
  margin-bottom: auto;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.case-list h3 {
  max-width: 16ch;
  margin: 3rem 0 1rem;
}

.case-list article:first-child h3 {
  font-size: clamp(2.5rem, 4vw, 5rem);
}

.case-list p {
  max-width: 560px;
  margin: 0;
}

.origin {
  grid-template-columns: 0.25fr minmax(0, 1.75fr);
  border-top: 1px solid var(--line);
}

.origin .eyebrow {
  grid-column: 1;
}

.origin blockquote,
.origin > p:last-child {
  grid-column: 2;
}

.origin blockquote {
  max-width: 1100px;
  margin-bottom: 2.5rem;
  font-size: clamp(2.7rem, 4.7vw, 5.8rem);
  font-weight: 850;
}

.origin > p:last-child {
  max-width: 760px;
  margin: 0;
  font-size: 1.2rem;
}

.contact {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  background: var(--blue);
  color: var(--ivory);
  padding: clamp(7rem, 12vw, 13rem) var(--gutter);
  text-align: center;
}

.contact::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(84vw, 75rem);
  height: min(54vw, 48rem);
  background: url("assets/logo-mark-inverse.png?v=8") center / contain no-repeat;
  content: "";
  opacity: 0.07;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.contact > * {
  position: relative;
  z-index: 1;
}

.contact-mark {
  width: clamp(8rem, 10vw, 11rem);
  height: auto;
  margin-bottom: 3rem;
  overflow: visible;
}

.contact h2 {
  max-width: 980px;
}

.contact > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 0 2rem;
  font-size: 1.2rem;
}

.button-inverse {
  border-color: var(--ivory);
  background: var(--ivory);
  color: var(--blue);
}

.button-inverse:hover,
.button-inverse:focus-visible {
  background: transparent;
  color: var(--ivory);
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  background: var(--blue);
  color: var(--ivory);
  padding: 2rem max(var(--gutter), calc((100vw - var(--content-width)) / 2 + var(--gutter)));
  border-top: 1px solid rgba(244, 241, 232, 0.45);
  font-size: 0.8rem;
}

.footer-logo {
  width: clamp(11rem, 14vw, 14rem);
  height: auto;
  overflow: visible;
}

.footer-meta {
  max-width: 58rem;
  text-align: right;
}

.footer-meta p {
  margin: 0;
}

.image-credits,
.trademark-note {
  margin-top: 0.4rem !important;
  color: rgba(244, 241, 232, 0.7);
  font-size: 0.66rem;
  line-height: 1.45;
}

.image-credits a {
  text-underline-offset: 0.18em;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    max-width: 920px;
    padding-right: var(--gutter);
  }

  .hero-visual {
    min-height: min(70vw, 44rem);
  }

  .hero-mark {
    top: 1.5rem;
    right: 1.5rem;
    width: 8rem;
    height: 8rem;
  }

  .process .section-heading,
  .steps {
    grid-template-columns: 1fr;
  }

  .deployment-intro {
    grid-template-columns: minmax(130px, 0.35fr) minmax(0, 1.65fr);
  }

  .deployment-intro > p:last-child {
    grid-column: 2;
  }

  .hardware-card,
  .hardware-card-power {
    grid-template-rows: clamp(24rem, 55vw, 38rem) auto;
  }

  .steps li,
  .steps li + li {
    min-height: auto;
    padding: 2rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(244, 241, 232, 0.55);
  }

  .steps .step-number {
    margin-bottom: 2rem;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 4.75rem;
    padding-block: 1rem;
  }

  .site-header .button-small {
    display: none;
  }

  .brand {
    width: 11.5rem;
  }

  .hero-copy {
    padding-top: 4.5rem;
    padding-bottom: 4rem;
  }

  h1 {
    font-size: clamp(3.2rem, 15vw, 4.8rem);
  }

  .hero-visual {
    min-height: 34rem;
  }

  .hero-mark {
    top: 1.25rem;
    right: 1.25rem;
    width: 6.5rem;
    height: 6.5rem;
  }

  .visual-card {
    right: 1.25rem;
    bottom: 3.25rem;
    width: calc(100% - 2.5rem);
  }

  .proof-line,
  .signal-band {
    grid-template-columns: 1fr;
  }

  .proof-line span,
  .proof-line span:nth-child(2),
  .proof-line span:last-child,
  .signal-band span,
  .signal-band span:nth-child(2),
  .signal-band span:last-child {
    text-align: left;
  }

  .signal-band {
    gap: 0.85rem;
    padding-block: 2.2rem;
  }

  .statement,
  .use-cases,
  .origin {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section-number,
  .case-list,
  .origin .eyebrow,
  .origin blockquote,
  .origin > p:last-child {
    grid-column: 1;
  }

  .statement::after {
    display: none;
  }

  .deployment-intro,
  .hardware-grid {
    grid-template-columns: 1fr;
  }

  .deployment-intro > p:last-child {
    grid-column: 1;
  }

  .hardware-card,
  .hardware-card-power {
    grid-template-rows: minmax(22rem, 92vw) auto;
  }

  .hardware-card-power {
    grid-template-rows: minmax(17rem, 62vw) auto;
  }

  .hardware-card:hover img {
    transform: none;
  }

  .case-list {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .case-list article:first-child {
    grid-row: auto;
    min-height: 28rem;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-meta {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
