:root {
  --ink: #111415;
  --ink-soft: #515555;
  --paper: #f4f1eb;
  --paper-bright: #faf8f4;
  --line: rgba(17, 20, 21, 0.16);
  --violet: #c9c3ff;
  --aqua: #9de2de;
  --warm: #f4d7c2;
  --display: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --header-height: 64px;
  --shell: min(1400px, calc(100vw - 80px));
  --field-x: 0px;
  --field-y: 0px;
  --field-x-reverse: 0px;
  --field-y-reverse: 0px;
}

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

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

button,
input,
textarea {
  color: inherit;
  font: inherit;
}

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

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

button {
  border: 0;
}

::selection {
  color: var(--ink);
  background: var(--violet);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.atmosphere {
  position: absolute;
  z-index: 0;
  inset: 0 0 auto;
  height: 100svh;
  min-height: 760px;
  overflow: hidden;
  pointer-events: none;
}

.atmosphere__field {
  position: absolute;
  width: min(56vw, 850px);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(3px);
  opacity: 0.56;
  will-change: transform;
}

.atmosphere__field--violet {
  top: -24%;
  right: -9%;
  background:
    radial-gradient(circle at 52% 48%, rgba(255, 255, 255, 0.94) 0 8%, transparent 9%),
    radial-gradient(circle at center, rgba(201, 195, 255, 0.9) 0 20%, rgba(201, 195, 255, 0.2) 53%, transparent 69%);
  transform: translate(var(--field-x), var(--field-y)) rotate(-9deg);
}

.atmosphere__field--aqua {
  top: 24%;
  right: 18%;
  width: min(34vw, 500px);
  background: radial-gradient(
    circle,
    rgba(157, 226, 222, 0.65) 0,
    rgba(244, 215, 194, 0.17) 48%,
    transparent 70%
  );
  transform: translate(var(--field-x-reverse), var(--field-y-reverse));
}

.atmosphere__grain,
.atmosphere__grain::after {
  position: absolute;
  inset: 0;
}

.atmosphere__grain {
  opacity: 0.26;
  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='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.14'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: var(--shell);
  height: var(--header-height);
  padding: 0 18px 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: rgba(247, 244, 238, 0.7);
  box-shadow:
    0 15px 45px rgba(32, 35, 34, 0.07),
    inset 0 0 0 1px rgba(17, 20, 21, 0.04);
  transform: translateX(-50%);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
  width: max-content;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.wordmark__signal {
  position: relative;
  width: 15px;
  height: 15px;
  border: 1px solid rgba(17, 20, 21, 0.55);
  border-radius: 50%;
}

.wordmark__signal::after {
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  background: var(--ink);
  content: "";
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.site-nav a,
.header-action {
  position: relative;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms ease;
}

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

.header-action {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 999px;
  color: var(--paper-bright);
  background: var(--ink);
  cursor: pointer;
  transition:
    color 220ms ease,
    background-color 220ms ease,
    transform 220ms ease;
}

.header-action:hover {
  color: var(--ink);
  background: var(--aqua);
  transform: translateY(-1px);
}

.header-action:focus-visible,
.button:focus-visible,
.dialog__close:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.5fr);
  grid-template-rows: 1fr auto;
  gap: 36px 40px;
  width: var(--shell);
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(150px, 17vh, 210px) 0 42px;
}

.hero__content {
  align-self: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero__title {
  max-width: 1000px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(76px, 8.3vw, 144px);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.82;
  text-wrap: balance;
}

.hero__title em,
.idea__statement h2 em,
.name__intro h2 em,
.fit__intro h2 em,
.acquisition h2 em {
  display: block;
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1px var(--ink);
  font-style: italic;
}

.hero__lower {
  display: grid;
  grid-template-columns: minmax(280px, 540px) auto;
  align-items: end;
  gap: 34px;
  margin-top: 58px;
}

.hero__lede {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.3vw, 21px);
  letter-spacing: -0.025em;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 58px;
  padding: 0 18px 0 24px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    color 260ms ease,
    background-color 260ms ease,
    transform 260ms ease;
}

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

.button__arrow {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--paper-bright);
  font-size: 17px;
  transition: transform 260ms ease;
}

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

.button:hover .button__arrow {
  transform: rotate(45deg);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 5px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition:
    border-color 200ms ease,
    color 200ms ease;
}

.text-link:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.hero__halo {
  display: grid;
  align-self: center;
  justify-self: end;
  width: min(30vw, 410px);
  margin-top: 20px;
  place-items: center;
}

