:root {
  --ink: #171412;
  --ink-soft: #4b403a;
  --paper: #f7f1e8;
  --paper-bright: #fffaf2;
  --line: rgba(23, 20, 18, 0.16);
  --teal: #1c6868;
  --teal-dark: #0f4547;
  --copper: #b96f3f;
  --copper-dark: #92522e;
  --plum: #5f3e56;
  --magenta: #a33d75;
  --sage: #cbd4c3;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(23, 20, 18, 0.18);
  color-scheme: light;
  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[data-locked="true"] {
  overflow: hidden;
}

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--paper-bright);
  background: rgba(23, 20, 18, 0.58);
  border-bottom: 1px solid rgba(255, 250, 242, 0.18);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  color: var(--paper-bright);
  background: var(--teal);
  border: 1px solid rgba(255, 250, 242, 0.28);
  border-radius: 8px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

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

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(14px, 3vw, 30px);
  color: rgba(255, 250, 242, 0.82);
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--paper-bright);
}

.hero {
  min-height: 96svh;
  display: grid;
  align-items: end;
  padding: 124px clamp(18px, 5vw, 72px) 54px;
  color: var(--paper-bright);
  background-image:
    linear-gradient(180deg, rgba(8, 7, 7, 0.18), rgba(8, 7, 7, 0.26) 48%, rgba(8, 7, 7, 0.88)),
    linear-gradient(90deg, rgba(8, 7, 7, 0.95), rgba(8, 7, 7, 0.74) 42%, rgba(8, 7, 7, 0.16) 76%),
    url("assets/studio-hero-vegas.png");
  background-position: center;
  background-size: cover;
}

.hero-content {
  width: min(880px, 100%);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 9px 13px;
  color: var(--paper-bright);
  background: rgba(255, 250, 242, 0.1);
  border: 1px solid rgba(255, 250, 242, 0.28);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.hero-badges span:first-child {
  background: rgba(185, 111, 63, 0.9);
  border-color: rgba(255, 250, 242, 0.22);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: 6.8rem;
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 3.7rem;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.12rem;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 700px;
  color: rgba(255, 250, 242, 0.84);
  font-size: 1.22rem;
  line-height: 1.65;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.62);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--teal);
  border-color: var(--teal);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.button-secondary {
  color: var(--paper-bright);
  background: rgba(255, 250, 242, 0.08);
  border-color: rgba(255, 250, 242, 0.44);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 250, 242, 0.16);
}

.button-ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.hero .button-primary {
  background: var(--copper);
  border-color: var(--copper);
  box-shadow: 0 14px 34px rgba(185, 111, 63, 0.32);
}

.hero .button-primary:hover,
.hero .button-primary:focus-visible {
  background: var(--copper-dark);
  border-color: var(--copper-dark);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 790px;
  margin: 42px 0 0;
  background: rgba(255, 250, 242, 0.16);
  border: 1px solid rgba(255, 250, 242, 0.26);
  backdrop-filter: blur(14px);
}

.hero-stats div {
  min-height: 112px;
  padding: 20px;
  background: rgba(23, 20, 18, 0.45);
}

.hero-stats dt {
  margin-bottom: 8px;
  color: var(--paper-bright);
  font-size: 1.22rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 0;
  color: rgba(255, 250, 242, 0.76);
  line-height: 1.4;
}

.hero-casting-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 0;
  width: min(790px, 100%);
  margin-top: 18px;
  color: rgba(255, 250, 242, 0.82);
  border-top: 1px solid rgba(255, 250, 242, 0.2);
  border-bottom: 1px solid rgba(255, 250, 242, 0.2);
}

.hero-casting-strip span {
  padding: 13px 18px;
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
  border-right: 1px solid rgba(255, 250, 242, 0.2);
}

.hero-casting-strip span:first-child {
  padding-left: 0;
}

.hero-casting-strip span:last-child {
  border-right: 0;
}

.section {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  min-width: 0;
}

.intro-band {
  background: var(--paper-bright);
}

.inclusion-section {
  background: #efe8f0;
}

.launch-section {
  color: var(--paper-bright);
  background:
    linear-gradient(135deg, rgba(23, 20, 18, 0.96), rgba(95, 62, 86, 0.94)),
    var(--ink);
}

