:root {
  --ink: #0b1020;
  --ink-soft: #151d34;
  --cream: #f2ecdc;
  --cream-dim: #cbc4b4;
  --cobalt: #244cf4;
  --cobalt-deep: #1229a5;
  --butter: #f2d978;
  --orchid: #b78ee6;
  --acid: #b9df42;
  --wine: #7c1736;
  --line: rgba(242, 236, 220, 0.2);
  --line-dark: rgba(11, 16, 32, 0.16);
  --display: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --pointer-x: 0px;
  --pointer-y: 0px;
  color-scheme: dark;
  scroll-behavior: smooth;
}

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

html {
  background: var(--ink);
  scroll-padding-top: 6.5rem;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.45;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: var(--cobalt);
  color: white;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font: inherit;
}

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

h1,
h2,
h3,
p,
ol,
figure {
  margin: 0;
}

button,
a {
  outline-offset: 5px;
}

:focus-visible {
  outline: 3px solid var(--butter);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.8rem;
  left: 0.8rem;
  padding: 0.75rem 1rem;
  transform: translateY(-200%);
  background: var(--butter);
  color: var(--ink);
  font-weight: 700;
  transition: transform 160ms ease;
}

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

.site-shell {
  overflow: clip;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 5.2rem;
  padding: 1rem clamp(1.25rem, 3vw, 3.75rem);
  color: var(--cream);
  transition: background-color 220ms ease, backdrop-filter 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.menu-is-open .site-header {
  background: rgba(11, 16, 32, 0.84);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(242, 236, 220, 0.13);
}

.brand,
.footer-brand {
  display: grid;
  gap: 0;
  font-family: var(--display);
  font-size: 1.21rem;
  line-height: 0.75;
  letter-spacing: -0.055em;
}

.brand span:last-child,
.footer-brand span:last-child {
  font-style: italic;
  padding-left: 0.82em;
}

.site-navigation {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.3vw, 2.9rem);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-navigation > a {
  position: relative;
}

.site-navigation > a:not(.nav-cta)::after {
  position: absolute;
  bottom: -0.45rem;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--butter);
  transition: transform 180ms ease;
}

.site-navigation > a:not(.nav-cta):hover::after,
.site-navigation > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 2.65rem;
  padding: 0.15rem 0.82rem;
  border: 1px solid rgba(242, 236, 220, 0.58);
  transition: background-color 180ms ease, color 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--cream);
  color: var(--ink);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(28rem, 0.86fr);
  align-items: center;
  min-height: max(46rem, 100svh);
  padding: 7rem clamp(1.25rem, 7.9vw, 10.5rem) 5.9rem;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: 0.44;
  background:
    radial-gradient(circle at 29% 31%, rgba(36, 76, 244, 0.26), transparent 30%),
    radial-gradient(circle at 79% 88%, rgba(183, 142, 230, 0.14), transparent 23%),
    linear-gradient(120deg, #0a0f20 4%, #0b1020 48%, #111e4c 100%);
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: 0.17;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(242, 236, 220, 0.23);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  top: -43vw;
  left: -14vw;
  width: min(64vw, 66rem);
  aspect-ratio: 1;
}

.hero-orbit-two {
  right: -27vw;
  bottom: -38vw;
  width: min(51vw, 52rem);
  aspect-ratio: 1;
  border-color: rgba(185, 223, 66, 0.38);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 48rem;
  padding-bottom: 1.4rem;
}

.eyebrow,
.section-label,
.mood-overline,
.note-label {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.145em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 0.57rem;
  height: 0.57rem;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 0.25rem rgba(185, 223, 66, 0.15);
}

.hero h1 {
  max-width: 9.1em;
  margin-top: clamp(1.65rem, 4vw, 4.4rem);
  font-family: var(--display);
  font-size: clamp(4.35rem, 8.8vw, 10.8rem);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.73;
}

.hero h1 em {
  padding-right: 0.05em;
  color: var(--butter);
  font-style: italic;
}

.hero-intro {
  max-width: 23rem;
  margin-top: clamp(2rem, 4vw, 4.25rem);
  color: var(--cream-dim);
  font-size: clamp(0.95rem, 1.2vw, 1.12rem);
  line-height: 1.48;
}

.hero-actions,
.finale-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem 1.7rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-height: 3.1rem;
  padding: 0.78rem 1.15rem;
  border: 1px solid transparent;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.105em;
  text-transform: uppercase;
  transition: transform 180ms ease, color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  background: var(--butter);
  color: var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--acid);
}

.button-text {
  padding-right: 0;
  color: var(--cream);
}

