:root {
  --canvas: #f2efe8;
  --paper: #e5dfd2;
  --paper-2: #d7d0c2;
  --ink: #12130f;
  --ink-2: #1b1e18;
  --graphite: #34382e;
  --muted: #62655b;
  --soft: #62655b;
  --line: rgba(18, 19, 15, 0.16);
  --line-strong: rgba(18, 19, 15, 0.32);
  --line-dark: rgba(245, 241, 232, 0.15);
  --lime: #b7e103;
  --lime-bright: #cbf23e;
  --brass: #75623a;
  --white: #fbfaf6;
  --danger: #9f3b24;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --shell: 1240px;
  --gutter: clamp(20px, 4.4vw, 64px);
  --section: clamp(76px, 9vw, 132px);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --ease: cubic-bezier(0.16, 0.74, 0.24, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  border: 0;
}

h1,
h2,
h3,
p,
ul,
ol,
dl,
dd,
figure,
blockquote {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.038em;
  line-height: 0.98;
}

h1 em,
h2 em {
  color: var(--ink);
  font-weight: 400;
  background:
    linear-gradient(180deg, transparent 66%, var(--lime) 66%, var(--lime) 90%, transparent 90%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

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

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

.models :focus-visible,
.apply-section :focus-visible,
.site-footer :focus-visible,
.talent-banner :focus-visible {
  outline-color: var(--lime-bright);
}

[hidden] {
  display: none !important;
}

.shell {
  width: min(100%, var(--shell));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 1000;
  padding: 11px 18px;
  transform: translateY(-180%);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--brass);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 22px;
  height: 1px;
  background: currentColor;
}

.eyebrow-light {
  color: #c6b894;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  overflow: hidden;
  padding: 14px 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    color 0.35s var(--ease),
    background 0.35s var(--ease),
    border-color 0.35s var(--ease),
    transform 0.35s var(--ease);
}

.button:hover {
  transform: translateY(-2px);
  background: var(--graphite);
  border-color: var(--graphite);
}

.button > span {
  font-size: 15px;
  transition: transform 0.35s var(--ease);
}

.button:hover > span {
  transform: translate(2px, -2px);
}

.button-small {
  min-height: 42px;
  padding: 11px 18px;
  font-size: 10px;
}

.button-lime {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--ink);
}

.button-lime:hover {
  border-color: var(--lime-bright);
  background: var(--lime-bright);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-block: 7px;
  border-bottom: 1px solid var(--line-strong);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: border-color 0.3s ease;
}

.text-link span {
  font-size: 15px;
  transition: transform 0.3s var(--ease);
}

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

.text-link:hover span {
  transform: translate(2px, -2px);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  border-bottom: 1px solid transparent;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.site-header.scrolled,
.site-header.menu-active {
  border-bottom-color: var(--line);
  background: rgba(242, 239, 232, 0.92);
  box-shadow: 0 16px 34px rgba(18, 19, 15, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  min-height: 78px;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  width: max-content;
  line-height: 1;
}

.wordmark-logo {
  width: 132px;
  height: auto;
  mix-blend-mode: multiply;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.3vw, 34px);
}

.desktop-nav a {
  position: relative;
  padding-block: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--ink);
  transition: transform 0.35s var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--ink);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  cursor: pointer;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 1px;
  background: var(--ink);
  transition: transform 0.3s var(--ease);
}

.menu-toggle span:first-child {
  transform: translateY(-3px);
}