.privacy-promise-section {
  background: #e2eee9;
}

.timeline-section {
  background: #f5eee5;
}

.niches-section {
  background: var(--paper-bright);
}

.intro-grid,
.launch-grid,
.privacy-promise-grid,
.timeline-grid,
.split-grid,
.application-grid,
.opportunity-grid,
.inclusion-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: start;
}

.intro-grid p,
.section-heading p,
.sticky-copy p,
.application-copy p,
.opportunity-copy p,
.launch-copy p,
.privacy-promise-grid p,
.timeline-copy p,
.inclusion-grid p,
.faq-grid p {
  color: var(--ink-soft);
  line-height: 1.75;
  font-size: 1.02rem;
}

.inclusion-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.inclusion-points span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 11px 15px;
  color: var(--ink);
  background: var(--paper-bright);
  border: 1px solid rgba(23, 20, 18, 0.13);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(23, 20, 18, 0.06);
  font-size: 0.92rem;
  font-weight: 850;
}

.section-heading {
  width: min(720px, 100%);
  margin-bottom: 34px;
}

.compact-heading {
  width: min(620px, 100%);
}

.role-grid,
.standards-grid,
.faq-grid,
.prep-grid,
.niche-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.role-card,
.standards-grid article,
.prep-grid article,
.niche-grid article,
.pathway-grid article,
.promise-list article,
.timeline-list li,
.earnings-panel,
.faq-grid details,
.application-form,
.age-panel {
  background: var(--paper-bright);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 45px rgba(23, 20, 18, 0.08);
}

.role-card {
  min-height: 280px;
  padding: 28px;
}

.role-card p,
.standards-grid p,
.niche-grid p,
.pathway-grid p,
.promise-list p,
.timeline-list p {
  color: var(--ink-soft);
  line-height: 1.65;
}

.card-number {
  display: block;
  margin-bottom: 54px;
  color: var(--copper);
  font-weight: 900;
}

.split-section {
  background: #e7eadf;
}

.opportunity-section {
  background: #171412;
  color: var(--paper-bright);
}

.opportunity-grid {
  align-items: stretch;
}

.opportunity-copy p {
  color: rgba(255, 250, 242, 0.76);
}

.opportunity-copy h2 {
  max-width: 780px;
}

.earnings-panel {
  display: grid;
  align-content: start;
  gap: 22px;
  padding: clamp(22px, 4vw, 34px);
  color: var(--ink);
}

.panel-heading h3 {
  margin-bottom: 0;
  font-size: 1.6rem;
}

.calculator-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.calculator-grid label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
}

.calculator-grid input {
  min-width: 0;
}

.earnings-result {
  display: grid;
  gap: 8px;
  padding: 22px;
  color: var(--paper-bright);
  background:
    linear-gradient(135deg, rgba(28, 104, 104, 0.96), rgba(95, 62, 86, 0.96)),
    var(--teal);
  border-radius: 8px;
}

