:root {
  --ink: #010204;
  --midnight: #02050d;
  --navy: #061329;
  --royal: #0a3f91;
  --ice: #42c7ff;
  --ice-bright: #9ce9ff;
  --silver: #cfdae5;
  --white: #f5f9fc;
  --muted: #9eacba;
  --line: rgba(145, 214, 246, 0.2);
  --display: "Cinzel", Georgia, serif;
  --body: "Source Sans 3", "Segoe UI", sans-serif;
  --header-height: 92px;
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--ink);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--silver);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--ice-bright);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2000;
  padding: 0.65rem 1rem;
  transform: translateY(-160%);
  border: 1px solid var(--ice);
  background: var(--midnight);
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  height: var(--header-height);
  border-bottom: 1px solid rgba(140, 209, 240, 0.13);
  background: linear-gradient(180deg, rgba(0, 2, 7, 0.82) 0%, rgba(0, 3, 10, 0.2) 78%, transparent 100%);
  transition: height 280ms ease, background-color 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 4%, rgba(66, 199, 255, 0.36) 34%, rgba(207, 218, 229, 0.12) 64%, transparent 96%);
  content: "";
  opacity: 0.42;
  pointer-events: none;
}

.site-header.is-scrolled,
.site-header.is-open {
  height: 74px;
  border-color: rgba(140, 209, 240, 0.2);
  background: rgba(1, 4, 12, 0.92);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.32);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.nav-shell {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1720px);
  height: 100%;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 4.75rem);
}

.site-brand {
  display: grid;
  flex: 0 0 auto;
  width: 130px;
  height: calc(100% + 8px);
  place-items: center;
  text-decoration: none;
  transition: width 280ms ease, opacity 180ms ease;
}

.site-brand:hover {
  opacity: 0.82;
}

.site-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-header.is-scrolled .site-brand,
.site-header.is-open .site-brand {
  width: 106px;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 2.5vw, 3.2rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #c8d3de;
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-nav a span {
  display: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: linear-gradient(90deg, var(--royal), var(--ice-bright));
  content: "";
  transition: transform 240ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-current {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-current::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: max(820px, 100svh);
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 39%, rgba(16, 93, 179, 0.28) 0, rgba(4, 28, 66, 0.13) 25%, transparent 50%),
    linear-gradient(105deg, #010204 0%, #020713 46%, #02050c 100%);
}

.hero::before {
  position: absolute;
  z-index: -4;
  inset: 0;
  background:
    repeating-linear-gradient(114deg, transparent 0, transparent 74px, rgba(143, 210, 242, 0.018) 75px, transparent 76px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.008) 1px, transparent 1px);
  background-size: auto, 76px 76px, 76px 76px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  opacity: 0.66;
}

.hero::after {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  height: 18%;
  background: linear-gradient(to bottom, transparent, rgba(0, 1, 4, 0.76));
  content: "";
  pointer-events: none;
}

.hero__atmosphere,
.hero__atmosphere span {
  position: absolute;
  pointer-events: none;
}

.hero__atmosphere {
  z-index: -1;
  inset: 0;
  overflow: hidden;
}

.mist {
  right: -14%;
  left: 26%;
  height: 16%;
  background: linear-gradient(90deg, transparent, rgba(62, 158, 210, 0.065) 26%, rgba(174, 226, 247, 0.13) 58%, transparent 90%);
  filter: blur(28px);
  opacity: 0.7;
  transform: skewY(-4deg);
}

.mist--one {
  top: 29%;
  animation: mist-drift 15s ease-in-out infinite alternate;
}

.mist--two {
  top: 62%;
  right: 3%;
  left: 44%;
  height: 10%;
  opacity: 0.42;
  animation: mist-drift 19s ease-in-out 1.5s infinite alternate-reverse;
}

.ornament {
  opacity: 0.42;
}

.ornament--north {
  top: 18%;
  right: 5.3%;
  width: min(28vw, 430px);
  height: min(18vw, 280px);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.ornament--north::before,
.ornament--south::before {
  position: absolute;
  width: 44px;
  height: 1px;
  background: var(--ice);
  content: "";
  opacity: 0.5;
}

.ornament--north::before {
  top: -1px;
  right: -1px;
  transform: rotate(-45deg) translate(9px, -16px);
  transform-origin: right;
}

.ornament--east {
  top: 22%;
  right: 3.25%;
  width: 1px;
  height: 48%;
  background: linear-gradient(to bottom, transparent, rgba(140, 213, 246, 0.26), transparent);
}

.ornament--south {
  right: 8%;
  bottom: 14%;
  width: min(20vw, 310px);
  height: min(8vw, 120px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ornament--south::before {
  right: -1px;
  bottom: -1px;
  transform: rotate(45deg) translate(9px, 16px);
  transform-origin: right;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(400px, 1.24fr);
  column-gap: clamp(1.75rem, 3vw, 4.5rem);
  align-items: center;
  width: min(100%, 1720px);
  min-height: max(820px, 100svh);
  margin: 0 auto;
  padding: calc(var(--header-height) + 4.5rem) clamp(1.25rem, 4vw, 4.75rem) 8rem;
}

.hero__copy {
  position: relative;
  z-index: 3;
  max-width: 610px;
  padding-left: clamp(0rem, 1.5vw, 1.5rem);
}

.hero__copy::before {
  position: absolute;
  top: -3.5rem;
  bottom: -3.75rem;
  left: -1.75rem;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(115, 199, 238, 0.3) 18%, rgba(115, 199, 238, 0.08) 82%, transparent);
  content: "";
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1.35rem;
  color: var(--ice-bright);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero__eyebrow span {
  display: inline-block;
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, var(--royal), var(--ice-bright));
}

.hero h1 {
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(3.45rem, 5.15vw, 6.6rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.91;
  text-wrap: balance;
  text-transform: uppercase;
}

.hero h1 > span {
  display: block;
}

.hero h1 strong {
  display: block;
  width: max-content;
  margin-top: 0.08em;
  color: transparent;
  font-size: 1.08em;
  font-weight: 600;
  letter-spacing: -0.025em;
  text-shadow: 0 0 20px rgba(83, 184, 229, 0.11);
  -webkit-text-stroke: 1.35px rgba(216, 239, 249, 0.94);
}

.hero__lede {
  max-width: 36rem;
  margin: 1.75rem 0 0;
  color: #b7c2ce;
  font-size: clamp(1.02rem, 1.12vw, 1.18rem);
  line-height: 1.72;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.4rem;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.9rem 1.5rem;
  clip-path: polygon(9px 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%, 0 9px);
  font-family: var(--display);
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 200ms ease, background-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.button::before,
.button::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.button::before {
  inset: 0;
  border: 1px solid currentColor;
  clip-path: inherit;
  opacity: 0.8;
}

.button::after {
  top: 0;
  right: 17px;
  left: 17px;
  height: 1px;
  transform: scaleX(0.18);
  background: var(--white);
  opacity: 0;
  transition: opacity 200ms ease, transform 260ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:hover::after,
.button:focus-visible::after {
  transform: scaleX(1);
  opacity: 0.75;
}

.button--primary {
  background: linear-gradient(135deg, #0b356f 0%, #061a36 56%, #020916 100%);
  box-shadow: inset 0 0 24px rgba(86, 200, 244, 0.08), 0 10px 30px rgba(0, 0, 0, 0.24);
  color: var(--ice-bright);
  text-shadow: 0 0 12px rgba(94, 205, 248, 0.16);
}

.button--primary::before {
  border-color: rgba(156, 233, 255, 0.78);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: linear-gradient(135deg, #0e4a95 0%, #082953 58%, #030e21 100%);
  box-shadow: inset 0 0 28px rgba(120, 220, 255, 0.1), 0 10px 34px rgba(27, 122, 176, 0.2);
  color: var(--white);
}

.button--secondary {
  background: linear-gradient(135deg, rgba(7, 20, 41, 0.76), rgba(1, 5, 13, 0.88));
  color: var(--silver);
}

.button--secondary::before {
  border-color: rgba(164, 197, 214, 0.52);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  background: rgba(16, 54, 91, 0.46);
  color: var(--white);
}

.hero__visual {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  justify-items: center;
  width: 100%;
  margin: 0;
  padding-left: clamp(1rem, 2vw, 2rem);
}

.hero__halo {
  position: absolute;
  z-index: -2;
  width: 69%;
  aspect-ratio: 1;
  border: 1px solid rgba(101, 187, 229, 0.18);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 107, 184, 0.24) 0%, rgba(5, 43, 89, 0.12) 40%, transparent 70%);
  box-shadow: inset 0 0 70px rgba(78, 178, 222, 0.045), 0 0 90px rgba(48, 152, 207, 0.07);
}

.hero__halo::before,
.hero__halo::after {
  position: absolute;
  inset: 7%;
  border: 1px solid rgba(141, 205, 237, 0.06);
  border-radius: 50%;
  content: "";
}

.hero__halo::after {
  inset: 17%;
  border-color: rgba(141, 205, 237, 0.045);
}

.hero__sigil {
  position: absolute;
  z-index: -1;
  top: 50%;
  width: 9%;
  height: 38%;
  border-top: 1px solid rgba(143, 210, 242, 0.18);
  border-bottom: 1px solid rgba(143, 210, 242, 0.18);
  opacity: 0.55;
}

.hero__sigil::after {
  position: absolute;
  top: 22%;
  bottom: 22%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--ice), transparent);
  content: "";
  opacity: 0.32;
}

.hero__sigil--left {
  left: 2%;
  transform: translateY(-50%) skewY(-30deg);
}

.hero__sigil--left::after {
  right: 0;
}

.hero__sigil--right {
  right: 2%;
  transform: translateY(-50%) skewY(30deg);
}

.hero__sigil--right::after {
  left: 0;
}

.hero__logo {
  width: min(100%, 920px);
  height: auto;
  max-height: min(63svh, 775px);
  object-fit: contain;
  animation: logo-reveal 1200ms cubic-bezier(0.16, 1, 0.3, 1) 120ms both;
}

.hero__meta {
  position: absolute;
  z-index: 6;
  right: clamp(1.25rem, 4vw, 4.75rem);
  bottom: 2.35rem;
  left: clamp(1.25rem, 4vw, 4.75rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.7rem, 1.5vw, 1.5rem);
  margin: 0;
  color: #c6d2dd;
  font-family: var(--display);
  font-size: clamp(0.7rem, 0.84vw, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero__meta::before,
.hero__meta::after {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(143, 210, 242, 0.38));
  content: "";
}

.hero__meta::after {
  transform: rotate(180deg);
}

.hero__meta i {
  width: 4px;
  height: 4px;
  transform: rotate(45deg);
  background: var(--ice);
  box-shadow: 0 0 9px rgba(66, 199, 255, 0.5);
}

.genetics-archive {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(7rem, 9vw, 10rem) 0 clamp(6rem, 8vw, 9rem);
  scroll-margin-top: 74px;
  background:
    radial-gradient(circle at 22% 36%, rgba(10, 66, 124, 0.13), transparent 34%),
    linear-gradient(180deg, #010204 0%, #020711 21%, #030814 62%, #010307 100%);
}

.genetics-archive::before,
.genetics-archive::after {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  pointer-events: none;
}

.genetics-archive::before {
  top: -15rem;
  height: 30rem;
  background:
    linear-gradient(180deg, rgba(0, 1, 4, 0.84), rgba(3, 13, 29, 0.34) 48%, transparent),
    radial-gradient(ellipse at 66% 0%, rgba(57, 154, 205, 0.1), transparent 58%);
}

.genetics-archive::after {
  background:
    repeating-linear-gradient(90deg, transparent 0, transparent 119px, rgba(147, 211, 240, 0.018) 120px),
    repeating-linear-gradient(0deg, transparent 0, transparent 119px, rgba(147, 211, 240, 0.014) 120px);
  mask-image: linear-gradient(to bottom, transparent 0, black 18%, black 84%, transparent 100%);
  opacity: 0.7;
}

.genetics-archive__threshold {
  position: absolute;
  top: 0;
  right: clamp(1.25rem, 4vw, 4.75rem);
  left: clamp(1.25rem, 4vw, 4.75rem);
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0.54;
}

.genetics-archive__threshold span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(133, 207, 240, 0.32));
}

.genetics-archive__threshold span:last-child {
  transform: rotate(180deg);
}

.genetics-archive__threshold i {
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  border: 1px solid rgba(156, 226, 255, 0.65);
  box-shadow: inset 0 0 4px rgba(90, 194, 236, 0.24);
}

.genetics-archive__inner {
  position: relative;
  z-index: 2;
  width: min(100%, 1720px);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 4.75rem);
}

.genetics-archive__header {
  margin-bottom: clamp(3.5rem, 5vw, 5.75rem);
}

.genetics-archive__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1.2rem;
  color: var(--ice-bright);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  line-height: 1.4;
  text-transform: uppercase;
}

.genetics-archive__eyebrow span {
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, var(--royal), var(--ice-bright));
}

.genetics-archive__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: end;
  gap: clamp(2.5rem, 6vw, 7rem);
}

