:root {
  color-scheme: light;
  --ink: #141312;
  --muted: #5f5b56;
  --paper: #f7f3ee;
  --panel: #ffffff;
  --line: #ddd4ca;
  --accent: #f0523d;
  --accent-dark: #bb3022;
  --gold: #e7b75f;
  --blue: #2f80ed;
  --focus: #0c65d8;
  --shadow: 0 26px 80px rgba(14, 13, 12, 0.32);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

body.modal-open {
  overflow: hidden;
}

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

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

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

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 54px);
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06));
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  line-height: 1.05;
}

.brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

nav {
  display: flex;
  gap: 6px;
}

nav a,
.header-action {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  transition: background 180ms ease, color 180ms ease;
}

nav a:hover,
.header-action:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.header-action {
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.apply-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 520px);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  min-height: 100svh;
  padding: 112px clamp(18px, 5vw, 72px) 54px;
  overflow: hidden;
  color: #fff;
}

.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  object-position: 30% center;
  filter: saturate(1.1) contrast(1.08);
}

.hero-flag {
  position: absolute;
  left: 43%;
  bottom: 17%;
  z-index: 1;
  width: 116px;
  height: 118px;
  opacity: 0;
  transform: translateY(18px) rotate(-4deg);
  animation: flag-set 900ms 2.4s ease-out forwards;
  pointer-events: none;
}

.flag-pole {
  position: absolute;
  left: 12px;
  bottom: 0;
  width: 4px;
  height: 116px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(160, 168, 178, 0.44));
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.42);
}

.flag-cloth {
  position: absolute;
  left: 15px;
  top: 8px;
  display: grid;
  place-items: center;
  width: 86px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 4px 8px 8px 4px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 38%),
    linear-gradient(90deg, var(--accent), #d93c2f);
  color: #fff;
  font-size: 1.16rem;
  font-weight: 950;
  box-shadow: 0 16px 38px rgba(240, 82, 61, 0.28);
}

.flag-cloth::after {
  position: absolute;
  right: -9px;
  top: 0;
  width: 18px;
  height: 48px;
  background: inherit;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  content: "";
}

.hero-shade {
  background:
    radial-gradient(circle at 82% 42%, rgba(47, 128, 237, 0.18) 0%, rgba(47, 128, 237, 0) 30%),
    radial-gradient(circle at 74% 50%, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.34) 26%, rgba(0, 0, 0, 0) 52%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.68) 42%, rgba(0, 0, 0, 0.42) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.08) 58%);
}

.hero-copy,
.audition-form {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 630px;
  padding-bottom: 0;
  animation: rise-in 680ms ease both;
}

.eyebrow,
.form-kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(3.6rem, 7.4vw, 8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow) {
  max-width: 540px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.65;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hero-proof li {
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
  font-weight: 760;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-link,
.primary-button,
.secondary-button,
.ghost-button,
.ghost-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 20px;
  cursor: pointer;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(240, 82, 61, 0.18);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.primary-link,
.primary-button {
  background: var(--accent);
  color: #fff;
}

.primary-link:hover,
.primary-button:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(240, 82, 61, 0.28);
}

.secondary-button,
.ghost-button,
.ghost-link {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  color: #fff;
}

.secondary-button:hover,
.ghost-button:hover,
.ghost-link:hover {
  background: rgba(255, 255, 255, 0.16);
}

.audition-form {
  display: grid;
  align-self: center;
  gap: 18px;
  width: 100%;
  min-height: 600px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(247, 243, 238, 0.98)),
    #fbfaf7;
  color: var(--ink);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.44), 0 1px 0 rgba(255, 255, 255, 0.7) inset;
  backdrop-filter: blur(18px);
  animation: form-in 760ms 120ms ease both;
}

.audition-form::before {
  display: block;
  width: 72px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  content: "";
}

.form-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.form-head h2 {
  margin: 0;
  font-size: 1.48rem;
}

.form-head output {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
}

.progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #ebe6df;
}

.progress span {
  display: block;
  width: 33.333%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transition: width 260ms ease;
}

.form-status {
  min-height: 20px;
  color: var(--accent-dark);
  font-size: 0.9rem;
  font-weight: 750;
}