.button-text:hover,
.button-text:focus-visible {
  color: var(--acid);
}

.hero-visual {
  position: relative;
  z-index: 1;
  width: min(100%, 35.5rem);
  justify-self: end;
  margin-right: clamp(0rem, 1.8vw, 2rem);
  padding: clamp(0.65rem, 1vw, 0.9rem);
  transform: translate3d(var(--pointer-x), var(--pointer-y), 0);
  transition: transform 520ms cubic-bezier(.2,.8,.2,1);
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  top: -7%;
  right: -7%;
  width: 68%;
  aspect-ratio: 1;
  content: "";
  border-radius: 50%;
  background: var(--acid);
  filter: blur(38px);
  opacity: 0.17;
}

.hero-visual-frame {
  position: relative;
  overflow: hidden;
  border-radius: 14rem 14rem 0 0;
  background: #1734b0;
  box-shadow: 1.1rem 1.1rem 0 rgba(36, 76, 244, 0.36), 0 2.5rem 4rem rgba(0, 0, 0, 0.43);
}

.hero-visual-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.08), transparent 32%, rgba(10, 15, 32, 0.32));
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  min-height: 36rem;
  object-fit: cover;
  object-position: 59% 50%;
}

.hero-caption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.8rem;
  color: rgba(242, 236, 220, 0.75);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-caption span:last-child {
  color: var(--acid);
  text-align: right;
}

.hero-stamp {
  position: absolute;
  right: -1.9rem;
  bottom: 2.7rem;
  display: grid;
  place-items: center;
  width: 7.65rem;
  aspect-ratio: 1;
  padding: 0.65rem;
  border: 1px solid rgba(11, 16, 32, 0.3);
  border-radius: 50%;
  background: var(--butter);
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.37rem;
  letter-spacing: -0.075em;
  line-height: 0.68;
  text-align: center;
  transform: rotate(11deg);
}

.hero-stamp span:nth-child(2) {
  padding-left: 0.4em;
  font-style: italic;
}

.hero-footnote {
  position: absolute;
  right: clamp(1.25rem, 7.9vw, 10.5rem);
  bottom: 1.55rem;
  left: clamp(1.25rem, 7.9vw, 10.5rem);
  display: flex;
  align-items: center;
  gap: 0.86rem;
  color: rgba(242, 236, 220, 0.56);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-rule {
  width: min(11vw, 8rem);
  height: 1px;
  background: rgba(242, 236, 220, 0.35);
}

.signal-band {
  overflow: hidden;
  border-top: 1px solid rgba(242, 236, 220, 0.28);
  border-bottom: 1px solid rgba(242, 236, 220, 0.28);
  background: var(--cobalt);
  color: var(--cream);
}

.signal-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 1.45rem;
  padding: 0.95rem 0;
  font-family: var(--display);
  font-size: 1.15rem;
  font-style: italic;
  white-space: nowrap;
  animation: ticker 32s linear infinite;
}

.signal-track i {
  color: var(--acid);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-style: normal;
}

.section-pad {
  padding: clamp(5rem, 12vw, 12.5rem) clamp(1.25rem, 7.9vw, 10.5rem);
}

.section-label {
  color: rgba(11, 16, 32, 0.67);
}

.section-label span:first-child {
  color: var(--cobalt);
}

.manifesto {
  display: grid;
  grid-template-columns: minmax(12rem, 0.46fr) minmax(0, 1.54fr);
  gap: 2.5rem;
  background: var(--cream);
}

.manifesto-content {
  max-width: 77rem;
}

.manifesto-kicker {
  max-width: 24rem;
  color: #495169;
  font-size: 0.9rem;
  line-height: 1.52;
}

