:root {
  color-scheme: light;
  --paper: #f4f0e8;
  --ink: #202524;
  --teal: #365b54;
  --sage: #96a696;
  --mist: #e5ece8;
  --line: #d9d6ce;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--paper);
}

.page-shell {
  width: min(100% - 80px, 1120px);
  min-height: 100svh;
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.site-header {
  padding: 40px 0 28px;
  border-bottom: 1px solid var(--line);
}

.wordmark,
.eyebrow,
.site-footer p {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  font-weight: 650;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.85fr);
  gap: clamp(56px, 8vw, 112px);
  align-items: center;
  padding: clamp(72px, 10vh, 128px) 0;
}

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

.eyebrow {
  margin-bottom: 26px;
  color: var(--teal);
  letter-spacing: 0.16em;
}

h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(3.4rem, 5.7vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 620;
}

.intro {
  max-width: 660px;
  margin: 36px 0 0;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.58;
  letter-spacing: -0.012em;
}

.status {
  margin: 28px 0 0;
  color: var(--teal);
  font-size: 1rem;
  font-weight: 560;
}

.alignment-study {
  position: relative;
  min-height: 340px;
  border: 1px solid color-mix(in srgb, var(--line) 60%, transparent);
  background: color-mix(in srgb, var(--mist) 62%, var(--paper));
}

.alignment-study span {
  position: absolute;
  display: block;
}

.line {
  height: 1px;
  background: var(--teal);
  opacity: 0.55;
}

.line-one {
  top: 29%;
  left: 17%;
  width: 58%;
}

.line-two {
  right: 15%;
  bottom: 28%;
  width: 45%;
}

.circle {
  top: 35%;
  left: 23%;
  width: 104px;
  aspect-ratio: 1;
  border: 1px solid var(--teal);
  border-radius: 50%;
}

.block {
  border-radius: 2px;
}

.block-one {
  top: 34%;
  right: 18%;
  width: 56px;
  height: 56px;
  background: var(--teal);
}

.block-two {
  right: 28%;
  bottom: 17%;
  width: 72px;
  height: 26px;
  background: var(--sage);
}

.site-footer {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 28px 0 40px;
  color: color-mix(in srgb, var(--ink) 72%, var(--paper));
}

.site-footer span {
  height: 1px;
  flex: 1;
  background: var(--line);
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 40px, 560px);
  }

  .site-header {
    padding: 28px 0 22px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 58px 0 52px;
  }

  .eyebrow {
    max-width: 330px;
    margin-bottom: 24px;
    line-height: 1.55;
  }

  h1 {
    font-size: clamp(3.25rem, 15vw, 4.7rem);
    line-height: 1.02;
  }

  .intro {
    margin-top: 30px;
    font-size: 1.05rem;
    line-height: 1.56;
  }

  .alignment-study {
    min-height: 250px;
  }

  .site-footer {
    padding-bottom: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
  }
}