.genetics-archive h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(3.7rem, 6.5vw, 7.25rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.88;
  text-transform: uppercase;
}

.genetics-archive h2 span,
.genetics-archive h2 strong {
  display: block;
}

.genetics-archive h2 strong {
  width: max-content;
  margin-top: 0.06em;
  color: transparent;
  font-size: 0.92em;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-shadow: 0 0 18px rgba(82, 184, 229, 0.08);
  -webkit-text-stroke: 1.1px rgba(204, 231, 244, 0.76);
}

.genetics-archive__copy {
  max-width: 35rem;
  margin: 0 0 0.4rem;
  padding: 0.3rem 0 0.3rem clamp(1.5rem, 3vw, 3rem);
  border-left: 1px solid rgba(138, 207, 239, 0.22);
  color: #9fadb9;
  font-size: clamp(0.92rem, 1vw, 1.02rem);
  line-height: 1.65;
}

.genetics-archive__copy p {
  margin: 0;
}

.genetics-archive__copy p + p {
  margin-top: 1rem;
}

.archive-grid {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: minmax(350px, 1.65fr) minmax(190px, 0.75fr);
  gap: clamp(0.75rem, 1vw, 1.1rem);
  min-height: 650px;
}

.archive-grid::before,
.archive-grid::after {
  position: absolute;
  z-index: 0;
  content: "";
  pointer-events: none;
}

.archive-grid::before {
  inset: -2.5rem -3rem;
  background:
    linear-gradient(128deg, transparent 0 34%, rgba(164, 211, 229, 0.055) 34.08% 34.15%, transparent 34.23%) center / 100% 100% no-repeat,
    linear-gradient(42deg, transparent 0 67%, rgba(198, 225, 235, 0.032) 67.08% 67.14%, transparent 67.22%) center / 100% 100% no-repeat;
  opacity: 0.48;
}

.archive-grid::after {
  top: 49%;
  right: -1.5rem;
  left: -1.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(111, 189, 225, 0.13) 18%, rgba(207, 231, 241, 0.22) 57%, rgba(105, 183, 220, 0.09) 84%, transparent);
  opacity: 0.38;
}

.archive-route {
  --archive-shape: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  position: relative;
  z-index: 1;
  display: block;
  isolation: isolate;
  overflow: visible;
  border: 0;
  background: transparent;
  color: var(--silver);
  text-decoration: none;
}

.archive-route::before,
.archive-route::after {
  position: absolute;
  inset: 0;
  content: "";
  clip-path: var(--archive-shape);
  pointer-events: none;
  transition: opacity 320ms ease, transform 420ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 320ms ease;
}

.archive-route::before {
  z-index: -2;
  background: linear-gradient(145deg, #091522, #030a14 58%, #01040a);
  opacity: 1;
}

.archive-route::after {
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(155, 194, 211, 0.18), transparent 82%) bottom left / 1px 72% no-repeat,
    linear-gradient(180deg, rgba(170, 207, 222, 0.16), transparent 72%) top right / 1px 58% no-repeat,
    linear-gradient(270deg, rgba(194, 222, 233, 0.22), rgba(83, 147, 176, 0.06) 46%, transparent 86%) bottom right / 72% 1px no-repeat;
  opacity: 0.54;
}

.archive-route:hover,
.archive-route:focus-visible {
  color: var(--silver);
}

.archive-route:hover::before,
.archive-route:focus-visible::before {
  opacity: 1;
}

.archive-route:hover::after,
.archive-route:focus-visible::after {
  opacity: 0.72;
}

.archive-route:focus-visible {
  outline: 2px solid rgba(156, 233, 255, 0.82);
  outline-offset: 3px;
}

.archive-route--auto {
  --archive-shape: polygon(0 0, calc(100% - 30px) 0, calc(100% - 18px) 11px, 100% 11px, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%);
  grid-row: 1 / 3;
  grid-column: 1 / 8;
}

.archive-route--auto::before {
  clip-path: polygon(
    0 30px,
    calc(100% - 30px) 30px,
    calc(100% - 18px) 40px,
    100% 40px,
    100% calc(100% - 24px),
    calc(100% - 24px) 100%,
    0 100%
  );
  background:
    radial-gradient(ellipse at 9% 3%, rgba(63, 131, 170, 0.15), transparent 40%),
    linear-gradient(150deg, #0a2036, #04101f 54%, #020811);
}

.archive-route--auto::after {
  background:
    linear-gradient(0deg, rgba(166, 211, 230, 0.18), transparent 82%) bottom left / 1px 58% no-repeat,
    linear-gradient(180deg, transparent 18%, rgba(175, 216, 233, 0.16) 54%, transparent 88%) top right / 1px 100% no-repeat,
    linear-gradient(270deg, rgba(209, 234, 243, 0.22), rgba(92, 169, 201, 0.06) 48%, transparent 88%) bottom right / 78% 1px no-repeat;
  opacity: 0.5;
}

.archive-route--photo {
  --archive-shape: polygon(18px 0, 100% 0, 100% calc(100% - 19px), calc(100% - 19px) 100%, 0 100%, 0 18px);
  grid-row: 1;
  grid-column: 8 / 13;
}

.archive-route--photo::before {
  clip-path: polygon(
    18px 0,
    27% 0,
    36% 8px,
    100% 8px,
    100% calc(100% - 19px),
    calc(100% - 19px) 100%,
    0 100%,
    0 18px
  );
  background:
    radial-gradient(ellipse at 87% 5%, rgba(156, 188, 203, 0.1), transparent 38%),
    linear-gradient(145deg, #14222f, #091421 55%, #030912);
}

.archive-route--photo::after {
  background:
    linear-gradient(90deg, rgba(187, 219, 232, 0.20), rgba(112, 177, 205, 0.08), transparent) 18px 0 / 29% 1px no-repeat,
    linear-gradient(0deg, rgba(151, 189, 205, 0.14), transparent 82%) bottom left / 1px 62% no-repeat,
    linear-gradient(180deg, transparent 26%, rgba(168, 203, 217, 0.15) 68%, transparent 94%) top right / 1px 100% no-repeat,
    linear-gradient(270deg, rgba(192, 216, 226, 0.18), transparent 86%) bottom right / 58% 1px no-repeat;
  opacity: 0.54;
}

.archive-route--complicated {
  --archive-shape: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 11px) calc(100% - 16px), calc(100% - 27px) 100%, 0 100%);
  grid-row: 2;
  grid-column: 8 / 13;
}

.archive-route--complicated::before {
  clip-path: polygon(
    0 0,
    86% 0,
    91% 4px,
    100% 4px,
    100% calc(100% - 16px),
    calc(100% - 11px) calc(100% - 16px),
    calc(100% - 27px) 100%,
    0 100%
  );
  background:
    radial-gradient(ellipse at 90% 10%, rgba(106, 146, 164, 0.10), transparent 38%),
    linear-gradient(100deg, #040b16, #091724 65%, #030710);
}

.archive-route--complicated::after {
  background:
    linear-gradient(90deg, rgba(177, 208, 221, 0.16), rgba(98, 157, 183, 0.055), transparent) top left / 86% 1px no-repeat,
    linear-gradient(0deg, rgba(151, 186, 202, 0.13), transparent 80%) bottom left / 1px 68% no-repeat,
    linear-gradient(180deg, transparent 58%, rgba(171, 203, 216, 0.13) 80%, transparent 97%) top right / 1px 100% no-repeat,
    linear-gradient(270deg, rgba(196, 221, 231, 0.18), transparent 88%) bottom right / 68% 1px no-repeat;
  opacity: 0.52;
}

.archive-route__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: clamp(2rem, 3.5vw, 4.25rem);
}

.archive-route__ghost {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: hidden;
  clip-path: var(--archive-shape);
  color: rgba(126, 196, 228, 0.026);
  font-family: var(--display);
  font-size: clamp(8rem, 16vw, 19rem);
  font-weight: 700;
  letter-spacing: -0.09em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 0 24px rgba(72, 162, 204, 0.035);
  transition: color 320ms ease;
}

.archive-route:hover .archive-route__ghost,
.archive-route:focus-visible .archive-route__ghost {
  color: rgba(126, 207, 244, 0.042);
}

.archive-route--complicated .archive-route__ghost {
  color: rgba(186, 217, 230, 0.021);
  font-size: clamp(4.5rem, 7vw, 7.5rem);
  filter: blur(0.35px);
}

/* =====================================================================
   FROSTFIRE — BORDER-INTEGRATED FROST V9 (PHOTO RIGHT EDGE FLUSH)
   The real frost PNGs sit directly on the archive-card perimeter.
   ===================================================================== */

.archive-route__contact-light {
  position: absolute;
  z-index: 1;
  display: block;
  pointer-events: none;
  filter: blur(5px);
  transition: opacity 260ms ease;
}

.archive-route--auto .archive-route__contact-light {
  top: 22px;
  left: 2%;
  width: 92%;
  height: 10px;
  opacity: 0.24;
  background: linear-gradient(
    90deg,
    rgba(190, 233, 255, 0.16),
    rgba(86, 170, 214, 0.06) 58%,
    transparent 96%
  );
}

.archive-route--photo .archive-route__contact-light {
  top: 5px;
  right: 0;
  width: 72%;
  height: 7px;
  opacity: 0.2;
  background: linear-gradient(
    270deg,
    rgba(220, 243, 255, 0.14),
    rgba(100, 175, 216, 0.05) 60%,
    transparent
  );
}

.archive-route--complicated .archive-route__contact-light {
  top: 2px;
  right: 0;
  width: 24%;
  height: 6px;
  opacity: 0.14;
  background: linear-gradient(
    270deg,
    rgba(211, 239, 255, 0.13),
    transparent
  );
}

.archive-route:hover .archive-route__contact-light,
.archive-route:focus-visible .archive-route__contact-light {
  opacity: 0.5;
}

.archive-route__ice {
  --ice-filter: saturate(0.96) brightness(1.16) contrast(1.08) drop-shadow(0 3px 8px rgba(143, 211, 241, 0.2));
  --ice-hover-filter: saturate(1.02) brightness(1.24) contrast(1.1) drop-shadow(0 4px 10px rgba(184, 232, 250, 0.28));
  position: absolute;
  z-index: 2;
  display: block;
  max-width: none;
  height: auto;
  object-fit: contain;
  opacity: 0.98;
  pointer-events: none;
  user-select: none;
  filter: var(--ice-filter);
  transition: opacity 260ms ease, filter 280ms ease;
}

.archive-route__ice--auto-top {
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  opacity: 0.94;
  filter:
    saturate(0.88)
    brightness(1.08)
    contrast(1.08)
    drop-shadow(0 2px 5px rgba(145, 205, 235, 0.16));
}

