@font-face {
  font-family: "Mabeyn Sans";
  src: url("assets/IBMPlexSans-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mabeyn Display";
  src: url("assets/Fraunces-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mabeyn Display";
  src: url("assets/Fraunces-600-Italic-latin.woff2") format("woff2");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Mabeyn Display";
  src: url("assets/Fraunces-600-Italic-latinext.woff2") format("woff2");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Mabeyn Mono";
  src: url("assets/IBMPlexMono-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #090806;
  --black-soft: #11100d;
  --panel: #17130f;
  --panel-soft: #201a14;
  --cream: #f4ede1;
  --cream-dark: #d9cebd;
  --gold: #c99a44;
  --gold-light: #e2c07f;
  --gold-dark: #9c7530;
  --muted: #aa9d8c;
  --line: rgba(226, 192, 127, 0.19);
  --gold-gradient: linear-gradient(180deg, var(--gold-light), var(--gold) 48%, var(--gold-dark));
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--black);
  color: var(--cream);
  font-family: "Mabeyn Sans", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: 0.035;
  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='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

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

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

button {
  font: inherit;
}

img,
svg {
  display: block;
}

.page-glow {
  position: absolute;
  inset: 0 0 auto;
  height: 980px;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 22%, rgba(201, 154, 68, 0.13), transparent 30%),
    radial-gradient(circle at 82% 38%, rgba(120, 62, 36, 0.18), transparent 34%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: min(calc(100% - 48px), var(--max));
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(9, 8, 6, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand > img {
  width: 43px;
  height: 43px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.27em;
}

.brand-copy small {
  color: var(--muted);
  font-family: "Mabeyn Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
}

.header-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cream-dark);
  font-size: 15px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-nav > a:not(.header-link) {
  color: var(--muted);
  font-size: 15px;
  transition: color 180ms ease;
}

.header-nav > a:not(.header-link):hover {
  color: var(--cream);
}

.header-link svg {
  width: 18px;
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  position: relative;
  width: min(calc(100% - 48px), var(--max));
  min-height: calc(100vh - 92px);
  margin: 0 auto;
  padding: 76px 0 96px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.96fr);
  align-items: center;
  gap: clamp(50px, 7vw, 104px);
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--gold-light);
  font-family: "Mabeyn Mono", monospace;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.24em;
}

.major-section-title {
  margin-bottom: 34px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--gold-light);
  font-family: "Mabeyn Sans", Arial, sans-serif;
  font-size: clamp(25px, 2.55vw, 36px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.14em;
}

.major-section-title::after {
  content: "";
  width: clamp(54px, 8vw, 104px);
  height: 1px;
  flex: 0 0 auto;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: "Mabeyn Display", Georgia, serif;
  font-size: clamp(52px, 5.7vw, 84px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.048em;
}

.hero h1 em {
  display: block;
  width: fit-content;
  margin: 0.04em 0;
  padding-right: 0.08em;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  letter-spacing: -0.035em;
}

.hero-lead {
  max-width: 590px;
  margin: 34px 0 0;
  color: var(--cream-dark);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
}

.hero-support {
  max-width: 590px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 0;
}

.button {
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 15px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--gold-gradient);
  color: var(--black);
  font-weight: 600;
}

.button-quiet {
  border-color: var(--line);
  color: var(--cream-dark);
}

.button-quiet:hover {
  border-color: rgba(226, 192, 127, 0.48);
  background: rgba(255, 255, 255, 0.025);
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 0 0 auto;
  aspect-ratio: 4 / 5.25;
  overflow: hidden;
  border: 1px solid rgba(226, 192, 127, 0.22);
  border-radius: 220px 220px 28px 28px;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.5);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 8, 6, 0.02) 42%, rgba(9, 8, 6, 0.84) 100%);
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 44%;
  filter: saturate(0.84) contrast(1.04) brightness(0.88);
}

.hero-visual figcaption {
  position: absolute;
  inset: auto 28px 26px;
  z-index: 1;
  display: grid;
  gap: 4px;
}

.hero-visual figcaption span {
  color: var(--gold-light);
  font-family: "Mabeyn Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-visual figcaption strong {
  font-family: "Mabeyn Display", Georgia, serif;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 600;
}