.menu-toggle span:last-child {
  transform: translateY(3px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 78px 0 0;
  overflow-y: auto;
  background: var(--canvas);
}

.mobile-menu nav {
  display: grid;
  padding-top: 20px;
  padding-bottom: 36px;
}

.mobile-menu nav > a:not(.button) {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding-block: 17px;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(27px, 7vw, 40px);
  line-height: 1;
}

.mobile-menu nav > a > span {
  color: var(--brass);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.mobile-menu .button {
  margin-top: 28px;
}

.nojs-nav {
  display: none;
}

/* Hero */
.hero {
  min-height: 100svh;
  padding-top: 112px;
  background:
    radial-gradient(circle at 7% 14%, rgba(183, 225, 3, 0.12), transparent 23%),
    var(--canvas);
}

.hero-grid {
  display: grid;
  min-height: calc(100svh - 172px);
  grid-template-columns: minmax(0, 0.92fr) minmax(400px, 1.08fr);
  align-items: center;
  gap: clamp(42px, 6vw, 90px);
  padding-block: 44px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  max-width: 9.5ch;
  margin-top: 24px;
  font-size: clamp(60px, 7.1vw, 108px);
  line-height: 0.91;
}

.hero-copy h1 em {
  display: inline-block;
  font-style: italic;
}

.hero-lead {
  max-width: 54ch;
  margin-top: 32px;
  color: var(--muted);
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
}

.hero-proof {
  display: grid;
  max-width: 600px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.hero-proof li {
  display: grid;
  gap: 2px;
  padding-inline: 18px;
  border-right: 1px solid var(--line);
}

.hero-proof li:first-child {
  padding-left: 0;
}

.hero-proof li:last-child {
  border: 0;
}

.hero-proof strong {
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero-proof span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 625px;
  overflow: hidden;
  border: 1px solid rgba(18, 19, 15, 0.18);
  border-radius: var(--radius-lg);
  background: var(--ink);
  box-shadow: 0 30px 80px rgba(18, 19, 15, 0.16);
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: 4;
  top: 0;
  right: 0;
  width: 86px;
  height: 86px;
  background: var(--lime);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
  pointer-events: none;
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: 52% 28%;
  filter: saturate(1.02) contrast(1.06);
  transition: transform 1.2s var(--ease);
}

.hero-visual:hover > img {
  transform: scale(1.025);
}

.hero-visual-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 19, 15, 0.05), transparent 50%),
    linear-gradient(0deg, rgba(18, 19, 15, 0.68), transparent 55%);
}

.live-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 17px;
  background: rgba(18, 19, 15, 0.78);
  color: var(--white);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.live-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #c4c7ba;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.live-card-top span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.live-card-top i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(183, 225, 3, 0.12);
}

.live-card > p {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: 30px;
  letter-spacing: -0.025em;
}

.live-card dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.live-card dl div {
  display: grid;
  gap: 3px;
  padding-inline: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.live-card dl div:first-child {
  padding-left: 0;
}

.live-card dl div:last-child {
  border: 0;
}

.live-card dt {
  color: #9da094;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.live-card dd {
  font-family: var(--serif);
  font-size: 19px;
}

.availability-card {
  position: absolute;
  top: 24px;
  left: 24px;
  display: grid;
  gap: 2px;
  padding: 13px 16px;
  border-radius: 10px;
  background: var(--lime);
  color: var(--ink);
  transform: rotate(-2deg);
}

.availability-card span {
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.availability-card strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
}

.hero-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-block: 23px 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-note p {
  color: var(--ink);
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--ink);
  background: var(--lime);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: ticker 24s linear infinite;
}

.ticker-track span {
  padding: 20px 34px;
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 43px);
  letter-spacing: -0.025em;
  line-height: 1;
  white-space: nowrap;
}

.ticker-track i {
  font-size: 9px;
}

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

/* Section headings */
.section-heading {
  display: grid;
  max-width: 930px;
  gap: 26px;
}

.section-heading h2,
.models-header h2,
.process-copy h2,
.faq-heading h2,
.apply-copy h2 {
  font-size: clamp(44px, 5.6vw, 76px);
}

.section-heading > p:last-child {
  max-width: 58ch;
  color: var(--muted);
  font-size: 18px;
}

.section-heading-row {
  max-width: none;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  align-items: end;
}

.section-heading-row > p:last-child {
  padding-bottom: 5px;
}

/* Difference */
.difference {
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(18, 19, 15, 0.035) 50%, transparent calc(50% + 1px)),
    var(--canvas);
}

.difference-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.82fr 0.58fr;
  grid-template-rows: repeat(2, minmax(250px, auto));
  gap: 16px;
  margin-top: 62px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  padding: clamp(25px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.18);
}

.feature-card h3 {
  margin-top: 28px;
  font-size: clamp(28px, 3vw, 42px);
}

.feature-card p {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.55;
}

.card-number {
  display: inline-flex;
  width: 35px;
  height: 35px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--brass);
  font-family: var(--serif);
  font-size: 12px;
}

.feature-card-wide {
  display: grid;
  grid-column: 1 / span 2;
  grid-row: 1;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  background: var(--paper);
}

.scorecard {
  display: grid;
  align-content: center;
  gap: 20px;
  padding: 12px 4px;
}

.scorecard span {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  overflow: hidden;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(18, 19, 15, 0.2);
}

.scorecard i {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  width: var(--score);
  height: 3px;
  background: var(--lime);
}

.scorecard i.score-94 {
  --score: 94%;
}

.scorecard i.score-89 {
  --score: 89%;
}

.scorecard i.score-92 {
  --score: 92%;
}

.scorecard b {
  font-size: 13px;
  font-weight: 650;
}

