
:root {
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--ivory);
  background: var(--black);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --black: #030703;
  --ivory: #f5f0e6;
  --muted: #c4c8bb;
  --lime: #a6df65;
  --line: #36432d;
  --gutter: clamp(24px, 5vw, 96px);
  --section-space: clamp(56px, 6vw, 88px);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--black);
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: visible;
}

button, a {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 5px;
}

.site-shell {
  min-height: 100vh;
  background: var(--black);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 680px;
  height: min(100svh, 1080px);
  background: radial-gradient(ellipse at 70% 48%, #243314, var(--black) 74%);
}

.hero-art {
  position: absolute;
  overflow: hidden;
  z-index: -3;
  inset: auto;
  width: max(100%, calc(100svh * 1.777));
  aspect-ratio: 1672 / 941;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  mask-image: linear-gradient(to bottom, #000 80%, transparent 100%);
}

.hero-art img {
  width: 100%;
  height: 100%;
  display: block;
  object-position: center;
  object-fit: contain;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgb(3 7 3 / 93%), rgb(3 7 3 / 70%) 28%, transparent 62%), linear-gradient(180deg, rgb(3 7 3 / 25%), transparent 35%, transparent 75%, var(--black));
}

.site-header {
  width: 100%;
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  padding: 0 clamp(34px, 4.8vw, 82px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: height 260ms ease, background-color 260ms ease, border-color 260ms ease, backdrop-filter 260ms ease;
  height: 88px;
  padding-inline: var(--gutter);
}

.site-header.is-scrolled {
  border-color: rgba(245, 240, 230, 0.1);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.16);
  height: 72px;
  background: rgb(3 7 3 / 92%);
  backdrop-filter: blur(14px);
}

.brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  color: var(--ivory);
  font-weight: 400;
  gap: 14px;
  font-size: 16px;
  letter-spacing: .32em;
}

.brand-mark {
  width: 38px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.15;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
}

.desktop-nav a,
.account-link {
  color: rgba(245, 240, 230, 0.88);
  font-size: clamp(0.68rem, 0.68vw, 0.76rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  padding: 12px 0;
  display: inline-flex;
  align-items: center;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 1px;
  background: var(--lime);
  transition: right 220ms ease;
}

.desktop-nav a:hover::after {
  right: 0;
}

.account-link {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 15px;
  padding-left: 34px;
  border-left: 1px solid rgba(245, 240, 230, 0.22);
}

.menu-button {
  display: none;
  justify-self: end;
  padding: 9px;
  color: var(--ivory);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.mobile-nav {
  display: none;
}

.hero-content {
  position: absolute;
  z-index: 5;
  width: min(570px, 42%);
  left: var(--gutter);
  top: 50%;
  transform: translateY(-42%);
}

.hero-kicker {
  color: var(--ivory);
  font-weight: 500;
  line-height: 1.75;
  text-transform: uppercase;
  margin: 0 0 24px;
  font-size: 11px;
  letter-spacing: .27em;
}

.hero-content h1 {
  margin: 0 0 30px;
  color: var(--ivory);
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.045em;
  margin-bottom: 28px;
  font-size: clamp(80px, 7.6vw, 132px);
  line-height: .85;
}

.hero-content h1 em {
  font-weight: 400;
}

.hero-summary {
  margin: 0;
  color: var(--muted);
  max-width: 475px;
  font-size: 16px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.action {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ivory);
  font-weight: 600;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
  width: 196px;
  min-width: 0;
  min-height: 52px;
  padding: 0 48px 0 24px;
  font-size: 11px;
  letter-spacing: .12em;
  background: rgb(3 7 3 / 45%);
  backdrop-filter: none;
}

.action span {
  position: absolute;
  right: 27px;
  top: 50%;
  transform: translateY(-54%);
  font-size: 1.32rem;
  font-weight: 400;
  letter-spacing: 0;
}

.action-primary {
  color: #0a1004;
  border-color: var(--lime);
  background: var(--lime);
}

.action:hover {
  transform: translateY(-2px);
  border-color: var(--lime);
}

.action-primary:hover {
  background: #adf456;
}

.scroll-cue {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  color: rgba(245, 240, 230, 0.72);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  left: var(--gutter);
  bottom: 40px;
  gap: 13px;
  font-size: 10px;
}

.mouse-icon {
  display: grid;
  place-items: start center;
  padding-top: 8px;
  border: 1px solid rgba(245, 240, 230, 0.8);
  border-radius: 999px;
  width: 23px;
  height: 34px;
}

.mouse-icon i {
  width: 2px;
  height: 7px;
  display: block;
  border-radius: 2px;
  background: var(--ivory);
}

.cue-line {
  width: 42px;
  height: 1px;
  background: rgba(245, 240, 230, 0.48);
}

.clinical-disclosure {
  position: absolute;
  z-index: 5;
  margin: 0;
  line-height: 1.5;
  text-align: right;
  max-width: 420px;
  right: var(--gutter);
  bottom: 40px;
  color: #b4bbab;
  font-size: 11px;
}