.archive-route__ice--auto-corner {
  display: none;
}

.archive-route__ice--photo {
  --ice-filter: saturate(0.84) brightness(1.06) contrast(1.08) drop-shadow(0 2px 5px rgba(164, 216, 239, 0.14));
  --ice-hover-filter: saturate(0.92) brightness(1.12) contrast(1.1) drop-shadow(0 3px 7px rgba(205, 239, 252, 0.2));
  top: -1px;
  right: -7px;
  width: 72%;
  opacity: 0.88;
}

.archive-route__ice-crop {
  position: absolute;
  z-index: 2;
  display: block;
  overflow: hidden;
  pointer-events: none;
}

.archive-route__ice-crop--complicated {
  top: -7px;
  right: -7px;
  width: 166px;
  height: 166px;
  overflow: visible;
}

.archive-route__ice--complicated {
  --ice-filter: saturate(0.80) brightness(1.06) contrast(1.1) drop-shadow(0 3px 6px rgba(140, 197, 223, 0.14));
  --ice-hover-filter: saturate(0.88) brightness(1.12) contrast(1.12) drop-shadow(0 4px 8px rgba(186, 228, 246, 0.20));
  top: 0;
  right: 0;
  width: 100%;
  opacity: 0.86;
}

.archive-route:hover .archive-route__ice,
.archive-route:focus-visible .archive-route__ice {
  filter: var(--ice-hover-filter);
}

.archive-route__heading-group,
.archive-route__description,
.archive-route__cta,
.archive-route__title,
.archive-route__kicker {
  display: block;
}

.archive-route__kicker {
  margin-bottom: 0.8rem;
  color: var(--ice-bright);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  line-height: 1.4;
  text-transform: uppercase;
}

.archive-route__title {
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(3.2rem, 5.7vw, 6.8rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.92;
  text-transform: uppercase;
}

.archive-route__title small {
  display: block;
  margin-top: 0.28em;
  color: #b9c6d0;
  font-size: 0.45em;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.archive-route__description {
  max-width: 35rem;
  margin: 1.35rem 0 0;
  color: #b7c2cb;
  font-size: clamp(0.92rem, 1vw, 1.04rem);
  line-height: 1.62;
}

.archive-route__cta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: max-content;
  margin-top: 1.8rem;
  color: var(--ice-bright);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.archive-route__cta i {
  color: var(--white);
  font-family: var(--body);
  font-size: 1.05rem;
  font-style: normal;
  line-height: 1;
  transition: transform 220ms ease;
}

.archive-route:hover .archive-route__cta i,
.archive-route:focus-visible .archive-route__cta i {
  transform: translateX(5px);
}

.archive-route--photo .archive-route__content {
  padding: clamp(2rem, 3vw, 3.5rem);
}

.archive-route--photo .archive-route__title {
  max-width: 31rem;
  font-size: clamp(2.25rem, 3.7vw, 4.4rem);
}

.archive-route--photo .archive-route__description {
  max-width: 31rem;
}

.archive-route--complicated .archive-route__content {
  display: grid;
  grid-template-columns: minmax(200px, 0.9fr) minmax(0, 1.1fr);
  grid-template-rows: auto auto;
  align-items: center;
  gap: 0.7rem clamp(1.5rem, 2.2vw, 2.25rem);
  padding: clamp(1.5rem, 2vw, 2rem) clamp(1.75rem, 2.5vw, 2.4rem);
}

.archive-route--complicated .archive-route__heading-group {
  grid-row: 1 / 3;
  align-self: center;
}

.archive-route--complicated .archive-route__kicker {
  margin-bottom: 0.45rem;
}

.archive-route--complicated .archive-route__title {
  font-size: clamp(1.55rem, 2vw, 2.25rem);
  letter-spacing: -0.035em;
}

.archive-route--complicated .archive-route__description,
.archive-route--complicated .archive-route__cta {
  margin-top: 0;
}

.archive-route--complicated .archive-route__description {
  grid-row: 1;
  grid-column: 2;
  font-size: 0.9rem;
  line-height: 1.5;
}

.archive-route--complicated .archive-route__cta {
  grid-row: 2;
  grid-column: 2;
  justify-self: start;
  white-space: nowrap;
}

/* Strain guide archive */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.strain-guide-document,
.strain-guide-page {
  min-width: 0;
}

.strain-guide-page {
  background: #010307;
}

.strain-guide-page .site-header {
  background: linear-gradient(180deg, rgba(0, 3, 10, 0.97), rgba(1, 5, 14, 0.83));
}

.strain-masthead {
  position: relative;
  isolation: isolate;
  min-height: 590px;
  overflow: hidden;
  padding: calc(var(--header-height) + clamp(5.5rem, 8vw, 9rem)) 0 clamp(5.5rem, 8vw, 8rem);
  border-bottom: 1px solid rgba(145, 214, 246, 0.16);
  background:
    radial-gradient(ellipse at 74% 33%, rgba(21, 94, 162, 0.18), transparent 38%),
    linear-gradient(115deg, #010204, #030a18 55%, #02050c);
}

.strain-masthead::before,
.strain-masthead::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.strain-masthead::before {
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 9%, rgba(147, 216, 246, 0.045) 9.05% 9.1%, transparent 9.15% 89%, rgba(147, 216, 246, 0.035) 89.05% 89.1%, transparent 89.15%),
    linear-gradient(155deg, transparent 0 58%, rgba(158, 209, 231, 0.05) 58.05% 58.13%, transparent 58.18%),
    repeating-linear-gradient(90deg, transparent 0, transparent 159px, rgba(147, 216, 246, 0.017) 160px);
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 84%, transparent);
}

.strain-masthead::after {
  top: 33%;
  right: -4vw;
  width: clamp(270px, 39vw, 640px);
  aspect-ratio: 1;
  transform: rotate(45deg);
  border: 1px solid rgba(153, 215, 241, 0.06);
  box-shadow:
    inset 0 0 0 34px rgba(109, 177, 208, 0.012),
    inset 0 0 0 35px rgba(153, 215, 241, 0.035),
    inset 0 0 0 93px rgba(109, 177, 208, 0.008),
    inset 0 0 0 94px rgba(153, 215, 241, 0.025);
}

.strain-masthead__inner,
.strain-masthead__markings,
.strain-index__inner {
  width: min(100%, 1720px);
  margin: 0 auto;
  padding-right: clamp(1.25rem, 4vw, 4.75rem);
  padding-left: clamp(1.25rem, 4vw, 4.75rem);
}

.strain-masthead__inner {
  position: relative;
  z-index: 2;
}

.strain-masthead__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1.3rem;
  color: var(--ice-bright);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  line-height: 1.4;
  text-transform: uppercase;
}

.strain-masthead__eyebrow span {
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, var(--royal), var(--ice-bright));
}

.strain-masthead h1 {
  max-width: 1040px;
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(3.8rem, 7.7vw, 8.8rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.86;
  text-transform: uppercase;
}

.strain-masthead h1 span,
.strain-masthead h1 strong {
  display: block;
}

.strain-masthead h1 strong {
  width: max-content;
  margin-top: 0.08em;
  color: transparent;
  font-size: 0.84em;
  font-weight: 600;
  letter-spacing: -0.025em;
  -webkit-text-stroke: 1.15px rgba(202, 231, 244, 0.78);
  text-shadow: 0 0 22px rgba(66, 199, 255, 0.07);
}

.strain-masthead__inner > p:last-child {
  max-width: 49rem;
  margin: 2.3rem 0 0;
  padding-left: clamp(1.2rem, 2vw, 2rem);
  border-left: 1px solid rgba(137, 206, 238, 0.3);
  color: #aebbc6;
  font-size: clamp(1rem, 1.2vw, 1.13rem);
  line-height: 1.72;
}

.strain-masthead__markings {
  position: absolute;
  right: 0;
  bottom: 2rem;
  left: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(184, 213, 227, 0.38);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  line-height: 1;
  text-transform: uppercase;
}

.strain-masthead__markings i {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(118, 190, 222, 0.22), transparent 84%);
}

.strain-index {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(4rem, 6vw, 7rem) 0 clamp(6rem, 9vw, 10rem);
  background:
    radial-gradient(ellipse at 92% 8%, rgba(15, 64, 111, 0.11), transparent 33%),
    linear-gradient(180deg, #020711, #010409 34%, #010204);
}

.strain-index::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0, transparent 159px, rgba(147, 216, 246, 0.014) 160px),
    linear-gradient(24deg, transparent 0 74%, rgba(174, 220, 239, 0.025) 74.05% 74.1%, transparent 74.15%);
  content: "";
  pointer-events: none;
}

.archive-tools {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(500px, 1.25fr) auto;
  align-items: stretch;
  gap: clamp(1.25rem, 2.4vw, 2.75rem);
  margin-bottom: clamp(5rem, 7vw, 8rem);
  padding: 1.1rem 0;
  border-top: 1px solid rgba(156, 218, 245, 0.2);
  border-bottom: 1px solid rgba(156, 218, 245, 0.13);
}

.archive-tools::before,
.archive-tools::after {
  position: absolute;
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  border: 1px solid rgba(156, 226, 255, 0.55);
  background: #020711;
  content: "";
}

.archive-tools::before {
  top: -4px;
  left: 0;
}

.archive-tools::after {
  right: 0;
  bottom: -4px;
}

.archive-search {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 54px;
  border-right: 1px solid rgba(143, 204, 230, 0.14);
}

.archive-search__mark {
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  margin-right: 1rem;
  transform: rotate(45deg);
  border: 1px solid rgba(116, 204, 241, 0.65);
  box-shadow: inset 0 0 0 2px #020711;
}

