:root {
  color-scheme: light;
  --paper: #fafbf8;
  --ink: #18392b;
  --muted: #58645d;
  --accent: #cc4829;
  --line: #dce2da;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.page {
  width: min(100%, 1380px);
  min-height: 100vh;
  min-height: 100svh;
  margin-inline: auto;
  padding-inline: max(24px, env(safe-area-inset-left)) max(24px, env(safe-area-inset-right));
  display: flex;
  flex-direction: column;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-block: 25px;
  border-bottom: 1px solid var(--line);
}
.wordmark {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: 1;
  text-decoration: none;
}
.wordmark span { color: var(--accent); }
.status {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: .8125rem;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}
main {
  display: grid;
  gap: 34px;
  padding-block: 44px 36px;
  flex: 1;
  align-content: center;
}
.hero-copy { min-width: 0; }
.eyebrow {
  margin: 0 0 18px;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .12em;
  text-transform: uppercase;
}
h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.6rem, 11.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.045em;
  margin: 0;
  overflow-wrap: break-word;
}
h1 span { color: var(--accent); }
.intro {
  max-width: 28rem;
  margin: 22px 0 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--muted);
}
.subjects { margin-top: 28px; }
.subjects-label {
  margin: 0 0 10px;
  font-size: .75rem;
  line-height: 1.5;
  color: var(--muted);
}
.subjects ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  list-style: none;
  padding: 0;
  margin: 0;
}
.subjects li {
  display: inline-flex;
  align-items: center;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.5;
}
.subjects li:not(:last-child)::after {
  content: '';
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #9aaba0;
  margin-inline: 10px;
}
.discovery {
  position: relative;
  isolation: isolate;
  margin: 0;
  width: 100%;
  min-width: 0;
  min-height: 240px;
  aspect-ratio: 1.38;
  overflow: hidden;
  border-radius: 16px;
  background: #000;
}
.discovery img {
  position: absolute;
  z-index: -2;
  width: 110%;
  height: 135%;
  right: -22%;
  top: -30%;
  object-fit: contain;
  display: block;
}
.discovery::after {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(0deg, #0a1512 0%, rgb(10 21 18 / .94) 16%, rgb(10 21 18 / .08) 75%);
}
figcaption {
  position: relative;
  min-height: inherit;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #fff;
}
.image-label {
  display: block;
  margin-bottom: 10px;
  color: #d2e0d8;
  font-size: .75rem;
  line-height: 1.5;
}
.image-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.025em;
}
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px 24px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  padding-bottom: max(36px, calc(env(safe-area-inset-bottom) + 24px));
  line-height: 1.5;
}
.parent { font-size: .875rem; }
.parent a { font-weight: 700; text-underline-offset: 4px; text-decoration-color: #b1beb3; }
.parent a:hover { text-decoration-color: var(--accent); }
.copyright { color: var(--muted); font-size: .75rem; }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 6px; border-radius: 2px; }
@media (min-width: 650px) {
  .page { padding-inline: 40px; }
  main { gap: 40px; padding-block: 52px; }
  h1 { font-size: 4.25rem; }
  .discovery { aspect-ratio: 1.8; }
  .discovery img { width: 80%; height: 150%; right: -7%; }
  figcaption { padding: 32px; }
  .image-title { font-size: 2rem; }
}
@media (min-width: 960px) {
  .page { padding-inline: 64px; }
  header { padding-block: 32px; }
  .wordmark { font-size: 2.25rem; }
  .status { font-size: .875rem; }
  main { grid-template-columns: 1.08fr 1fr; align-items: center; gap: 6%; padding-block: 64px; }
  h1 { font-size: clamp(3.5rem, 5.4vw, 5rem); }
  .eyebrow { margin-bottom: 24px; }
  .intro { font-size: 1.125rem; margin-top: 26px; }
  .subjects { margin-top: 40px; }
  .discovery { aspect-ratio: .92; min-height: 430px; border-radius: 24px; }
  .discovery img { width: 135%; height: 105%; right: -33%; top: -15%; }
  figcaption { padding: 36px; }
  .image-title { font-size: clamp(1.8rem, 2.65vw, 2.5rem); }
  footer { padding-top: 24px; padding-bottom: 30px; }
}
@media (max-width: 359px) {
  .page { padding-inline: max(20px, env(safe-area-inset-left)) max(20px, env(safe-area-inset-right)); }
  .wordmark { font-size: 1.75rem; }
  .status { padding: 8px 10px; }
  main { padding-top: 36px; }
  footer { flex-direction: column; align-items: flex-start; gap: 8px; }
}