.display-title {
  max-width: 72rem;
  margin-top: clamp(1.5rem, 3.6vw, 3.5rem);
  font-family: var(--display);
  font-size: clamp(3rem, 5.6vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.067em;
  line-height: 0.91;
}

.display-title em {
  color: var(--cobalt);
  font-style: italic;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(15rem, 1fr) minmax(14rem, 0.68fr);
  gap: clamp(2rem, 8vw, 10rem);
  max-width: 58rem;
  margin-top: clamp(2rem, 5vw, 5rem);
  color: #4b5263;
  font-size: 0.94rem;
  line-height: 1.58;
}

.manifesto-note {
  padding-top: 1rem;
  border-top: 1px solid var(--line-dark);
}

.manifesto-note span {
  display: block;
  margin-bottom: 0.68rem;
  color: var(--cobalt);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.studies {
  background: #dde0e3;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr minmax(15rem, 25rem);
  gap: 2rem;
  align-items: start;
  margin-bottom: clamp(3rem, 6vw, 6.7rem);
}

.section-head > p {
  color: #475063;
  font-size: 0.91rem;
  line-height: 1.55;
}

.study-grid {
  display: grid;
  grid-template-columns: minmax(15rem, 0.9fr) minmax(17rem, 1.15fr) minmax(13rem, 0.66fr);
  gap: clamp(1.2rem, 3vw, 3.8rem);
  align-items: center;
  max-width: 84rem;
  margin: 0 auto;
}

.study-card {
  position: relative;
}

.study-card-tall {
  margin-bottom: 6.5rem;
}

.study-card-low {
  margin-top: 10rem;
}

.study-media {
  position: relative;
  overflow: hidden;
  background: #17264b;
}

.study-card-tall .study-media {
  border-radius: 11rem 11rem 0 0;
}

.study-card-low .study-media {
  border-radius: 0 0 8rem 8rem;
}

.study-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.12), transparent 43%, rgba(11, 16, 32, 0.16));
  pointer-events: none;
}

.study-media img {
  width: 100%;
  aspect-ratio: 0.8;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.8,.2,1);
}

.study-card:hover img {
  transform: scale(1.045);
}

.study-card figcaption {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.7rem;
  align-items: baseline;
  padding-top: 0.82rem;
}

.study-number,
.study-type,
.study-index {
  color: #50607b;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.study-name {
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.5vw, 1.45rem);
  letter-spacing: -0.047em;
  line-height: 1.05;
}

.study-type {
  color: var(--cobalt);
}

.study-copy {
  position: relative;
  padding: 2.5rem 0;
}

.study-copy::before {
  position: absolute;
  top: -10%;
  left: -15%;
  width: 13rem;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(36, 76, 244, 0.38);
  border-radius: 50%;
}

.study-index {
  position: relative;
  z-index: 1;
  color: var(--cobalt);
}

.study-copy h2 {
  position: relative;
  z-index: 1;
  margin-top: 1.35rem;
  font-family: var(--display);
  font-size: clamp(3.1rem, 5.2vw, 6.6rem);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.77;
}

.study-copy > p:not(.study-index) {
  position: relative;
  z-index: 1;
  max-width: 21rem;
  margin-top: 2.3rem;
  color: #465069;
  font-size: 0.94rem;
  line-height: 1.55;
}

.study-copy em {
  color: var(--wine);
  font-family: var(--display);
  font-size: 1.15em;
}

.text-link {
  display: inline-flex;
  gap: 0.65rem;
  align-items: center;
  margin-top: 2rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid currentColor;
  color: var(--cobalt);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: color 180ms ease, gap 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  gap: 1rem;
  color: var(--wine);
}

.principles {
  display: grid;
  grid-template-columns: minmax(15rem, 0.65fr) minmax(22rem, 1.35fr);
  gap: clamp(3rem, 10vw, 12rem);
  background: var(--cream);
}

.principles-sticky {
  align-self: start;
  position: sticky;
  top: 8rem;
}

.principles-sticky h2 {
  max-width: 20rem;
  margin-top: 2rem;
  font-family: var(--display);
  font-size: clamp(3rem, 4.2vw, 5.4rem);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.82;
}

.principle-list {
  padding: 0;
  list-style: none;
}

.principle-list li {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.5rem;
  padding: clamp(1.8rem, 3vw, 3.2rem) 0;
  border-top: 1px solid var(--line-dark);
}

.principle-list li:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.principle-number {
  color: var(--cobalt);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.principle-list h3 {
  max-width: 34rem;
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.8vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.principle-list p {
  max-width: 33rem;
  margin-top: 1rem;
  color: #4b5263;
  font-size: 0.92rem;
  line-height: 1.57;
}

.mood-note {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
}

.mood-note::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 13% 12%, rgba(36, 76, 244, 0.55), transparent 32%), radial-gradient(circle at 91% 78%, rgba(183, 142, 230, 0.23), transparent 29%);
  pointer-events: none;
}

.mood-note-orb {
  position: absolute;
  right: -28rem;
  top: -32rem;
  width: 55rem;
  aspect-ratio: 1;
  border: 1px solid rgba(242, 236, 220, 0.22);
  border-radius: 50%;
}

.mood-note-intro,
.mood-builder {
  position: relative;
  z-index: 1;
}

.section-label-light {
  color: rgba(242, 236, 220, 0.67);
}

.section-label-light span:first-child {
  color: var(--acid);
}

.mood-overline {
  margin-top: clamp(4rem, 8vw, 8.7rem);
  color: var(--acid);
}