.scorecard small {
  font-family: var(--serif);
  font-size: 18px;
}

.feature-card-photo {
  grid-column: 3 / span 2;
  grid-row: 1;
  min-height: 350px;
  color: var(--white);
}

.feature-card-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18, 19, 15, 0.78), transparent 68%);
}

.feature-card-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 44%;
  filter: saturate(1.02) contrast(1.06);
  transition: transform 0.8s var(--ease);
}

.feature-card-photo:hover img {
  transform: scale(1.035);
}

.feature-card-photo > div {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 30px;
  left: 32px;
}

.feature-card-photo .card-number {
  color: var(--lime);
}

.feature-card-photo h3 {
  max-width: 13ch;
  margin-top: 18px;
  color: var(--white);
}

.feature-card-dark {
  display: flex;
  min-height: 280px;
  grid-column: 1 / span 3;
  grid-row: 2;
  flex-direction: column;
  justify-content: space-between;
  background: var(--ink);
  color: var(--white);
}

.feature-card-dark .card-number {
  color: var(--lime);
}

.feature-card-dark .feature-quote {
  max-width: 21ch;
  margin-top: 32px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(31px, 3.4vw, 48px);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.feature-card-dark ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.feature-card-dark li {
  padding: 9px 13px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: #bdc0b4;
  font-size: 11px;
  letter-spacing: 0.05em;
}

.feature-card-stat {
  display: flex;
  grid-column: 4;
  grid-row: 2;
  flex-direction: column;
  background: var(--lime);
}

.feature-card-stat .card-number {
  color: var(--ink);
}

.feature-card-stat strong {
  margin-top: auto;
  padding-top: 25px;
  font-family: var(--serif);
  font-size: clamp(72px, 9vw, 118px);
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 0.75;
}

.feature-card-stat h3 {
  margin-top: 18px;
  font-size: 25px;
}

.feature-card-stat p {
  color: rgba(18, 19, 15, 0.75);
  font-size: 14px;
}

/* Models */
.models {
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 5%, rgba(183, 225, 3, 0.11), transparent 23%),
    var(--ink);
  color: var(--white);
}

.models-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 38px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-dark);
}

.models-header h2 {
  max-width: 12ch;
  margin-top: 22px;
}

.models-header h2 em {
  color: var(--lime);
  background: none;
}

.tab-switch {
  display: flex;
  padding: 5px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
}

.tab-switch button {
  min-height: 44px;
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 999px;
  background: transparent;
  color: #9fa296;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    color 0.3s ease,
    background 0.3s ease;
}

.tab-switch button[aria-selected="true"] {
  background: var(--lime);
  color: var(--ink);
}

.model-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(400px, 1.08fr);
  gap: clamp(50px, 8vw, 110px);
  padding-top: 58px;
  animation: panel-in 0.55s var(--ease);
}

@keyframes panel-in {
  from {
    opacity: 0.25;
    transform: translateY(10px);
  }
}

.model-label {
  display: inline-block;
  color: var(--lime);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.model-intro h3 {
  max-width: 11ch;
  margin-top: 25px;
  font-size: clamp(42px, 5vw, 68px);
}

.model-intro > p {
  max-width: 50ch;
  margin-top: 22px;
  color: #aeb1a5;
}

.model-price {
  display: flex;
  align-items: baseline;
  gap: 13px;
  margin-block: 32px;
}

.model-price strong {
  font-family: var(--serif);
  font-size: clamp(45px, 5vw, 67px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
}

.model-price span {
  color: #8f9287;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.model-includes {
  padding: clamp(25px, 3vw, 40px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
}

.model-includes > p {
  margin-bottom: 10px;
  color: #8f9287;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.model-includes li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding-block: 18px;
  border-bottom: 1px solid var(--line-dark);
}

.model-includes li:last-child {
  border: 0;
}

.model-includes li > span {
  color: var(--lime);
  font-family: var(--serif);
  font-size: 12px;
}

.model-includes li div {
  display: grid;
  gap: 4px;
}

.model-includes strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.model-includes small {
  color: #94978d;
  font-size: 13px;
  line-height: 1.45;
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(390px, 1.06fr);
  align-items: start;
  gap: clamp(54px, 7vw, 100px);
}

.process-copy h2 {
  max-width: 12ch;
  margin-top: 23px;
}

.process-copy > p:not(.eyebrow) {
  max-width: 51ch;
  margin-top: 24px;
  color: var(--muted);
}

.process-steps {
  display: grid;
  margin-top: 47px;
  border-top: 1px solid var(--line);
}

.process-step {
  display: grid;
  cursor: pointer;
  grid-template-columns: 38px minmax(90px, 0.55fr) 1fr;
  align-items: center;
  gap: 12px;
  padding: 20px 3px;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  transition:
    padding 0.35s var(--ease),
    background 0.35s ease;
}

.process-step:hover,
.process-step.active {
  padding-inline: 14px;
  background: rgba(183, 225, 3, 0.1);
}

.process-step > span {
  color: var(--brass);
  font-family: var(--serif);
  font-size: 12px;
}

.process-step strong {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
}

.process-step small {
  color: var(--muted);
  font-size: 12px;
}

.process-visual {
  position: sticky;
  top: 112px;
  min-height: 645px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink);
}

.process-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 86%;
  filter: saturate(1.02) contrast(1.06);
  transition:
    opacity 0.35s ease,
    transform 0.7s var(--ease),
    object-position 0.7s var(--ease);
}

.process-visual.changing > img {
  opacity: 0.3;
  transform: scale(1.03);
}

.process-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18, 19, 15, 0.8), transparent 62%);
}