.earnings-result span {
  color: rgba(255, 250, 242, 0.76);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.earnings-result strong {
  font-size: 3rem;
  line-height: 1;
}

.calculator-note {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.65;
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.pathway-grid article {
  min-height: 210px;
  padding: 24px;
  color: var(--ink);
}

.launch-grid {
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
}

.launch-copy {
  position: sticky;
  top: 112px;
}

.launch-copy p {
  color: rgba(255, 250, 242, 0.74);
}

.launch-list,
.promise-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.launch-list article {
  min-height: 206px;
  padding: 24px;
  background: rgba(255, 250, 242, 0.08);
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: 8px;
  box-shadow: none;
}

.launch-list span {
  display: block;
  margin-bottom: 34px;
  color: var(--copper);
  font-weight: 900;
}

.launch-list p {
  color: rgba(255, 250, 242, 0.7);
  line-height: 1.65;
}

.privacy-promise-grid {
  align-items: center;
}

.privacy-promise-grid > div:first-child p:not(.eyebrow) {
  color: var(--ink-soft);
  line-height: 1.75;
}

.promise-list article {
  min-height: 188px;
  padding: 24px;
}

.promise-list article:nth-child(2) {
  border-top: 4px solid var(--teal);
}

.promise-list article:nth-child(4) {
  border-top: 4px solid var(--copper);
}

.timeline-grid {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.timeline-copy {
  position: sticky;
  top: 112px;
}

.timeline-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: timeline;
}

.timeline-list li {
  position: relative;
  min-height: 142px;
  padding: 24px 24px 24px 88px;
  counter-increment: timeline;
}

.timeline-list li::before {
  content: counter(timeline, decimal-leading-zero);
  position: absolute;
  left: 24px;
  top: 26px;
  color: var(--teal);
  font-weight: 900;
}

.timeline-list h3 {
  margin-bottom: 8px;
}

.timeline-list p {
  margin-bottom: 0;
}

.niches-heading {
  width: min(760px, 100%);
  margin-bottom: 34px;
}

.niches-heading p {
  color: var(--ink-soft);
  line-height: 1.75;
}

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

.niche-grid article {
  min-height: 220px;
  padding: 24px;
}

.sticky-copy {
  position: sticky;
  top: 112px;
}

.process-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  position: relative;
  min-height: 148px;
  padding: 26px 28px 26px 92px;
  background: rgba(255, 250, 242, 0.72);
  border: 1px solid rgba(23, 20, 18, 0.14);
  border-radius: 8px;
  counter-increment: process;
}

.process-list li::before {
  content: counter(process, decimal-leading-zero);
  position: absolute;
  left: 26px;
  top: 28px;
  color: var(--teal);
  font-weight: 900;
}

.process-list span {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
  font-weight: 900;
}

.process-list p {
  margin-bottom: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.standards-band {
  color: var(--paper-bright);
  background: var(--ink);
}

.standards-band .eyebrow {
  color: var(--sage);
}

.standards-grid article {
  min-height: 196px;
  padding: 24px;
  color: var(--paper-bright);
  background: rgba(255, 250, 242, 0.07);
  border-color: rgba(255, 250, 242, 0.14);
  box-shadow: none;
}

.standards-grid p {
  color: rgba(255, 250, 242, 0.72);
}

.prep-section {
  background: #f4e8dd;
}

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

.prep-grid article {
  min-height: 220px;
  padding: 24px;
}

.prep-grid p {
  color: var(--ink-soft);
  line-height: 1.65;
}

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

.application-copy {
  position: sticky;
  top: 112px;
  min-width: 0;
}

.application-copy code {
  padding: 2px 6px;
  background: rgba(28, 104, 104, 0.1);
  border-radius: 4px;
  overflow-wrap: anywhere;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  background: var(--teal);
  border-radius: 50%;
}

.application-form {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 4vw, 34px);
  min-width: 0;
}

.form-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

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

label,
legend {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(23, 20, 18, 0.2);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  outline: none;
}

input,
select {
  min-height: 46px;
  padding: 0 13px;
}

textarea {
  resize: vertical;
  min-height: 116px;
  padding: 12px 13px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(28, 104, 104, 0.13);
}

.consent-fieldset {
  display: grid;
  gap: 12px;
  margin: 4px 0 0;
  padding: 18px;
  border: 1px solid rgba(23, 20, 18, 0.16);
  border-radius: 8px;
}

.niche-fieldset {
  display: grid;
  gap: 12px;
  margin: 4px 0 0;
  padding: 18px;
  border: 1px solid rgba(23, 20, 18, 0.16);
  border-radius: 8px;
}

.niche-fieldset p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

.niche-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.niche-options label {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
}

.niche-options input {
  width: 16px;
  min-height: 16px;
  margin-top: 2px;
  accent-color: var(--teal);
}

.checkbox-row {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.45;
}

.checkbox-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--teal);
}

.form-footer {
  display: grid;
  gap: 14px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--plum);
  font-weight: 750;
  line-height: 1.4;
}

.form-submit {
  width: 100%;
}

.faq-section {
  background: #eef3ee;
}

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

.faq-grid details {
  padding: 22px 24px;
}

.faq-grid summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-grid p {
  margin: 14px 0 0;
}