.mood-note-intro h2 {
  max-width: 45rem;
  margin-top: 1.3rem;
  font-family: var(--display);
  font-size: clamp(4.2rem, 8vw, 10rem);
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 0.7;
}

.mood-note-intro h2 em {
  color: var(--butter);
  font-style: italic;
}

.mood-note-intro > p:last-child {
  max-width: 26rem;
  margin-top: 2.1rem;
  color: var(--cream-dim);
  font-size: 0.93rem;
  line-height: 1.58;
}

.mood-builder {
  display: grid;
  grid-template-columns: minmax(16rem, 0.78fr) minmax(20rem, 1.22fr);
  align-items: start;
  gap: clamp(1.5rem, 5vw, 5rem);
  max-width: 76rem;
  margin-top: clamp(3.5rem, 8vw, 8rem);
}

#mood-builder {
  scroll-margin-top: 6.5rem;
}

.builder-panel {
  min-width: 0;
}

.selection-summary,
.mobile-step-switcher,
.choice-short {
  display: none;
}

.mood-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 29rem;
  overflow: hidden;
  padding: 1.25rem;
  border: 1px solid rgba(242, 236, 220, 0.34);
  background: #1e3ee9;
  color: var(--cream);
  transition: background-color 350ms ease;
}

.mood-stage::before,
.mood-stage::after {
  position: absolute;
  content: "";
  transition: background-color 350ms ease, transform 350ms ease, border-radius 350ms ease;
}

.mood-stage::before {
  top: -16%;
  right: -16%;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--butter);
}

.mood-stage::after {
  bottom: -20%;
  left: -11%;
  width: 68%;
  aspect-ratio: 1;
  border-radius: 45% 55% 55% 45%;
  background: var(--wine);
}

.stage-word {
  position: relative;
  z-index: 2;
  max-width: 86%;
  font-family: var(--display);
  font-size: clamp(4rem, 7vw, 6.7rem);
  letter-spacing: -0.09em;
  line-height: 0.66;
  transition: color 350ms ease;
}

.stage-word-two {
  padding-left: 0.36em;
  color: var(--ink);
  font-style: italic;
}

.stage-shape {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(11, 16, 32, 0.26);
  transition: transform 350ms ease, border-color 350ms ease;
}

.stage-shape-one {
  top: 33%;
  right: 18%;
  width: 31%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: transparent;
}

.stage-shape-two {
  bottom: 20%;
  left: 19%;
  width: 34%;
  aspect-ratio: 1.2;
  transform: rotate(-20deg);
  background: var(--acid);
}