.process-card {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 30px;
  left: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--white);
}

.process-card > span {
  color: var(--lime);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-card h3 {
  margin-top: 14px;
  font-size: clamp(36px, 4vw, 55px);
}

.process-card p {
  max-width: 48ch;
  margin-top: 15px;
  color: #c3c6ba;
}

/* Roles */
.roles {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.role-explorer {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 16px;
  margin-top: 58px;
}

.role-list {
  display: grid;
  align-content: start;
  border-top: 1px solid var(--line-strong);
}

.role-list button {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 3px;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 27px);
  text-align: left;
  transition:
    color 0.3s ease,
    padding 0.35s var(--ease),
    background 0.3s ease;
}

.role-list button:hover,
.role-list button.active {
  padding-inline: 16px;
  background: var(--canvas);
  color: var(--ink);
}

.role-list button span {
  color: var(--brass);
  font-family: var(--sans);
  font-size: 16px;
  transition: transform 0.3s var(--ease);
}

.role-list button:hover span,
.role-list button.active span {
  transform: translate(2px, -2px);
}

.role-detail {
  display: grid;
  min-height: 585px;
  overflow: hidden;
  grid-template-columns: 0.94fr 1.06fr;
  border-radius: var(--radius);
  background: var(--canvas);
}

.role-detail-image {
  position: relative;
  min-height: 380px;
  overflow: hidden;
}

.role-detail-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  filter: saturate(1.02) contrast(1.05);
  transition: transform 0.7s var(--ease);
}

.role-detail:hover .role-detail-image img {
  transform: scale(1.03);
}

.role-detail-image span {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(242, 239, 232, 0.9);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.role-detail-image i {
  font-style: normal;
}

.role-detail-copy {
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 54px);
}

.role-detail-copy > p:first-child {
  color: var(--brass);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.role-detail-copy h3 {
  margin-top: 20px;
  font-size: clamp(39px, 4.2vw, 58px);
}

.role-detail-copy h3 + p {
  margin-top: 20px;
  color: var(--muted);
  line-height: 1.55;
}

.role-detail-copy ul {
  display: grid;
  gap: 11px;
  margin-top: 26px;
}

.role-detail-copy li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 13px;
  font-weight: 600;
}

.role-detail-copy li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 3px rgba(183, 225, 3, 0.15);
}

.role-detail-copy .text-link {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 34px;
}

/* Proof */
.proof {
  background: var(--canvas);
}

.proof-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.carousel-controls {
  display: flex;
  align-items: center;
  gap: 15px;
}

.carousel-controls button {
  display: grid;
  width: 43px;
  height: 43px;
  cursor: pointer;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}

.carousel-controls button:hover {
  border-color: var(--ink);
  background: var(--lime);
}

.carousel-controls span {
  min-width: 57px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 13px;
  text-align: center;
}

.quote-carousel {
  min-height: 385px;
  padding-block: clamp(52px, 7vw, 90px) 48px;
}

.quote-slide {
  animation: quote-in 0.55s var(--ease);
}

@keyframes quote-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
}