.halo {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 48% 45%, rgba(255, 255, 255, 0.95) 0 7%, transparent 8%),
    radial-gradient(circle, rgba(157, 226, 222, 0.42) 0 15%, rgba(201, 195, 255, 0.52) 31%, rgba(244, 215, 194, 0.2) 51%, transparent 69%);
  box-shadow: 0 40px 100px rgba(140, 139, 174, 0.1);
  transform: translateZ(0);
}

.halo__orbit {
  position: absolute;
  border: 1px solid rgba(17, 20, 21, 0.15);
  border-radius: 50%;
}

.halo__orbit::after {
  position: absolute;
  top: 50%;
  left: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 16px rgba(17, 20, 21, 0.36);
  content: "";
}

.halo__orbit--outer {
  inset: 4%;
  animation: orbit 24s linear infinite;
}

.halo__orbit--middle {
  inset: 18%;
  animation: orbit 16s linear infinite reverse;
}

.halo__orbit--inner {
  inset: 32%;
  animation: orbit 11s linear infinite;
}

.halo__core {
  position: absolute;
  inset: 43%;
  border-radius: 50%;
  background: var(--paper-bright);
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.24),
    0 0 35px 15px rgba(255, 255, 255, 0.5);
}

.halo__label {
  position: absolute;
  right: 0;
  bottom: 21%;
  font-family: var(--display);
  font-size: 14px;
  font-style: italic;
  letter-spacing: 0.08em;
  transform: rotate(-10deg);
}

@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}

.hero__facts {
  display: grid;
  grid-column: 1;
  grid-template-columns: repeat(3, 1fr);
  align-self: end;
  border-top: 1px solid var(--line);
}

.hero__facts div {
  display: flex;
  gap: 16px;
  padding: 20px 26px 2px 0;
  border-right: 1px solid var(--line);
}

.hero__facts div + div {
  padding-left: 26px;
}

.hero__facts div:last-child {
  border-right: 0;
}

.hero__facts span {
  color: #777a79;
  font-size: 9px;
  letter-spacing: 0.1em;
}

.hero__facts strong {
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero__definition {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  align-self: end;
  gap: 12px;
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: 13px;
  font-style: italic;
}

.hero__definition span:first-child {
  color: var(--ink);
  font-family: var(--sans);
  font-size: 11px;
  font-style: normal;
  font-weight: 650;
  letter-spacing: 0.06em;
}

.hero__definition span:nth-child(2) {
  padding-right: 12px;
  border-right: 1px solid var(--line);
  color: #777a79;
  font-size: 11px;
}

.section-shell {
  width: var(--shell);
  margin: 0 auto;
}

.section-index {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-index--dark {
  border-color: var(--line);
}

.idea {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 120px 0 110px;
  color: var(--paper-bright);
  background: var(--ink);
}

.idea::before {
  position: absolute;
  top: -220px;
  right: -130px;
  width: 620px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.018),
    0 0 0 140px rgba(255, 255, 255, 0.014);
  content: "";
}

.idea__statement {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: 80px;
  padding: 110px 0 140px;
}

.idea__statement h2,
.name__intro h2,
.fit__intro h2,
.acquisition h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(58px, 6.5vw, 108px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.idea__statement h2 em {
  -webkit-text-stroke-color: var(--paper-bright);
}

.idea__statement p,
.name__intro p {
  max-width: 420px;
  margin: 0;
  color: rgba(250, 248, 244, 0.62);
  font-size: 18px;
  letter-spacing: -0.02em;
  line-height: 1.65;
}

.possibilities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.possibilities span {
  padding: 28px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  font-family: var(--display);
  font-size: clamp(18px, 1.6vw, 25px);
  font-style: italic;
  text-align: center;
}

.possibilities span:last-child {
  border-right: 0;
}

.name {
  position: relative;
  z-index: 2;
  padding: 120px 0 140px;
  background:
    linear-gradient(rgba(244, 241, 235, 0.91), rgba(244, 241, 235, 0.96)),
    radial-gradient(circle at 20% 30%, var(--violet), transparent 37%),
    radial-gradient(circle at 80% 70%, var(--aqua), transparent 38%);
}

.name__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.5fr);
  align-items: end;
  gap: 70px;
  padding: 110px 0 125px;
}

.name__intro h2 {
  max-width: 950px;
}

.name__intro h2 em {
  -webkit-text-stroke-color: var(--ink);
}