.archive-search input {
  width: 100%;
  min-width: 0;
  min-height: 52px;
  padding: 0 0.75rem 0 0;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  font: 600 0.78rem/1 var(--body);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.archive-search input::placeholder {
  color: #8f9eaa;
  opacity: 1;
}

.archive-search:focus-within {
  box-shadow: inset 0 -1px var(--ice-bright);
}

.archive-search__clear {
  flex: 0 0 auto;
  min-height: 44px;
  margin-right: 1rem;
  padding: 0.2rem 0.7rem;
  border: 0;
  background: transparent;
  color: var(--ice-bright);
  font: 600 0.65rem/1 var(--body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.strain-filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem clamp(0.7rem, 1.4vw, 1.5rem);
}

.strain-filters button {
  position: relative;
  min-height: 44px;
  padding: 0 0 0 0.9rem;
  border: 0;
  background: transparent;
  color: #8f9da9;
  font: 600 0.67rem/1.25 var(--body);
  letter-spacing: 0.12em;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease;
}

.strain-filters button::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 4px;
  transform: translateY(-50%) rotate(45deg);
  border: 1px solid rgba(137, 207, 238, 0.4);
  content: "";
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.strain-filters button:hover,
.strain-filters button:focus-visible,
.strain-filters button[aria-pressed="true"] {
  color: var(--white);
}

.strain-filters button[aria-pressed="true"]::before {
  border-color: var(--ice-bright);
  background: var(--ice);
  box-shadow: 0 0 8px rgba(66, 199, 255, 0.34);
}

.strain-result-count {
  align-self: center;
  margin: 0;
  color: #aab8c3;
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.4;
  white-space: nowrap;
  text-transform: uppercase;
}

.strain-category {
  position: relative;
  scroll-margin-top: calc(var(--header-height) + 2rem);
}

.strain-category + .strain-category {
  margin-top: clamp(6rem, 9vw, 10rem);
}

.strain-category__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.7rem;
  margin-bottom: 2rem;
}

.strain-category__header > p {
  margin: 0;
  color: rgba(151, 208, 234, 0.56);
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.strain-category__header > div {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid rgba(151, 211, 238, 0.22);
}

.strain-category__header h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(2.7rem, 5.3vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.95;
  text-transform: uppercase;
}

.strain-category__header h2 small {
  color: #aebbc5;
  font-size: 0.47em;
  font-weight: 500;
  letter-spacing: -0.015em;
}

.strain-category__header > div > span {
  flex: 0 0 auto;
  padding-bottom: 0.28rem;
  color: #9fadb9;
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  line-height: 1.5;
  text-align: right;
  text-transform: uppercase;
}

.strain-category__header > div > span i {
  margin: 0 0.4rem;
  color: var(--ice);
  font-style: normal;
}

.strain-records {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(141, 199, 224, 0.08);
}

.strain-record {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto 1fr;
  gap: 0.75rem 1.5rem;
  min-height: 150px;
  padding: 1.55rem clamp(1.25rem, 2.2vw, 2.5rem) 1.45rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(141, 199, 224, 0.13);
  background:
    linear-gradient(135deg, rgba(14, 35, 54, 0.32), transparent 52%),
    rgba(3, 9, 17, 0.58);
  color: inherit;
  text-decoration: none;
}

.strain-record:nth-child(odd) {
  border-right: 1px solid rgba(141, 199, 224, 0.13);
}

.strain-record::before,
.strain-record::after {
  position: absolute;
  content: "";
  pointer-events: none;
  transition: opacity 220ms ease, transform 260ms ease;
}

.strain-record::before {
  top: 0;
  left: 0;
  width: 35%;
  height: 1px;
  transform: scaleX(0.3);
  transform-origin: left;
  background: linear-gradient(90deg, var(--ice-bright), transparent);
  opacity: 0.35;
}

.strain-record::after {
  right: -33px;
  bottom: -33px;
  width: 66px;
  height: 66px;
  transform: rotate(45deg);
  border: 1px solid rgba(155, 215, 240, 0.14);
  background: rgba(101, 178, 211, 0.025);
}

.strain-record:hover::before,
.strain-record:focus-visible::before {
  transform: scaleX(1);
  opacity: 0.82;
}

.strain-record:hover::after,
.strain-record:focus-visible::after {
  transform: translate(-5px, -5px) rotate(45deg);
  opacity: 0.8;
}

.strain-record:focus-visible {
  z-index: 2;
  outline-offset: -3px;
}

.strain-record__type {
  grid-column: 1;
  color: #8294a3;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.strain-record h3 {
  grid-row: 2;
  grid-column: 1;
  align-self: end;
  margin: 0;
  color: #e8eff4;
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.7vw, 1.7rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.15;
  text-transform: uppercase;
  transition: color 180ms ease, transform 240ms ease;
}

.strain-record h3 small {
  display: inline-block;
  margin-left: 0.75rem;
  padding-left: 0.75rem;
  border-left: 1px solid rgba(115, 205, 243, 0.45);
  color: var(--ice-bright);
  font-family: var(--body);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.5;
  vertical-align: middle;
}

.strain-record__action {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
  color: #9baab6;
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.strain-record__action i {
  display: inline-block;
  margin-left: 0.55rem;
  color: var(--ice-bright);
  font-size: 0.95rem;
  font-style: normal;
  transition: transform 220ms ease;
}

.strain-record:hover h3,
.strain-record:focus-visible h3 {
  transform: translateX(3px);
  color: var(--white);
}

.strain-record:hover .strain-record__action i,
.strain-record:focus-visible .strain-record__action i {
  transform: translateX(5px);
}

.strain-category--auto .strain-record {
  background:
    linear-gradient(135deg, rgba(14, 48, 78, 0.42), transparent 54%),
    rgba(3, 11, 22, 0.68);
}

.strain-category--auto .strain-category__header > div {
  border-bottom-color: rgba(127, 207, 242, 0.34);
}

.strain-category--photo .strain-record {
  background:
    linear-gradient(135deg, rgba(35, 51, 64, 0.34), transparent 52%),
    rgba(5, 10, 17, 0.62);
}

.strain-category--complicated {
  padding: clamp(2rem, 4vw, 4rem);
  border: 1px solid rgba(139, 195, 220, 0.12);
  background:
    linear-gradient(121deg, rgba(115, 164, 186, 0.026), transparent 24% 68%, rgba(105, 162, 188, 0.032)),
    rgba(1, 4, 9, 0.74);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.strain-category--complicated::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(27deg, transparent 0 67%, rgba(196, 224, 236, 0.05) 67.1% 67.2%, transparent 67.3%),
    linear-gradient(148deg, transparent 0 77%, rgba(158, 204, 224, 0.04) 77.1% 77.2%, transparent 77.3%);
  content: "";
  pointer-events: none;
}

.strain-category--complicated .strain-records {
  grid-template-columns: minmax(0, 1fr);
}

.strain-category--complicated .strain-record {
  border-right: 0;
  background:
    linear-gradient(135deg, rgba(80, 109, 124, 0.1), transparent 52%),
    rgba(1, 4, 9, 0.74);
}

.strain-empty {
  padding: clamp(4rem, 7vw, 7rem) 1.5rem;
  border-top: 1px solid rgba(142, 205, 232, 0.16);
  border-bottom: 1px solid rgba(142, 205, 232, 0.1);
  text-align: center;
}

.strain-empty span {
  display: block;
  width: 11px;
  height: 11px;
  margin: 0 auto 1.35rem;
  transform: rotate(45deg);
  border: 1px solid rgba(140, 212, 243, 0.6);
}

.strain-empty p {
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.strain-empty button {
  min-height: 44px;
  margin-top: 1.4rem;
  padding: 0 0 0.25rem;
  border: 0;
  border-bottom: 1px solid rgba(115, 205, 243, 0.48);
  background: transparent;
  color: var(--ice-bright);
  font: 600 0.68rem/1.4 var(--body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .archive-tools {
    grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  }

  .strain-result-count {
    grid-column: 1 / 3;
    justify-self: end;
  }
}

@media (max-width: 800px) {
  .strain-masthead {
    min-height: 540px;
    padding-top: calc(var(--header-height) + 5rem);
  }

  .strain-masthead::after {
    top: 44%;
    right: -28vw;
  }

  .strain-masthead h1 {
    font-size: clamp(3.6rem, 12.5vw, 6.2rem);
  }

  .strain-masthead__inner > p:last-child {
    max-width: 42rem;
  }

  .archive-tools {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.65rem;
  }

  .archive-search {
    border-right: 0;
    border-bottom: 1px solid rgba(143, 204, 230, 0.14);
  }

  .strain-filters {
    padding-top: 0.4rem;
  }

  .strain-result-count {
    grid-column: 1;
    justify-self: start;
    padding: 0.45rem 0 0.25rem;
  }

  .strain-records {
    grid-template-columns: minmax(0, 1fr);
  }

  .strain-record:nth-child(odd) {
    border-right: 0;
  }
}

@media (max-width: 600px) {
  .strain-masthead__inner,
  .strain-masthead__markings,
  .strain-index__inner {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .strain-masthead {
    min-height: 500px;
    padding-top: calc(var(--header-height) + 4.25rem);
    padding-bottom: 6rem;
  }

  .strain-masthead__eyebrow {
    font-size: 0.67rem;
    letter-spacing: 0.22em;
  }

  .strain-masthead__eyebrow span {
    width: 25px;
  }

  .strain-masthead h1 {
    font-size: clamp(3rem, 15.4vw, 5rem);
    line-height: 0.9;
  }

  .strain-masthead h1 strong {
    width: auto;
  }

  .strain-masthead__inner > p:last-child {
    margin-top: 1.8rem;
    padding-left: 1rem;
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .strain-masthead__markings {
    bottom: 1.4rem;
    font-size: 0.5rem;
  }

  .strain-masthead__markings span:last-child {
    display: none;
  }

  .strain-index {
    padding-top: 3rem;
    padding-bottom: 5rem;
  }

  .archive-tools {
    margin-bottom: 4.5rem;
  }

  .archive-search__mark {
    margin-right: 0.8rem;
  }

  .archive-search input {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .archive-search__clear {
    margin-right: 0;
    padding-right: 0.3rem;
    padding-left: 0.3rem;
  }

  .strain-filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.1rem 0.6rem;
  }

  .strain-filters button {
    padding-left: 0.85rem;
    font-size: 0.62rem;
    letter-spacing: 0.09em;
  }

  .strain-category + .strain-category {
    margin-top: 5.5rem;
  }

  .strain-category__header {
    margin-bottom: 1.1rem;
  }

  .strain-category__header > div {
    display: block;
    padding-bottom: 1rem;
  }

  .strain-category__header h2 {
    font-size: clamp(2.3rem, 12vw, 3.7rem);
    line-height: 1;
  }

  .strain-category__header h2 small {
    display: block;
    margin-top: 0.2em;
    font-size: 0.5em;
  }

  .strain-category__header > div > span {
    display: block;
    margin-top: 0.8rem;
    padding: 0;
    text-align: left;
  }

  .strain-record {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 136px;
    padding: 1.35rem 1.1rem 1.25rem;
  }

  .strain-record h3 {
    font-size: clamp(1.08rem, 5vw, 1.35rem);
  }

  .strain-record h3 small {
    display: block;
    width: max-content;
    margin: 0.45rem 0 0;
    padding: 0;
    border-left: 0;
  }

  .strain-record__action {
    width: 20px;
    overflow: hidden;
    color: transparent;
    white-space: nowrap;
  }

  .strain-record__action i {
    margin-left: 0;
    color: var(--ice-bright);
  }

  .strain-category--complicated {
    margin-right: -0.25rem;
    margin-left: -0.25rem;
    padding: 1.4rem 1.2rem;
  }
}

@media (max-width: 370px) {
  .strain-masthead h1 {
    font-size: 2.85rem;
  }

  .strain-filters {
    grid-template-columns: minmax(0, 1fr);
  }

  .strain-category__header h2 {
    font-size: 2.2rem;
  }

  .strain-record {
    min-height: 128px;
  }
}

@keyframes logo-reveal {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes mist-drift {
  from {
    transform: translate3d(-2%, 0, 0) skewY(-4deg);
  }

  to {
    transform: translate3d(4%, -8px, 0) skewY(-3deg);
  }
}

@media (max-width: 1180px) {
  .site-nav ul {
    gap: 1.35rem;
  }

  .site-nav a {
    font-size: 0.7rem;
  }

  .hero__inner {
    grid-template-columns: minmax(340px, 0.9fr) minmax(400px, 1.1fr);
  }

  .hero__visual {
    width: 100%;
    margin: 0;
    padding-left: 1rem;
  }

  .hero__meta {
    letter-spacing: 0.13em;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 76px;
  }

  .site-header,
  .site-header.is-scrolled,
  .site-header.is-open {
    height: var(--header-height);
  }

  .site-header.is-open {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .site-brand,
  .site-header.is-scrolled .site-brand,
  .site-header.is-open .site-brand {
    position: relative;
    z-index: 3;
    width: 101px;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--silver);
    font: inherit;
    cursor: pointer;
  }

  .menu-toggle__label {
    font-size: 0.69rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .menu-toggle__icon {
    position: relative;
    display: block;
    width: 28px;
    height: 18px;
  }

  .menu-toggle__icon span {
    position: absolute;
    right: 0;
    width: 100%;
    height: 1px;
    background: var(--ice-bright);
    transition: top 220ms ease, transform 220ms ease, width 220ms ease;
  }

  .menu-toggle__icon span:first-child {
    top: 4px;
  }

  .menu-toggle__icon span:last-child {
    top: 13px;
    width: 68%;
  }

  .site-header.is-open .menu-toggle__icon span:first-child {
    top: 8px;
    transform: rotate(45deg);
  }

  .site-header.is-open .menu-toggle__icon span:last-child {
    top: 8px;
    width: 100%;
    transform: rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: grid;
    visibility: hidden;
    width: 100vw;
    height: 100svh;
    place-items: center;
    overflow-y: auto;
    padding: calc(var(--header-height) + 2.5rem) 1.5rem 3rem;
    background:
      linear-gradient(rgba(3, 8, 20, 0.88), rgba(1, 3, 9, 0.96)),
      radial-gradient(circle at 72% 36%, rgba(13, 79, 145, 0.26), transparent 46%);
    opacity: 0;
    transition: opacity 260ms ease, visibility 260ms ease;
  }

  .site-nav::before,
  .site-nav::after {
    position: absolute;
    content: "";
    pointer-events: none;
  }

  .site-nav::before {
    top: 16%;
    right: 8%;
    bottom: 10%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(147, 216, 246, 0.26), transparent);
  }

  .site-nav::after {
    right: 8%;
    bottom: 10%;
    width: 25%;
    height: 1px;
    background: linear-gradient(to left, rgba(147, 216, 246, 0.26), transparent);
  }

  .site-header.is-open .site-nav {
    visibility: visible;
    opacity: 1;
  }

  .site-nav ul {
    display: grid;
    width: min(100%, 560px);
    gap: 0;
  }

  .site-nav li {
    border-bottom: 1px solid rgba(150, 210, 238, 0.12);
  }

  .site-nav a {
    display: flex;
    min-height: 68px;
    font-family: var(--display);
    font-size: clamp(1.1rem, 4.8vw, 1.5rem);
    font-weight: 500;
    letter-spacing: 0.08em;
  }

  .site-nav a span {
    display: inline-block;
    width: 2.5rem;
    color: var(--ice);
    font-family: var(--body);
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    opacity: 0.7;
  }

  .site-nav a::after {
    bottom: -1px;
  }

  .hero,
  .hero__inner {
    min-height: 100svh;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr);
    align-content: start;
    padding-top: calc(var(--header-height) + 2.25rem);
    padding-bottom: 2.5rem;
  }

  .hero__visual {
    order: 1;
    width: min(100%, 680px);
    margin: 0 auto;
    padding-left: 0;
  }

  .hero__logo {
    max-height: 46svh;
  }

  .hero__copy {
    order: 2;
    width: min(100%, 680px);
    max-width: none;
    margin: -0.65rem auto 0;
    padding: 0;
    text-align: center;
  }

  .hero__copy::before {
    display: none;
  }

  .hero__eyebrow,
  .hero__actions {
    justify-content: center;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 9.8vw, 5.35rem);
  }

  .hero h1 strong {
    width: auto;
    font-size: 1.02em;
  }

  .hero__lede {
    margin-right: auto;
    margin-left: auto;
  }

  .hero__meta {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    order: 3;
    flex-wrap: wrap;
    gap: 0.45rem 0.8rem;
    margin-top: 3.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(143, 210, 242, 0.15);
  }

  .hero__meta::before,
  .hero__meta::after {
    display: none;
  }

  .ornament--north {
    top: 11%;
    right: 4%;
    width: 26vw;
    height: 24vw;
  }

  .ornament--south {
    display: none;
  }
}

@media (max-width: 560px) {
  .nav-shell {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .site-brand,
  .site-header.is-scrolled .site-brand,
  .site-header.is-open .site-brand {
    width: 91px;
  }

  .hero__inner {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .hero__visual {
    width: 100%;
  }

  .hero__logo {
    max-height: 39svh;
  }

  .hero__halo {
    width: 78%;
  }

  .hero__sigil {
    display: none;
  }

  .hero__copy {
    margin-top: -0.25rem;
  }

  .hero__eyebrow {
    margin-bottom: 1rem;
    font-size: 0.67rem;
    letter-spacing: 0.22em;
  }

  .hero__eyebrow span {
    width: 25px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 13vw, 4.1rem);
    line-height: 0.94;
  }

  .hero__lede {
    margin-top: 1.3rem;
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero__actions {
    display: grid;
    gap: 0.7rem;
    margin-top: 1.8rem;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .hero__meta {
    margin-top: 2.75rem;
    font-size: 0.64rem;
    letter-spacing: 0.1em;
  }

  .hero__meta span {
    flex: 0 0 calc(50% - 1.2rem);
    text-align: center;
  }

  .hero__meta i:nth-of-type(2) {
    display: none;
  }
}

@media (max-width: 370px) {
  .menu-toggle__label {
    display: none;
  }

  .hero h1 {
    font-size: 2.65rem;
  }

  .hero__meta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__meta span {
    width: 100%;
  }

  .hero__meta i {
    display: none;
  }
}

@media (max-height: 760px) and (min-width: 901px) {
  .hero,
  .hero__inner {
    min-height: 760px;
  }

  .hero__inner {
    padding-top: calc(var(--header-height) + 2rem);
  }

  .hero__logo {
    max-height: 600px;
    width: auto;
  }
}

@media (max-width: 1180px) {
  .genetics-archive__intro {
    gap: 3rem;
  }

  .archive-grid {
    grid-template-rows: minmax(340px, 1.55fr) minmax(210px, 0.85fr);
  }

  .archive-route--complicated .archive-route__content {
    display: flex;
    align-items: flex-start;
    gap: 0;
  }

  .archive-route--complicated .archive-route__description {
    margin-top: 0.8rem;
  }

  .archive-route--complicated .archive-route__cta {
    justify-self: auto;
    margin-top: 1.1rem;
  }
}

@media (max-width: 900px) {
  .genetics-archive {
    padding-top: 7rem;
    padding-bottom: 6rem;
  }

  .genetics-archive__header {
    margin-bottom: 3.5rem;
  }

  .genetics-archive__intro {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .genetics-archive h2 {
    font-size: clamp(3.7rem, 10vw, 5.5rem);
  }

  .genetics-archive h2 strong {
    width: auto;
  }

  .genetics-archive__copy {
    max-width: 42rem;
    margin: 0;
    padding: 1.5rem 0 0;
    border-top: 1px solid rgba(138, 207, 239, 0.2);
    border-left: 0;
  }

  .archive-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    grid-template-rows: minmax(400px, 1.2fr) minmax(300px, 0.9fr);
    min-height: 730px;
  }

  .archive-route--auto {
    grid-row: 1;
    grid-column: 1 / 3;
  }

  .archive-route--photo {
    grid-row: 2;
    grid-column: 1;
  }

  .archive-route--complicated {
    grid-row: 2;
    grid-column: 2;
  }

  .archive-route__ice--auto-top {
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: auto;
    object-fit: contain;
    clip-path: none;
  }

  .archive-route__ice--photo {
    top: -1px;
    right: -6px;
    width: 76%;
  }

  .archive-route__ice-crop--complicated {
    top: -5px;
    right: -5px;
    width: 145px;
    height: 145px;
    overflow: visible;
  }

  .archive-route__content,
  .archive-route--photo .archive-route__content {
    padding: 2.25rem;
  }

  .archive-route--auto .archive-route__title {
    font-size: clamp(3.8rem, 10.5vw, 5.4rem);
  }

  .archive-route--photo .archive-route__title {
    font-size: clamp(2.1rem, 5.7vw, 3rem);
  }

  .archive-route--photo .archive-route__description {
    font-size: 0.88rem;
  }

  .archive-route--complicated .archive-route__content {
    padding: 1.6rem;
  }

  .archive-route--complicated .archive-route__title {
    font-size: clamp(1.55rem, 4vw, 2rem);
  }

  .archive-route--complicated .archive-route__description {
    font-size: 0.82rem;
  }

  .archive-route--complicated .archive-route__cta {
    white-space: normal;
  }
}

@media (max-width: 680px) {
  .genetics-archive {
    padding-top: 5.5rem;
    padding-bottom: 4.5rem;
  }

  .genetics-archive__inner {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .genetics-archive__threshold {
    right: 1rem;
    left: 1rem;
  }

  .genetics-archive__eyebrow {
    font-size: 0.67rem;
    letter-spacing: 0.22em;
  }

  .genetics-archive__eyebrow span {
    width: 25px;
  }

  .genetics-archive h2 {
    font-size: clamp(3rem, 15vw, 4.3rem);
    line-height: 0.92;
  }

  .genetics-archive__copy {
    font-size: 0.92rem;
  }

  .archive-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
    gap: 0.8rem;
    min-height: 0;
  }

  .archive-grid::before {
    inset: -1.5rem 0;
  }

  .archive-grid::after {
    right: 0;
    left: 0;
  }

  .archive-route--auto,
  .archive-route--photo,
  .archive-route--complicated {
    grid-column: 1;
  }

  .archive-route--auto {
    grid-row: 1;
    min-height: 460px;
  }

  .archive-route--photo {
    grid-row: 2;
    min-height: 390px;
  }

  .archive-route--complicated {
    grid-row: 3;
    min-height: 310px;
  }

  .archive-route__ice--auto-top {
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: auto;
    object-fit: contain;
    clip-path: none;
    opacity: 0.96;
  }

  .archive-route__ice--photo {
    top: -1px;
    right: -5px;
    width: 80%;
    opacity: 0.84;
  }

  .archive-route__ice-crop--complicated {
    top: -3px;
    right: -3px;
    width: 120px;
    height: 120px;
    overflow: visible;
  }

  .archive-route__ice--complicated {
    width: 100%;
    opacity: 0.84;
  }

  .archive-route__content,
  .archive-route--photo .archive-route__content,
  .archive-route--complicated .archive-route__content {
    padding: 1.8rem;
  }

  .archive-route__ghost {
    font-size: clamp(7rem, 42vw, 10rem);
  }

  .archive-route--auto .archive-route__title {
    font-size: clamp(2rem, 10.2vw, 3.2rem);
  }

  .archive-route--photo .archive-route__title {
    font-size: clamp(2rem, 9.6vw, 2.7rem);
  }

  .archive-route--complicated .archive-route__title {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .archive-route--photo .archive-route__description,
  .archive-route--complicated .archive-route__description {
    font-size: 0.92rem;
  }

  .archive-route--complicated .archive-route__description {
    margin-top: 1rem;
  }

  .archive-route--complicated .archive-route__cta {
    margin-top: 1.4rem;
  }
}

@media (max-width: 370px) {
  .genetics-archive h2 {
    font-size: 2.8rem;
  }

  .archive-route__content,
  .archive-route--photo .archive-route__content,
  .archive-route--complicated .archive-route__content {
    padding: 1.4rem;
  }

  .archive-route--auto .archive-route__title {
    font-size: 2.1rem;
  }

  .archive-route--photo .archive-route__title {
    font-size: 2rem;
  }

  .archive-route--complicated .archive-route__title {
    font-size: 1.9rem;
  }

  .archive-route__cta {
    font-size: 0.66rem;
    letter-spacing: 0.1em;
  }
}

/* Reusable individual strain dossier */
.strain-detail-document,
.strain-detail-page {
  min-width: 0;
}

.strain-detail-page {
  background: #010307;
}

.strain-detail-page .site-header {
  background: linear-gradient(180deg, rgba(0, 3, 10, 0.97), rgba(1, 5, 14, 0.82));
}

.strain-detail-shell {
  width: min(100%, 1580px);
  margin: 0 auto;
  padding-right: clamp(1.25rem, 4vw, 4.75rem);
  padding-left: clamp(1.25rem, 4vw, 4.75rem);
}

.strain-detail-masthead {
  position: relative;
  isolation: isolate;
  min-height: 780px;
  overflow: hidden;
  padding: calc(var(--header-height) + clamp(3rem, 5vw, 5.5rem)) 0 clamp(3.75rem, 6vw, 6rem);
  border-bottom: 1px solid rgba(145, 214, 246, 0.16);
  background:
    radial-gradient(ellipse at 76% 36%, rgba(20, 94, 165, 0.2), transparent 38%),
    radial-gradient(ellipse at 18% 88%, rgba(10, 49, 94, 0.14), transparent 36%),
    linear-gradient(112deg, #010204, #030a17 58%, #01040a);
}

.strain-detail-masthead::before,
.strain-detail-masthead::after,
.strain-detail-masthead__grid {
  position: absolute;
  pointer-events: none;
}

.strain-detail-masthead::before {
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 7%, rgba(146, 215, 245, 0.04) 7.05% 7.1%, transparent 7.15% 91%, rgba(146, 215, 245, 0.03) 91.05% 91.1%, transparent 91.15%),
    linear-gradient(151deg, transparent 0 57%, rgba(169, 213, 232, 0.04) 57.08% 57.16%, transparent 57.24%);
  content: "";
  mask-image: linear-gradient(to bottom, transparent, black 14%, black 88%, transparent);
}

.strain-detail-masthead::after {
  z-index: -1;
  top: 14%;
  right: -11rem;
  width: clamp(320px, 38vw, 650px);
  aspect-ratio: 1;
  transform: rotate(45deg);
  border: 1px solid rgba(159, 218, 242, 0.065);
  box-shadow:
    inset 0 0 0 38px rgba(105, 178, 211, 0.012),
    inset 0 0 0 39px rgba(159, 218, 242, 0.035),
    inset 0 0 0 105px rgba(105, 178, 211, 0.008),
    inset 0 0 0 106px rgba(159, 218, 242, 0.025);
  content: "";
}

.strain-detail-masthead__grid {
  z-index: -2;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0, transparent 159px, rgba(148, 211, 238, 0.014) 160px),
    repeating-linear-gradient(0deg, transparent 0, transparent 159px, rgba(148, 211, 238, 0.011) 160px);
  mask-image: linear-gradient(to bottom, transparent, black 22%, black 84%, transparent);
}

.strain-detail-masthead__inner {
  position: relative;
  z-index: 2;
}

.strain-breadcrumb {
  margin-bottom: clamp(2rem, 3.5vw, 3.5rem);
}

.strain-breadcrumb ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.strain-breadcrumb li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #718493;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
}

.strain-breadcrumb li + li::before {
  color: rgba(125, 201, 234, 0.45);
  content: "/";
}

.strain-breadcrumb a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  color: #9aabb8;
  text-decoration-color: transparent;
  text-underline-offset: 0.35em;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.strain-breadcrumb a:hover,
.strain-breadcrumb a:focus-visible {
  color: var(--ice-bright);
  text-decoration-color: rgba(156, 233, 255, 0.55);
}

.strain-detail-masthead__content {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(340px, 0.84fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 8rem);
}

.strain-detail-masthead--compact {
  min-height: 700px;
}

.strain-detail-masthead__content--single {
  grid-template-columns: minmax(0, 940px);
}

.strain-detail-masthead__content--single .strain-detail-masthead__copy {
  position: relative;
}

.strain-detail-masthead__content--single .strain-detail-masthead__copy::after {
  position: absolute;
  top: 9%;
  right: -14%;
  width: clamp(150px, 17vw, 280px);
  aspect-ratio: 1;
  border-top: 1px solid rgba(159, 218, 242, 0.12);
  border-right: 1px solid rgba(159, 218, 242, 0.07);
  content: "";
  pointer-events: none;
  transform: rotate(45deg);
}

.strain-detail-masthead__copy {
  min-width: 0;
}

.strain-detail-kicker {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1.35rem;
  color: var(--ice-bright);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  line-height: 1.45;
  text-transform: uppercase;
}

.strain-detail-kicker span {
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, var(--royal), var(--ice-bright));
}

.strain-detail-masthead h1 {
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(4.7rem, 8.3vw, 9rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.82;
  text-transform: uppercase;
}

.strain-detail-masthead h1 span,
.strain-detail-masthead h1 strong {
  display: block;
}

.strain-detail-masthead h1 strong {
  margin-top: 0.14em;
  color: transparent;
  font-size: 0.78em;
  font-weight: 600;
  letter-spacing: -0.04em;
  -webkit-text-stroke: 1.2px rgba(205, 233, 245, 0.8);
  text-shadow: 0 0 24px rgba(74, 181, 230, 0.08);
}

.strain-core-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: clamp(2.2rem, 3.5vw, 3.75rem) 0 0;
  padding: 0;
  border-top: 1px solid rgba(144, 207, 235, 0.18);
  border-bottom: 1px solid rgba(144, 207, 235, 0.12);
}

.strain-core-meta div {
  min-width: 0;
  padding: 1rem clamp(0.7rem, 1.5vw, 1.35rem) 1.1rem;
}

.strain-core-meta div:first-child {
  padding-left: 0;
}

.strain-core-meta div + div {
  border-left: 1px solid rgba(144, 207, 235, 0.12);
}

.strain-core-meta dt,
.strain-lineage > span {
  color: #718595;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  line-height: 1.4;
  text-transform: uppercase;
}

.strain-core-meta dd {
  margin: 0.35rem 0 0;
  color: #ced9e2;
  font-family: var(--display);
  font-size: clamp(0.76rem, 0.85vw, 0.9rem);
  letter-spacing: 0.035em;
  line-height: 1.35;
  text-transform: uppercase;
}

.strain-core-meta--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 44rem;
}

.strain-lineage {
  margin-top: 1.8rem;
  padding-left: clamp(1.2rem, 2vw, 2rem);
  border-left: 1px solid rgba(114, 201, 239, 0.34);
}

.strain-lineage p {
  margin: 0.65rem 0 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1.28rem, 2.1vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.28;
  text-transform: uppercase;
}

.strain-lineage p i {
  margin: 0 0.4em;
  color: var(--ice);
  font-family: var(--body);
  font-size: 0.65em;
  font-style: normal;
}

.strain-lineage small {
  display: block;
  margin-top: 0.5rem;
  color: #82929f;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.strain-detail-masthead__figure {
  position: relative;
  isolation: isolate;
  width: min(100%, 560px);
  margin: 0 0 0 auto;
  padding: 0;
}

.strain-detail-masthead__figure::before,
.strain-detail-masthead__figure::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.strain-detail-masthead__figure::before {
  z-index: -1;
  top: -1.25rem;
  right: -1.25rem;
  bottom: 2rem;
  left: 2rem;
  border-top: 1px solid rgba(145, 214, 246, 0.24);
  border-right: 1px solid rgba(145, 214, 246, 0.12);
}

.strain-detail-masthead__figure::after {
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(153, 218, 246, 0.27), transparent 20%) top left / 52% 1px no-repeat,
    linear-gradient(180deg, rgba(153, 218, 246, 0.2), transparent 36%) top left / 1px 72% no-repeat,
    linear-gradient(270deg, rgba(190, 225, 239, 0.2), transparent 40%) bottom right / 58% 1px no-repeat;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.strain-detail-masthead__figure picture {
  display: block;
  overflow: hidden;
  aspect-ratio: 1.08;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  background: #07111c;
}

.strain-detail-masthead__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.06) brightness(0.88);
}

.strain-detail-masthead__figure figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.8rem;
  color: #738694;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.strain-detail-masthead__figure figcaption span {
  color: var(--ice-bright);
}

.strain-detail-masthead__footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: clamp(3rem, 5vw, 5rem);
  color: rgba(177, 207, 221, 0.4);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.strain-detail-masthead__footer i {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(125, 198, 230, 0.22), transparent 82%);
}

.strain-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(6rem, 9vw, 10rem) 0;
}

.strain-section__heading > p,
.strain-section__heading > div > p {
  margin: 0 0 0.75rem;
  color: var(--ice-bright);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  line-height: 1.4;
  text-transform: uppercase;
}

.strain-section__heading h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(2.7rem, 5.3vw, 5.8rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.95;
  text-transform: uppercase;
}

.strain-section__heading--wide {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(150, 211, 238, 0.2);
}

.strain-section__heading--wide > span {
  flex: 0 0 auto;
  color: #81929f;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  line-height: 1.5;
  text-align: right;
  text-transform: uppercase;
}

.strain-section--summary {
  background:
    radial-gradient(ellipse at 82% 35%, rgba(14, 67, 119, 0.11), transparent 37%),
    linear-gradient(180deg, #020711, #010408);
}

.strain-section--project-context {
  border-top: 1px solid rgba(142, 202, 228, 0.1);
  border-bottom: 1px solid rgba(142, 202, 228, 0.1);
  background:
    linear-gradient(118deg, transparent 0 73%, rgba(165, 219, 241, 0.035) 73.08% 73.16%, transparent 73.24%),
    radial-gradient(ellipse at 12% 25%, rgba(14, 67, 119, 0.13), transparent 36%),
    #02060d;
}

.strain-project-context {
  display: grid;
  grid-template-columns: minmax(250px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
}

.strain-project-context__lead {
  margin: 0;
  padding-top: clamp(1.5rem, 2.5vw, 2.5rem);
  border-top: 1px solid rgba(152, 216, 243, 0.24);
  color: #e0e9ef;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.25vw, 2.25rem);
  letter-spacing: -0.03em;
  line-height: 1.45;
}

.strain-project-context__copy {
  padding-left: clamp(1.5rem, 3vw, 3rem);
  border-left: 1px solid rgba(142, 207, 235, 0.18);
  color: #aebcc6;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.8;
}

.strain-project-context__copy p {
  margin: 0;
}

.strain-project-context__copy p + p {
  margin-top: 1.4rem;
}

.strain-section--source-note {
  padding-top: clamp(4.75rem, 7vw, 7.5rem);
  padding-bottom: clamp(4.75rem, 7vw, 7.5rem);
  border-bottom: 1px solid rgba(142, 202, 228, 0.1);
  background:
    linear-gradient(148deg, transparent 0 68%, rgba(172, 218, 237, 0.035) 68.08% 68.16%, transparent 68.24%),
    radial-gradient(ellipse at 72% 40%, rgba(14, 67, 119, 0.13), transparent 38%),
    #020711;
}

.strain-source-note {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1.55fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 8rem);
}

.strain-source-note > p {
  margin: 0;
  color: var(--ice-bright);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  line-height: 1.4;
  text-transform: uppercase;
}

.strain-source-note h2 {
  position: relative;
  margin: 0;
  padding: clamp(1.4rem, 2.2vw, 2.2rem) 0;
  border-top: 1px solid rgba(150, 211, 238, 0.2);
  border-bottom: 1px solid rgba(150, 211, 238, 0.1);
  color: #e3edf3;
  font-family: var(--display);
  font-size: clamp(2.25rem, 5vw, 5.4rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.strain-section--parent-notes {
  background:
    repeating-linear-gradient(90deg, transparent 0, transparent 199px, rgba(150, 211, 238, 0.012) 200px),
    linear-gradient(180deg, #010307, #02060d);
}

.strain-parent-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(146, 205, 231, 0.16);
  border-bottom: 1px solid rgba(146, 205, 231, 0.12);
}

.strain-parent-note {
  position: relative;
  min-width: 0;
  min-height: 310px;
  padding: clamp(2rem, 4vw, 4.5rem);
  overflow: hidden;
  background: linear-gradient(145deg, rgba(11, 31, 49, 0.32), rgba(2, 7, 13, 0.12) 64%);
}

.strain-parent-note + .strain-parent-note {
  border-left: 1px solid rgba(146, 205, 231, 0.14);
}

.strain-parent-note::after {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 80px;
  height: 80px;
  transform: rotate(45deg);
  border: 1px solid rgba(156, 220, 246, 0.1);
  content: "";
  pointer-events: none;
}

.strain-parent-note h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
  text-transform: uppercase;
}

.strain-parent-note p {
  max-width: 34rem;
  margin: clamp(2.5rem, 4.5vw, 5rem) 0 0;
  color: #b8c5cf;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.75;
}

.strain-section--field-notes {
  border-top: 1px solid rgba(142, 202, 228, 0.1);
  border-bottom: 1px solid rgba(142, 202, 228, 0.1);
  background:
    radial-gradient(ellipse at 84% 28%, rgba(14, 67, 119, 0.1), transparent 35%),
    linear-gradient(180deg, #020711, #010408);
}

.strain-note-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(146, 205, 231, 0.16);
  border-bottom: 1px solid rgba(146, 205, 231, 0.12);
}

.strain-note-panel {
  position: relative;
  min-width: 0;
  padding: clamp(2rem, 4vw, 4.5rem);
  background: linear-gradient(145deg, rgba(11, 31, 49, 0.28), rgba(2, 7, 13, 0.12) 64%);
}

.strain-note-panel + .strain-note-panel {
  border-left: 1px solid rgba(146, 205, 231, 0.14);
}

.strain-note-panel h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
  text-transform: uppercase;
}

.strain-note-panel p {
  max-width: 36rem;
  margin: clamp(2.25rem, 4vw, 4rem) 0 0;
  color: #b8c5cf;
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  line-height: 1.75;
}

.strain-note-panel p + p {
  margin-top: 1.25rem;
}

.strain-section--summary::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(148deg, transparent 0 69%, rgba(172, 218, 237, 0.035) 69.08% 69.16%, transparent 69.24%);
  content: "";
  pointer-events: none;
}

.strain-summary {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(3rem, 8vw, 9rem);
}

.strain-summary__copy {
  max-width: 53rem;
  color: #9eadb8;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.78;
}

.strain-summary__copy p {
  margin: 0;
}

.strain-summary__copy p + p {
  margin-top: 1.35rem;
}

.strain-summary__copy .strain-summary__lead {
  color: #d7e0e7;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  letter-spacing: -0.02em;
  line-height: 1.55;
}

.strain-section--expressions {
  background:
    repeating-linear-gradient(90deg, transparent 0, transparent 199px, rgba(150, 211, 238, 0.013) 200px),
    #010307;
}

.strain-expressions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(146, 205, 231, 0.12);
}

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