.form-step {
  display: none;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.form-step.active {
  display: grid;
  gap: 14px;
  animation: step-in 260ms ease both;
}

legend {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

label {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: #2d2925;
  font-size: 0.93rem;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #cbbfb3;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 12px 13px;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

textarea {
  min-height: 132px;
  resize: vertical;
  line-height: 1.45;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--focus);
  box-shadow: 0 0 0 4px rgba(12, 101, 216, 0.12);
  outline: 0;
}

.upload-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field-help,
.optional {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 520;
  line-height: 1.45;
}

.field-help {
  margin: 0;
}

.compression-status {
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid #e5ddd4;
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.35;
}

.compression-status.working {
  border-color: rgba(47, 128, 237, 0.34);
  background: #eef5ff;
  color: #1e4f96;
}

.compression-status.ready {
  border-color: rgba(40, 135, 82, 0.32);
  background: #eefaf2;
  color: #1d6d3d;
}

.compression-status.error {
  border-color: rgba(161, 40, 28, 0.32);
  background: #fff0ed;
  color: #a1281c;
}

.compressed-download {
  color: var(--accent-dark);
  font-size: 0.88rem;
  font-weight: 850;
}

.checkbox-line {
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 12px;
  font-weight: 620;
  line-height: 1.45;
}

.checkbox-line input {
  width: 22px;
  min-height: 22px;
  margin-top: 2px;
}

.checkbox-line .error-message {
  grid-column: 2;
}

.privacy-note {
  margin: 0;
  padding: 12px 13px;
  border-left: 3px solid var(--accent);
  background: #fff4f1;
  color: #423c36;
  font-size: 0.86rem;
  line-height: 1.45;
}

.error-message {
  display: none;
  color: #a1281c;
  font-size: 0.82rem;
  font-weight: 720;
}

.invalid > .error-message,
.invalid + .error-message,
.video-error.show {
  display: block;
}

.invalid input,
.invalid select,
.invalid textarea {
  border-color: #a1281c;
}

.form-controls {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.recording-attach {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 50px;
  padding: 12px 13px;
  border: 1px dashed #bfb6ab;
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.recording-attach.ready {
  border-color: rgba(240, 82, 61, 0.62);
  background: #fff4f1;
  color: var(--ink);
  font-weight: 750;
}

.recording-attach a {
  flex: 0 0 auto;
  color: var(--accent-dark);
  font-weight: 850;
}

.form-controls .secondary-button {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.form-controls .secondary-button[disabled] {
  cursor: not-allowed;
  opacity: 0.45;
}

.section {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.45fr);
  gap: clamp(26px, 6vw, 86px);
  padding: clamp(70px, 9vw, 124px) clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.section-lead {
  max-width: 460px;
}

.section h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.benefit-list,
.proof-list,
.faq-list,
.checklist-grid,
.timeline {
  display: grid;
  gap: 0;
}

.recorder-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(28px, 6vw, 80px);
  padding: clamp(62px, 9vw, 118px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.94), rgba(13, 16, 23, 0.82)),
    url("assets/hero-background.png") center / cover;
  color: #fff;
  overflow: hidden;
}

.recorder-section::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 26% 50%, rgba(240, 82, 61, 0.16), transparent 30%),
    radial-gradient(circle at 82% 20%, rgba(47, 128, 237, 0.18), transparent 36%);
  content: "";
  pointer-events: none;
}

.recorder-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 470px;
}

.recorder-copy h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4.4vw, 4.8rem);
  line-height: 0.96;
}

.recorder-copy p:not(.eyebrow) {
  margin: 22px 0 24px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.secondary-dark-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  font-weight: 800;
}

.recorder-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: linear-gradient(145deg, #24221f, #181817);
  box-shadow: var(--shadow);
}

.lead-machine {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(26px, 6vw, 76px);
  padding: clamp(70px, 9vw, 124px) clamp(18px, 5vw, 72px);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 7, 12, 0.92), rgba(8, 12, 20, 0.74)),
    url("assets/hero-background.png") center right / cover;
}

.lead-machine::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 54%, rgba(240, 82, 61, 0.2), transparent 26%),
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.28));
  content: "";
  pointer-events: none;
}

.lead-machine > *,
.lead-points {
  position: relative;
  z-index: 1;
}

.lead-machine h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 5.5rem);
  line-height: 0.92;
}

.lead-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-self: end;
}

.lead-points article {
  min-height: 210px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(16px);
}

.lead-points span {
  display: block;
  margin-bottom: 48px;
  color: var(--accent);
  font-weight: 900;
}

.lead-points h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.lead-points p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.5;
}

.recorder-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.recorder-head h3 {
  margin: 0;
  font-size: 1.45rem;
}

.recorder-head output {
  min-width: 78px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 900;
  text-align: right;
}

.video-stage {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 35%, rgba(240, 82, 61, 0.22), transparent 32%),
    #070706;
}

.video-stage video {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scaleX(-1);
}

