:root {
  --ink: #080705;
  --ink-soft: #100d09;
  --ink-card: #14100b;
  --cream: #f4ead8;
  --cream-soft: #e7d8c1;
  --paper: #efe1ca;
  --bronze: #a8672c;
  --bronze-light: #d49a55;
  --gold: #e2b872;
  --line: rgba(213, 160, 91, 0.28);
  --muted: #ac9c87;
  --success: #71c497;
  --danger: #f08d7c;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  --max: 1180px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 83% 4%, rgba(174, 105, 43, 0.13), transparent 27rem),
    var(--ink);
  color: var(--cream);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
.profile-card strong,
.opportunity-card strong {
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  text-transform: uppercase;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
  padding: 0 4vw;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, height 220ms ease;
}

.site-header.scrolled {
  height: 72px;
  background: rgba(8, 7, 5, 0.9);
  border-color: var(--line);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  width: max-content;
  line-height: 1;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  letter-spacing: 0.22em;
}

.brand-sub {
  margin-top: 0.4rem;
  color: var(--cream-soft);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2.2rem);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav a:not(.nav-cta) {
  color: var(--cream-soft);
  transition: color 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--gold);
}

.nav-cta {
  padding: 0.7rem 1rem;
  border: 1px solid rgba(210, 151, 81, 0.66);
  transition: background 160ms ease, color 160ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--bronze);
  color: #fff;
}

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

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--cream);
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  min-height: 760px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 50%, rgba(157, 91, 36, 0.16), transparent 25rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: auto, 84px 100%;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9rem 3vw 5rem max(4vw, calc((100vw - var(--max)) / 2));
}

.eyebrow {
  margin-bottom: 1.15rem;
  color: var(--bronze-light);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #8b521f;
}

.hero h1 {
  max-width: 690px;
  margin-bottom: 1.65rem;
  font-size: clamp(3.2rem, 6.5vw, 6.9rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.87;
}

.hero h1 em,
.manifesto h2 em {
  color: var(--bronze-light);
  font-style: normal;
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 2.25rem;
  color: var(--cream-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.65vw, 1.4rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 52px;
  padding: 0.8rem 1.35rem;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button svg {
  width: 1.2rem;
  fill: currentColor;
}

.button-primary {
  background: linear-gradient(135deg, #8d4d1d, #c58039);
  box-shadow: 0 15px 40px rgba(156, 91, 32, 0.26);
  color: #fff8eb;
}

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

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 20px 50px rgba(186, 113, 48, 0.35);
}

.text-link {
  position: relative;
  color: var(--cream-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 1px;
  background: var(--bronze-light);
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 160ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
}

.hero-visual {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  border: 0;
  background: #0a0806;
  cursor: pointer;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 51% 29%;
  transform: scale(1.02);
  filter: saturate(0.88) contrast(1.08);
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

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

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--ink) 0%, rgba(8, 7, 5, 0.2) 27%, transparent 60%),
    linear-gradient(0deg, rgba(8, 7, 5, 0.82), transparent 38%),
    radial-gradient(circle at 58% 20%, transparent 0%, rgba(6, 4, 2, 0.06) 40%, rgba(6, 4, 2, 0.62) 100%);
}

.play-orbit {
  position: absolute;
  top: 47%;
  left: 17%;
  display: none;
  width: 112px;
  height: 112px;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(245, 219, 174, 0.7);
  border-radius: 50%;
  box-shadow: 0 0 0 12px rgba(193, 119, 51, 0.08), 0 0 46px rgba(222, 155, 76, 0.36);
}

body.video-ready .play-orbit {
  display: grid;
}

.play-button {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border-radius: 50%;
  background: rgba(8, 7, 5, 0.72);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.play-button svg {
  width: 34px;
  fill: #fff4dc;
  transform: translateX(2px);
}

.video-label {
  position: absolute;
  right: 2.5rem;
  bottom: 2.3rem;
  max-width: 260px;
  color: #fff2d7;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  text-align: right;
}

.manifesto {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(86, 49, 21, 0.05) 1px, transparent 1px),
    var(--paper);
  background-size: 100% 52px;
  color: #21170e;
  text-align: center;
}

.manifesto::before,
.manifesto::after {
  content: "";
  position: absolute;
  top: 0;
  width: 16vw;
  height: 100%;
  background: linear-gradient(90deg, rgba(147, 90, 40, 0.13), transparent);
}

.manifesto::before {
  left: 0;
}

.manifesto::after {
  right: 0;
  transform: scaleX(-1);
}

.section-shell {
  width: min(var(--max), calc(100% - 8vw));
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 8.5rem) 0;
}

.manifesto .section-shell {
  position: relative;
  z-index: 2;
  max-width: 1020px;
}

.manifesto h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(3.2rem, 6.8vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.manifesto .section-shell > p:last-child {
  max-width: 700px;
  margin: 0 auto;
  color: #584635;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

.dark-section {
  position: relative;
  background:
    radial-gradient(circle at 50% 0%, rgba(148, 85, 31, 0.08), transparent 28rem),
    var(--ink);
}

.dark-section + .dark-section {
  border-top: 1px solid rgba(215, 164, 96, 0.16);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 3rem;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.section-heading > p:last-child {
  max-width: 630px;
  margin-bottom: 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}

.centered > p:last-child {
  margin-right: auto;
  margin-left: auto;
}

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

.profile-card {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 0;
  aspect-ratio: 2 / 3;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 2rem;
  overflow: hidden;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink-card);
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.profile-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: 50% 50%;
  opacity: 0.72;
  filter: saturate(0.62) contrast(1.08) brightness(0.82);
  transform: none;
  transition: opacity 420ms ease, filter 420ms ease;
}

.profile-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8, 7, 5, 0.06) 0%, rgba(8, 7, 5, 0.1) 34%, rgba(8, 7, 5, 0.96) 88%),
    linear-gradient(90deg, rgba(8, 7, 5, 0.2), transparent 50%, rgba(8, 7, 5, 0.12));
}

