:root {
  --ink: #0b2344;
  --muted: #4c6079;
  --paper: #f6f8fb;
  --paper-deep: #eaf2f6;
  --white: #ffffff;
  --primary: #0b2344;
  --primary-hover: #12345f;
  --secondary: #12b3b6;
  --accent: #48c2f0;
  --on-primary-heading: #bcecff;
  --on-primary-muted: #d7e8f2;
  --line: rgba(11, 35, 68, 0.16);
  --shadow-soft: 0 1.5rem 4rem rgba(11, 35, 68, 0.14);
  --radius: 1.5rem;
  --max-width: 76rem;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}
a:focus-visible {
  outline: 3px solid var(--secondary);
  outline-offset: 4px;
  border-radius: 0.2rem;
}
.skip-link {
  position: fixed;
  z-index: 20;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 1rem;
  background: var(--ink);
  color: white;
  transform: translateY(-180%);
}
.skip-link:focus {
  transform: none;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  width: min(calc(100% - 2rem), var(--max-width));
  min-height: 5.5rem;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.wordmark {
  display: inline-flex;
  gap: 0.65rem;
  align-items: center;
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 750;
  letter-spacing: -0.035em;
  text-decoration: none;
}
.wordmark img {
  display: block;
  width: 10.3rem;
  height: auto;
}
nav {
  display: flex;
  gap: clamp(1rem, 4vw, 2.25rem);
}
nav a {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 650;
  text-decoration: none;
}
nav a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  width: min(calc(100% - 2rem), var(--max-width));
  min-height: min(46rem, calc(100vh - 5.5rem));
  margin: auto;
  padding: clamp(4.5rem, 10vw, 8.5rem) 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 3rem;
  overflow: hidden;
}
.eyebrow {
  margin: 0 0 1.4rem;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
h1,
h2 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(3.2rem, 7.4vw, 6.6rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
  font-weight: 660;
}
h1 em,
h2 em {
  color: var(--primary);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}
.lede {
  max-width: 37rem;
  margin: 2rem 0 2.3rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  padding: 0.9rem 1.2rem;
  color: white;
  background: var(--primary);
  border-radius: 99rem;
  font-size: 0.83rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.2s,
    background 0.2s;
}
.button:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}
.button span {
  font-size: 1.05rem;
}
.hero-art {
  position: relative;
  min-height: 23rem;
  display: grid;
  place-items: center;
}
.hero-art::before {
  content: "";
  position: absolute;
  width: 16rem;
  height: 16rem;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.art-core {
  z-index: 2;
  width: 7rem;
  height: 7rem;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--primary);
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
}
.art-core img {
  width: 4.4rem;
  height: 4.4rem;
}
.hero-art > p {
  position: absolute;
  right: 0;
  bottom: 0;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.11em;
  line-height: 1.8;
  text-transform: uppercase;
}
.orbit {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
  animation: orbit 18s linear infinite;
}
.orbit-one {
  width: 23rem;
  height: 23rem;
}
.orbit-two {
  width: 32rem;
  height: 14rem;
  transform: rotate(-25deg);
  animation-duration: 25s;
  animation-direction: reverse;
}
.orbit span {
  position: absolute;
  top: 50%;
  left: -4px;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--secondary);
  border-radius: 50%;
}
.orbit-two span {
  left: auto;
  right: -4px;
  background: var(--accent);
}
@keyframes orbit {
  to {
    rotate: 360deg;
  }
}

