:root {
  color-scheme: light;
  --paper: #fbfaf6;
  --paper-deep: #f2eee6;
  --ink: #595652;
  --ink-strong: #383633;
  --muted: #858077;
  --line: rgba(143, 124, 101, 0.32);
  --line-soft: rgba(143, 124, 101, 0.18);
  --teal: #2c8790;
  --teal-soft: #d8eef0;
  --ochre: #bd8b5d;
  --redline: #c96f55;
  --shadow: 0 22px 70px rgba(74, 64, 51, 0.13);
  font-family: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 0%, rgba(189, 139, 93, 0.08), transparent 34%),
    linear-gradient(90deg, rgba(143, 124, 101, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(143, 124, 101, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 72px 72px, 72px 72px, auto;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 52px);
  background: rgba(251, 250, 246, 0.88);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-strong);
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: var(--teal);
  font-size: 11px;
  letter-spacing: 0;
}

.nav {
  display: flex;
  gap: clamp(16px, 3vw, 38px);
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--ink-strong);
}

.hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: start;
  min-height: calc(100vh - 74px);
  padding: clamp(28px, 5vw, 72px) clamp(18px, 4vw, 56px) clamp(44px, 6vw, 88px);
  border-bottom: 1px solid var(--line);
}

.overline {
  margin: 0;
  color: var(--muted);
  font-size: clamp(12px, 1.25vw, 17px);
  line-height: 1.5;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
h2 {
  margin: 16px 0 0;
  color: var(--ink-strong);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 640px;
  font-size: clamp(40px, 4.55vw, 76px);
}

.hero-copy {
  min-width: 0;
  padding-top: clamp(74px, 13vh, 138px);
}

h2 {
  font-size: clamp(30px, 3.8vw, 58px);
}

.lead,
.statement > p,
.launch > p {
  margin: 28px 0 0;
  color: var(--ink);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.58;
}

.lead {
  max-width: 560px;
}

.hero-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 620px;
  margin-top: 42px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.38);
}

.hero-notes span {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 12px;
  border-right: 1px solid var(--line-soft);
  color: var(--teal);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.hero-notes span:last-child {
  border-right: 0;
}

.hero-board,
.board-card {
  margin: 0;
}

.hero-board {
  position: relative;
  min-width: 0;
  justify-self: end;
  width: fit-content;
  max-width: 100%;
  padding: clamp(8px, 1.6vw, 18px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: var(--shadow);
}

.hero-board::before,
.hero-board::after {
  content: "";
  position: absolute;
  width: 84px;
  height: 1px;
  background: var(--ochre);
}

.hero-board::before {
  top: 28px;
  left: -42px;
}

.hero-board::after {
  right: -42px;
  bottom: 28px;
}

.hero-board img {
  width: auto;
  height: min(78vh, 1040px);
  max-width: 100%;
  object-fit: contain;
  background: var(--paper-deep);
}

.statement {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(28px, 6vw, 100px);
  align-items: end;
  padding: clamp(54px, 8vw, 112px) clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.statement > p {
  margin-bottom: 10px;
}

.systems-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  padding: 0 clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.systems-strip article {
  min-height: 210px;
  padding: 26px 18px;
  border-left: 1px solid var(--line-soft);
}

.systems-strip article:last-child {
  border-right: 1px solid var(--line-soft);
}

.systems-strip span {
  color: var(--teal);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.systems-strip h3 {
  margin: 46px 0 12px;
  color: var(--ink-strong);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
}

.systems-strip p,
.board-card small,
.flow-grid span,
.launch a,
.footer {
  font-family: Arial, sans-serif;
}

.systems-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.atlas {
  padding: clamp(54px, 8vw, 112px) clamp(18px, 4vw, 56px);
}

.section-title {
  width: min(980px, 100%);
  margin-bottom: clamp(34px, 5vw, 74px);
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 56px);
}

.board-card {
  padding: clamp(8px, 1.2vw, 14px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 16px 48px rgba(74, 64, 51, 0.09);
}

.board-card img {
  width: 100%;
  aspect-ratio: 1055 / 1491;
  object-fit: cover;
  background: var(--paper-deep);
}

.board-card figcaption {
  display: grid;
  grid-template-columns: minmax(180px, 0.44fr) 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px 4px 4px;
  border-top: 1px solid var(--line-soft);
  margin-top: 14px;
}

.board-card figcaption span {
  color: var(--ink-strong);
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.board-card small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.system-flow {
  margin: 0 clamp(18px, 4vw, 56px) clamp(54px, 8vw, 112px);
  padding: 24px clamp(18px, 3vw, 34px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.46);
}

.flow-title {
  margin: 0 0 18px;
  color: var(--ink-strong);
  font-size: 22px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.flow-grid {
  display: grid;
  grid-template-columns: 1fr 34px 1fr 34px 1fr 34px 1fr 34px 1fr;
  gap: 12px;
  align-items: center;
}

.flow-grid span {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 12px;
  border: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.flow-grid i {
  height: 1px;
  background: var(--ochre);
}

.launch {
  padding: clamp(54px, 8vw, 112px) clamp(18px, 5vw, 72px);
  text-align: center;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 0%, rgba(44, 135, 144, 0.13), transparent 42%),
    rgba(255, 255, 255, 0.42);
}

.launch h2 {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.launch > p:not(.overline) {
  width: min(720px, 100%);
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
}

.launch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: 32px;
  padding: 0 26px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.56);
  color: var(--ink-strong);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .hero,
  .statement {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    max-width: 900px;
  }

  .hero-board {
    max-width: 760px;
  }

  .hero-board img {
    width: 100%;
    height: auto;
  }

  .systems-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .board-card {
    max-width: 860px;
  }

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

  .flow-grid i {
    width: 1px;
    height: 28px;
    margin: 0 auto;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 62px;
  }

  .brand {
    font-size: 12px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .nav {
    display: none;
  }

  .hero {
    padding-top: 28px;
  }

  .hero h1 {
    font-size: clamp(34px, 10.5vw, 44px);
    line-height: 1.08;
    letter-spacing: 0.025em;
  }

  .lead,
  .statement > p,
  .launch > p {
    font-size: 16px;
  }

  .hero-notes {
    grid-template-columns: 1fr;
  }

  .hero-notes span {
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .hero-notes span:last-child {
    border-bottom: 0;
  }

  .systems-strip {
    grid-template-columns: 1fr;
  }

  .systems-strip article {
    min-height: 158px;
    border-right: 1px solid var(--line-soft);
  }

  .systems-strip h3 {
    margin-top: 28px;
  }

  .board-card figcaption {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
    letter-spacing: 0.12em;
  }
}