.profile-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, transparent 60%, rgba(197, 120, 52, 0.15));
  opacity: 0;
  transition: opacity 180ms ease;
}

.profile-card:hover,
.profile-card:focus-visible,
.profile-card.selected {
  background: #19120c;
}

.profile-card:hover .profile-photo,
.profile-card:focus-visible .profile-photo,
.profile-card.selected .profile-photo {
  opacity: 0.88;
  filter: saturate(0.78) contrast(1.08) brightness(0.92);
  transform: none;
}

.profile-card:hover::after,
.profile-card:focus-visible::after,
.profile-card.selected::after {
  opacity: 1;
}

.profile-number {
  position: absolute;
  top: 1.35rem;
  right: 1.35rem;
  z-index: 3;
  color: rgba(221, 175, 111, 0.45);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

.icon-medallion {
  position: relative;
  z-index: 2;
  display: grid;
  width: 92px;
  height: 92px;
  margin-bottom: auto;
  place-items: center;
  border: 1px solid rgba(213, 159, 91, 0.42);
  border-radius: 50%;
  color: var(--gold);
  box-shadow: inset 0 0 32px rgba(177, 104, 42, 0.12);
}

.icon-medallion svg {
  width: 44px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.profile-card strong {
  position: relative;
  z-index: 2;
  margin-bottom: 0.75rem;
  font-size: 1.7rem;
  line-height: 0.95;
}

.profile-card > span:last-child {
  position: relative;
  z-index: 2;
  color: #d5c5af;
  font-size: 0.9rem;
}

.selection-note {
  min-height: 1.6rem;
  margin: 1.25rem 0 0;
  color: var(--bronze-light);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: right;
  text-transform: uppercase;
}

.profile-result {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  margin-top: 1.75rem;
  padding: clamp(1.5rem, 3.5vw, 3rem);
  border: 1px solid rgba(218, 165, 94, 0.48);
  background:
    radial-gradient(circle at 80% 20%, rgba(171, 100, 39, 0.16), transparent 18rem),
    #110d09;
  box-shadow: var(--shadow);
}

.profile-result[hidden] {
  display: none;
}

.profile-result h3 {
  margin-bottom: 0.75rem;
  color: var(--cream);
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.profile-result p:not(.eyebrow) {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
}

.profile-mission {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: clamp(1.25rem, 3vw, 2.5rem);
  border-left: 1px solid var(--line);
}

.profile-mission small {
  margin-bottom: 0.65rem;
  color: var(--bronze-light);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.profile-mission strong {
  margin-bottom: 1.4rem;
  color: var(--cream-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.5;
}

.result-link {
  align-self: flex-start;
  padding: 0 0 0.35rem;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.opportunities .section-shell,
.process .section-shell,
.difference .section-shell {
  padding-top: clamp(4rem, 7vw, 7rem);
  padding-bottom: clamp(4rem, 7vw, 7rem);
}

.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.opportunity-card {
  position: relative;
  display: grid;
  min-height: 240px;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 1.25rem;
  padding: 1.6rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #151009, #0d0b08);
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.opportunity-card:hover,
.opportunity-card:focus-visible,
.opportunity-card.selected {
  transform: translateY(-4px);
  border-color: rgba(226, 178, 111, 0.68);
  background: linear-gradient(135deg, #1d130b, #0e0b08);
}

.opportunity-icon {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--bronze-light);
}

.opportunity-icon svg {
  width: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.opportunity-copy {
  display: flex;
  flex-direction: column;
}

.opportunity-copy small {
  margin-bottom: 0.35rem;
  color: var(--bronze-light);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.opportunity-copy strong {
  margin-bottom: 0.65rem;
  font-size: 1.75rem;
}

.opportunity-copy > span:last-child {
  color: var(--muted);
  font-size: 0.88rem;
}

.card-arrow {
  position: absolute;
  right: 1.2rem;
  bottom: 1rem;
  color: var(--bronze-light);
  font-size: 1.5rem;
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-line::before {
  content: "";
  position: absolute;
  top: 45px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bronze-light), transparent);
}

.process-line li {
  position: relative;
  z-index: 2;
  padding: 0 1.2rem;
  text-align: center;
}

.process-dot {
  display: grid;
  width: 90px;
  height: 90px;
  margin: 0 auto 1rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--ink);
  color: var(--bronze-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.process-line strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--cream);
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-line p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

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

.clarity-note span {
  padding: 1rem;
  color: var(--cream-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.clarity-note span + span {
  border-left: 1px solid var(--line);
}

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

.benefit-card {
  padding: 2.2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
  text-align: center;
}

.benefit-card + .benefit-card {
  border-left: 1px solid var(--line);
}

.benefit-symbol {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 1.35rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--bronze-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.benefit-card h3 {
  margin-bottom: 0.6rem;
  color: var(--cream);
  font-size: 1rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.benefit-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.video-band {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 7vw, 7rem) max(4vw, calc((100vw - var(--max)) / 2));
  border-top: 1px solid rgba(226, 184, 114, 0.18);
  border-bottom: 1px solid rgba(108, 68, 31, 0.38);
  background:
    radial-gradient(circle at 9% 16%, rgba(168, 103, 44, 0.2), transparent 24rem),
    radial-gradient(circle at 92% 88%, rgba(226, 184, 114, 0.08), transparent 28rem),
    linear-gradient(135deg, #120e09 0%, #080705 56%, #0d0906 100%);
}

.video-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.025), transparent);
  pointer-events: none;
}

.video-band-shell {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, var(--max));
  margin: 0 auto;
  grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1.38fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.video-band-copy h2 {
  max-width: 510px;
  margin-bottom: 1.25rem;
  color: var(--cream);
  font-size: clamp(2.55rem, 4vw, 4.7rem);
  line-height: 0.94;
  letter-spacing: -0.035em;
}

.video-band-copy > p:not(.eyebrow) {
  max-width: 460px;
  margin-bottom: 1.7rem;
  color: var(--cream-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
}

.video-band-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(226, 184, 114, 0.58);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: border-color 160ms ease, color 160ms ease;
}

.video-band-link:hover,
.video-band-link:focus-visible {
  border-color: var(--cream);
  color: var(--cream);
}

.video-embed-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(226, 184, 114, 0.54);
  background: #030303;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.52),
    0 0 0 8px rgba(226, 184, 114, 0.035);
}

.video-embed-frame::after {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.video-embed-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.application {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(580px, 1.18fr);
  gap: clamp(3rem, 8vw, 8rem);
  padding: clamp(4.5rem, 8vw, 8.5rem) max(4vw, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at 10% 90%, rgba(164, 97, 37, 0.15), transparent 22rem),
    var(--paper);
  color: #24170d;
}

.application-copy {
  align-self: start;
  position: sticky;
  top: 110px;
}

.application-copy h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(3rem, 5.5vw, 5.8rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.application-copy > p:not(.eyebrow) {
  max-width: 510px;
  color: #65503c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.application-proof {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 2rem;
  color: #6d543b;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.application-proof span::before {
  content: "✓";
  margin-right: 0.65rem;
  color: #9b5e27;
}

.application-form {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid rgba(95, 59, 27, 0.25);
  background: rgba(255, 255, 255, 0.24);
  box-shadow: 0 20px 60px rgba(81, 50, 22, 0.09);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.application-form label {
  display: block;
  margin-bottom: 1rem;
}

.application-form label > span:first-child {
  display: block;
  margin-bottom: 0.4rem;
  color: #4a3827;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.application-form label > span:first-child small {
  color: #7b6651;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.application-form input,
.application-form select,
.application-form textarea {
  width: 100%;
  border: 1px solid rgba(78, 48, 23, 0.34);
  border-radius: 0;
  outline: 0;
  background: rgba(255, 250, 240, 0.42);
  color: #21160d;
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.application-form input,
.application-form select {
  min-height: 48px;
  padding: 0.75rem 0.85rem;
}

.application-form textarea {
  min-height: 125px;
  padding: 0.85rem;
  resize: vertical;
}

.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus {
  border-color: #a86228;
  background: rgba(255, 252, 246, 0.72);
  box-shadow: 0 0 0 3px rgba(168, 98, 40, 0.12);
}

.application-form [aria-invalid="true"] {
  border-color: #b63e2c;
}

.application-form small[data-error-for],
.consent-error {
  display: block;
  min-height: 1.1rem;
  margin-top: 0.25rem;
  color: #9d3022;
  font-size: 0.7rem;
}

.consent-row {
  display: grid !important;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 0.65rem;
  color: #5a4431;
  font-size: 0.78rem;
}

.consent-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 0.15rem;
  accent-color: #9b5b25;
}

.consent-row span {
  margin: 0 !important;
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  line-height: 1.45;
  text-transform: none !important;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.button-submit {
  justify-content: space-between;
  width: 100%;
  margin-top: 0.5rem;
  padding-inline: 1.4rem;
  background: linear-gradient(90deg, #88491c, #bd7736);
  color: #fff8ea;
}

.button-submit[disabled] {
  cursor: wait;
  opacity: 0.66;
  transform: none;
}

.form-status {
  min-height: 1.4rem;
  margin: 0.8rem 0 0;
  color: #5a432e;
  font-size: 0.82rem;
  text-align: center;
}

.form-status.success {
  color: #1f7047;
}

.form-status.error {
  color: #9d3022;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 2rem;
  padding: 3.5rem max(4vw, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  background: #070604;
  color: var(--muted);
}

.site-footer p {
  margin: 1rem 0 0;
  font-family: Georgia, "Times New Roman", serif;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 470px;
  font-size: 0.82rem;
  text-align: right;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-links summary:hover,
.footer-links summary:focus-visible {
  color: var(--bronze-light);
}

.footer-links summary {
  cursor: pointer;
  list-style-position: inside;
}

.footer-links details p {
  color: var(--muted);
  font-family: inherit;
  font-size: 0.78rem;
  line-height: 1.65;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #766a5c;
  font-family: inherit !important;
  font-size: 0.72rem;
  text-align: center;
}

.video-dialog {
  width: min(1080px, calc(100vw - 2rem));
  max-width: none;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(217, 167, 101, 0.5);
  background: #080705;
  color: var(--cream);
  box-shadow: var(--shadow);
}

.video-dialog::backdrop {
  background: rgba(0, 0, 0, 0.86);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.dialog-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.35rem;
  border-bottom: 1px solid var(--line);
}

.dialog-bar small {
  color: var(--bronze-light);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dialog-bar h2 {
  margin: 0.25rem 0 0;
  font-size: 1.2rem;
}

.dialog-close {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  font-size: 1.6rem;
}

.video-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #030303;
}

.video-stage img,
.video-stage iframe {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.video-placeholder {
  position: absolute;
  inset: auto 0 0;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.94));
  text-align: center;
}

.video-placeholder strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-placeholder p {
  margin: 0;
  color: #d2c2ad;
  font-size: 0.82rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

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

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .application-copy {
    position: static;
  }

  .video-band-shell {
    grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
    gap: 2.5rem;
  }
}

@media (max-width: 820px) {
  .site-header {
    height: 72px;
    padding: 0 1.25rem;
  }

  .menu-toggle {
    display: block;
  }

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

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

  .main-nav {
    position: fixed;
    inset: 72px 0 auto;
    display: grid;
    gap: 0;
    padding: 0 1.25rem 1.25rem;
    transform: translateY(-120%);
    border-bottom: 1px solid var(--line);
    background: rgba(8, 7, 5, 0.98);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .nav-cta {
    margin-top: 0.8rem;
    padding: 0.85rem !important;
    text-align: center;
  }

  .hero {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }

  .hero-copy {
    padding: 7.5rem 1.25rem 3rem;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 15vw, 5.8rem);
  }

  .hero-visual {
    min-height: 52vh;
    max-height: 620px;
  }

  .hero-visual img {
    object-position: 50% 24%;
  }

  .hero-vignette {
    background:
      linear-gradient(0deg, var(--ink) 0%, rgba(8, 7, 5, 0.15) 35%, transparent 60%),
      radial-gradient(circle at 50% 15%, transparent, rgba(6, 4, 2, 0.48));
  }

  .play-orbit {
    top: 58%;
    left: 25%;
    width: 92px;
    height: 92px;
  }

  .play-button {
    width: 60px;
    height: 60px;
  }

  .video-label {
    right: 1.25rem;
    bottom: 1.35rem;
  }

  .section-shell {
    width: min(100% - 2.5rem, var(--max));
  }

  .opportunity-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card + .benefit-card {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .process-line {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 0;
  }

  .process-line::before {
    display: none;
  }

  .clarity-note {
    grid-template-columns: 1fr;
  }

  .clarity-note span + span {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .application {
    padding: 4.5rem 1.25rem;
  }

  .video-band {
    padding: 4.5rem 1.25rem;
  }

  .video-band-shell {
    grid-template-columns: 1fr;
  }

  .video-band-copy,
  .video-band-copy h2,
  .video-band-copy > p:not(.eyebrow) {
    max-width: 680px;
  }

  .profile-result {
    grid-template-columns: 1fr;
  }

  .profile-mission {
    padding-top: 1.5rem;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 560px) {
  .brand-name {
    font-size: 1.25rem;
  }

  .brand-sub {
    font-size: 0.5rem;
  }

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

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
    text-align: center;
  }

  .hero-actions .text-link {
    padding: 0.8rem;
  }

  .hero-visual {
    min-height: 48vh;
  }

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

  .profile-card {
    min-height: 0;
    aspect-ratio: 2 / 3;
  }

  .opportunity-card {
    min-height: 210px;
    grid-template-columns: 60px 1fr;
    padding: 1.2rem;
  }

  .opportunity-icon {
    width: 58px;
    height: 58px;
  }

  .process-line {
    grid-template-columns: 1fr;
  }

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

  .application-form {
    padding: 1.25rem;
  }

  .video-band {
    padding: 3.75rem 1.25rem 4rem;
  }

  .video-band-copy h2 {
    font-size: clamp(2.4rem, 12vw, 3.4rem);
  }

  .video-band-link {
    align-items: flex-start;
    line-height: 1.5;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 3rem 1.25rem;
  }

  .footer-links {
    text-align: left;
  }

  .copyright {
    grid-column: 1;
  }

  .dialog-bar {
    padding: 0.9rem;
  }

  .dialog-bar h2 {
    font-size: 1rem;
  }

  .video-placeholder {
    padding: 1rem;
  }

  .video-placeholder p {
    display: none;
  }
}

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

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

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