:root {
  --black: #050505;
  --panel: rgba(7, 7, 9, .72);
  --panel-strong: rgba(7, 7, 9, .86);
  --ink: #f5f5f5;
  --ink-strong: #fff;
  --muted: #d0d0d0;
  --subtle: #a7a7a7;
  --line: rgba(255, 255, 255, .24);
  --line-soft: rgba(255, 255, 255, .13);
  --focus: #fff;
  --video-blur: 2px;
  --page-pad: clamp(18px, 3.6vw, 48px);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
}

html {
  background: var(--black);
  overflow-x: hidden;
}

body {
  min-height: 100svh;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--black);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.home-page {
  overflow-x: hidden;
}

body.careers-page {
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 4px;
}

.background-video,
.video-shade {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.background-video {
  z-index: 0;
  inset: -32px;
  width: calc(100% + 64px);
  height: calc(100% + 64px);
  object-fit: cover;
  object-position: 42% center;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.careers-video {
  object-position: 48% center;
}

.video-shade {
  z-index: 1;
  backdrop-filter: blur(var(--video-blur));
  -webkit-backdrop-filter: blur(var(--video-blur));
  transform: translateZ(0);
}

.video-shade-home {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .28) 0 30%, rgba(0, 0, 0, .6) 64%, rgba(0, 0, 0, .9) 100%),
    radial-gradient(ellipse at 36% 48%, rgba(255, 255, 255, .055) 0, rgba(255, 255, 255, .025) 22%, rgba(0, 0, 0, 0) 52%),
    linear-gradient(rgba(0, 0, 0, .34), rgba(0, 0, 0, .72));
}

.video-shade-careers {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .62)),
    radial-gradient(ellipse at 50% 20%, rgba(255, 255, 255, .055), rgba(0, 0, 0, 0) 50%),
    linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .95));
}

.site-nav {
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 76px;
  padding: 18px var(--page-pad);
}

.site-nav,
.footage-note,
.brand-link,
.subtle-link,
.primary-link,
.studio-line,
.signal-title,
.hero-statement h1,
.careers-hero h1,
.panel-header h2,
.notify-form button {
  user-select: none;
}

.footage-note {
  position: fixed;
  z-index: 3;
  left: var(--page-pad);
  bottom: 18px;
  margin: 0;
  color: rgba(255, 255, 255, .48);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .22em;
  line-height: 1;
  text-transform: uppercase;
  pointer-events: none;
}

.brand-link,
.subtle-link,
.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  color: var(--ink);
  text-decoration: none;
}

.brand-link {
  gap: 10px;
  padding: 0 2px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.brand-link img {
  width: 18px;
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, .65));
}

.subtle-link {
  padding: 0 2px;
  color: rgba(255, 255, 255, .72);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.subtle-link:hover {
  color: var(--ink-strong);
}

.form-note a,
.form-status a,
.mail-note a {
  color: var(--ink-strong);
  text-underline-offset: .22em;
}

.form-note a:hover,
.form-status a:hover,
.mail-note a:hover {
  text-decoration-thickness: 2px;
}

.home-stage {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: clamp(34px, 8vw, 124px);
  min-height: 100svh;
  padding: 112px var(--page-pad) clamp(34px, 8vh, 76px);
  align-items: end;
}

.hero-statement {
  max-width: 780px;
  padding-bottom: clamp(8px, 5vh, 54px);
}

.signal-panel,
.join-panel {
  position: relative;
  width: 100%;
  padding: clamp(24px, 3vw, 38px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .09), transparent 28%),
    var(--panel);
  border: 1px solid var(--line-soft);
  text-align: left;
  backdrop-filter: blur(14px) saturate(.7);
}

.signal-panel {
  align-self: center;
}

.studio-line {
  margin: 0 0 22px;
  color: var(--subtle);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
}

h1,
h2,
p {
  text-wrap: pretty;
}

h1,
h2 {
  text-wrap: balance;
}