.mood-stage > p {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  color: var(--ink);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.mood-stage[data-light="day"] {
  background: var(--butter);
}

.mood-stage[data-light="day"]::before {
  background: var(--cream);
  transform: scale(0.85) translate(-22%, 22%);
}

.mood-stage[data-light="day"]::after {
  background: var(--acid);
  transform: translate(16%, -7%);
}

.mood-stage[data-light="day"] .stage-word {
  color: var(--ink);
}

.mood-stage[data-light="late"] {
  background: var(--wine);
}

.mood-stage[data-light="late"]::before {
  background: var(--orchid);
  transform: translate(-15%, 6%);
}

.mood-stage[data-light="late"]::after {
  background: #ef7a4e;
  transform: scale(0.85) translate(14%, -13%);
}

.mood-stage[data-light="late"] .stage-word-two,
.mood-stage[data-light="late"] > p {
  color: var(--butter);
}

.mood-stage[data-temperature="solar"] .stage-shape-one {
  border-radius: 0;
  border-color: var(--wine);
  transform: rotate(45deg) scale(1.3);
}

.mood-stage[data-temperature="solar"] .stage-shape-two {
  background: var(--cobalt);
  transform: rotate(18deg) translate(14%, -13%);
}

.mood-stage[data-temperature="ripe"] .stage-shape-one {
  background: var(--acid);
  border-radius: 50% 50% 6% 50%;
  transform: rotate(32deg) translate(-21%, 11%);
}

.mood-stage[data-temperature="ripe"] .stage-shape-two {
  background: var(--orchid);
  transform: rotate(-34deg) scale(1.22);
}

.mood-stage[data-gesture="arrival"]::after {
  border-radius: 10rem 10rem 0 0;
  transform: translate(34%, -6%) scale(1.25);
}

.mood-stage[data-gesture="gift"]::before {
  border-radius: 19% 81% 25% 75%;
  transform: rotate(23deg);
}

.builder-controls {
  padding-top: 0.15rem;
}

.choice-row {
  padding: 1.1rem 0 1.55rem;
  border-top: 1px solid rgba(242, 236, 220, 0.28);
}

.choice-row:last-child {
  border-bottom: 1px solid rgba(242, 236, 220, 0.28);
}

.choice-label {
  color: var(--acid);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.choice-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
  margin-top: 0.85rem;
}

.choice {
  min-height: 2.75rem;
  padding: 0.53rem 0.65rem;
  border: 1px solid rgba(242, 236, 220, 0.35);
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  font-size: 0.75rem;
  line-height: 1.15;
  text-align: left;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.choice:hover,
.choice:focus-visible {
  border-color: var(--acid);
  color: var(--acid);
  transform: translateY(-2px);
}

.choice.is-selected {
  border-color: var(--butter);
  background: var(--butter);
  color: var(--ink);
}

.note-output {
  margin-top: 1.75rem;
  padding: 1.35rem 0 0;
  border-top: 1px solid rgba(242, 236, 220, 0.28);
}

.note-label {
  color: var(--acid);
}

.note-text {
  max-width: 40rem;
  margin-top: 0.8rem;
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.8vw, 3.1rem);
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.copy-button {
  display: inline-flex;
  align-items: center;
  min-height: 3rem;
  margin-top: 1.25rem;
  padding: 0.75rem 0;
  border: 0;
  border-bottom: 1px solid var(--butter);
  background: transparent;
  color: var(--butter);
  cursor: pointer;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.copy-button:hover,
.copy-button:focus-visible {
  color: var(--acid);
}

.copy-status {
  max-width: 34rem;
  min-height: 1.4em;
  margin-top: 0.7rem;
  color: var(--cream-dim);
  font-size: 0.74rem;
  line-height: 1.5;
}

.handoff {
  display: grid;
  grid-template-columns: minmax(16rem, 0.9fr) minmax(20rem, 1.1fr);
  gap: clamp(2rem, 8vw, 11rem);
  align-items: center;
  background: var(--cream);
}

.handoff-image {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 27rem;
  padding: 1.3rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 79%, var(--acid) 0 13%, transparent 13.4%),
    radial-gradient(circle at 71% 27%, var(--butter) 0 20%, transparent 20.4%),
    linear-gradient(134deg, #254df7, #1d37c9);
  color: var(--ink);
}

.handoff-image::before,
.handoff-image::after {
  position: absolute;
  content: "";
}

.handoff-image::before {
  top: 20%;
  left: 10%;
  width: 77%;
  aspect-ratio: 1;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.handoff-image::after {
  right: -13%;
  bottom: -15%;
  width: 53%;
  aspect-ratio: 1;
  border-radius: 50% 50% 0 0;
  background: var(--wine);
}

.handoff-image span {
  position: relative;
  z-index: 1;
  max-width: 75%;
  font-family: var(--display);
  font-size: clamp(2.1rem, 5vw, 4.6rem);
  letter-spacing: -0.075em;
  line-height: 0.76;
}

.handoff-image span:last-child {
  align-self: end;
  color: var(--cream);
  font-style: italic;
  text-align: right;
}

.handoff-copy h2 {
  margin-top: 1.7rem;
  font-family: var(--display);
  font-size: clamp(2.8rem, 4.8vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -0.074em;
  line-height: 0.78;
}

.handoff-copy ol {
  display: grid;
  gap: 0.73rem;
  margin-top: 2.3rem;
  padding: 0;
  list-style: none;
}

.handoff-copy li {
  display: grid;
  grid-template-columns: 1.7rem 1fr;
  gap: 0.5rem;
  font-size: 0.93rem;
}

.handoff-copy li span {
  color: var(--cobalt);
  font-weight: 700;
}

.handoff-copy > p {
  max-width: 35rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-dark);
  color: #535a6c;
  font-size: 0.82rem;
  line-height: 1.56;
}

.finale {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(51rem, 100svh);
  padding: clamp(6rem, 11vw, 11rem) clamp(1.25rem, 7.9vw, 10.5rem);
  overflow: hidden;
  background: var(--cobalt);
  color: var(--cream);
  isolation: isolate;
  text-align: center;
}

.finale::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 50% 38%, rgba(242, 217, 120, 0.65), transparent 17%), radial-gradient(circle at 79% 90%, rgba(11, 16, 32, 0.29), transparent 38%);
}

.finale-backdrop {
  position: absolute;
  z-index: -1;
  inset: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  color: rgba(11, 16, 32, 0.15);
  font-family: var(--display);
  font-size: min(35vw, 38rem);
  font-style: italic;
  letter-spacing: -0.16em;
  line-height: 0.7;
  pointer-events: none;
  transform: rotate(-8deg) scale(1.18);
}

.finale-content {
  max-width: 63rem;
}

.finale .eyebrow {
  justify-content: center;
}

.finale h2 {
  margin-top: 2.2rem;
  font-family: var(--display);
  font-size: clamp(3.2rem, 6.6vw, 8.6rem);
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 0.74;
}

.finale h2 em {
  color: var(--butter);
  font-style: italic;
}

.finale p:not(.eyebrow) {
  max-width: 30rem;
  margin: 2.6rem auto 0;
  color: rgba(242, 236, 220, 0.8);
  font-size: 0.92rem;
  line-height: 1.57;
}

.finale-actions {
  justify-content: center;
}

.button-light {
  background: var(--cream);
  color: var(--ink);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--acid);
}

.button-line {
  border-color: rgba(242, 236, 220, 0.8);
  color: var(--cream);
}

.button-line:hover,
.button-line:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(11rem, 1fr) minmax(13rem, 1.25fr) minmax(13rem, 1.2fr) auto;
  gap: 1.5rem;
  align-items: end;
  padding: 2rem clamp(1.25rem, 3vw, 3.75rem);
  background: var(--ink);
  color: rgba(242, 236, 220, 0.65);
}