.strain-expression {
  position: relative;
  min-height: 300px;
  padding: clamp(1.5rem, 2.4vw, 2.4rem);
  overflow: hidden;
  border-bottom: 1px solid rgba(146, 205, 231, 0.14);
  background: linear-gradient(145deg, rgba(11, 31, 49, 0.38), rgba(2, 7, 13, 0.24) 62%);
}

.strain-expression + .strain-expression {
  border-left: 1px solid rgba(146, 205, 231, 0.14);
}

.strain-expression::after {
  position: absolute;
  right: -32px;
  bottom: -32px;
  width: 64px;
  height: 64px;
  transform: rotate(45deg);
  border: 1px solid rgba(156, 220, 246, 0.12);
  content: "";
}

.strain-expression > span {
  display: block;
  color: rgba(143, 207, 235, 0.48);
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.strain-expression > div {
  margin-top: clamp(4rem, 7vw, 7rem);
}

.strain-expression h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-transform: uppercase;
}

.strain-expression p {
  margin: 1rem 0 0;
  color: #9baab5;
  font-size: 0.94rem;
  line-height: 1.65;
}

.strain-section--story {
  background:
    radial-gradient(ellipse at 12% 32%, rgba(14, 67, 118, 0.12), transparent 35%),
    linear-gradient(180deg, #030812, #010307 75%);
}

.strain-section--story::after {
  position: absolute;
  z-index: -1;
  right: -0.06em;
  bottom: -0.15em;
  color: rgba(132, 199, 229, 0.022);
  font-family: var(--display);
  font-size: clamp(13rem, 28vw, 34rem);
  font-weight: 700;
  letter-spacing: -0.1em;
  line-height: 0.8;
  content: "HUNT";
  pointer-events: none;
}

.strain-section__heading--story {
  margin-bottom: clamp(3.5rem, 6vw, 6rem);
}

.strain-story {
  display: grid;
  grid-template-columns: minmax(230px, 0.56fr) minmax(0, 1.44fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 9rem);
}

.strain-story__path {
  position: sticky;
  top: calc(var(--header-height) + 3rem);
}

.strain-story__path > span {
  display: block;
  margin-bottom: 1.4rem;
  color: #748895;
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.strain-story__path ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: hunt-step;
}

.strain-story__path li {
  position: relative;
  min-height: 58px;
  padding: 0.25rem 0 1.35rem 2.4rem;
  color: #a9b7c1;
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-transform: uppercase;
  counter-increment: hunt-step;
}

.strain-story__path li::before {
  position: absolute;
  top: 0.2rem;
  left: 0;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  border: 1px solid rgba(132, 210, 243, 0.58);
  background: #020711;
  content: "";
}

.strain-story__path li::after {
  position: absolute;
  top: 1rem;
  bottom: 0;
  left: 3px;
  width: 1px;
  background: linear-gradient(to bottom, rgba(132, 210, 243, 0.27), transparent);
  content: "";
}

.strain-story__path li:last-child {
  color: var(--ice-bright);
}

.strain-story__path li:last-child::before {
  background: var(--ice);
  box-shadow: 0 0 8px rgba(66, 199, 255, 0.25);
}

.strain-story__path li:last-child::after {
  display: none;
}

.strain-story__copy {
  max-width: 48rem;
  color: #aab7c1;
  font-size: clamp(1rem, 1.12vw, 1.1rem);
  line-height: 1.82;
}

.strain-story__copy > p {
  margin: 0;
}

.strain-story__copy > p + p {
  margin-top: 1.55rem;
}

.strain-story__copy > p:first-child {
  color: #dae3e9;
  font-size: clamp(1.15rem, 1.45vw, 1.35rem);
}

.strain-story blockquote {
  position: relative;
  margin: clamp(3.5rem, 6vw, 6rem) 0 0;
  padding: clamp(2rem, 4vw, 3.75rem) 0 clamp(2rem, 4vw, 3.75rem) clamp(2rem, 5vw, 4.5rem);
  border-top: 1px solid rgba(149, 211, 238, 0.2);
  border-bottom: 1px solid rgba(149, 211, 238, 0.12);
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.9vw, 2.8rem);
  letter-spacing: -0.035em;
  line-height: 1.4;
}

