:root {
  color-scheme: light;
  --ink: #101820;
  --muted: #5d6773;
  --line: #d9e0e7;
  --paper: #f7f5ef;
  --white: #ffffff;
  --blue: #2d5b8a;
  --green: #2f6f63;
  --gold: #b9822b;
  --rust: #9f5138;
  --shadow: 0 24px 70px rgb(16 24 32 / 12%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgb(16 24 32 / 8%);
  background: rgb(247 245 239 / 86%);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.hero-actions,
.site-footer,
.site-footer div {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 750;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
  font-size: 18px;
}

.nav {
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.nav a:hover,
.site-footer a:hover {
  color: var(--ink);
}

.hero {
  display: grid;
  min-height: calc(100vh - 72px);
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: clamp(54px, 8vw, 110px) clamp(20px, 6vw, 84px) clamp(42px, 6vw, 76px);
}

.hero h1,
.section h2 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

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

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 700;
}

.button.primary {
  background: var(--ink);
  color: var(--white);
}

.button.secondary {
  background: rgb(255 255 255 / 48%);
}

.hero-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgb(16 24 32 / 10%);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgb(255 255 255 / 84%), rgb(232 238 234 / 72%)),
    radial-gradient(circle at 30% 20%, rgb(185 130 43 / 28%), transparent 30%),
    radial-gradient(circle at 80% 70%, rgb(45 91 138 / 24%), transparent 34%);
  box-shadow: var(--shadow);
}

.system-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgb(16 24 32 / 12%);
  border-radius: 12px;
  background: rgb(255 255 255 / 84%);
  box-shadow: 0 18px 50px rgb(16 24 32 / 10%);
}

.card-large {
  top: 38px;
  left: 36px;
  width: min(72%, 380px);
  padding: 26px;
}

.card-small {
  right: 28px;
  bottom: 32px;
  width: min(68%, 310px);
  padding: 22px;
}

.card-label,
.product-kicker,
.number {
  color: var(--rust);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.system-card strong {
  display: block;
  margin-top: 12px;
  font-size: 26px;
  line-height: 1.05;
}

.system-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.orbital-map {
  position: absolute;
  inset: 94px 30px 86px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgb(16 24 32 / 10%) 1px, transparent 1px),
    linear-gradient(rgb(16 24 32 / 10%) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.88;
}

.orbital-map::before,
.orbital-map::after {
  position: absolute;
  content: "";
  border: 1px solid rgb(16 24 32 / 18%);
  border-radius: 999px;
}

.orbital-map::before {
  inset: 12%;
}

.orbital-map::after {
  inset: 28%;
}

.orbital-map span {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue);
  color: transparent;
  font-size: 0;
}

.orbital-map span:nth-child(1) {
  top: 20%;
  left: 30%;
}

.orbital-map span:nth-child(2) {
  top: 46%;
  right: 22%;
  background: var(--green);
}

.orbital-map span:nth-child(3) {
  bottom: 22%;
  left: 42%;
  background: var(--gold);
}

.orbital-map span:nth-child(4) {
  right: 38%;
  bottom: 42%;
  background: var(--rust);
}

.section {
  padding: clamp(58px, 8vw, 108px) clamp(20px, 6vw, 84px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: start;
  background: var(--white);
}

.section h2 {
  font-size: clamp(34px, 4.5vw, 58px);
}

.work-panel {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(20px, 3vw, 34px);
  background: #fbfbf8;
}

.product-media {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 12px;
  align-items: center;
}

.product-media img {
  border-radius: 12px;
  box-shadow: 0 14px 32px rgb(16 24 32 / 14%);
}

.product-media img:last-child {
  padding: 18px;
  background: #edf3f2;
}

.product-copy h3,
.capability-grid h3 {
  margin: 10px 0 12px;
  font-size: 26px;
  line-height: 1.1;
}

.product-copy p,
.capability-grid p,
.company-copy p,
.principle-list p,
.contact-section p {
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.capability-grid article {
  min-height: 260px;
  border: 1px solid rgb(16 24 32 / 12%);
  border-radius: 14px;
  padding: 24px;
  background: rgb(255 255 255 / 58%);
}

.company-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: clamp(28px, 5vw, 72px);
  background: #101820;
  color: var(--white);
}

.company-band .eyebrow {
  color: #d9ad61;
}

.company-copy p {
  max-width: 680px;
  color: #c5cdd4;
  font-size: 18px;
}

.facts {
  display: grid;
  gap: 14px;
  margin: 0;
}

.facts div {
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 12px;
  padding: 18px;
  background: rgb(255 255 255 / 6%);
}

.fact-label {
  margin: 0;
  color: #9facb9;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fact-value {
  margin: 6px 0 0;
  font-weight: 700;
}

.principles,
.contact-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.principle-list {
  display: grid;
  gap: 18px;
}

.principle-list p {
  margin: 0;
  border-left: 4px solid var(--green);
  padding-left: 18px;
  font-size: 18px;
}

.contact-section {
  background: #e7ece9;
}

.contact-link {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(16 24 32 / 14%);
  border-radius: 14px;
  background: var(--white);
  color: var(--blue);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  box-shadow: var(--shadow);
}

.site-footer {
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 6vw, 84px);
  background: var(--ink);
  color: #d9e0e7;
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  gap: 18px;
}

.legal-page {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 88px) 20px;
}

.legal-page h1 {
  margin: 0 0 10px;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.02;
}

.legal-page h2 {
  margin-top: 34px;
  font-size: 22px;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
}

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

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 460px;
  }

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

  .work-panel {
    grid-template-columns: 1fr;
  }

  .product-media {
    max-width: 360px;
  }
}

@media (max-width: 700px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-visual {
    display: grid;
    min-height: auto;
    gap: 14px;
    padding: 18px;
  }

  .system-card {
    position: relative;
  }

  .card-large,
  .card-small {
    inset: auto;
    width: 100%;
  }

  .orbital-map {
    inset: 92px 18px 46px;
    z-index: 0;
  }

  .capability-grid {
    grid-template-columns: 1fr;
  }

  .contact-link {
    padding: 20px;
    font-size: 22px;
  }

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