.benefits-section {
  position: relative;
  padding: 124px max(24px, calc((100vw - var(--max)) / 2));
  overflow: hidden;
  background: var(--cream);
  color: var(--black);
}

.benefits-section::before {
  content: "";
  position: absolute;
  right: -170px;
  top: -260px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(156, 117, 48, 0.13);
  border-radius: 50%;
}

.benefits-section .section-heading {
  position: relative;
  z-index: 1;
  max-width: 940px;
}

.benefits-section .eyebrow {
  color: var(--gold-dark);
}

.benefits-section .section-heading > p:last-child {
  color: #675d4f;
}

.benefits-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.benefit-card {
  min-height: 300px;
  padding: 34px 32px;
  border: 1px solid rgba(9, 8, 6, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.28);
}

.benefit-number {
  color: var(--gold-dark);
  font-family: "Mabeyn Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.15em;
}

.benefit-card h3 {
  max-width: 300px;
  margin: 62px 0 16px;
  font-family: "Mabeyn Display", Georgia, serif;
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.benefit-card p {
  margin: 0;
  color: #675d4f;
  font-size: 16px;
  line-height: 1.65;
}

.membership-flow {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  padding: 34px 36px;
  border-radius: 22px;
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 2fr);
  align-items: center;
  gap: 38px;
  background:
    radial-gradient(circle at 18% 10%, rgba(201, 154, 68, 0.18), transparent 38%),
    var(--black-soft);
  color: var(--cream);
}

.flow-intro .eyebrow {
  margin-bottom: 10px;
  color: var(--gold-light);
}

.flow-intro strong {
  font-family: "Mabeyn Display", Georgia, serif;
  font-size: 25px;
  line-height: 1.2;
}

.membership-flow ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.membership-flow li {
  min-width: 0;
}

.membership-flow li > span {
  width: 30px;
  height: 30px;
  margin-bottom: 13px;
  border: 1px solid rgba(226, 192, 127, 0.36);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  font-family: "Mabeyn Mono", monospace;
  font-size: 12px;
}

.membership-flow li p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.membership-flow li strong {
  display: block;
  margin-bottom: 4px;
  color: var(--cream);
  font-size: 16px;
  font-weight: 400;
}

.team-intro {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 132px 0;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(54px, 8vw, 120px);
}

.team-intro-mark {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 220px 220px 26px 26px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 44%, rgba(201, 154, 68, 0.19), transparent 34%),
    var(--panel);
}

.team-intro-mark::before {
  content: "";
  position: absolute;
  inset: 46px 46px -90px;
  border: 1px solid rgba(226, 192, 127, 0.12);
  border-bottom: 0;
  border-radius: 180px 180px 0 0;
}

.team-intro-mark img {
  position: relative;
  z-index: 1;
  width: min(45%, 180px);
  filter: drop-shadow(0 20px 34px rgba(0, 0, 0, 0.4));
}

.team-intro-copy h2 {
  max-width: 780px;
  margin: 0;
  font-family: "Mabeyn Display", Georgia, serif;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.team-intro-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--cream-dark);
  font-size: 19px;
  line-height: 1.65;
}

.team-note {
  max-width: 650px;
  margin-top: 30px;
  padding: 18px 22px;
  border-left: 2px solid var(--gold);
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  font-size: 16px;
}

.roles-section {
  position: relative;
  padding: 124px max(24px, calc((100vw - var(--max)) / 2)) 136px;
  background:
    linear-gradient(180deg, rgba(244, 237, 225, 0.035), transparent 16%),
    var(--black-soft);
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 840px;
  margin-bottom: 58px;
}