.strain-story blockquote::before {
  position: absolute;
  top: clamp(1.8rem, 3vw, 3rem);
  left: 0;
  color: rgba(112, 204, 244, 0.62);
  font-family: Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 1;
  content: "“";
}

.strain-story blockquote p {
  margin: 0;
}

.strain-section--notes {
  padding-top: clamp(5rem, 7vw, 7.5rem);
  padding-bottom: clamp(5rem, 7vw, 7.5rem);
  border-top: 1px solid rgba(142, 202, 228, 0.12);
  border-bottom: 1px solid rgba(142, 202, 228, 0.11);
  background:
    linear-gradient(112deg, rgba(13, 42, 69, 0.48), rgba(4, 13, 24, 0.6) 58%, rgba(13, 38, 61, 0.28)),
    #030813;
}

.strain-notes {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 9rem);
}

.strain-notes__copy {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.75rem) 0 clamp(1rem, 2vw, 1.5rem) clamp(4.5rem, 8vw, 8rem);
  border-top: 1px solid rgba(151, 213, 239, 0.22);
}

.strain-notes__copy > span {
  position: absolute;
  top: 1.35rem;
  left: 0;
  color: rgba(159, 220, 245, 0.28);
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 1;
}

.strain-notes__copy p {
  margin: 0;
  color: #d0dbe3;
  font-size: clamp(1.08rem, 1.45vw, 1.35rem);
  line-height: 1.72;
}