.quote-slide blockquote {
  max-width: 1000px;
  font-family: var(--serif);
  font-size: clamp(38px, 5.3vw, 72px);
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.quote-slide figcaption {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 34px;
}

.quote-slide figcaption strong {
  font-size: 12px;
}

.quote-slide figcaption span {
  padding-left: 13px;
  border-left: 1px solid var(--line-strong);
  color: var(--muted);
  font-size: 12px;
}

.proof-note {
  color: var(--soft);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Talent */
.talent-banner {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  display: grid;
  align-items: center;
  background: var(--ink);
  color: var(--white);
}

.talent-images {
  position: absolute;
  inset: 0;
  opacity: 0.86;
}

.talent-images::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 19, 15, 0.96), rgba(18, 19, 15, 0.7) 34%, rgba(18, 19, 15, 0.12) 66%, rgba(18, 19, 15, 0.16)),
    linear-gradient(0deg, rgba(18, 19, 15, 0.46), transparent 55%);
}

.talent-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.04);
}

.talent-copy {
  position: relative;
  z-index: 2;
}

.talent-copy h2 {
  max-width: 9ch;
  margin-top: 24px;
  font-size: clamp(55px, 7.2vw, 98px);
}

.talent-copy h2 em {
  color: var(--lime);
  background: none;
}

.talent-copy > p:not(.eyebrow) {
  max-width: 52ch;
  margin-top: 25px;
  color: #c1c4b8;
  font-size: 18px;
}

.talent-copy .button {
  margin-top: 34px;
}

/* FAQ */
.faq-section {
  background: var(--canvas);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.73fr) minmax(0, 1.27fr);
  align-items: start;
  gap: clamp(55px, 8vw, 120px);
}

.faq-heading {
  position: sticky;
  top: 120px;
}

.faq-heading h2 {
  margin-top: 23px;
}

.faq-heading > p:last-child {
  max-width: 40ch;
  margin-top: 24px;
  color: var(--muted);
  font-size: 14px;
}

.faq-heading a {
  border-bottom: 1px solid var(--line-strong);
}

.faq {
  border-top: 1px solid var(--line-strong);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  position: relative;
  display: grid;
  cursor: pointer;
  grid-template-columns: 38px 1fr 24px;
  align-items: center;
  gap: 14px;
  padding-block: 25px;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 27px);
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary > span {
  color: var(--brass);
  font-family: var(--sans);
  font-size: 10px;
}

.faq summary i {
  position: relative;
  width: 18px;
  height: 18px;
}

.faq summary i::before,
.faq summary i::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 1px;
  width: 16px;
  height: 1px;
  background: var(--ink);
  transition: transform 0.3s ease;
}

.faq summary i::after {
  transform: rotate(90deg);
}

.faq details[open] summary i::after {
  transform: rotate(0);
}

.faq details > p {
  max-width: 64ch;
  padding: 0 40px 28px 52px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* Application */
.apply-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(183, 225, 3, 0.1), transparent 25%),
    var(--ink);
  color: var(--white);
}

.apply-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(450px, 1.22fr);
  align-items: start;
  gap: clamp(60px, 9vw, 130px);
}

.apply-copy {
  position: sticky;
  top: 120px;
}

.apply-copy h2 {
  max-width: 10ch;
  margin-top: 23px;
}

.apply-copy > p:not(.eyebrow) {
  max-width: 47ch;
  margin-top: 25px;
  color: #aeb1a5;
}

.apply-copy ul {
  display: grid;
  gap: 13px;
  margin-top: 32px;
}

.apply-copy li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #c4c7ba;
  font-size: 13px;
}

.apply-copy li span {
  color: var(--lime);
}

.apply-contact {
  display: grid;
  gap: 4px;
  margin-top: 45px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
}

.apply-contact span {
  color: #85887e;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.apply-contact a {
  width: max-content;
  font-family: var(--serif);
  font-size: 20px;
}

.application-form {
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

.form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.form-heading > div {
  display: grid;
  gap: 3px;
}

.form-heading div span {
  color: var(--brass);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-heading div strong {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
}

.form-status-dot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-status-dot::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 17px;
}

.field > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 9px;
  outline: none;
  background: var(--canvas);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.field input,
.field select {
  min-height: 49px;
  padding: 11px 13px;
}

.field textarea {
  min-height: 106px;
  resize: vertical;
  padding: 13px;
  line-height: 1.55;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--ink);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(183, 225, 3, 0.2);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #62655b;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-note {
  margin-top: 13px;
  color: var(--soft);
  font-size: 11px;
  text-align: center;
}

.form-message {
  display: none;
  margin-top: 17px;
  padding: 13px 15px;
  border-radius: 8px;
  background: rgba(183, 225, 3, 0.15);
  font-size: 13px;
}

.form-message.visible {
  display: block;
}