.site-footer {
  padding: 30px clamp(18px, 5vw, 72px);
  color: rgba(255, 250, 242, 0.72);
  background: var(--ink);
  border-top: 1px solid rgba(255, 250, 242, 0.14);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.footer-inner p {
  max-width: 560px;
  margin: 0 0 8px;
  line-height: 1.55;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 20px;
  min-width: min(100%, 260px);
}

.footer-links a {
  color: var(--paper-bright);
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  text-decoration: underline;
}

.legal-main {
  padding-top: 122px;
  background: var(--paper-bright);
}

.legal-hero {
  padding: 72px clamp(18px, 5vw, 72px) 42px;
  color: var(--paper-bright);
  background: var(--ink);
}

.legal-hero .section-inner {
  width: min(920px, 100%);
}

.legal-hero h1 {
  font-size: 5rem;
}

.legal-content {
  padding: 58px clamp(18px, 5vw, 72px) 92px;
}

.legal-content .section-inner {
  width: min(920px, 100%);
}

.legal-block {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.legal-block h2 {
  font-size: 2.35rem;
}

.legal-block p,
.legal-block li {
  color: var(--ink-soft);
  line-height: 1.75;
}

.legal-block ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
  background:
    linear-gradient(rgba(23, 20, 18, 0.78), rgba(23, 20, 18, 0.9)),
    url("assets/studio-hero-vegas.png") center / cover;
}

.age-gate.is-hidden {
  display: none;
}

.age-panel {
  width: min(520px, 100%);
  padding: clamp(24px, 5vw, 40px);
  color: var(--ink);
}

.age-panel h2 {
  font-size: 2.6rem;
}

.age-panel p:not(.eyebrow) {
  color: var(--ink-soft);
  line-height: 1.7;
}

.exit-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--paper-bright);
  background: var(--ink);
  text-align: center;
}

.exit-screen div {
  max-width: 560px;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: 92vh;
    padding-top: 150px;
    background-position: 62% center;
  }

  h1 {
    font-size: 5rem;
  }

  h2 {
    font-size: 3rem;
  }

  .hero-copy {
    font-size: 1.12rem;
  }

  .intro-grid,
  .launch-grid,
  .privacy-promise-grid,
  .timeline-grid,
  .split-grid,
  .application-grid,
  .opportunity-grid,
  .inclusion-grid {
    grid-template-columns: 1fr;
  }

  .role-grid,
  .standards-grid,
  .prep-grid,
  .niche-grid,
  .launch-list,
  .promise-list,
  .pathway-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sticky-copy,
  .launch-copy,
  .timeline-copy,
  .application-copy {
    position: static;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: auto;
    padding: 12px 16px;
  }

  .brand small {
    display: none;
  }

  .nav-links {
    gap: 8px;
    font-size: 0.84rem;
  }

  .hero {
    min-height: auto;
    padding: 136px 18px 42px;
    background-position: 58% center;
  }

  h1 {
    font-size: 3.45rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero-badges span {
    min-height: 34px;
    font-size: 0.74rem;
  }

  .hero-copy {
    font-size: 1.04rem;
  }

  .hero-stats,
  .role-grid,
  .standards-grid,
  .prep-grid,
  .niche-grid,
  .launch-list,
  .promise-list,
  .pathway-grid,
  .faq-grid,
  .form-pair,
  .calculator-grid,
  .niche-options {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    min-height: 88px;
  }

  .hero-casting-strip span {
    width: 50%;
    padding: 12px 10px;
  }

  .hero-casting-strip span:nth-child(2n) {
    border-right: 0;
  }

  .legal-main {
    padding-top: 94px;
  }

  .legal-hero h1 {
    font-size: 3.2rem;
  }

  .legal-block h2,
  .age-panel h2 {
    font-size: 2rem;
  }

  .earnings-result strong {
    font-size: 2.35rem;
  }

  .section {
    padding: 58px 18px;
  }

  .process-list li {
    min-height: auto;
    padding: 24px;
  }

  .timeline-list li {
    min-height: auto;
    padding: 24px;
  }

  .process-list li::before {
    position: static;
    display: block;
    margin-bottom: 16px;
  }

  .timeline-list li::before {
    position: static;
    display: block;
    margin-bottom: 16px;
  }

  .hero-actions,
  .age-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}

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