.hero-statement h1,
.careers-hero h1 {
  margin: 0;
  color: var(--ink-strong);
  font-weight: 650;
  letter-spacing: -.025em;
}

.hero-statement h1 {
  max-width: 9.5ch;
  font-size: clamp(4rem, 8.6vw, 6rem);
  line-height: .84;
}

.careers-hero h1 {
  max-width: 10ch;
  font-size: clamp(3.1rem, 7vw, 5rem);
  line-height: .92;
  letter-spacing: 0;
}

.hero-copy,
.careers-lede {
  max-width: 34rem;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.7;
}

.signal-title {
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 650;
  line-height: .94;
  letter-spacing: -.02em;
}

.signal-copy {
  max-width: 28rem;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.notify-form,
.join-form {
  display: grid;
  width: 100%;
}

.notify-form {
  grid-template-columns: minmax(0, 1fr) auto;
  margin: 28px 0 0;
}

.notify-form input,
.notify-form button,
.join-form input,
.join-form select,
.join-form textarea,
.join-form button {
  min-height: 54px;
  border: 1px solid var(--line);
}

.notify-form input,
.join-form input,
.join-form select,
.join-form textarea {
  min-width: 0;
  padding: 0 22px;
  color: var(--ink-strong);
  background: rgba(0, 0, 0, .42);
}

.notify-form input {
  border-right: 0;
}

.join-form textarea {
  min-height: 104px;
  padding-top: 16px;
  padding-bottom: 16px;
  resize: vertical;
}

.join-form select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--ink) 50%) calc(100% - 22px) 50% / 6px 6px no-repeat,
    linear-gradient(135deg, var(--ink) 50%, transparent 50%) calc(100% - 16px) 50% / 6px 6px no-repeat,
    rgba(0, 0, 0, .42);
}

.notify-form input::placeholder,
.join-form input::placeholder {
  color: #b7b7b7;
}

.notify-form input:focus,
.join-form input:focus,
.join-form select:focus,
.join-form textarea:focus {
  border-color: rgba(255, 255, 255, .72);
  background: rgba(0, 0, 0, .58);
}

.notify-form button,
.join-form button {
  padding: 0 26px;
  color: #090909;
  background: var(--ink);
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
}

.notify-form button:hover,
.join-form button:hover {
  background: var(--ink-strong);
}

.notify-form button:disabled,
.join-form button:disabled {
  opacity: .62;
  cursor: wait;
}

.join-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
  margin: 24px 0 0;
}

.join-form label {
  display: grid;
  gap: 8px;
}

.join-form span {
  color: var(--subtle);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.join-form button {
  width: 100%;
}

.join-form label:nth-of-type(5),
.join-form label:nth-of-type(6),
.join-form button,
.join-form .form-status {
  grid-column: 1 / -1;
}

.form-note {
  margin: 14px 0 0;
  color: #bdbdbd;
  font-size: .86rem;
  line-height: 1.5;
}

.form-status {
  min-height: 1.25rem;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.45;
}

.form-status.error {
  color: #ffb7b7;
}

.careers-shell {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100% - (var(--page-pad) * 2)));
  min-height: 100svh;
  margin: 0 auto;
  padding: 132px 0 72px;
}

.careers-hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(560px, 620px);
  gap: clamp(44px, 7vw, 104px);
  align-items: start;
}

.careers-copy-block {
  max-width: 760px;
  padding-top: clamp(96px, 18vh, 178px);
}

.careers-copy {
  max-width: 58ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.primary-link {
  width: fit-content;
  margin-top: 36px;
  padding: 0 28px;
  border: 1px solid var(--ink);
  color: #090909;
  background: var(--ink);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.primary-link:hover {
  background: var(--ink-strong);
}

.join-panel {
  background: var(--panel-strong);
  align-self: start;
}

.join-panel h2 {
  max-width: 12ch;
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 650;
  line-height: .98;
}

.intro-list {
  display: grid;
  gap: 0;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-soft);
}

.intro-list li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.5;
}