.form-message.error {
  background: rgba(159, 59, 36, 0.1);
  color: var(--danger);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

/* Footer */
.site-footer {
  padding-top: 75px;
  background: var(--ink-2);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.65fr repeat(3, 0.68fr);
  gap: clamp(32px, 5vw, 72px);
  padding-bottom: 70px;
}

.wordmark-light {
  padding: 7px 10px;
  border-radius: 9px;
  background: var(--white);
}

.wordmark-light .wordmark-logo {
  width: 142px;
}

.footer-brand > p {
  max-width: 43ch;
  margin-top: 23px;
  color: #91958a;
  font-size: 14px;
  line-height: 1.65;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column > span {
  margin-bottom: 8px;
  color: #c4b794;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column a {
  width: max-content;
  color: #aaada2;
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 21px 24px;
  border-top: 1px solid var(--line-dark);
  color: #979b90;
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.mobile-cta {
  position: fixed;
  right: 10px;
  bottom: 10px;
  left: 10px;
  z-index: 180;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 9px 9px 15px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: rgba(18, 19, 15, 0.94);
  color: var(--white);
  box-shadow: 0 14px 42px rgba(18, 19, 15, 0.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(140%);
  transition:
    transform 0.45s var(--ease),
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.mobile-cta.visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.mobile-cta > span {
  display: grid;
  min-width: 0;
}

.mobile-cta strong {
  overflow: hidden;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-cta small {
  color: #a6aa9e;
  font-size: 9px;
  letter-spacing: 0.05em;
}

/* Shared inner pages */
.inner-page {
  min-height: 100vh;
}

.inner-hero {
  padding-block: 158px 82px;
}

.inner-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
}

.inner-hero h1 {
  max-width: 11ch;
  margin-top: 24px;
  font-size: clamp(57px, 7.4vw, 102px);
}

.inner-hero-copy > p:not(.eyebrow) {
  max-width: 53ch;
  margin-top: 27px;
  color: var(--muted);
  font-size: 19px;
}

.inner-hero-copy .button {
  margin-top: 32px;
}

.inner-hero-visual {
  min-height: 480px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 30px 70px rgba(18, 19, 15, 0.15);
  border-radius: var(--radius-lg);
}

.inner-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  filter: saturate(1.02) contrast(1.04);
}

.opening-list {
  display: grid;
  gap: 15px;
  margin-top: 48px;
}

.opening-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 25px;
  padding: clamp(25px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.25);
  transition:
    transform 0.35s var(--ease),
    background 0.35s ease,
    border-color 0.35s ease;
}

.opening-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: var(--white);
}

.opening-card h2 {
  font-size: clamp(29px, 3.4vw, 44px);
}

.opening-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.opening-card > span {
  font-size: 27px;
  transition: transform 0.3s var(--ease);
}

.opening-card:hover > span {
  transform: translate(3px, -3px);
}

.empty-note {
  margin-top: 28px;
  color: var(--muted);
  font-size: 14px;
}

.empty-note a {
  border-bottom: 1px solid var(--line-strong);
}

.job-hero {
  padding-block: 145px 56px;
}

.job-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  align-items: end;
  gap: clamp(50px, 7vw, 100px);
}

.job-hero h1 {
  max-width: 11ch;
  margin-top: 20px;
  font-size: clamp(55px, 7vw, 96px);
}

.job-hero-copy > p:not(.eyebrow) {
  max-width: 54ch;
  margin-top: 24px;
  color: var(--muted);
  font-size: 19px;
}

.job-hero-image {
  min-height: 420px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 30px 70px rgba(18, 19, 15, 0.15);
  border-radius: var(--radius-lg);
}

.job-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% 30%;
  filter: saturate(1.02) contrast(1.05);
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.job-meta span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.job-content {
  padding-block: 54px var(--section);
  border-top: 1px solid var(--line);
}

.job-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.52fr) minmax(0, 1.48fr);
  align-items: start;
  gap: clamp(55px, 9vw, 130px);
}