.video-stage:not(.camera-on)::before {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 26px;
  color: rgba(255, 255, 255, 0.68);
  text-align: center;
  content: "Camera preview will appear here";
}

.agency-marker {
  position: absolute;
  top: 18%;
  right: 12%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: min(320px, 52%);
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.68);
  color: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
}

.marker-dot {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(240, 82, 61, 0.18), 0 0 30px rgba(240, 82, 61, 0.82);
}

.marker-dot::after {
  position: absolute;
  inset: -13px;
  border: 1px solid rgba(240, 82, 61, 0.48);
  border-radius: 50%;
  content: "";
}

.agency-marker strong {
  overflow: hidden;
  font-size: 0.95rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.teleprompter {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 7px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(14px);
}

.teleprompter p,
.teleprompter strong,
.teleprompter span {
  margin: 0;
}

.teleprompter p {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.teleprompter strong {
  max-width: 760px;
  color: #fff;
  font-size: clamp(1.15rem, 2.2vw, 2rem);
  line-height: 1.12;
}

.teleprompter span {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.4;
}

.cue-progress {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.cue-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
  transition: width 250ms linear;
}

.recorder-controls,
.recording-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.secondary-button.dark {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.secondary-button.dark[disabled],
.primary-button[disabled] {
  cursor: not-allowed;
  opacity: 0.46;
  transform: none;
}

.recording-result {
  display: grid;
  gap: 12px;
}

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

.recording-result video {
  width: 100%;
  max-height: 360px;
  border-radius: 8px;
  background: #000;
}

.recorder-status {
  min-height: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.45;
}

.benefit-list article,
.proof-list figure,
.faq-list details,
.timeline article,
.checklist-grid li {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.benefit-list article {
  position: relative;
  padding-left: 22px;
}

.benefit-list article::before {
  position: absolute;
  left: 0;
  top: 28px;
  width: 5px;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--gold));
  content: "";
}

.benefit-list article:first-child,
.proof-list figure:first-child,
.faq-list details:first-child,
.timeline article:first-child,
.checklist-grid li:first-child {
  border-top: 0;
  padding-top: 0;
}

.benefit-list h3,
.timeline h3 {
  margin: 0 0 7px;
  font-size: 1.18rem;
}

.benefit-list p,
.timeline p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.proof-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.proof-list figure {
  min-height: 220px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(180deg, #fff, #fbf7f1);
  box-shadow: 0 18px 46px rgba(20, 19, 18, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.proof-list figure:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(20, 19, 18, 0.12);
}

.proof-list blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 780;
  line-height: 1.4;
}

.proof-list figcaption {
  margin-top: 34px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.faq-list details {
  padding: 22px 0;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 850;
}

.faq-list p {
  max-width: 680px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.checklist-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  list-style: none;
  counter-reset: checklist;
}

.checklist-grid li {
  min-height: 170px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(180deg, #fff, #fbf8f3);
  box-shadow: 0 14px 36px rgba(20, 19, 18, 0.06);
  font-weight: 800;
  line-height: 1.25;
  counter-increment: checklist;
  transition: transform 160ms ease, border-color 160ms ease;
}

.checklist-grid li::before {
  display: block;
  margin-bottom: 42px;
  color: var(--accent);
  content: "0" counter(checklist);
}

.checklist-grid li:hover {
  border-color: #bcb2a7;
  transform: translateY(-3px);
}

.timeline {
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.timeline article {
  border-top: 0;
  border-left: 1px solid var(--line);
  padding: 0 0 0 22px;
}

.timeline h3 {
  color: var(--ink);
}

.timeline span {
  display: block;
  margin-bottom: 60px;
  color: var(--accent);
  font-weight: 900;
}

.final-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(46px, 7vw, 88px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(9, 8, 7, 0.95), rgba(9, 8, 7, 0.62)),
    url("assets/hero-background.png") center / cover;
  color: #fff;
}

.orientation-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 6vw, 80px);
  padding: clamp(70px, 9vw, 124px) clamp(18px, 5vw, 72px);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(6, 8, 14, 0.94), rgba(11, 18, 30, 0.76)),
    url("assets/hero-background.png") center right / cover;
}

.orientation-section[hidden] {
  display: none;
}

.orientation-section::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 45%, rgba(240, 82, 61, 0.18), transparent 28%),
    radial-gradient(circle at 78% 20%, rgba(47, 128, 237, 0.18), transparent 34%);
  content: "";
  pointer-events: none;
}

.orientation-copy,
.orientation-panel {
  position: relative;
  z-index: 1;
}