.strain-notes__copy p + p {
  margin-top: 1.3rem;
}

.strain-section--reviews {
  border-top: 1px solid rgba(142, 202, 228, 0.1);
  border-bottom: 1px solid rgba(142, 202, 228, 0.1);
  background:
    radial-gradient(ellipse at 14% 24%, rgba(14, 67, 119, 0.1), transparent 34%),
    #02060d;
}

.strain-review-quotes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(146, 205, 231, 0.16);
  border-bottom: 1px solid rgba(146, 205, 231, 0.12);
}

.strain-review-quotes blockquote {
  min-width: 0;
  min-height: 260px;
  margin: 0;
  padding: clamp(2rem, 3.5vw, 3.75rem);
  background: linear-gradient(145deg, rgba(11, 31, 49, 0.26), rgba(2, 7, 13, 0.1) 64%);
}

.strain-review-quotes blockquote + blockquote {
  border-left: 1px solid rgba(146, 205, 231, 0.14);
}

.strain-review-quotes p {
  margin: 0;
  color: #d5dfe6;
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.8vw, 1.7rem);
  letter-spacing: -0.025em;
  line-height: 1.55;
}

.strain-section--gallery {
  background:
    radial-gradient(ellipse at 86% 12%, rgba(12, 61, 109, 0.11), transparent 32%),
    #010307;
}

.strain-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(280px, 1fr));
  gap: clamp(0.55rem, 0.9vw, 0.9rem);
  min-height: 720px;
}

.strain-gallery__item {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #06101a;
}

.strain-gallery__item::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(183, 224, 241, 0.22), transparent 28%) top left / 52% 1px no-repeat,
    linear-gradient(180deg, rgba(183, 224, 241, 0.18), transparent 34%) top left / 1px 58% no-repeat;
  content: "";
  pointer-events: none;
}

.strain-gallery__item picture,
.strain-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
}

.strain-gallery__item img {
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04) brightness(0.9);
  transition: filter 320ms ease;
}

.strain-gallery__item:hover img {
  filter: saturate(0.94) contrast(1.04) brightness(0.97);
}

.strain-gallery__item--tall {
  grid-row: 1 / 3;
  grid-column: 1 / 6;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%);
}

.strain-gallery__item--portrait {
  grid-row: 1 / 3;
  grid-column: 6 / 9;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
}

.strain-gallery__item--landscape {
  grid-row: 1;
  grid-column: 9 / 13;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 13px 100%, 0 calc(100% - 13px));
}

.strain-gallery__item--square {
  grid-row: 2;
  grid-column: 9 / 13;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
}

.strain-gallery--archive {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: none;
  grid-auto-rows: clamp(280px, 34vw, 510px);
  min-height: 0;
}

.strain-gallery--archive .strain-gallery__item {
  grid-row: auto;
  grid-column: span 4;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
}

.strain-gallery--archive .strain-gallery__item--archive-wide {
  grid-column: span 8;
}

.strain-gallery--archive .strain-gallery__item--archive-full {
  grid-column: 1 / -1;
}

.strain-gallery--archive .strain-gallery__item--archive-half {
  grid-column: span 6;
}

.strain-gallery--archive .strain-gallery__item picture,
.strain-gallery--archive .strain-gallery__item img {
  height: 100%;
}

.strain-gallery--archive .strain-gallery__item--document picture {
  background: #03070d;
}

.strain-gallery--archive .strain-gallery__item--document img {
  object-fit: contain;
}

.strain-section--related-projects {
  padding-top: clamp(5rem, 7vw, 7.5rem);
  padding-bottom: clamp(5rem, 7vw, 7.5rem);
  border-top: 1px solid rgba(142, 202, 228, 0.1);
  background:
    linear-gradient(132deg, transparent 0 78%, rgba(170, 220, 241, 0.03) 78.08% 78.16%, transparent 78.24%),
    #02060d;
}

.strain-related-projects {
  border-top: 1px solid rgba(146, 205, 231, 0.2);
  border-bottom: 1px solid rgba(146, 205, 231, 0.14);
}

.strain-related-project + .strain-related-project {
  border-top: 1px solid rgba(146, 205, 231, 0.14);
}

.strain-related-project {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(2rem, 6vw, 7rem);
  padding: clamp(2rem, 4vw, 4rem) clamp(0.25rem, 1vw, 1rem);
  color: inherit;
  text-decoration: none;
}

.strain-related-project > div > span {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--ice-bright);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.strain-related-project h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
  text-transform: uppercase;
}

.strain-related-project p {
  max-width: 48rem;
  margin: 1rem 0 0;
  color: #9facb7;
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  line-height: 1.7;
}