.job-aside {
  position: sticky;
  top: 118px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.job-aside > span {
  color: var(--brass);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.job-aside h2 {
  margin-top: 14px;
  font-size: 31px;
}

.job-aside p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.job-aside .button {
  width: 100%;
  margin-top: 23px;
}

.job-body {
  max-width: 760px;
}

.job-section {
  padding-block: 34px;
  border-bottom: 1px solid var(--line);
}

.job-section:first-child {
  padding-top: 0;
}

.job-section h2 {
  margin-bottom: 20px;
  font-size: clamp(31px, 3.5vw, 45px);
}

.job-section p {
  margin-bottom: 15px;
  color: var(--muted);
  line-height: 1.7;
}

.job-section ul {
  display: grid;
  gap: 11px;
}

.job-section li {
  position: relative;
  padding-left: 23px;
  color: var(--muted);
}

.job-section li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
}

.job-callout {
  margin-block: 24px;
  padding: 24px;
  border-left: 3px solid var(--lime);
  background: var(--paper);
}

.job-callout p:last-child {
  margin-bottom: 0;
}

.job-application {
  background: var(--paper);
}

.job-form-shell {
  display: grid;
  grid-template-columns: minmax(250px, 0.65fr) minmax(0, 1.35fr);
  align-items: start;
  gap: clamp(50px, 8vw, 110px);
}

.job-form-copy h2 {
  margin-top: 23px;
  font-size: clamp(45px, 5.5vw, 72px);
}

.job-form-copy p {
  max-width: 42ch;
  margin-top: 21px;
  color: var(--muted);
}

.application-form .form-section-label {
  display: block;
  margin-block: 27px 17px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
  color: var(--brass);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.application-form .form-section-label:first-of-type {
  margin-top: 0;
}

.not-found {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 40px var(--gutter);
  text-align: center;
}

.not-found-content {
  max-width: 780px;
}

.not-found h1 {
  margin-top: 25px;
  font-size: clamp(64px, 11vw, 142px);
}

.not-found p {
  max-width: 44ch;
  margin: 24px auto 0;
  color: var(--muted);
}

.not-found .button {
  margin-top: 34px;
}

/* Motion enhancement: content remains visible without JS */
.has-js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
}

.has-js .reveal.in-view {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 1080px) {
  .desktop-nav {
    gap: 17px;
  }

  .desktop-nav a {
    font-size: 11px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    gap: 42px;
  }

  .hero-copy h1 {
    font-size: clamp(57px, 7.7vw, 86px);
  }

  .hero-visual {
    min-height: 565px;
  }

  .difference-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
  }

  .feature-card-wide,
  .feature-card-photo,
  .feature-card-dark,
  .feature-card-stat {
    grid-column: auto;
    grid-row: auto;
  }

  .feature-card-wide,
  .feature-card-dark {
    grid-column: span 2;
  }

  .feature-card-stat {
    min-height: 300px;
  }

  .role-detail {
    grid-template-columns: 0.78fr 1.22fr;
  }

  .footer-grid {
    grid-template-columns: 1.5fr repeat(3, 0.7fr);
    gap: 32px;
  }
}