.name__intro p {
  color: var(--ink-soft);
}

.name__qualities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.quality {
  position: relative;
  min-height: 270px;
  padding: 34px 40px 30px 0;
  border-right: 1px solid var(--line);
}

.quality + .quality {
  padding-left: 40px;
}

.quality:last-child {
  border-right: 0;
}

.quality__number {
  display: block;
  margin-bottom: 68px;
  color: #777a79;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.quality h3 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: 31px;
  font-style: italic;
  font-weight: 400;
}

.quality p {
  max-width: 330px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.fit {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 120px 0 140px;
  background:
    linear-gradient(rgba(250, 248, 244, 0.88), rgba(250, 248, 244, 0.96)),
    radial-gradient(circle at 12% 88%, var(--aqua), transparent 34%),
    radial-gradient(circle at 88% 16%, var(--violet), transparent 32%);
}

.fit::before {
  position: absolute;
  top: 29%;
  left: 50%;
  width: min(68vw, 980px);
  aspect-ratio: 1;
  border: 1px solid rgba(17, 20, 21, 0.06);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.fit__intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 90px;
  padding: 105px 0 110px;
}

.fit__intro h2 {
  max-width: 900px;
  margin: 0;
}

.fit__intro h2 em {
  -webkit-text-stroke-color: var(--ink);
}

.fit__aside {
  display: grid;
  gap: 30px;
}

.fit__aside p {
  max-width: 450px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  letter-spacing: -0.02em;
  line-height: 1.65;
}

.fit__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fit-card {
  min-height: 250px;
  padding: 28px 28px 34px;
  border-right: 1px solid var(--line);
}

.fit-card:first-child {
  padding-left: 0;
}

.fit-card:last-child {
  padding-right: 0;
  border-right: 0;
}

.fit-card > span {
  display: block;
  margin-bottom: 66px;
  color: #777a79;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.fit-card h3 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(24px, 2vw, 31px);
  font-style: italic;
  font-weight: 400;
}

.fit-card p {
  max-width: 270px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

.acquisition {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 150px 0 86px;
  color: var(--paper-bright);
  background: #0c0f10;
}

.acquisition__glow {
  position: absolute;
  top: 50%;
  left: 76%;
  width: min(64vw, 930px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.55) 0 3%, transparent 4%),
    radial-gradient(circle at center, rgba(157, 226, 222, 0.32), rgba(201, 195, 255, 0.18) 26%, transparent 67%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.acquisition__glow::before,
.acquisition__glow::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  content: "";
}

.acquisition__glow::before {
  inset: 12%;
}

.acquisition__glow::after {
  inset: 29%;
}

.acquisition__inner {
  position: relative;
}

.eyebrow--light {
  color: rgba(250, 248, 244, 0.7);
}

.acquisition h2 {
  max-width: 1050px;
  margin-bottom: 64px;
}

.acquisition h2 em {
  -webkit-text-stroke-color: var(--paper-bright);
}

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

.button--light .button__arrow {
  color: var(--paper-bright);
  background: var(--ink);
}

.acquisition__brief {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  margin-left: 28px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(250, 248, 244, 0.32);
  color: rgba(250, 248, 244, 0.72);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    border-color 180ms ease;
}

.acquisition__brief:hover {
  border-color: var(--paper-bright);
  color: var(--paper-bright);
}

.acquisition__note {
  margin: 115px 0 0;
  color: rgba(250, 248, 244, 0.47);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.acquisition__note span {
  padding: 0 13px;
}

.site-footer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  gap: 30px;
  padding: 28px 40px;
  color: rgba(250, 248, 244, 0.5);
  background: #0c0f10;
  font-size: 10px;
  letter-spacing: 0.06em;
}

.wordmark--footer {
  color: var(--paper-bright);
}

.wordmark--footer .wordmark__signal {
  border-color: rgba(250, 248, 244, 0.6);
}

.wordmark--footer .wordmark__signal::after {
  background: var(--paper-bright);
}

.site-footer p {
  margin: 0;
}

.site-footer p:nth-child(2) {
  text-align: center;
}

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

.brief-page {
  background: var(--paper);
}

.brief-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 70px;
  width: var(--shell);
  min-height: 100svh;
  margin: 0 auto;
  padding: 150px 0 80px;
}

.brief-hero__copy {
  position: relative;
  z-index: 2;
}

.brief-hero h1 {
  max-width: 1020px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(72px, 7.5vw, 126px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.86;
}

.brief-hero h1 em,
.brief-section-head h2 em,
.brief-cta h2 em {
  display: block;
  color: transparent;
  font-style: italic;
  font-weight: 400;
  -webkit-text-stroke: 1px var(--ink);
}

.brief-hero__lede {
  max-width: 680px;
  margin: 52px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.4vw, 21px);
  letter-spacing: -0.025em;
  line-height: 1.6;
}

.brief-hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.brief-hero__mark {
  position: relative;
  width: 100%;
  max-width: 520px;
  justify-self: end;
}

.brief-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 90px;
  padding: 105px 0 110px;
}