.strain-related-project > i {
  color: #b8d9e8;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.strain-related-project:hover > i,
.strain-related-project:focus-visible > i {
  color: var(--ice-bright);
  transform: translateX(5px);
}

@media (max-width: 760px) {
  .strain-project-context {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.25rem;
  }

  .strain-project-context__copy {
    padding: 1.5rem 0 0;
    border-top: 1px solid rgba(142, 207, 235, 0.16);
    border-left: 0;
  }

  .strain-gallery--archive .strain-gallery__item--archive-half {
    grid-column: 1 / -1;
  }

  .strain-related-project {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.75rem;
  }

  .strain-related-project > i {
    justify-self: start;
  }
}

.strain-community-note {
  display: grid;
  grid-template-columns: minmax(160px, 0.45fr) minmax(0, 1.55fr);
  gap: clamp(2rem, 5vw, 6rem);
  margin-top: clamp(3.5rem, 6vw, 6rem);
  padding: clamp(2rem, 3vw, 3rem) 0;
  border-top: 1px solid rgba(150, 211, 238, 0.18);
  border-bottom: 1px solid rgba(150, 211, 238, 0.1);
}

.strain-community-note span {
  color: var(--ice-bright);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.5;
  text-transform: uppercase;
}

.strain-community-note p {
  max-width: 52rem;
  margin: 0;
  color: #bbc7d0;
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.8vw, 1.65rem);
  line-height: 1.55;
}

.strain-archive-return {
  border-top: 1px solid rgba(150, 211, 238, 0.16);
  background: #010204;
}

.strain-archive-return a {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  min-height: 150px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1rem, 1.7vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.strain-archive-return a span {
  color: var(--ice-bright);
  font-family: var(--body);
  font-size: 1.4em;
  transition: transform 220ms ease;
}

.strain-archive-return a:hover span,
.strain-archive-return a:focus-visible span {
  transform: translateX(-5px);
}

@media (max-width: 1180px) {
  .strain-detail-masthead__content {
    grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.88fr);
    gap: 3rem;
  }

  .strain-detail-masthead__content--single {
    grid-template-columns: minmax(0, 1fr);
  }

  .strain-detail-masthead h1 {
    font-size: clamp(4.3rem, 8.4vw, 7.2rem);
  }

  .strain-core-meta {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .strain-core-meta--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .strain-core-meta div:nth-child(3) {
    grid-column: 1 / 3;
    padding-left: 0;
    border-top: 1px solid rgba(144, 207, 235, 0.12);
    border-left: 0;
  }

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

  .strain-expression:nth-child(3) {
    border-left: 0;
  }

  .strain-expression {
    min-height: 260px;
  }

  .strain-expression > div {
    margin-top: 4rem;
  }

  .strain-story,
  .strain-notes {
    gap: 4rem;
  }

  .strain-gallery {
    min-height: 640px;
  }
}

@media (max-width: 900px) {
  .strain-detail-masthead {
    min-height: 0;
    padding-top: calc(var(--header-height) + 3rem);
  }

  .strain-detail-masthead__content {
    grid-template-columns: minmax(0, 1fr);
    gap: 4rem;
  }

  .strain-detail-masthead__content--single {
    grid-template-columns: minmax(0, 1fr);
  }

  .strain-detail-masthead__content--single .strain-detail-masthead__copy::after {
    right: 3%;
  }

  .strain-detail-masthead h1 {
    font-size: clamp(4.3rem, 14vw, 7rem);
  }

  .strain-core-meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .strain-core-meta--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .strain-core-meta div:nth-child(3) {
    grid-column: auto;
    padding-left: clamp(0.7rem, 1.5vw, 1.35rem);
    border-top: 0;
    border-left: 1px solid rgba(144, 207, 235, 0.12);
  }

  .strain-detail-masthead__figure {
    width: min(100%, 680px);
    margin-right: auto;
    margin-left: 0;
  }

  .strain-summary,
  .strain-story,
  .strain-notes {
    grid-template-columns: minmax(0, 1fr);
    gap: 3rem;
  }

  .strain-summary__copy,
  .strain-story__copy {
    max-width: 46rem;
  }

  .strain-story__path {
    position: static;
  }

  .strain-story__path ol {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .strain-story__path li {
    min-height: 0;
    padding: 2rem 1rem 0 0;
    border-top: 1px solid rgba(132, 210, 243, 0.18);
    font-size: 0.66rem;
  }

  .strain-story__path li::before {
    top: -4px;
  }

  .strain-story__path li::after {
    display: none;
  }

  .strain-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 500px 340px;
    min-height: 0;
  }

  .strain-gallery__item--tall {
    grid-row: 1;
    grid-column: 1;
  }

  .strain-gallery__item--portrait {
    grid-row: 1;
    grid-column: 2;
  }

  .strain-gallery__item--landscape {
    grid-row: 2;
    grid-column: 1;
  }

  .strain-gallery__item--square {
    grid-row: 2;
    grid-column: 2;
  }

  .strain-gallery--archive {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: clamp(300px, 64vw, 500px);
  }

  .strain-gallery--archive .strain-gallery__item,
  .strain-gallery--archive .strain-gallery__item--archive-wide {
    grid-row: auto;
    grid-column: span 1;
  }

  .strain-gallery--archive .strain-gallery__item--archive-wide {
    grid-column: 1 / -1;
  }

  .strain-gallery--archive .strain-gallery__item--archive-full {
    grid-column: 1 / -1;
  }

  .strain-review-quotes {
    grid-template-columns: minmax(0, 1fr);
  }

  .strain-review-quotes blockquote {
    min-height: 0;
  }

  .strain-review-quotes blockquote + blockquote {
    border-top: 1px solid rgba(146, 205, 231, 0.14);
    border-left: 0;
  }
}

@media (max-width: 620px) {
  .strain-detail-shell {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .strain-detail-masthead {
    padding-top: calc(var(--header-height) + 2.25rem);
    padding-bottom: 3rem;
  }

  .strain-detail-masthead--compact {
    padding-bottom: 3rem;
  }

  .strain-detail-masthead__content--single .strain-detail-masthead__copy::after {
    display: none;
  }

  .strain-breadcrumb {
    margin-bottom: 2.25rem;
  }

  .strain-breadcrumb li {
    font-size: 0.55rem;
    letter-spacing: 0.1em;
  }

  .strain-detail-kicker {
    font-size: 0.63rem;
    letter-spacing: 0.17em;
  }

  .strain-detail-kicker span {
    width: 25px;
  }

  .strain-detail-masthead h1 {
    font-size: clamp(3.3rem, 17vw, 5.3rem);
    line-height: 0.86;
  }

  .strain-detail-masthead h1 strong {
    font-size: 0.74em;
  }

  .strain-core-meta {
    grid-template-columns: minmax(0, 1fr);
  }

  .strain-core-meta--two {
    grid-template-columns: minmax(0, 1fr);
  }

  .strain-core-meta div,
  .strain-core-meta div:first-child,
  .strain-core-meta div:nth-child(3) {
    grid-column: auto;
    padding: 0.85rem 0;
    border-top: 0;
    border-left: 0;
  }

  .strain-core-meta div + div,
  .strain-core-meta div:nth-child(3) {
    border-top: 1px solid rgba(144, 207, 235, 0.1);
  }

  .strain-core-meta dd {
    font-size: 0.76rem;
  }

  .strain-lineage {
    padding-left: 1rem;
  }

  .strain-lineage p {
    font-size: 1.2rem;
  }

  .strain-detail-masthead__content {
    gap: 3rem;
  }

  .strain-detail-masthead__figure::before {
    display: none;
  }

  .strain-detail-masthead__footer {
    margin-top: 2.5rem;
    font-size: 0.48rem;
  }

  .strain-detail-masthead__footer span:last-child {
    display: none;
  }

  .strain-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .strain-source-note {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }

  .strain-source-note h2 {
    padding: 1.35rem 0;
    font-size: clamp(2.15rem, 12vw, 3.4rem);
  }

  .strain-parent-notes {
    grid-template-columns: minmax(0, 1fr);
  }

  .strain-parent-note {
    min-height: 0;
    padding: 2rem 1.25rem 2.4rem;
  }

  .strain-parent-note + .strain-parent-note {
    border-top: 1px solid rgba(146, 205, 231, 0.14);
    border-left: 0;
  }

  .strain-parent-note p {
    margin-top: 2rem;
    font-size: 1rem;
  }

  .strain-note-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .strain-note-panel {
    padding: 2rem 1.25rem 2.4rem;
  }

  .strain-note-panel + .strain-note-panel {
    border-top: 1px solid rgba(146, 205, 231, 0.14);
    border-left: 0;
  }

  .strain-note-panel p {
    margin-top: 2rem;
    font-size: 1rem;
  }

  .strain-section__heading h2 {
    font-size: clamp(2.2rem, 11.4vw, 3.4rem);
  }

  .strain-section__heading--wide {
    display: block;
    margin-bottom: 1.8rem;
    padding-bottom: 1rem;
  }

  .strain-section__heading--wide > span {
    display: block;
    margin-top: 0.75rem;
    text-align: left;
  }

  .strain-summary,
  .strain-story,
  .strain-notes {
    gap: 2.5rem;
  }

  .strain-summary__copy .strain-summary__lead {
    font-size: 1.22rem;
    line-height: 1.55;
  }

  .strain-expressions {
    grid-template-columns: minmax(0, 1fr);
  }

  .strain-expression,
  .strain-expression:nth-child(3) {
    min-height: 0;
    border-left: 0;
  }

  .strain-expression + .strain-expression {
    border-left: 0;
  }

  .strain-expression > div {
    margin-top: 2.5rem;
  }

  .strain-story__path ol {
    grid-template-columns: minmax(0, 1fr);
  }

  .strain-story__path li {
    padding: 0.9rem 0 0.9rem 1.8rem;
    border-top: 0;
    border-bottom: 1px solid rgba(132, 210, 243, 0.12);
  }

  .strain-story__path li::before {
    top: 1.1rem;
  }

  .strain-story blockquote {
    margin-top: 3rem;
    padding: 2rem 0 2rem 2.2rem;
    font-size: 1.4rem;
  }

  .strain-story blockquote::before {
    top: 1.9rem;
    font-size: 2.5rem;
  }

  .strain-notes__copy {
    padding: 4.5rem 0 0;
  }

  .strain-notes__copy > span {
    top: 1rem;
  }

  .strain-notes__copy p {
    font-size: 1.03rem;
  }

  .strain-gallery {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
    gap: 0.7rem;
  }

  .strain-gallery__item--tall,
  .strain-gallery__item--portrait,
  .strain-gallery__item--landscape,
  .strain-gallery__item--square {
    grid-row: auto;
    grid-column: 1;
  }

  .strain-gallery__item picture,
  .strain-gallery__item img {
    height: auto;
  }

  .strain-gallery__item img {
    object-fit: contain;
  }

  .strain-gallery--archive {
    grid-template-columns: minmax(0, 1fr);
    grid-auto-rows: auto;
  }

  .strain-gallery--archive .strain-gallery__item,
  .strain-gallery--archive .strain-gallery__item--archive-wide,
  .strain-gallery--archive .strain-gallery__item--archive-full {
    grid-column: 1;
  }

  .strain-gallery--archive .strain-gallery__item picture,
  .strain-gallery--archive .strain-gallery__item img {
    height: auto;
  }

  .strain-community-note {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }

  .strain-community-note p {
    font-size: 1.12rem;
  }

  .strain-archive-return a {
    min-height: 120px;
    font-size: 0.95rem;
  }
}

@media (max-width: 370px) {
  .strain-detail-masthead h1 {
    font-size: 3.15rem;
  }

  .strain-detail-masthead h1 strong {
    font-size: 0.72em;
  }

  .strain-lineage p {
    font-size: 1.05rem;
  }

  .strain-section__heading h2 {
    font-size: 2.15rem;
  }

  .strain-expression {
    padding: 1.35rem 1.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