@media (max-width: 900px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .has-js .menu-toggle {
    display: grid;
  }

  .nojs-nav {
    display: flex;
    overflow-x: auto;
    align-items: center;
    gap: 8px;
    padding: 0 var(--gutter) 12px;
    border-top: 1px solid var(--line);
    background: var(--canvas);
    scrollbar-width: none;
  }

  .nojs-nav::-webkit-scrollbar {
    display: none;
  }

  .nojs-nav a {
    flex: none;
    padding: 8px 11px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  html:not(.has-js) .hero {
    padding-top: 126px;
  }

  html:not(.has-js) .inner-hero,
  html:not(.has-js) .job-hero {
    padding-top: 152px;
  }

  .hero {
    padding-top: 92px;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 50px 36px;
  }

  .hero-copy h1 {
    max-width: 9ch;
    font-size: clamp(61px, 12vw, 92px);
  }

  .hero-visual {
    min-height: min(700px, 85vw);
  }

  .models-header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .model-panel,
  .process-grid,
  .faq-grid,
  .apply-grid,
  .inner-hero-grid,
  .job-hero-grid,
  .job-layout,
  .job-form-shell {
    grid-template-columns: 1fr;
  }

  .model-panel {
    gap: 44px;
  }

  .process-visual,
  .faq-heading,
  .apply-copy,
  .job-aside {
    position: relative;
    top: auto;
  }

  .process-visual {
    min-height: 610px;
  }

  .section-heading-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .role-explorer {
    grid-template-columns: 1fr;
  }

  .role-list {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding-block: 4px 13px;
    border: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .role-list::-webkit-scrollbar {
    display: none;
  }

  .role-list button {
    flex: none;
    scroll-snap-align: start;
    padding: 13px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 650;
    white-space: nowrap;
  }

  .role-list button:hover,
  .role-list button.active {
    padding-inline: 16px;
    border-color: var(--ink);
  }

  .role-list button span {
    display: none;
  }

  .talent-images {
    grid-template-columns: repeat(2, 1fr);
  }

  .talent-images img:nth-child(n + 3) {
    display: none;
  }

  .apply-grid {
    gap: 50px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .inner-hero-visual {
    min-height: 430px;
  }

  .job-aside {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 20px;
  }

  .job-aside > span,
  .job-aside p {
    grid-column: 1;
  }

  .job-aside .button {
    grid-row: 1 / span 3;
    grid-column: 2;
    width: auto;
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 20px;
    --section: 72px;
  }

  body {
    font-size: 16px;
  }

  .header-inner {
    min-height: 68px;
  }

  .mobile-menu {
    inset: 68px 0 0;
  }

  .wordmark-logo {
    width: 118px;
  }

  .hero {
    padding-top: 76px;
  }

  .hero-grid {
    gap: 38px;
    padding-block: 42px 30px;
  }

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

  .hero-lead {
    margin-top: 24px;
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    gap: 13px;
    margin-top: 29px;
  }

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

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

  .hero-proof {
    margin-top: 38px;
  }

  .hero-proof li {
    padding-inline: 9px;
  }

  .hero-proof strong {
    font-size: 25px;
  }

  .hero-proof span {
    font-size: 8px;
  }

  .hero-visual {
    min-height: 500px;
    border-radius: 22px;
  }

  .live-card {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 18px;
  }

  .live-card > p {
    font-size: 25px;
  }

  .live-card dl {
    gap: 8px;
  }

  .live-card dl div {
    padding-inline: 7px;
  }

  .live-card dt {
    font-size: 7px;
  }

  .live-card dd {
    font-size: 16px;
  }

  .availability-card {
    top: 14px;
    left: 14px;
  }

  .hero-note {
    display: grid;
    justify-content: start;
    font-size: 9px;
  }

  .ticker-track span {
    padding: 16px 24px;
  }

  .section-heading h2,
  .models-header h2,
  .process-copy h2,
  .faq-heading h2,
  .apply-copy h2 {
    font-size: clamp(41px, 13vw, 58px);
  }

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

  .difference-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    margin-top: 42px;
  }

  .feature-card-wide,
  .feature-card-dark {
    grid-column: auto;
  }

  .feature-card-wide {
    grid-template-columns: 1fr;
  }

  .feature-card-photo {
    min-height: 390px;
  }

  .feature-card-stat {
    min-height: 285px;
  }

  .tab-switch {
    width: 100%;
  }

  .tab-switch button {
    flex: 1;
    padding-inline: 10px;
    font-size: 9px;
  }

  .model-panel {
    grid-template-columns: 1fr;
  }

  .model-price {
    display: grid;
    gap: 6px;
  }

  .model-includes {
    padding: 20px;
  }

  .process-step {
    grid-template-columns: 30px 90px 1fr;
    gap: 8px;
  }

  .process-step strong {
    font-size: 18px;
  }

  .process-step small {
    font-size: 10px;
  }

  .process-visual {
    min-height: 500px;
    border-radius: 22px;
  }

  .process-card {
    right: 20px;
    bottom: 22px;
    left: 20px;
  }

  .role-detail {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .role-detail-image {
    min-height: 360px;
  }

  .role-detail-copy .text-link {
    margin-top: 36px;
  }

  .proof-top {
    align-items: flex-end;
  }

  .carousel-controls {
    gap: 7px;
  }

  .carousel-controls button {
    width: 37px;
    height: 37px;
  }

  .quote-carousel {
    min-height: 410px;
  }

  .quote-slide blockquote {
    font-size: clamp(35px, 11vw, 48px);
  }

  .quote-slide figcaption {
    display: grid;
    gap: 4px;
  }

  .quote-slide figcaption span {
    padding: 0;
    border: 0;
  }

  .talent-banner {
    min-height: 590px;
  }

  .talent-copy h2 {
    font-size: clamp(53px, 15vw, 76px);
  }

  .faq details > p {
    padding-left: 0;
    padding-right: 0;
  }

  .application-form {
    padding: 22px 18px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: grid;
  }

  .mobile-cta {
    display: flex;
  }

  .site-footer {
    padding-bottom: 88px;
  }

  .inner-hero,
  .job-hero {
    padding-top: 120px;
  }

  .inner-hero h1,
  .job-hero h1 {
    font-size: clamp(51px, 15vw, 73px);
  }

  .inner-hero-visual,
  .job-hero-image {
    min-height: 360px;
    border-radius: 22px;
  }

  .opening-card {
    grid-template-columns: 1fr;
  }

  .opening-card > span {
    display: none;
  }

  .job-aside {
    display: block;
  }

  .job-aside .button {
    width: 100%;
    margin-top: 20px;
  }
}

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

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

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