.orientation-copy {
  align-self: center;
  max-width: 600px;
}

.orientation-copy h2 {
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 5.6rem);
  line-height: 0.92;
}

.orientation-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.orientation-panel {
  display: grid;
  gap: 16px;
}

.session-card,
.confirm-card,
.training-card,
.orientation-steps li {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.session-card {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
}

.session-card h3,
.confirm-card h3 {
  margin: 0;
  font-size: 1.35rem;
}

.session-card p,
.confirm-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.session-card span {
  flex: 0 0 auto;
  max-width: 220px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(240, 82, 61, 0.18);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 850;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.confirm-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
}

.training-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
}

.training-card h3 {
  margin: 0;
  font-size: 1.35rem;
}

.training-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.orientation-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.orientation-steps li {
  min-height: 220px;
  padding: 20px;
}

.orientation-steps li.active {
  border-color: rgba(240, 82, 61, 0.56);
  background: rgba(240, 82, 61, 0.14);
}

.orientation-steps span {
  display: block;
  margin-bottom: 42px;
  color: var(--accent);
  font-weight: 900;
}

.orientation-steps strong {
  display: block;
  font-size: 1.12rem;
}

.orientation-steps p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.48;
}

.guide-dialog {
  width: min(560px, calc(100vw - 32px));
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: transparent;
}

.guide-dialog::backdrop {
  background: rgba(0, 0, 0, 0.58);
}

.guide-dialog form {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 28px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.guide-dialog h2 {
  margin: 0;
  font-size: 2rem;
}

.guide-dialog p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.script-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.5;
}

.script-list strong {
  color: var(--ink);
}

.close-button {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes form-in {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes step-in {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes flag-set {
  0% {
    opacity: 0;
    transform: translateY(24px) rotate(-10deg) scale(0.92);
  }
  70% {
    opacity: 1;
    transform: translateY(-4px) rotate(2deg) scale(1.03);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(-4deg) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }

  .hero-flag {
    opacity: 1;
    transform: translateY(0) rotate(-4deg);
  }
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .apply-hero {
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: 104px;
  }

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

  .audition-form {
    max-width: 720px;
  }

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

  .recorder-section {
    grid-template-columns: 1fr;
  }

  .lead-machine {
    grid-template-columns: 1fr;
  }

  .orientation-section {
    grid-template-columns: 1fr;
  }

  .lead-points {
    grid-template-columns: 1fr;
  }

  .orientation-steps {
    grid-template-columns: 1fr;
  }

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

  .proof-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
    padding: 10px 14px;
  }

  .brand small {
    display: none;
  }

  .header-action {
    min-height: 42px;
    padding-inline: 13px;
  }

  .apply-hero {
    min-height: auto;
    padding: 94px 14px 36px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.58) 48%, rgba(0, 0, 0, 0.78) 100%);
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 18vw, 4.8rem);
  }

  .hero-flag {
    left: auto;
    right: 18px;
    bottom: 42%;
    transform: scale(0.82) rotate(-4deg);
    transform-origin: bottom right;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .audition-form {
    min-height: 0;
    padding: 20px;
  }

  .form-head {
    display: grid;
  }

  .upload-row,
  .timeline,
  .checklist-grid {
    grid-template-columns: 1fr;
  }

  .recording-attach {
    display: grid;
  }

  .recorder-section {
    padding: 54px 14px;
  }

  .lead-machine {
    padding: 54px 14px;
  }

  .orientation-section {
    padding: 54px 14px;
  }

  .session-card,
  .confirm-card,
  .training-card {
    display: grid;
  }

  .lead-points article {
    min-height: 0;
  }

  .lead-points span {
    margin-bottom: 28px;
  }

  .recorder-panel {
    padding: 14px;
  }

  .recorder-head {
    display: grid;
  }

  .recorder-head output {
    text-align: left;
  }

  .video-stage {
    min-height: 520px;
  }

  .teleprompter {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 14px;
  }

  .agency-marker {
    top: 12px;
    right: 10px;
    left: 10px;
    max-width: none;
  }

  .recorder-controls .primary-button,
  .recorder-controls .secondary-button,
  .recording-actions .primary-link,
  .recording-actions .secondary-button {
    width: 100%;
  }

  .checklist-grid li {
    min-height: 128px;
  }

  .checklist-grid li::before,
  .timeline span {
    margin-bottom: 28px;
  }

  .section {
    padding: 54px 18px;
  }

  .timeline article {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 24px 0 0;
  }

  .timeline article:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .final-cta {
    display: grid;
  }
}