.footer-brand {
  color: var(--cream);
}

.site-footer p {
  font-size: 0.61rem;
  line-height: 1.45;
}

.site-footer p:last-child {
  text-align: right;
}

.reveal {
  transition: opacity 600ms ease, transform 600ms cubic-bezier(.2,.7,.2,1);
}

.js .reveal {
  opacity: 0;
  transform: translateY(1.5rem);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(23rem, 0.8fr);
    padding-left: clamp(1.5rem, 5vw, 4.5rem);
    padding-right: clamp(1.5rem, 5vw, 4.5rem);
  }

  .hero h1 {
    font-size: clamp(4.2rem, 8vw, 7.5rem);
  }

  .hero-footnote {
    right: clamp(1.5rem, 5vw, 4.5rem);
    left: clamp(1.5rem, 5vw, 4.5rem);
  }

  .section-pad {
    padding-right: clamp(1.5rem, 5vw, 4.5rem);
    padding-left: clamp(1.5rem, 5vw, 4.5rem);
  }

  .study-grid {
    gap: 2rem;
  }

  .study-card-tall {
    margin-bottom: 3rem;
  }

  .study-card-low {
    margin-top: 6rem;
  }

  .mood-builder {
    grid-template-columns: minmax(14rem, 0.68fr) minmax(20rem, 1.32fr);
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 4.8rem;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.52rem;
    min-width: 5.55rem;
    height: 3rem;
    padding: 0 0.62rem;
    border: 1px solid rgba(242, 236, 220, 0.5);
    background: transparent;
    color: var(--cream);
    cursor: pointer;
  }

  .menu-label {
    position: relative;
    display: block;
    width: 2.62rem;
    height: 0.85rem;
    color: currentColor;
    font-family: var(--sans);
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 0.85rem;
    text-align: left;
    text-transform: uppercase;
  }

  .menu-label-closed,
  .menu-label-open {
    position: absolute;
    inset: 0;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .menu-label-open {
    opacity: 0;
    transform: translateY(0.2rem);
  }

  .menu-bloom {
    position: relative;
    display: block;
    width: 1rem;
    height: 1rem;
    flex: 0 0 1rem;
  }

  .menu-bloom i {
    position: absolute;
    width: 0.28rem;
    height: 0.28rem;
    border-radius: 50%;
    background: currentColor;
    transition: background-color 180ms ease, transform 180ms ease;
  }

  .menu-bloom i:nth-child(1) {
    top: 0;
    left: 0.36rem;
  }

  .menu-bloom i:nth-child(2) {
    top: 0.36rem;
    left: 0;
  }

  .menu-bloom i:nth-child(3) {
    top: 0.36rem;
    right: 0;
  }

  .menu-bloom i:nth-child(4) {
    bottom: 0;
    left: 0.36rem;
  }

  .menu-is-open .menu-label-closed {
    opacity: 0;
    transform: translateY(-0.2rem);
  }

  .menu-is-open .menu-label-open {
    opacity: 1;
    transform: translateY(0);
  }

  .menu-is-open .menu-bloom i {
    background: var(--acid);
  }

  .menu-is-open .menu-bloom i:nth-child(1) {
    transform: translate(-0.2rem, -0.12rem);
  }

  .menu-is-open .menu-bloom i:nth-child(2) {
    transform: translate(-0.1rem, 0.15rem);
  }

  .menu-is-open .menu-bloom i:nth-child(3) {
    transform: translate(0.1rem, -0.15rem);
  }

  .menu-is-open .menu-bloom i:nth-child(4) {
    transform: translate(0.2rem, 0.12rem);
  }

  .site-navigation {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 0.5rem clamp(1.25rem, 5vw, 4.5rem) 1.2rem;
    background: rgba(11, 16, 32, 0.98);
    box-shadow: 0 1px 0 rgba(242, 236, 220, 0.13);
  }

  .site-navigation a {
    display: flex;
    align-items: center;
    min-height: 3.1rem;
    border-bottom: 1px solid rgba(242, 236, 220, 0.16);
  }

  .site-navigation > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    justify-content: space-between;
    margin-top: 0.8rem;
    padding: 0.25rem 0.75rem;
  }

  .js .site-navigation {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-0.8rem);
    transition: visibility 0s linear 180ms, opacity 180ms ease, transform 180ms ease;
  }

  .menu-is-open .site-navigation {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .hero {
    grid-template-columns: 1fr;
    align-content: start;
    min-height: 0;
    padding-top: 7.5rem;
    padding-bottom: 5.1rem;
  }

  .hero-copy {
    max-width: 38rem;
  }

  .hero h1 {
    font-size: clamp(4.5rem, 15.2vw, 7.8rem);
  }

  .hero-visual {
    width: min(86%, 29rem);
    margin-top: 3.5rem;
    margin-right: 3rem;
  }

  .hero-visual img {
    min-height: 29rem;
  }

  .hero-footnote {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    flex-wrap: wrap;
    margin-top: 2.5rem;
  }

  .manifesto,
  .principles,
  .handoff {
    grid-template-columns: 1fr;
  }

  .manifesto {
    gap: 2rem;
  }

  .section-head {
    grid-template-columns: 1fr;
  }

  .study-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
  }

  .study-copy {
    grid-column: 1 / -1;
    grid-row: 1;
    max-width: 39rem;
    padding: 0 0 2.5rem;
  }

  .study-copy::before {
    top: -3rem;
    left: 14rem;
  }

  .study-card-tall,
  .study-card-low {
    margin: 0;
  }

  .principles-sticky {
    position: static;
  }

  .principles-sticky h2 {
    max-width: none;
  }

  .mood-builder {
    grid-template-columns: 1fr;
    max-width: 41rem;
  }

  .mood-stage {
    min-height: 25rem;
  }

  .handoff-image {
    min-height: 23rem;
  }

  .finale {
    min-height: 42rem;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer p:last-child {
    text-align: left;
  }
}