.section {
  padding: clamp(5rem, 10vw, 9rem)
    max(1rem, calc((100% - var(--max-width)) / 2));
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3rem;
  margin-bottom: 4rem;
}
.section-heading .eyebrow {
  grid-column: 1/-1;
}
.section-heading h2,
.about h2,
.contact h2 {
  max-width: 12ch;
  font-size: clamp(2.7rem, 5vw, 5rem);
}
.section-heading > p:last-child {
  align-self: end;
  max-width: 30rem;
  margin: 0 0 0.5rem;
  color: var(--muted);
}
.products {
  background: var(--white);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.product-card {
  position: relative;
  min-height: 34rem;
  padding: clamp(1.5rem, 4vw, 2.6rem);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.product-card::after {
  content: "";
  position: absolute;
  top: -7rem;
  right: -7rem;
  width: 17rem;
  height: 17rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.18;
}
.product-number {
  position: absolute;
  top: 1.5rem;
  right: 1.7rem;
  color: var(--muted);
  font-family: ui-monospace, monospace;
  font-size: 0.7rem;
}
.product-icon {
  width: 4rem;
  height: 4rem;
  margin-bottom: auto;
  display: grid;
  place-items: center;
  color: white;
  background: var(--secondary);
  border-radius: 1rem;
  font-family: Georgia, serif;
  font-size: 1.55rem;
  font-style: italic;
}
.blue .product-icon {
  background: var(--accent);
}
.status {
  margin: 3rem 0 0.8rem;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.status span {
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.5rem;
  background: var(--secondary);
  border-radius: 50%;
}
.blue .status span {
  background: var(--accent);
}
.product-card h3 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 3.7rem);
  line-height: 1;
  letter-spacing: -0.055em;
}
.product-tagline {
  margin: 0.8rem 0 1rem;
  color: var(--ink) !important;
  font-weight: 700;
}
.product-card > p {
  max-width: 30rem;
  color: var(--muted);
}
.product-actions {
  min-height: 2rem;
  margin-top: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.product-link {
  font-size: 0.82rem;
  font-weight: 750;
}
.product-link span {
  margin-left: 0.3rem;
}
.muted {
  color: var(--muted);
}
.policy-links {
  display: flex;
  gap: 1rem;
}
.policy-links a {
  color: var(--muted);
  font-size: 0.72rem;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  background: var(--paper-deep);
}
.about-copy {
  max-width: 34rem;
  padding-top: 3rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}
.about-copy p:last-child {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}
.contact {
  text-align: center;
  background: var(--primary);
  color: white;
}
.contact .eyebrow {
  color: var(--accent);
}
.contact h2 {
  max-width: 15ch;
  margin: auto;
}
.contact h2 em {
  color: var(--on-primary-heading);
}
.contact > p:not(.eyebrow) {
  margin: 2rem auto;
  color: var(--on-primary-muted);
}
.email-link {
  display: inline-block;
  color: white;
  font-size: clamp(1.1rem, 3vw, 1.7rem);
  font-weight: 650;
  text-decoration-color: var(--accent);
}

footer {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: auto;
  padding: 3rem 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 1.5rem 3rem;
}
.footer-wordmark {
  grid-column: 1;
}
footer > p {
  color: var(--muted);
  font-size: 0.8rem;
}
footer nav {
  justify-self: end;
}
.legal {
  grid-column: 1/-1;
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.notice {
  padding: 1rem;
  border: 1px solid var(--line);
}

@media (max-width: 760px) {
  .site-header {
    min-height: 4.5rem;
  }
  .site-header nav {
    gap: 1rem;
  }
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 4.5rem;
  }
  .hero-art {
    min-height: 19rem;
    order: -1;
  }
  .orbit-one {
    width: 18rem;
    height: 18rem;
  }
  .orbit-two {
    width: 22rem;
    height: 10rem;
  }
  .art-core {
    width: 5.5rem;
    height: 5.5rem;
  }
  .hero-art > p {
    display: none;
  }
  .section-heading,
  .product-grid,
  .about {
    grid-template-columns: 1fr;
  }
  .section-heading > p:last-child {
    margin-top: 1.5rem;
  }
  .product-card {
    min-height: 30rem;
  }
  .about {
    gap: 1rem;
  }
  .about-copy {
    padding-top: 0;
  }
  footer {
    grid-template-columns: 1fr;
  }
  footer nav {
    justify-self: start;
  }
  footer > p,
  .footer-wordmark,
  .legal {
    grid-column: 1;
  }
}

@media (max-width: 430px) {
  .site-header nav a {
    font-size: 0.75rem;
  }
  .site-header nav a:nth-child(1),
  .site-header nav a:nth-child(3) {
    display: none;
  }
  h1 {
    font-size: 3.05rem;
  }
  .product-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}

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