.section-heading h2,
.comparison h2,
.closing h2 {
  margin: 0;
  font-family: "Mabeyn Display", Georgia, serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.section-heading > p:last-child {
  max-width: 720px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.roles-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.role-card {
  position: relative;
  min-height: 680px;
  padding: clamp(28px, 4vw, 52px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 90% 7%, rgba(201, 154, 68, 0.12), transparent 30%),
    var(--panel);
}

.role-card::before {
  content: "";
  position: absolute;
  right: -85px;
  top: -165px;
  width: 280px;
  height: 360px;
  border: 1px solid rgba(226, 192, 127, 0.1);
  border-radius: 150px 150px 0 0;
}

.role-card-featured {
  background:
    radial-gradient(circle at 85% 8%, rgba(201, 154, 68, 0.26), transparent 35%),
    var(--cream);
  color: var(--black);
  border-color: transparent;
}

.role-card-featured::before {
  border-color: rgba(9, 8, 6, 0.09);
}

.role-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.role-number {
  color: var(--gold-light);
  font-family: "Mabeyn Display", Georgia, serif;
  font-size: 25px;
}

.role-card-featured .role-number {
  color: var(--gold-dark);
}

.role-intensity {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
}

.role-card-featured .role-intensity {
  border-color: rgba(9, 8, 6, 0.13);
  color: #665947;
}

.role-icon {
  width: 62px;
  height: 62px;
  margin: 42px 0 29px;
  border: 1px solid rgba(226, 192, 127, 0.28);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-light);
}

.role-card-featured .role-icon {
  color: var(--gold-dark);
  border-color: rgba(156, 117, 48, 0.35);
}

.role-icon svg {
  width: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.role-type {
  margin: 0 0 13px;
  color: var(--gold-light);
  font-family: "Mabeyn Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
}

.role-card-featured .role-type {
  color: var(--gold-dark);
}

.role-card h3 {
  max-width: 520px;
  margin: 0;
  font-family: "Mabeyn Display", Georgia, serif;
  font-size: clamp(31px, 3.2vw, 46px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.role-summary {
  max-width: 510px;
  margin: 18px 0 0;
  color: var(--cream-dark);
  font-size: 17px;
}

.role-card-featured .role-summary {
  color: #5e5446;
}

.role-card ul {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.role-card li {
  position: relative;
  padding-left: 26px;
  color: var(--cream-dark);
  font-size: 16px;
  line-height: 1.55;
}

.role-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold-light);
  transform: rotate(45deg);
}

.role-card-featured li {
  color: #4d453a;
}

.role-card-featured li::before {
  border-color: var(--gold-dark);
}

.role-note {
  margin: 28px 0 26px;
  padding: 16px 18px;
  border-left: 2px solid var(--gold);
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.role-card-featured .role-note {
  background: rgba(9, 8, 6, 0.04);
  color: #665947;
}

.role-card a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.copy-role {
  min-height: 51px;
  margin-top: auto;
  padding: 13px 0;
  border: 0;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  font-size: 15px;
  text-align: left;
}

.role-card-featured .copy-role {
  border-color: rgba(9, 8, 6, 0.13);
  color: var(--black);
}

.copy-role span {
  color: var(--gold-light);
  font-size: 20px;
  transition: transform 180ms ease;
}

.role-card-featured .copy-role span {
  color: var(--gold-dark);
}

.copy-role:hover span {
  transform: translate(3px, -3px);
}

.comparison,
.experience-section {
  padding: 124px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--cream);
  color: var(--black);
}

.experience-section .section-heading {
  margin-bottom: 50px;
}

.experience-section .eyebrow {
  color: var(--gold-dark);
}

.experience-section .section-heading > p:last-child {
  color: #675d4f;
}

.comparison-heading {
  margin-bottom: 50px;
}

.comparison .eyebrow {
  color: var(--gold-dark);
}

.table-wrap {
  overflow-x: auto;
  border-top: 1px solid rgba(9, 8, 6, 0.22);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 820px;
}

th,
td {
  padding: 24px 18px;
  border-bottom: 1px solid rgba(9, 8, 6, 0.14);
  text-align: left;
  vertical-align: top;
}

th:first-child,
td:first-child {
  padding-left: 0;
}

th {
  color: #7f6f59;
  font-family: "Mabeyn Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

td {
  font-size: 16px;
}

td:first-child {
  font-family: "Mabeyn Display", Georgia, serif;
  font-size: 20px;
  font-weight: 600;
}

.closing {
  position: relative;
  min-height: 630px;
  padding: 132px 24px 112px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 100%, rgba(201, 154, 68, 0.15), transparent 40%),
    var(--black);
}

.closing-arch {
  position: absolute;
  top: 76px;
  left: 50%;
  width: min(720px, 74vw);
  height: 700px;
  border: 1px solid rgba(226, 192, 127, 0.12);
  border-bottom: 0;
  border-radius: 360px 360px 0 0;
  transform: translateX(-50%);
}

.closing > *:not(.closing-arch) {
  position: relative;
  z-index: 1;
}

.closing h2 {
  max-width: 900px;
}

.closing > p:not(.eyebrow) {
  max-width: 650px;
  margin: 28px 0 32px;
  color: var(--muted);
  font-size: 18px;
}

footer {
  min-height: 128px;
  padding: 28px max(24px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  letter-spacing: 0.2em;
}

.footer-brand img {
  width: 33px;
  height: 33px;
}

footer p {
  margin: 0;
  text-align: center;
}

footer > a {
  justify-self: end;
  color: var(--gold-light);
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  max-width: min(390px, calc(100vw - 44px));
  padding: 15px 18px;
  border: 1px solid rgba(226, 192, 127, 0.36);
  border-radius: 14px;
  background: rgba(20, 17, 13, 0.96);
  color: var(--cream);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
  font-size: 14px;
}

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

.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    max-width: 720px;
    margin: 0;
    aspect-ratio: 5 / 5.1;
    border-radius: 320px 320px 26px 26px;
  }

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

  .benefit-card {
    min-height: 0;
  }

  .benefit-card h3 {
    margin-top: 42px;
  }

  .membership-flow {
    grid-template-columns: 1fr;
  }

  .team-intro {
    grid-template-columns: 1fr;
  }

  .team-intro-mark {
    min-height: 420px;
  }

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

  .role-card {
    min-height: auto;
  }

  footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  footer > a {
    justify-self: center;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .site-header {
    width: min(calc(100% - 32px), var(--max));
    min-height: 78px;
  }

  .brand > img {
    width: 36px;
    height: 36px;
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .brand-copy small {
    display: none;
  }

  .header-link span {
    font-size: 14px;
  }

  .header-nav {
    gap: 0;
  }

  .header-nav > a:not(.header-link) {
    display: none;
  }

  .hero {
    width: min(calc(100% - 32px), var(--max));
    padding: 54px 0 76px;
    gap: 54px;
  }

  .major-section-title {
    margin-bottom: 28px;
    gap: 12px;
    font-size: 22px;
    letter-spacing: 0.1em;
  }

  .major-section-title::after {
    width: 42px;
  }

  .hero h1 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .hero h1 em {
    margin-left: 0;
  }

  .hero-lead {
    margin-top: 28px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    aspect-ratio: 4 / 5.15;
    border-radius: 180px 180px 22px 22px;
  }

  .benefits-section,
  .roles-section,
  .comparison,
  .experience-section {
    padding-top: 86px;
    padding-bottom: 92px;
  }

  .benefit-card {
    padding: 28px 24px;
  }

  .benefit-card h3 {
    margin-top: 34px;
  }

  .membership-flow {
    padding: 28px 24px;
  }

  .membership-flow ol {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .membership-flow li {
    display: grid;
    grid-template-columns: 32px 1fr;
    align-items: start;
    gap: 12px;
  }

  .membership-flow li > span {
    margin: 0;
  }

  .team-intro {
    width: min(calc(100% - 32px), var(--max));
    padding: 88px 0;
    gap: 48px;
  }

  .team-intro-mark {
    min-height: 360px;
    border-radius: 180px 180px 22px 22px;
  }

  .team-intro-copy > p:not(.eyebrow) {
    font-size: 17px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading > p:last-child {
    font-size: 17px;
  }

  .role-card {
    padding: 28px 24px;
    border-radius: 22px;
  }

  .role-icon {
    margin: 34px 0 25px;
  }

  .role-card h3 {
    font-size: 34px;
  }

  .role-card li {
    font-size: 15px;
  }

  .closing {
    min-height: 590px;
    padding: 100px 24px 86px;
  }

  .closing-arch {
    width: 110vw;
  }

  .closing > p:not(.eyebrow) {
    font-size: 16px;
  }
}

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

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