@media (max-width: 820px) {
  .mood-builder {
    display: flex;
    flex-direction: column;
    gap: 0.72rem;
    max-width: none;
    margin-top: 2.5rem;
  }

  #mood-builder {
    scroll-margin-top: 5.25rem;
  }

  .mood-stage {
    width: 100%;
    min-height: 11.25rem;
    padding: 0.95rem;
  }

  .stage-word {
    max-width: 78%;
    font-size: clamp(3rem, 13vw, 4.7rem);
  }

  .mood-stage > p {
    gap: 0.6rem;
    font-size: 0.5rem;
  }

  .builder-panel {
    display: grid;
    width: 100%;
    gap: 0.65rem;
  }

  .js .selection-summary {
    display: flex;
    align-items: center;
    min-height: 2.4rem;
    padding: 0.45rem 0.72rem;
    border: 1px solid rgba(242, 236, 220, 0.24);
    color: var(--cream-dim);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .js .mobile-step-switcher {
    display: block;
    padding: 0.78rem;
    border: 1px solid rgba(242, 236, 220, 0.28);
    background: rgba(242, 236, 220, 0.04);
  }

  .mobile-step-label {
    color: var(--acid);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
  }

  .mobile-step-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.38rem;
    margin-top: 0.62rem;
  }

  .mobile-step-tab {
    min-height: 2.5rem;
    padding: 0.35rem 0.2rem;
    border: 1px solid rgba(242, 236, 220, 0.3);
    background: transparent;
    color: var(--cream-dim);
    cursor: pointer;
    font-size: 0.66rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
  }

  .mobile-step-tab:hover,
  .mobile-step-tab:focus-visible {
    border-color: var(--acid);
    color: var(--acid);
  }

  .mobile-step-tab.is-selected {
    border-color: var(--butter);
    background: var(--butter);
    color: var(--ink);
  }

  .builder-controls {
    padding-top: 0;
  }

  .js .choice-row,
  .js .choice-row:last-child {
    padding: 0;
    border: 0;
  }

  .js .choice-row:not(.is-mobile-active) {
    display: none;
  }

  .js .choice-label {
    display: none;
  }

  .js .choice-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.38rem;
    margin-top: 0;
  }

  .js .choice {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 3rem;
    padding: 0.45rem 0.25rem;
    font-size: 0.69rem;
    line-height: 1.05;
    text-align: center;
  }

  .js .choice:hover,
  .js .choice:focus-visible {
    transform: none;
  }

  .js .choice-long {
    display: none;
  }

  .js .choice-short {
    display: inline;
  }

  .note-output {
    margin-top: 0.08rem;
    padding: 0.95rem 0.82rem 0.85rem;
    border: 1px solid rgba(242, 236, 220, 0.28);
    background: rgba(11, 16, 32, 0.16);
  }

  .note-text {
    margin-top: 0.6rem;
    font-size: clamp(1.45rem, 6.7vw, 2.15rem);
    line-height: 0.92;
  }

  .copy-button {
    min-height: 2.55rem;
    margin-top: 0.78rem;
    padding: 0.5rem 0;
  }

  .copy-status {
    margin-top: 0.5rem;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 0.8rem;
    padding-right: 1.05rem;
    padding-left: 1.05rem;
  }

  .brand {
    font-size: 1.12rem;
  }

  .hero {
    min-height: 0;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }

  .hero h1 {
    font-size: clamp(4rem, 16.2vw, 5.85rem);
    line-height: 0.75;
  }

  .hero-intro {
    max-width: 20rem;
    margin-top: 2rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }

  .button {
    min-height: 3.2rem;
  }

  .hero-visual {
    width: calc(100% - 1.6rem);
    margin-top: 2.8rem;
    margin-right: 1.6rem;
  }

  .hero-visual-frame {
    border-radius: 8rem 8rem 0 0;
    box-shadow: 0.7rem 0.7rem 0 rgba(36, 76, 244, 0.36), 0 1.7rem 3rem rgba(0, 0, 0, 0.43);
  }

  .hero-visual img {
    min-height: 24.5rem;
  }

  .hero-stamp {
    right: -1.2rem;
    bottom: 2rem;
    width: 6.3rem;
    font-size: 1.15rem;
  }

  .hero-caption {
    gap: 0.5rem;
    font-size: 0.5rem;
  }

  .hero-footnote {
    gap: 0.6rem;
    font-size: 0.49rem;
  }

  .hero-rule {
    width: 2.4rem;
  }

  .signal-track {
    gap: 1rem;
    font-size: 1rem;
  }

  .section-pad {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }

  .manifesto-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .display-title {
    font-size: clamp(2.75rem, 12.3vw, 4.2rem);
    line-height: 0.91;
  }

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

  .study-copy {
    grid-column: auto;
    grid-row: auto;
    padding-bottom: 1.4rem;
  }

  .study-copy::before {
    top: -2.1rem;
    left: 41%;
    width: 9rem;
  }

  .study-card-low {
    width: 83%;
    justify-self: end;
  }

  .study-card-tall {
    width: 88%;
  }

  .study-card-tall .study-media {
    border-radius: 7rem 7rem 0 0;
  }

  .study-card-low .study-media {
    border-radius: 0 0 5.3rem 5.3rem;
  }

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

  .study-type {
    display: none;
  }

  .principle-list li {
    grid-template-columns: 2.65rem 1fr;
    gap: 0.5rem;
  }

  .principle-list h3 {
    font-size: 1.85rem;
  }

  .mood-note.section-pad {
    padding-top: 4.8rem;
    padding-bottom: 5.4rem;
  }

  .mood-overline {
    margin-top: 2.2rem;
  }

  .mood-note-intro h2 {
    font-size: clamp(3.55rem, 15.5vw, 4.8rem);
  }

  .mood-note-intro > p:last-child {
    margin-top: 1.45rem;
    font-size: 0.86rem;
  }

  .handoff {
    gap: 3.5rem;
  }

  .handoff-image {
    min-height: 19rem;
  }

  .handoff-copy h2 {
    font-size: clamp(2.8rem, 13vw, 4.5rem);
  }

  .finale {
    min-height: 38rem;
  }

  .finale h2 {
    font-size: clamp(3rem, 13.5vw, 4.8rem);
    line-height: 0.78;
  }

  .finale-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .finale-actions .button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 3.75rem;
  }

  .hero-footnote {
    display: block;
    line-height: 1.8;
  }

  .hero-rule {
    display: none;
  }

  .hero-footnote span:last-child {
    display: block;
  }

  .mood-note-intro h2 {
    font-size: 3.35rem;
  }
}

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

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

  .hero-visual {
    transform: none !important;
  }
}