.mail-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.5;
}

.role-panel {
  position: relative;
  margin: clamp(64px, 10vw, 128px) 0 0;
  padding: clamp(28px, 4vw, 46px) 0 0;
  border-top: 1px solid var(--line-soft);
  max-width: none;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  border-radius: 0;
  background: transparent;
}

.panel-header {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 520px);
  align-items: end;
  gap: clamp(24px, 6vw, 86px);
  margin-bottom: 34px;
}

.panel-header h2 {
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 650;
  line-height: .95;
}

.panel-header p {
  max-width: 56ch;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.role-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 32px);
  padding: 0;
  margin: 0;
  list-style: none;
  background: transparent;
}

.role-list li {
  min-height: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink);
  background: transparent;
}

.role-list strong {
  color: var(--ink-strong);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.2;
}

.role-list span {
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.55;
}

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

@media (max-width: 1040px) {
  :root {
    --video-blur: 1px;
  }

  .home-stage {
    grid-template-columns: 1fr;
    align-content: end;
    gap: 32px;
  }

  .hero-statement {
    max-width: min(820px, 100%);
    padding-bottom: 0;
  }

  .signal-panel {
    justify-self: end;
    max-width: 520px;
  }

  .careers-hero {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .careers-copy-block {
    max-width: min(820px, 100%);
    padding-top: 24px;
  }

  .join-panel {
    justify-self: end;
    max-width: 680px;
  }
}

@media (max-width: 760px) {
  :root {
    --page-pad: 18px;
    --video-blur: .5px;
  }

  body.home-page {
    overflow-y: auto;
  }

  .background-video {
    object-position: 38% center;
  }

  .site-nav {
    min-height: 68px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .footage-note {
    display: none;
  }

  .brand-link span {
    max-width: 128px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .subtle-link {
    letter-spacing: .15em;
  }

  .home-stage {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 100svh;
    padding-top: 92px;
    padding-bottom: 24px;
    align-items: end;
  }

  .hero-statement {
    max-width: 100%;
  }

  .hero-statement h1,
  .careers-hero h1 {
    max-width: 100%;
    font-size: clamp(2.55rem, 12vw, 3.35rem);
    line-height: .9;
  }

  .signal-panel,
  .join-panel {
    padding: 24px 18px;
  }

  .careers-hero {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .notify-form {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .notify-form input,
  .notify-form button,
  .join-form input,
  .join-form select,
  .join-form textarea,
  .join-form button {
    min-height: 56px;
    border: 1px solid var(--line);
  }

  .careers-shell {
    width: calc(100% - 36px);
    padding-top: 104px;
    padding-bottom: 46px;
  }

  .panel-header {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .role-list {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .role-list li {
    max-width: 34rem;
  }
}

@media (max-width: 420px) {
  .brand-link {
    letter-spacing: .14em;
  }

  .subtle-link {
    font-size: .66rem;
  }

  .signal-panel,
  .join-panel {
    padding: 22px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before {
    content: "";
    position: fixed;
    z-index: 0;
    inset: -32px;
    background: url("/static/video/background-poser.webp") 42% center / cover no-repeat;
    pointer-events: none;
  }

  body.careers-page::before {
    background-position: 48% center;
  }

  .background-video {
    display: none;
    transform: none;
  }
}

@media (max-height: 720px) and (min-width: 761px) {
  .home-stage {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 410px);
    gap: 34px;
    align-items: end;
    padding-top: 84px;
    padding-bottom: 28px;
  }

  .hero-statement {
    padding-bottom: 0;
  }

  .hero-statement h1 {
    font-size: clamp(3.25rem, 7vw, 4.8rem);
  }

  .signal-panel {
    padding: 24px;
  }

  .studio-line {
    margin-bottom: 16px;
  }

  .hero-copy {
    margin-top: 14px;
    line-height: 1.55;
  }

  .notify-form {
    margin-top: 20px;
  }

}