.brief-section-head h2,
.brief-cta h2 {
  max-width: 980px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(58px, 6.5vw, 108px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.brief-section-head > p {
  max-width: 460px;
  margin: 0;
  font-size: 17px;
  letter-spacing: -0.02em;
  line-height: 1.65;
}

.brief-facts {
  position: relative;
  z-index: 2;
  padding: 120px 0;
  color: var(--paper-bright);
  background: var(--ink);
}

.brief-facts .brief-section-head > p {
  color: rgba(250, 248, 244, 0.62);
}

.brief-facts .brief-section-head h2 em,
.brief-cta h2 em {
  -webkit-text-stroke-color: var(--paper-bright);
}

.fact-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  border-top: 1px solid rgba(250, 248, 244, 0.2);
}

.fact-table > div {
  display: grid;
  grid-template-columns: minmax(120px, 0.38fr) 1fr;
  gap: 30px;
  padding: 25px 28px 25px 0;
  border-right: 1px solid rgba(250, 248, 244, 0.2);
  border-bottom: 1px solid rgba(250, 248, 244, 0.2);
}

.fact-table > div:nth-child(even) {
  padding-right: 0;
  padding-left: 28px;
  border-right: 0;
}

.fact-table dt {
  color: rgba(250, 248, 244, 0.46);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.fact-table dd {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(18px, 1.65vw, 25px);
  font-style: italic;
}

.provenance-note {
  display: grid;
  grid-template-columns: minmax(140px, 0.24fr) 1fr;
  gap: 40px;
  margin-top: 70px;
  padding: 28px 0;
  border-top: 1px solid rgba(250, 248, 244, 0.2);
  border-bottom: 1px solid rgba(250, 248, 244, 0.2);
}

.provenance-note > span {
  color: rgba(250, 248, 244, 0.46);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.provenance-note p {
  max-width: 920px;
  margin: 0;
  color: rgba(250, 248, 244, 0.68);
  font-size: 15px;
  line-height: 1.7;
}

.brief-fit,
.brief-process {
  position: relative;
  z-index: 2;
  padding: 120px 0 140px;
}

.brief-fit {
  background:
    linear-gradient(rgba(244, 241, 235, 0.9), rgba(244, 241, 235, 0.95)),
    radial-gradient(circle at 86% 16%, var(--violet), transparent 38%),
    radial-gradient(circle at 12% 82%, var(--aqua), transparent 36%);
}

.brief-fit .brief-section-head > p,
.brief-process .brief-section-head > p {
  color: var(--ink-soft);
}

.brief-fit__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

.brief-fit__list article {
  display: grid;
  grid-template-columns: 44px minmax(180px, 0.7fr) 1fr;
  align-items: baseline;
  gap: 22px;
  padding: 30px 30px 34px 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brief-fit__list article:nth-child(even) {
  padding-right: 0;
  padding-left: 30px;
  border-right: 0;
}

.brief-fit__list article > span,
.process-list > li > span {
  color: #777a79;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.brief-fit__list h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 30px);
  font-style: italic;
  font-weight: 400;
}

.brief-fit__list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

.brief-process {
  background: var(--paper-bright);
}

.process-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 24px;
  min-height: 220px;
  padding: 32px 42px 38px 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-list li:nth-child(even) {
  padding-right: 0;
  padding-left: 42px;
  border-right: 0;
}

.process-list h3 {
  margin: 44px 0 12px;
  font-family: var(--display);
  font-size: clamp(25px, 2.2vw, 34px);
  font-style: italic;
  font-weight: 400;
}

.process-list p {
  max-width: 460px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.brief-cta {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 145px 0 125px;
  color: var(--paper-bright);
  background: #0c0f10;
}

.brief-cta__glow {
  position: absolute;
  top: 50%;
  right: -8%;
  width: min(62vw, 850px);
  aspect-ratio: 1;
  border: 1px solid rgba(250, 248, 244, 0.12);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(157, 226, 222, 0.3),
    rgba(201, 195, 255, 0.18) 28%,
    transparent 66%
  );
  transform: translateY(-50%);
  pointer-events: none;
}

.brief-cta h2 {
  position: relative;
  max-width: 1080px;
  margin-bottom: 58px;
}

.inquiry-dialog {
  width: min(700px, calc(100vw - 32px));
  max-height: calc(100svh - 32px);
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 28px;
  color: var(--ink);
  background: var(--paper-bright);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.34);
}

.inquiry-dialog::backdrop {
  background: rgba(9, 11, 12, 0.66);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.dialog__panel {
  position: relative;
  padding: 64px;
}

.dialog__panel::before {
  position: absolute;
  top: -160px;
  right: -130px;
  width: 390px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 195, 255, 0.62), rgba(157, 226, 222, 0.24) 40%, transparent 70%);
  content: "";
  pointer-events: none;
}

.dialog__close {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 22px;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0 0 3px;
  border: 1px solid var(--line);
  border-radius: 50%;
  place-items: center;
  background: rgba(250, 248, 244, 0.66);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 27px;
  line-height: 1;
}

.dialog__panel h2 {
  position: relative;
  max-width: 520px;
  margin: 0 0 20px;
  font-family: var(--display);
  font-size: clamp(44px, 6vw, 68px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.dialog__intro {
  position: relative;
  max-width: 510px;
  margin: 0 0 42px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

.inquiry-form {
  position: relative;
  display: grid;
  gap: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.inquiry-form label {
  display: grid;
  gap: 9px;
}

.inquiry-form label > span {
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: 0;
  background: rgba(255, 255, 255, 0.38);
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.inquiry-form input {
  height: 52px;
  padding: 0 15px;
}

.inquiry-form textarea {
  min-height: 116px;
  padding: 15px;
  resize: vertical;
  line-height: 1.5;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  border-color: var(--ink);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(157, 226, 222, 0.2);
}

.inquiry-form textarea::placeholder {
  color: #949695;
}

.form-submit {
  justify-self: start;
  margin-top: 4px;
}

.dialog__alternative {
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.dialog__alternative a {
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 600;
}

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 850ms cubic-bezier(0.2, 0.75, 0.25, 1),
    transform 850ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

.hero .reveal:nth-child(2) {
  transition-delay: 90ms;
}

.hero .reveal:nth-child(3) {
  transition-delay: 160ms;
}

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 48px, 980px);
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) 280px;
  }

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

  .hero__actions {
    flex-direction: row;
    align-items: center;
  }

  .idea__statement,
  .name__intro,
  .fit__intro {
    grid-template-columns: 1fr;
  }

  .idea__statement p,
  .name__intro p,
  .fit__aside p {
    max-width: 580px;
  }

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

  .fit-card:nth-child(2) {
    border-right: 0;
  }

  .fit-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .fit-card:nth-child(3) {
    padding-left: 0;
  }

  .brief-hero {
    grid-template-columns: minmax(0, 1fr) 280px;
  }

  .brief-section-head {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .brief-section-head > p {
    max-width: 620px;
  }

  .brief-fit__list article {
    grid-template-columns: 40px 1fr;
  }

  .brief-fit__list article p {
    grid-column: 2;
  }
}

@media (max-width: 780px) {
  :root {
    --shell: calc(100% - 34px);
    --header-height: 58px;
  }

  html {
    scroll-padding-top: 90px;
  }

  .site-header {
    top: 10px;
    grid-template-columns: 1fr auto;
    padding: 0 10px 0 17px;
  }

  .site-nav {
    display: none;
  }

  .header-action {
    padding: 11px 14px;
    font-size: 10px;
  }

  .wordmark {
    font-size: 14px;
  }

  .hero {
    display: flex;
    min-height: 100svh;
    padding: 142px 0 28px;
    flex-direction: column;
  }

  .hero__content {
    align-self: auto;
  }

  .eyebrow {
    margin-bottom: 23px;
    font-size: 9px;
  }

  .hero__title {
    font-size: clamp(60px, 18vw, 96px);
    line-height: 0.86;
  }

  .hero__lower {
    gap: 28px;
    margin-top: 38px;
  }

  .hero__lede {
    max-width: 580px;
    font-size: 16px;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero__halo {
    position: absolute;
    z-index: -1;
    top: 25%;
    right: -33%;
    width: 84vw;
    opacity: 0.65;
  }

  .hero__facts {
    width: 100%;
    margin-top: auto;
  }

  .hero__facts div {
    gap: 7px;
    padding: 15px 8px 0 0;
    flex-direction: column;
  }

  .hero__facts div + div {
    padding-left: 10px;
  }

  .hero__facts strong {
    font-size: 8px;
    line-height: 1.35;
  }

  .hero__definition {
    display: none;
  }

  .idea,
  .name,
  .fit {
    padding: 80px 0;
  }

  .idea__statement,
  .name__intro,
  .fit__intro {
    gap: 34px;
    padding: 75px 0 80px;
  }

  .idea__statement h2,
  .name__intro h2,
  .fit__intro h2,
  .acquisition h2 {
    font-size: clamp(48px, 14vw, 76px);
  }

  .idea__statement p,
  .name__intro p,
  .fit__aside p {
    font-size: 16px;
  }

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

  .fit-card,
  .fit-card:first-child,
  .fit-card:nth-child(3),
  .fit-card:last-child {
    min-height: auto;
    padding: 28px 0 34px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .fit-card:last-child {
    border-bottom: 0;
  }

  .fit-card > span {
    margin-bottom: 35px;
  }

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

  .possibilities span:nth-child(2) {
    border-right: 0;
  }

  .possibilities span:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .possibilities span {
    padding: 22px 8px;
    font-size: 17px;
  }

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

  .quality,
  .quality + .quality {
    min-height: auto;
    padding: 28px 0 34px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quality:last-child {
    border-bottom: 0;
  }

  .quality__number {
    margin-bottom: 35px;
  }

  .acquisition {
    padding: 100px 0 70px;
  }

  .acquisition h2 {
    margin-bottom: 44px;
  }

  .acquisition__glow {
    top: 36%;
    left: 85%;
    width: 125vw;
  }

  .acquisition__note {
    display: flex;
    margin-top: 80px;
    line-height: 1.6;
    flex-direction: column;
  }

  .acquisition__note span {
    display: none;
  }

  .acquisition__brief {
    display: flex;
    margin: 24px 0 0;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    padding: 28px 17px;
  }

  .site-footer p:nth-child(2) {
    display: none;
  }

  .dialog__panel {
    padding: 58px 24px 30px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .brief-hero {
    display: flex;
    min-height: 100svh;
    padding: 140px 0 70px;
    flex-direction: column;
  }

  .brief-hero h1 {
    font-size: clamp(54px, 17vw, 74px);
  }

  .brief-hero__lede {
    margin-top: 38px;
    font-size: 16px;
  }

  .brief-hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .brief-hero__mark {
    position: absolute;
    z-index: -1;
    top: 29%;
    right: -32%;
    width: 84vw;
    opacity: 0.58;
  }

  .brief-facts,
  .brief-fit,
  .brief-process {
    padding: 80px 0;
  }

  .brief-section-head {
    gap: 32px;
    padding: 75px 0 80px;
  }

  .brief-section-head h2,
  .brief-cta h2 {
    font-size: clamp(48px, 14vw, 76px);
  }

  .brief-section-head > p {
    font-size: 16px;
  }

  .fact-table,
  .brief-fit__list,
  .process-list {
    grid-template-columns: 1fr;
  }

  .fact-table > div,
  .fact-table > div:nth-child(even) {
    grid-template-columns: 120px 1fr;
    padding: 22px 0;
    border-right: 0;
  }

  .provenance-note {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 55px;
  }

  .brief-fit__list article,
  .brief-fit__list article:nth-child(even) {
    padding: 28px 0 32px;
    border-right: 0;
  }

  .process-list li,
  .process-list li:nth-child(even) {
    min-height: auto;
    padding: 28px 0 34px;
    border-right: 0;
  }

  .process-list h3 {
    margin-top: 34px;
  }

  .brief-cta {
    padding: 100px 0 90px;
  }

  .brief-cta__glow {
    right: -55%;
    width: 135vw;
  }
}

@media (max-width: 430px) {
  .hero__title {
    font-size: clamp(54px, 17vw, 74px);
  }

  .button {
    gap: 20px;
    width: 100%;
  }

  .text-link {
    width: max-content;
  }

  .header-action span {
    display: none;
  }

  .quality h3 {
    font-size: 28px;
  }

  .site-footer {
    gap: 12px;
  }

  .brief-hero__actions .button {
    width: 100%;
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
