:root {
  --bg: #05070d;
  --bg-2: #08111f;
  --panel: #0d1728;
  --panel-soft: rgba(15, 25, 42, 0.78);
  --text: #ffffff;
  --muted: #c6cfda;
  --dim: #7f8998;
  --line: rgba(255, 255, 255, 0.16);
  --accent: #c79a35;
  --accent-dark: #76591d;
  --accent-soft: rgba(199, 154, 53, 0.18);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --font-brand: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  --font-display: "Oswald", "Arial Narrow", Impact, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
  --header-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(5, 7, 13, 0) 0%, #05070d 36rem),
    var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 56px;
  background: rgba(5, 7, 13, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-brand);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand strong {
  color: var(--accent);
  font-size: 18px;
}

.main-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 44px;
  font-size: 14px;
  font-weight: 800;
}

.main-nav a {
  position: relative;
  padding: 26px 0;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.mobile-nav-cta {
  display: none;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 6px;
  padding: 0 24px;
  color: #05070d;
  background: #ffffff;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 14px 36px rgba(255, 255, 255, 0.08);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.button-ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.button-small {
  min-height: 40px;
  width: fit-content;
  padding: 0 18px;
  font-size: 13px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 86svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 34px) 64px 70px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(120deg, #050505 0%, #16120c 52%, #050505 100%),
    #050505;
  background-position: center right;
  background-size: cover;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 7, 13, 0.98) 0%, rgba(5, 7, 13, 0.86) 30%, rgba(5, 7, 13, 0.26) 68%),
    linear-gradient(0deg, rgba(5, 7, 13, 0.78) 0%, rgba(5, 7, 13, 0.1) 48%, rgba(5, 7, 13, 0.44) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero h1,
.statement h2,
.section-heading h2,
.training-flow h2,
.course-bridge h2,
.course-hero h1,
.outcomes h2,
.contacts h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--font-brand);
  max-width: 760px;
  font-size: 122px;
  line-height: 0.93;
}

.hero p {
  max-width: 560px;
  margin: 28px 0 0;
  color: #f1f4f7;
  font-size: 29px;
  line-height: 1.25;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.statement {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(340px, 0.9fr);
  gap: 44px;
  align-items: center;
  padding: 86px 64px 48px;
  overflow: hidden;
  background:
    linear-gradient(120deg, #071225 0%, #06101f 46%, #05070d 100%),
    var(--bg-2);
}

.statement::before {
  position: absolute;
  top: -42px;
  left: -4%;
  width: 108%;
  height: 78px;
  content: "";
  transform: rotate(-3deg);
  background: #05070d;
}

.statement-copy {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.statement h2 {
  font-size: 60px;
  line-height: 1.04;
}

.statement h2 span {
  color: var(--accent);
}

.statement p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.statement-visual {
  position: relative;
  z-index: 1;
  min-height: 420px;
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(8, 17, 31, 0.66), rgba(8, 17, 31, 0.1)),
    url("assets/about-stage.jpg") center / cover;
  box-shadow: var(--shadow);
}

.opportunities {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 10px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.opportunities div {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 88px;
  padding: 18px 28px;
  color: var(--muted);
  border-right: 1px solid var(--line);
}

.opportunities div:last-child {
  border-right: 0;
}

.opportunities svg,
.contact-icon svg,
.video-trigger svg {
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.warmup {
  padding: 88px 64px;
  background:
    linear-gradient(150deg, #05070d 0%, #07111f 58%, #05070d 100%),
    var(--bg);
}

.promo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  max-width: 1040px;
  margin: 0 auto;
}

.promo-video,
.video-card,
.flow-step {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012));
}

.promo-video {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  overflow: hidden;
  width: 100%;
  min-height: 420px;
}

.promo-media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: #05070d;
}

.promo-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.06);
}

.promo-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 7, 13, 0.1), rgba(5, 7, 13, 0.62)),
    linear-gradient(0deg, rgba(5, 7, 13, 0.78), rgba(5, 7, 13, 0.08) 46%);
}

.play-mark {
  position: absolute;
  z-index: 1;
  left: 34px;
  bottom: 34px;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(5, 7, 13, 0.56);
  backdrop-filter: blur(12px);
}

.play-mark::before {
  position: absolute;
  top: 50%;
  left: 53%;
  width: 0;
  height: 0;
  content: "";
  transform: translate(-50%, -50%);
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 18px solid var(--accent);
}

.promo-copy {
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 18px;
  padding: 34px;
}

.promo-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.promo-copy h3,
.video-card h3,
.flow-step h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1.08;
}

.promo-copy p,
.video-card p,
.flow-copy p,
.flow-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.video-stack {
  display: grid;
  gap: 16px;
}

.video-card {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.video-card[data-has-video="true"] {
  gap: 14px;
}

.video-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  background: #05070d;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
  transition: transform 220ms ease;
}

.video-thumb::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(0deg, rgba(5, 7, 13, 0.58), rgba(5, 7, 13, 0.06)),
    radial-gradient(circle at 50% 50%, rgba(199, 154, 53, 0.16), transparent 34%);
}

.video-thumb::before {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  content: "";
  transform: translate(-42%, -50%);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 16px solid #ffffff;
}

.video-card[data-has-video="true"]:hover .video-thumb img {
  transform: scale(1.04);
}

.video-card span,
.flow-step span {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 22px;
}

.video-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 38px;
  margin-top: 2px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  padding: 0 16px;
  color: #ffffff;
  background: rgba(199, 154, 53, 0.12);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.channel-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.045);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.channel-link:hover,
.channel-link:focus-visible {
  border-color: rgba(255, 212, 92, 0.52);
  color: var(--accent-bright);
  background: rgba(255, 212, 92, 0.09);
}

.video-trigger:hover {
  border-color: rgba(199, 154, 53, 0.64);
  background: rgba(199, 154, 53, 0.2);
}

.video-trigger:disabled {
  color: var(--muted);
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.04);
}

.training-flow {
  display: grid;
  grid-template-columns: minmax(280px, 0.54fr) minmax(0, 1fr);
  gap: 42px;
  padding: 78px 64px;
  background:
    linear-gradient(180deg, #05070d 0%, #07111f 100%),
    var(--bg);
  border-top: 1px solid var(--line);
}

.flow-copy {
  max-width: 480px;
}

.training-flow h2 {
  font-size: 56px;
  line-height: 1;
}

.flow-copy p {
  margin-top: 24px;
  font-size: 17px;
}

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

.flow-step {
  min-height: 220px;
  padding: 24px;
}

.flow-step h3 {
  margin-top: 52px;
  font-size: 28px;
}

.flow-step p {
  margin-top: 12px;
}

.course-bridge {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  padding: 74px 64px;
  background:
    linear-gradient(90deg, rgba(5, 7, 13, 0.96), rgba(5, 7, 13, 0.72)),
    url("assets/course-bridge-studio.png") center / cover;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.bridge-copy {
  max-width: 760px;
}

.course-bridge h2 {
  font-size: 56px;
  line-height: 1;
}

.course-bridge p {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.course-hero {
  position: relative;
  min-height: 62svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: calc(var(--header-height) + 80px) 64px 76px;
  background: #05070d;
  border-bottom: 1px solid var(--line);
}

.course-hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 13, 0.98) 0%, rgba(5, 7, 13, 0.76) 42%, rgba(5, 7, 13, 0.18) 100%),
    linear-gradient(0deg, rgba(5, 7, 13, 0.84), rgba(5, 7, 13, 0.1) 52%),
    url("assets/course-event.jpg") center / cover;
  transform: scale(1.03);
}

.course-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 840px;
}

.course-hero h1 {
  font-size: 86px;
  line-height: 0.96;
}

.course-hero p {
  max-width: 680px;
  margin: 28px 0 0;
  color: #f1f4f7;
  font-size: 24px;
  line-height: 1.42;
}

.courses-section-page {
  padding-top: 78px;
}

.courses-section {
  padding: 82px 64px 28px;
  background:
    linear-gradient(150deg, #05070d 0%, #07172a 45%, #05070d 100%),
    var(--bg);
}

.section-heading,
.outcomes-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  max-width: 1220px;
  margin: 0 auto 26px;
}

.section-heading h2,
.outcomes h2,
.contacts h2 {
  font-size: 56px;
  line-height: 1;
}

.section-heading p,
.outcomes-heading p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.course-list {
  max-width: 1220px;
  margin: 0 auto;
}

.course {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr) 220px;
  gap: 44px;
  align-items: center;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.course:last-child {
  border-bottom: 1px solid var(--line);
}

.course-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.66;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.34);
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.course:hover .course-image img {
  transform: scale(1.05);
}

.tilt-left {
  transform: rotate(-2deg);
}

.tilt-right {
  transform: rotate(2deg);
}

.course-body h3,
.outcome h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1.08;
}

.course-body ul {
  display: grid;
  gap: 9px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
  color: #eef3f8;
}

.course-body li {
  position: relative;
  padding-left: 24px;
  line-height: 1.5;
}

.course-body li::before {
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 12px;
  height: 2px;
  content: "";
  background: var(--accent);
}

.course-body p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.course-meta {
  display: grid;
  justify-items: start;
  gap: 13px;
  color: var(--muted);
}

.course-meta strong {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1;
  white-space: nowrap;
}

.course-meta span {
  position: relative;
  padding-left: 24px;
  line-height: 1.35;
}

.course-meta span::before {
  position: absolute;
  left: 0;
  top: 1px;
  width: 14px;
  height: 14px;
  content: "";
  border: 1px solid currentColor;
  border-radius: 50%;
}

.outcomes {
  padding: 70px 64px 78px;
  background: #05070d;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1220px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.outcome {
  min-height: 250px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
}

.outcome span {
  display: block;
  margin-bottom: 56px;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 28px;
}

.outcome h3 {
  font-size: 28px;
}

.outcome p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.contacts {
  position: relative;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 42px;
  align-items: center;
  padding: 78px 64px 88px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 7, 13, 0.95), rgba(5, 7, 13, 0.76)),
    url("assets/contacts-backstage.png") center / cover;
  border-top: 1px solid var(--line);
}

.contacts::after {
  position: absolute;
  left: 64px;
  bottom: 0;
  width: 280px;
  height: 4px;
  content: "";
  background: var(--accent);
}

.contacts-copy,
.contact-actions {
  position: relative;
  z-index: 1;
}

.contacts-copy p {
  max-width: 330px;
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.contact-link {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-width: 300px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(8, 17, 31, 0.66);
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.contact-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(12, 23, 40, 0.82);
}

.contact-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  color: #071225;
  background: #ffffff;
}

.contact-link span:last-child {
  display: grid;
  gap: 6px;
  color: var(--muted);
}

.contact-link strong {
  color: #ffffff;
  font-size: 22px;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

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

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

@media (max-width: 1120px) {
  .site-header {
    padding: 0 32px;
  }

  .hero {
    padding-left: 40px;
    padding-right: 40px;
  }

  .hero h1 {
    font-size: 92px;
  }

  .hero p {
    font-size: 24px;
  }

  .statement,
  .warmup,
  .training-flow,
  .course-bridge,
  .course-hero,
  .courses-section,
  .outcomes,
  .contacts {
    padding-left: 40px;
    padding-right: 40px;
  }

  .course {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 32px;
  }

  .course-meta {
    grid-column: 2;
    grid-template-columns: auto auto auto;
    align-items: center;
  }

  .course-meta .button {
    grid-column: 1 / -1;
  }

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

  .promo-grid,
  .promo-video,
  .training-flow,
  .course-bridge {
    grid-template-columns: 1fr;
  }

  .promo-video {
    min-height: auto;
  }

  .course-hero h1 {
    font-size: 68px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 18px;
  }

  .brand {
    font-size: 24px;
  }

  .brand strong {
    font-size: 15px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: grid;
    justify-items: stretch;
    gap: 0;
    padding: 14px 18px 24px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    background: rgba(5, 7, 13, 0.98);
    border-bottom: 1px solid var(--line);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  .menu-open .main-nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 18px;
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    min-height: 82svh;
    padding: calc(var(--header-height) + 32px) 22px 50px;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 7, 13, 0.96) 0%, rgba(5, 7, 13, 0.72) 58%, rgba(5, 7, 13, 0.3) 100%),
      linear-gradient(0deg, rgba(5, 7, 13, 0.86) 0%, rgba(5, 7, 13, 0.26) 58%, rgba(5, 7, 13, 0.52) 100%);
  }

  .hero h1 {
    font-size: 58px;
    line-height: 0.96;
  }

  .hero p {
    max-width: 360px;
    font-size: 19px;
  }

  .statement {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 64px 22px 32px;
  }

  .statement h2,
  .section-heading h2,
  .training-flow h2,
  .course-bridge h2,
  .outcomes h2,
  .contacts h2 {
    font-size: 42px;
  }

  .statement-visual {
    min-height: 270px;
  }

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

  .opportunities div {
    min-height: 78px;
    padding: 16px;
  }

  .opportunities div:nth-child(2) {
    border-right: 0;
  }

  .courses-section,
  .warmup,
  .training-flow,
  .course-bridge,
  .course-hero,
  .outcomes,
  .contacts {
    padding-left: 22px;
    padding-right: 22px;
  }

  .section-heading,
  .outcomes-heading {
    display: grid;
    gap: 14px;
    margin-bottom: 10px;
  }

  .course {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 32px 0;
  }

  .course-image {
    max-width: 520px;
  }

  .course-body h3 {
    font-size: 34px;
  }

  .course-meta {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .course-meta strong {
    font-size: 38px;
  }

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

  .promo-copy,
  .video-card,
  .flow-step {
    padding: 20px;
  }

  .promo-media img {
    min-height: 260px;
  }

  .play-mark {
    left: 20px;
    bottom: 20px;
    width: 58px;
    height: 58px;
  }

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

  .flow-step {
    min-height: 180px;
  }

  .flow-step h3 {
    margin-top: 30px;
  }

  .course-bridge {
    align-items: start;
  }

  .course-hero {
    min-height: 54svh;
  }

  .course-hero h1 {
    font-size: 48px;
  }

  .course-hero p {
    font-size: 18px;
  }

  .outcome {
    min-height: 210px;
  }

  .contacts {
    grid-template-columns: 1fr;
    padding-top: 60px;
    padding-bottom: 70px;
  }

  .contact-actions {
    justify-content: stretch;
  }

  .contact-link {
    min-width: 0;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: 48px;
  }

  .hero p {
    font-size: 17px;
  }

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

  .button {
    width: 100%;
  }

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

  .opportunities div {
    border-right: 0;
  }

  .opportunities div:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .course-image {
    transform: none;
  }

  .contact-link {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
  }

  .contact-link strong {
    font-size: 18px;
  }
}

/* User-facing polish pass: neutral video wording, yellow feedback, unique section art */
:root {
  --accent-bright: #ffd45c;
  --accent-glow: rgba(255, 212, 92, 0.3);
}

.header-cta:hover,
.button:hover,
.button:focus-visible {
  border-color: rgba(255, 212, 92, 0.82);
  color: #050505;
  background: var(--accent-bright);
  box-shadow: 0 18px 46px rgba(255, 212, 92, 0.24);
}

.button-small:hover,
.courses-page .header-cta:hover {
  box-shadow: 0 18px 48px rgba(255, 212, 92, 0.3), 0 0 0 1px rgba(255, 212, 92, 0.18);
}

.section-heading-rich {
  align-items: start;
}

.section-heading-rich > div {
  max-width: 760px;
}

.section-heading-rich p {
  max-width: 620px;
  margin-top: 16px;
}

.section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(255, 212, 92, 0.34);
  border-radius: 2px;
  padding: 0 20px;
  color: #ffffff;
  background: rgba(255, 212, 92, 0.08);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    transform 420ms var(--ease-out),
    border-color 420ms var(--ease-out),
    background 420ms var(--ease-out),
    color 420ms var(--ease-out),
    box-shadow 420ms var(--ease-out);
}

.section-link:hover,
.section-link:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(255, 212, 92, 0.82);
  color: #050505;
  background: var(--accent-bright);
  box-shadow: 0 18px 46px rgba(255, 212, 92, 0.2);
}

.opportunities div {
  transition:
    transform 420ms var(--ease-out),
    color 420ms var(--ease-out),
    background 420ms var(--ease-out),
    border-color 420ms var(--ease-out);
}

.opportunities div:hover {
  transform: translateY(-5px);
  color: #ffffff;
  border-color: rgba(255, 212, 92, 0.38);
  background: linear-gradient(180deg, rgba(255, 212, 92, 0.13), rgba(255, 255, 255, 0.02));
}

.opportunities div:hover svg {
  color: var(--accent-bright);
  filter: drop-shadow(0 0 14px rgba(255, 212, 92, 0.28));
}

.warmup {
  background:
    radial-gradient(circle at 16% 6%, rgba(255, 212, 92, 0.12), transparent 30rem),
    linear-gradient(180deg, #050505 0%, #11100d 42%, #050505 100%),
    #050505;
}

.promo-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.05fr);
}

.promo-video,
.video-card,
.flow-step,
.outcome {
  transition:
    transform 420ms var(--ease-out),
    border-color 420ms var(--ease-out),
    background 420ms var(--ease-out),
    box-shadow 420ms var(--ease-out),
    color 420ms var(--ease-out);
}

.promo-video:hover,
.video-card:hover,
.flow-step:hover,
.outcome:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 212, 92, 0.38);
  background:
    linear-gradient(180deg, rgba(255, 212, 92, 0.12), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.018);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.36), 0 0 34px rgba(255, 212, 92, 0.08);
}

.promo-video {
  grid-template-columns: minmax(280px, 0.98fr) minmax(280px, 0.82fr);
}

.video-stack {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.video-card {
  min-height: auto;
}

.video-label,
.video-card span,
.flow-step span {
  color: var(--accent-bright);
}

.video-trigger:hover,
.video-trigger:focus-visible {
  border-color: rgba(255, 212, 92, 0.78);
  color: #050505;
  background: var(--accent-bright);
  box-shadow: 0 18px 42px rgba(255, 212, 92, 0.22);
}

.training-flow {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 212, 92, 0.18), transparent 25rem),
    radial-gradient(circle at 48% 100%, rgba(216, 170, 67, 0.12), transparent 30rem),
    linear-gradient(120deg, #050505 0%, #14110d 50%, #050505 100%),
    #050505;
}

.training-flow::before {
  position: absolute;
  top: 38px;
  right: 7%;
  width: 1px;
  height: calc(100% - 76px);
  content: "";
  background: linear-gradient(180deg, transparent, rgba(255, 212, 92, 0.52), transparent);
  box-shadow: 0 0 24px rgba(255, 212, 92, 0.3);
}

.flow-copy,
.flow-steps {
  position: relative;
  z-index: 1;
}

.flow-step {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255, 212, 92, 0.095), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.018);
}

.flow-step::after {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  content: "";
  border-radius: 50%;
  background: rgba(255, 212, 92, 0.16);
  box-shadow: 0 0 30px rgba(255, 212, 92, 0.22);
}

.flow-step:hover h3,
.outcome:hover h3,
.course:hover .course-body h3,
.course:hover .course-meta strong {
  color: var(--accent-bright);
}

.outcome {
  position: relative;
}

.outcome:hover {
  z-index: 1;
}

.course:hover {
  border-top-color: rgba(255, 212, 92, 0.34);
}

.course-bridge {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.7) 46%, rgba(5, 5, 5, 0.2)),
    url("assets/course-bridge-studio.png") center / cover;
}

.contacts {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.78) 46%, rgba(5, 5, 5, 0.36)),
    url("assets/contacts-backstage.png") center / cover;
}

.contact-link {
  transition:
    transform 420ms var(--ease-out),
    border-color 420ms var(--ease-out),
    background 420ms var(--ease-out),
    box-shadow 420ms var(--ease-out);
}

.contact-link:hover,
.contact-link:focus-visible {
  border-color: rgba(255, 212, 92, 0.46);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 26px 68px rgba(0, 0, 0, 0.42), 0 0 26px rgba(255, 212, 92, 0.08);
}

.contact-link:hover .contact-icon,
.contact-link:focus-visible .contact-icon {
  background: var(--accent-bright);
  box-shadow: 0 0 28px rgba(255, 212, 92, 0.24);
}

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

  .video-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .section-heading-rich {
    grid-template-columns: 1fr;
  }

  .section-link {
    width: fit-content;
  }

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

  .training-flow::before {
    display: none;
  }
}

/* Premium one-screen rhythm and motion pass */
:root {
  --bg: #050505;
  --bg-2: #0a0a0b;
  --panel: #111112;
  --panel-soft: rgba(18, 18, 18, 0.76);
  --text: #ffffff;
  --muted: #d7d2c8;
  --dim: #8f8b83;
  --line: rgba(255, 255, 255, 0.14);
  --accent: #d8aa43;
  --accent-dark: #8b671e;
  --accent-soft: rgba(216, 170, 67, 0.16);
  --shadow: 0 38px 110px rgba(0, 0, 0, 0.54);
  --font-brand: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  --font-display: "Oswald", "Arial Narrow", Impact, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
  scroll-padding-top: var(--header-height);
}

@media (min-width: 861px) {
  html {
    scroll-snap-type: y proximity;
  }

  html.guided-scroll {
    scroll-snap-type: none;
  }

  main > section {
    scroll-snap-align: start;
    scroll-margin-top: var(--header-height);
  }
}

body {
  background:
    radial-gradient(circle at 18% 4%, rgba(216, 170, 67, 0.12), transparent 25rem),
    radial-gradient(circle at 92% 32%, rgba(92, 42, 96, 0.16), transparent 28rem),
    #050505;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 84%, transparent);
}

.site-header {
  height: 78px;
  padding: 0 clamp(22px, 4vw, 64px);
  background: rgba(5, 5, 5, 0.64);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(22px) saturate(1.15);
}

.brand {
  gap: 10px;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: 0;
}

.brand strong {
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.main-nav {
  gap: clamp(22px, 3.4vw, 54px);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-cta,
.button {
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 2px;
  padding: 0 28px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 18px 46px rgba(255, 255, 255, 0.08);
  transition:
    transform 420ms var(--ease-out),
    border-color 420ms var(--ease-out),
    background 420ms var(--ease-out),
    color 420ms var(--ease-out),
    box-shadow 420ms var(--ease-out);
}

.header-cta:hover,
.button:hover,
.contact-link:hover,
.video-trigger:hover {
  transform: translateY(-4px);
}

.hero,
.statement,
.warmup,
.training-flow,
.outcomes,
.course-bridge,
.contacts,
.course-hero,
.courses-section {
  min-height: calc(100svh - var(--header-height));
  padding-top: clamp(86px, 10vh, 128px);
  padding-bottom: clamp(64px, 8vh, 104px);
}

.hero {
  min-height: 100svh;
  padding-left: clamp(22px, 5vw, 78px);
  padding-right: clamp(22px, 5vw, 78px);
  border-bottom: 0;
  isolation: isolate;
}

.hero-media {
  background-position: 64% center;
  transform: scale(1.09);
  transition: transform 1800ms var(--ease-out), filter 1800ms var(--ease-out);
  filter: saturate(0.96) contrast(1.1);
}

.hero.is-active-section .hero-media {
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.99) 0%, rgba(5, 5, 5, 0.72) 34%, rgba(5, 5, 5, 0.12) 70%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.12) 44%, rgba(5, 5, 5, 0.52) 100%);
}

.hero-content {
  max-width: 860px;
}

.hero h1 {
  max-width: 880px;
  font-size: clamp(82px, 14vw, 178px);
  line-height: 0.82;
  letter-spacing: 0;
}

.hero p {
  max-width: 650px;
  margin-top: 30px;
  color: #fff7e6;
  font-size: clamp(20px, 2.8vw, 38px);
  font-weight: 800;
  line-height: 1.12;
}

.hero-actions {
  margin-top: 40px;
}

.statement {
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.8fr);
  gap: clamp(34px, 6vw, 88px);
  padding-left: clamp(22px, 5vw, 78px);
  padding-right: clamp(22px, 5vw, 78px);
  background:
    linear-gradient(135deg, #050505 0%, #101010 52%, #050505 100%),
    #050505;
}

.statement::before {
  display: none;
}

.statement-copy {
  max-width: 690px;
}

.statement h2,
.section-heading h2,
.training-flow h2,
.course-bridge h2,
.course-hero h1,
.outcomes h2,
.contacts h2 {
  font-size: clamp(62px, 8vw, 116px);
  line-height: 0.86;
}

.statement h2 span {
  display: block;
  color: var(--accent);
}

.statement p,
.course-bridge p,
.contacts-copy p,
.section-heading p,
.outcomes-heading p,
.flow-copy p,
.promo-copy p,
.video-card p,
.flow-step p,
.outcome p,
.course-body p,
.course-body li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.statement-visual,
.course-image,
.promo-media,
.video-thumb {
  border-radius: 2px;
}

.statement-visual {
  min-height: min(62vh, 640px);
  background:
    linear-gradient(0deg, rgba(5, 5, 5, 0.45), rgba(5, 5, 5, 0.02)),
    url("assets/about-stage.jpg") center / cover;
  transform: translateY(24px) rotate(1.5deg);
}

.opportunities {
  margin-top: clamp(24px, 5vh, 52px);
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(16px);
}

.opportunities div {
  min-height: 104px;
  padding: 20px clamp(18px, 2.5vw, 34px);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.warmup {
  background:
    linear-gradient(180deg, #050505 0%, #12100c 42%, #050505 100%),
    #050505;
  padding-top: clamp(82px, 8vh, 104px);
  padding-bottom: clamp(54px, 6vh, 76px);
}

.section-heading,
.outcomes-heading {
  max-width: 1320px;
  margin-bottom: clamp(24px, 5vh, 56px);
}

.promo-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: clamp(22px, 3vw, 42px);
  max-width: 1320px;
}

.promo-video,
.video-card,
.flow-step,
.outcome {
  border-color: rgba(255, 255, 255, 0.13);
  border-radius: 2px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.018);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.2);
}

.promo-video {
  grid-template-columns: minmax(280px, 0.86fr) minmax(290px, 0.74fr);
  min-height: min(58vh, 580px);
}

.promo-media img {
  min-height: min(58vh, 580px);
  object-position: center;
  filter: saturate(1.05) contrast(1.08);
  transform: scale(1.02);
  transition: transform 900ms var(--ease-out);
}

.promo-video:hover .promo-media img {
  transform: scale(1.07);
}

.promo-media::after {
  background:
    linear-gradient(0deg, rgba(5, 5, 5, 0.78), rgba(5, 5, 5, 0.04) 56%),
    radial-gradient(circle at 50% 52%, rgba(216, 170, 67, 0.2), transparent 34%);
}

.promo-copy {
  justify-content: center;
  padding: clamp(24px, 4vw, 52px);
}

.promo-copy h3,
.video-card h3,
.flow-step h3,
.course-body h3,
.outcome h3 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.94;
}

.video-stack {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.video-card {
  align-content: start;
  min-height: min(58vh, 580px);
  overflow: hidden;
  padding: 0;
}

.video-card span,
.video-card h3,
.video-card p,
.video-card .video-trigger {
  margin-left: 22px;
  margin-right: 22px;
}

.video-card span {
  margin-top: 22px;
}

.video-card p {
  padding-bottom: 2px;
}

.video-thumb {
  aspect-ratio: 9 / 16;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
}

.video-thumb img {
  filter: saturate(1.04) contrast(1.08);
}

.video-thumb::after {
  background:
    linear-gradient(0deg, rgba(5, 5, 5, 0.62), transparent 48%),
    radial-gradient(circle at 52% 50%, rgba(216, 170, 67, 0.18), transparent 32%);
}

.play-mark {
  width: 84px;
  height: 84px;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(5, 5, 5, 0.5);
}

.video-trigger {
  min-height: 42px;
  margin-bottom: 22px;
  border-radius: 2px;
  color: #050505;
  background: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    transform 420ms var(--ease-out),
    border-color 420ms var(--ease-out),
    background 420ms var(--ease-out);
}

.training-flow {
  grid-template-columns: minmax(300px, 0.52fr) minmax(0, 1fr);
  align-items: center;
  background:
    linear-gradient(120deg, #050505 0%, #151111 50%, #050505 100%),
    #050505;
}

.flow-steps {
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.flow-step {
  min-height: 300px;
  border-top: 0;
  border-left: 0;
  border-radius: 0;
  padding: clamp(24px, 3vw, 38px);
}

.flow-step span,
.video-card span,
.outcome span {
  color: var(--accent);
  font-size: 24px;
  letter-spacing: 0.08em;
}

.flow-step h3 {
  margin-top: clamp(56px, 8vh, 92px);
}

.outcomes {
  display: grid;
  align-content: center;
  background:
    linear-gradient(180deg, #050505 0%, #0d0b08 54%, #050505 100%),
    #050505;
}

.outcome-grid {
  max-width: 1320px;
}

.outcome {
  min-height: min(38vh, 340px);
  border-radius: 0;
}

.course-bridge,
.contacts {
  min-height: 82svh;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.72) 46%, rgba(5, 5, 5, 0.28)),
    url("assets/course-bridge-studio.png") center / cover;
}

.contacts {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.74) 46%, rgba(5, 5, 5, 0.3)),
    url("assets/contacts-backstage.png") center / cover;
}

.course-bridge {
  align-items: center;
}

.contacts {
  align-items: center;
}

.contact-link {
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(14px);
}

.contact-icon {
  border-radius: 2px;
}

.course-hero {
  min-height: 86svh;
}

.courses-section {
  background:
    linear-gradient(180deg, #050505 0%, #10100d 46%, #050505 100%),
    #050505;
}

.course-hero-media {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.99) 0%, rgba(5, 5, 5, 0.74) 44%, rgba(5, 5, 5, 0.16) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.1) 52%),
    url("assets/course-event.jpg") center / cover;
}

.course-list {
  max-width: 1320px;
}

.course {
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr) minmax(220px, 260px);
  min-height: 38vh;
  padding: clamp(34px, 5vh, 60px) 0;
}

.course-image {
  aspect-ratio: 1.38;
}

.course-meta strong {
  font-size: clamp(44px, 4vw, 64px);
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 56px, 0);
  filter: blur(8px);
  transition:
    opacity 900ms var(--ease-out) var(--reveal-delay, 0ms),
    transform 900ms var(--ease-out) var(--reveal-delay, 0ms),
    filter 900ms var(--ease-out) var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

main > section:target .reveal {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.promo-media,
.video-thumb {
  background-image:
    linear-gradient(0deg, rgba(5, 5, 5, 0.22), rgba(5, 5, 5, 0.22)),
    var(--thumb-url);
  background-position: center;
  background-size: cover;
}

.promo-media img,
.video-thumb img {
  position: relative;
  z-index: 1;
  object-fit: cover;
}

.promo-media::after,
.video-thumb::after {
  z-index: 2;
}

.play-mark,
.video-thumb::before {
  z-index: 3;
}

@media (hover: hover) {
  .course:hover .course-image img,
  .statement-visual:hover,
  .contact-link:hover {
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
  }
}

@media (max-width: 1120px) {
  .video-stack {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .video-card h3 {
    font-size: 34px;
  }
}

@media (max-width: 860px) {
  html {
    scroll-snap-type: none;
  }

  .site-header {
    height: var(--header-height);
  }

  .hero,
  .statement,
  .warmup,
  .training-flow,
  .outcomes,
  .course-bridge,
  .contacts,
  .course-hero,
  .courses-section {
    min-height: auto;
    padding-top: 74px;
    padding-bottom: 64px;
  }

  .hero {
    min-height: 100svh;
  }

  .statement,
  .training-flow,
  .contacts {
    grid-template-columns: 1fr;
  }

  .statement-visual {
    min-height: 340px;
    transform: none;
  }

  .promo-grid,
  .promo-video {
    grid-template-columns: 1fr;
  }

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

  .video-card {
    min-height: auto;
  }

  .video-thumb {
    aspect-ratio: 16 / 10;
  }

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

  .flow-step {
    min-height: 220px;
  }

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

  .course-meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .brand strong {
    display: none;
  }

  .hero h1 {
    font-size: clamp(64px, 20vw, 92px);
  }

  .hero p {
    max-width: 100%;
    font-size: 18px;
    line-height: 1.18;
    overflow-wrap: break-word;
  }

  .statement h2,
  .section-heading h2,
  .training-flow h2,
  .course-bridge h2,
  .course-hero h1,
  .outcomes h2,
  .contacts h2 {
    font-size: 58px;
  }

  .promo-copy h3,
  .video-card h3,
  .flow-step h3,
  .course-body h3,
  .outcome h3 {
    font-size: 38px;
  }
}

/* Final requested polish pass, kept last so it wins over earlier concept styles. */
:root {
  --accent-bright: #ffd45c;
  --accent-glow: rgba(255, 212, 92, 0.3);
}

.header-cta:hover,
.button:hover,
.button:focus-visible,
.video-trigger:hover,
.video-trigger:focus-visible,
.section-link:hover,
.section-link:focus-visible {
  border-color: rgba(255, 212, 92, 0.82);
  color: #050505;
  background: var(--accent-bright);
  box-shadow: 0 18px 46px rgba(255, 212, 92, 0.24);
}

.section-heading-rich {
  align-items: start;
}

.section-heading-rich > div {
  max-width: 760px;
}

.section-heading-rich p {
  max-width: 620px;
  margin-top: 16px;
}

.section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(255, 212, 92, 0.34);
  border-radius: 2px;
  padding: 0 20px;
  color: #ffffff;
  background: rgba(255, 212, 92, 0.08);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    transform 420ms var(--ease-out),
    border-color 420ms var(--ease-out),
    background 420ms var(--ease-out),
    color 420ms var(--ease-out),
    box-shadow 420ms var(--ease-out);
}

.section-link:hover,
.section-link:focus-visible {
  transform: translateY(-4px);
}

.opportunities div {
  transition:
    transform 420ms var(--ease-out),
    color 420ms var(--ease-out),
    background 420ms var(--ease-out),
    border-color 420ms var(--ease-out);
}

.opportunities div:hover {
  transform: translateY(-5px);
  color: #ffffff;
  border-color: rgba(255, 212, 92, 0.38);
  background: linear-gradient(180deg, rgba(255, 212, 92, 0.13), rgba(255, 255, 255, 0.02));
}

.opportunities div:hover svg {
  color: var(--accent-bright);
  filter: drop-shadow(0 0 14px rgba(255, 212, 92, 0.28));
}

.warmup {
  background:
    radial-gradient(circle at 16% 6%, rgba(255, 212, 92, 0.12), transparent 30rem),
    linear-gradient(180deg, #050505 0%, #11100d 42%, #050505 100%),
    #050505;
}

.promo-grid {
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 34px);
}

.promo-video {
  grid-template-columns: minmax(280px, 0.98fr) minmax(280px, 0.82fr);
  min-height: clamp(420px, 48vh, 560px);
}

.promo-video,
.video-card,
.flow-step,
.outcome {
  transition:
    transform 420ms var(--ease-out),
    border-color 420ms var(--ease-out),
    background 420ms var(--ease-out),
    box-shadow 420ms var(--ease-out),
    color 420ms var(--ease-out);
}

.promo-video:hover,
.video-card:hover,
.flow-step:hover,
.outcome:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 212, 92, 0.38);
  background:
    linear-gradient(180deg, rgba(255, 212, 92, 0.12), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.018);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.36), 0 0 34px rgba(255, 212, 92, 0.08);
}

.video-stack {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.video-card {
  min-height: 420px;
  overflow: visible;
}

.video-thumb {
  aspect-ratio: 16 / 10;
}

.video-card h3 {
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1.02;
}

.video-card p {
  font-size: 15px;
  line-height: 1.5;
}

.video-label,
.video-card span,
.flow-step span {
  color: var(--accent-bright);
}

.training-flow {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 212, 92, 0.18), transparent 25rem),
    radial-gradient(circle at 48% 100%, rgba(216, 170, 67, 0.12), transparent 30rem),
    linear-gradient(120deg, #050505 0%, #14110d 50%, #050505 100%),
    #050505;
}

.training-flow::before {
  position: absolute;
  top: 38px;
  right: 7%;
  width: 1px;
  height: calc(100% - 76px);
  content: "";
  background: linear-gradient(180deg, transparent, rgba(255, 212, 92, 0.52), transparent);
  box-shadow: 0 0 24px rgba(255, 212, 92, 0.3);
}

.flow-copy,
.flow-steps {
  position: relative;
  z-index: 1;
}

.flow-step {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255, 212, 92, 0.095), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.018);
}

.flow-step::after {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  content: "";
  border-radius: 50%;
  background: rgba(255, 212, 92, 0.16);
  box-shadow: 0 0 30px rgba(255, 212, 92, 0.22);
}

.flow-step:hover h3,
.outcome:hover h3,
.course:hover .course-body h3,
.course:hover .course-meta strong {
  color: var(--accent-bright);
}

.outcome {
  position: relative;
}

.outcome:hover {
  z-index: 1;
}

.course:hover {
  border-top-color: rgba(255, 212, 92, 0.34);
}

.course-bridge {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.7) 46%, rgba(5, 5, 5, 0.2)),
    url("assets/course-bridge-studio.png") center / cover;
}

.contacts {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.78) 46%, rgba(5, 5, 5, 0.36)),
    url("assets/contacts-backstage.png") center / cover;
}

.contact-link:hover,
.contact-link:focus-visible {
  border-color: rgba(255, 212, 92, 0.46);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 26px 68px rgba(0, 0, 0, 0.42), 0 0 26px rgba(255, 212, 92, 0.08);
}

.contact-link:hover .contact-icon,
.contact-link:focus-visible .contact-icon {
  background: var(--accent-bright);
  box-shadow: 0 0 28px rgba(255, 212, 92, 0.24);
}

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

  .video-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .section-heading-rich {
    grid-template-columns: 1fr;
  }

  .section-link {
    width: fit-content;
  }

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

  .promo-video {
    min-height: auto;
  }

  .video-card {
    min-height: auto;
  }

  .training-flow::before {
    display: none;
  }
}

@media (max-width: 520px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }
}

/* CRM, student portal and admin panel */
.crm-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 58svh;
  padding: calc(var(--header-height) + 78px) clamp(22px, 5vw, 78px) 76px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.99), rgba(5, 5, 5, 0.7) 46%, rgba(5, 5, 5, 0.24)),
    url("assets/course-bridge-studio.png") center / cover;
  border-bottom: 1px solid var(--line);
}

.crm-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.crm-eyebrow {
  color: var(--accent-bright);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.crm-hero h1,
.crm-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(58px, 8vw, 120px);
  line-height: 0.88;
  text-transform: uppercase;
}

.crm-hero p,
.crm-panel p,
.lesson-copy p,
.empty-note,
.admin-list-item span,
.admin-list-item small {
  color: var(--muted);
  line-height: 1.6;
}

.crm-hero p {
  max-width: 640px;
  margin: 24px 0 0;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 800;
}

.crm-workspace {
  display: grid;
  gap: 24px;
  padding: 72px clamp(22px, 5vw, 78px);
  background:
    radial-gradient(circle at 82% 6%, rgba(255, 212, 92, 0.12), transparent 26rem),
    linear-gradient(180deg, #050505 0%, #11100d 52%, #050505 100%),
    #050505;
}

.crm-panel {
  width: min(100%, 1180px);
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 2px;
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.018);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.28);
}

.crm-panel form,
.crm-panel label,
.admin-form,
.lesson-list {
  display: grid;
}

.crm-panel label,
.admin-form label {
  gap: 8px;
  color: #f5efe3;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.crm-panel input,
.crm-panel select,
.crm-panel textarea,
.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2px;
  padding: 14px 16px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.28);
  font: inherit;
  letter-spacing: 0;
}

.crm-panel input:focus,
.crm-panel select:focus,
.crm-panel textarea:focus {
  outline: 2px solid rgba(255, 212, 92, 0.42);
  outline-offset: 2px;
}

.crm-panel[data-student-login],
.crm-panel[data-admin-login] {
  max-width: 520px;
  gap: 20px;
}

.student-room-head,
.admin-columns,
.lesson-layout,
.admin-lists {
  display: grid;
  gap: 24px;
}

.student-room-head {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  margin-bottom: 28px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.admin-stat {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 212, 92, 0.095), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.035);
}

.admin-stat strong {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 58px);
  line-height: 0.9;
}

.admin-stat span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lesson-layout {
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 1fr);
}

.lesson-list {
  align-content: start;
  gap: 12px;
}

.lesson-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 8px 14px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 2px;
  padding: 16px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.045);
  text-align: left;
  cursor: pointer;
}

.lesson-item span {
  grid-row: 1 / 3;
  color: var(--accent-bright);
  font-family: var(--font-display);
  font-size: 28px;
}

.lesson-item strong,
.admin-list-item strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

.lesson-item small {
  color: var(--muted);
}

.lesson-item:hover,
.lesson-item.is-active {
  border-color: rgba(255, 212, 92, 0.46);
  background: rgba(255, 212, 92, 0.11);
}

.lesson-player {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.24);
}

.secure-video-frame {
  position: relative;
  background: #030303;
}

.secure-video,
.secure-video-shell {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #030303;
}

.secure-video-shell {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-watermark {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: min(70%, 520px);
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.58);
  background: rgba(0, 0, 0, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  overflow-wrap: anywhere;
  pointer-events: none;
  text-transform: uppercase;
}

.lesson-copy {
  padding: 24px;
}

.lesson-copy h3,
.admin-form h3,
.admin-lists h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 0.96;
}

.lesson-copy p {
  margin-bottom: 0;
}

.admin-dashboard {
  width: min(100%, 1320px);
}

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

.admin-form {
  align-content: start;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px;
  background: rgba(0, 0, 0, 0.16);
}

.inline-check {
  display: flex !important;
  align-items: center;
  gap: 10px !important;
}

.inline-check input {
  width: auto;
}

.admin-list {
  display: grid;
  gap: 12px;
}

.admin-list-head {
  display: grid;
  gap: 14px;
  margin-bottom: 16px;
}

.admin-filterbar {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(150px, 0.5fr);
  gap: 10px;
}

.admin-filterbar input,
.admin-filterbar select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 2px;
  padding: 12px 14px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.26);
  font: inherit;
}

.admin-telegram-crm {
  margin-top: 28px;
}

.admin-list-item {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.admin-list-item small {
  overflow-wrap: anywhere;
}

.form-message {
  min-height: 1.4em;
  margin: 0;
}

.form-message.is-error {
  color: #ff9b8d;
}

[hidden] {
  display: none !important;
}

@media (max-width: 900px) {
  .lesson-layout,
  .admin-columns,
  .admin-lists,
  .student-room-head {
    grid-template-columns: 1fr;
  }

  .admin-stats,
  .admin-filterbar {
    grid-template-columns: 1fr;
  }
}

/* Extra motion polish: layered reveals, soft parallax and calmer micro-interactions. */
:root {
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
}

body {
  text-rendering: geometricPrecision;
}

.site-header {
  transition:
    height 560ms var(--ease-soft),
    padding 560ms var(--ease-soft),
    background 560ms var(--ease-soft),
    border-color 560ms var(--ease-soft),
    box-shadow 560ms var(--ease-soft),
    backdrop-filter 560ms var(--ease-soft);
  will-change: background, box-shadow;
}

body.is-scrolled .site-header {
  background: rgba(5, 7, 13, 0.9);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(24px);
}

.main-nav a::after {
  transition: transform 520ms var(--ease-soft);
}

.header-cta,
.button,
.contact-link,
.course,
.promo-video,
.video-card,
.flow-step,
.outcome,
.admin-list-item,
.crm-panel {
  transition:
    transform 620ms var(--ease-soft),
    border-color 620ms var(--ease-soft),
    background 620ms var(--ease-soft),
    color 620ms var(--ease-soft),
    box-shadow 620ms var(--ease-soft),
    filter 620ms var(--ease-soft);
}

.button:hover,
.button:focus-visible,
.header-cta:hover,
.header-cta:focus-visible,
.contact-link:hover,
.contact-link:focus-visible,
.course:hover,
.promo-video:hover,
.video-card:hover,
.flow-step:hover,
.outcome:hover {
  transform: translate3d(0, -6px, 0);
}

.smooth-motion .hero-media,
.smooth-motion .course-hero-media,
.smooth-motion .statement-visual,
.smooth-motion .course-image img,
.smooth-motion .promo-media img,
.smooth-motion .video-thumb img {
  transform: translate3d(0, var(--smooth-y, 0px), 0) scale(var(--smooth-scale, 1.015));
  transition:
    transform 420ms linear,
    filter 900ms var(--ease-soft),
    opacity 900ms var(--ease-soft);
  will-change: transform;
}

.smooth-motion .hero-media,
.smooth-motion .course-hero-media {
  transform: translate3d(0, var(--smooth-y, 0px), 0) scale(var(--smooth-scale, 1.045));
}

.course:hover .course-image img {
  transform: translate3d(0, var(--smooth-y, 0px), 0) scale(1.07);
}

.promo-video:hover .promo-media img,
.video-card[data-has-video="true"]:hover .video-thumb img {
  transform: translate3d(0, var(--smooth-y, 0px), 0) scale(1.075);
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 72px, 0) scale(0.985);
  filter: blur(14px);
  transition:
    opacity 1250ms var(--ease-soft) var(--reveal-delay, 0ms),
    transform 1250ms var(--ease-soft) var(--reveal-delay, 0ms),
    filter 1250ms var(--ease-soft) var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal.is-visible,
main > section:target .reveal {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.hero-content.reveal {
  transform: translate3d(-28px, 58px, 0) scale(0.985);
}

.hero-content.reveal.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

.course-image,
.promo-media,
.video-thumb,
.statement-visual {
  overflow: hidden;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.hero-media,
.outcomes-media,
.hero-shade,
.outcomes-shade {
  position: absolute;
  inset: 0;
}

.hero-media,
.outcomes-media {
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.hero-media {
  background:
    linear-gradient(120deg, #050505 0%, #16120c 52%, #050505 100%),
    #050505;
}

.outcomes {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #050505;
}

.outcomes-media {
  z-index: -2;
  background-image: url("assets/about-stage.jpg");
  filter: saturate(1.08) contrast(1.08);
}

.outcomes-shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.78) 0%, rgba(5, 5, 5, 0.58) 38%, rgba(5, 5, 5, 0.94) 100%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.86), rgba(5, 5, 5, 0.42) 48%, rgba(5, 5, 5, 0.82)),
    radial-gradient(circle at 74% 24%, rgba(255, 212, 92, 0.18), transparent 34%);
}

.outcomes-heading,
.outcome-grid {
  position: relative;
  z-index: 1;
}

.section-bg-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 520ms var(--ease-out, ease);
}

.hero-media.is-video-ready .section-bg-video,
.outcomes-media.is-video-ready .section-bg-video {
  opacity: 1;
}

.hero-media .section-bg-video {
  object-position: 64% center;
}

.outcomes-media .section-bg-video {
  object-position: center;
}

@media (prefers-reduced-motion: reduce) {
  .section-bg-video {
    display: none;
  }

  .smooth-motion .hero-media,
  .smooth-motion .course-hero-media,
  .smooth-motion .statement-visual,
  .smooth-motion .course-image img,
  .smooth-motion .promo-media img,
  .smooth-motion .video-thumb img,
  .reveal,
  .hero-content.reveal {
    transform: none !important;
    filter: none !important;
    transition-duration: 0.001ms !important;
  }
}

/* Final design cleanup: quieter hierarchy, no orphan opportunity strip, unique media moments. */
:root {
  --font-brand: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  --font-display: "Oswald", "Arial Narrow", Impact, sans-serif;
}

.brand,
.hero h1 {
  font-family: var(--font-brand);
}

.statement h2,
.section-heading h2,
.training-flow h2,
.course-bridge h2,
.course-hero h1,
.outcomes h2,
.contacts h2,
.crm-hero h1,
.crm-panel h2,
.promo-copy h3,
.video-card h3,
.flow-step h3,
.course-body h3,
.outcome h3,
.lesson-copy h3,
.admin-form h3,
.admin-lists h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.02;
  font-kerning: normal;
  font-feature-settings: "kern" 1;
}

.opportunities {
  display: none;
}

.statement {
  padding-bottom: clamp(74px, 10vh, 128px);
}

.statement-visual {
  box-shadow:
    0 44px 120px rgba(0, 0, 0, 0.46),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.course-bridge {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.72) 48%, rgba(5, 5, 5, 0.18)),
    url("assets/course-bridge-studio.png") center / cover;
}

.contacts {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.76) 48%, rgba(5, 5, 5, 0.3)),
    url("assets/contacts-backstage.png") center / cover;
}

.portal-page .crm-hero {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.76) 46%, rgba(5, 5, 5, 0.2)),
    url("assets/portal-lessons-desk.png") center / cover;
}

.admin-page .crm-hero {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.76) 46%, rgba(5, 5, 5, 0.2)),
    url("assets/admin-crm-workspace.png") center / cover;
}

.course-hero-media {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.99) 0%, rgba(5, 5, 5, 0.74) 44%, rgba(5, 5, 5, 0.16) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.1) 52%),
    url("assets/course-bridge-studio.png") center / cover;
}

.outcomes-media {
  background-image: url("assets/outcomes-stage-success.png");
  background-position: center;
  background-size: cover;
}

.smooth-motion .outcomes-media {
  transform: translate3d(0, var(--smooth-y, 0px), 0) scale(var(--smooth-scale, 1.045));
  transition:
    transform 420ms linear,
    filter 900ms var(--ease-soft),
    opacity 900ms var(--ease-soft);
  will-change: transform;
}

.training-flow::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.48;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.88) 38%, rgba(5, 5, 5, 0.22) 100%),
    url("assets/training-practice-studio.png") right center / min(58vw, 980px) auto no-repeat;
}

.training-flow .flow-copy,
.training-flow .flow-steps {
  position: relative;
  z-index: 1;
}

.crm-panel[data-student-login] h2,
.crm-panel[data-admin-login] h2 {
  max-width: 100%;
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1.04;
  overflow-wrap: normal;
  word-break: normal;
}

.header-cta,
.button,
.section-link,
.video-trigger,
.channel-link,
.contact-link,
.lesson-item,
.admin-list-item {
  transition:
    transform 720ms var(--ease-soft),
    border-color 720ms var(--ease-soft),
    background 720ms var(--ease-soft),
    color 720ms var(--ease-soft),
    box-shadow 720ms var(--ease-soft),
    opacity 720ms var(--ease-soft);
}

.header-cta:focus-visible,
.button:focus-visible,
.section-link:focus-visible,
.video-trigger:focus-visible,
.channel-link:focus-visible,
.contact-link:focus-visible,
.lesson-item:focus-visible {
  outline: 2px solid rgba(255, 212, 92, 0.72);
  outline-offset: 4px;
}

.promo-grid {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  max-width: 1040px;
  gap: clamp(20px, 3vw, 34px);
}

.promo-video {
  width: 100%;
  grid-template-columns: minmax(0, 1.06fr) minmax(280px, 0.74fr);
  min-height: clamp(420px, 48vh, 540px);
}

.promo-actions .video-trigger {
  margin-top: 0;
}

.promo-video,
.video-card,
.flow-step,
.outcome,
.course-image,
.crm-panel {
  box-shadow:
    0 28px 86px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.video-card,
.promo-video,
.flow-step,
.outcome {
  transform: translate3d(0, 0, 0);
}

.video-card:hover,
.promo-video:hover,
.flow-step:hover,
.outcome:hover,
.course:hover {
  transform: translate3d(0, -5px, 0);
}

.reveal {
  transition:
    opacity 1400ms var(--ease-soft) var(--reveal-delay, 0ms),
    transform 1400ms var(--ease-soft) var(--reveal-delay, 0ms),
    filter 1400ms var(--ease-soft) var(--reveal-delay, 0ms);
}

.section-bg-video {
  filter: saturate(1.04) contrast(1.06);
}

@media (max-width: 860px) {
  .statement {
    padding-bottom: 74px;
  }

  .promo-video,
  .video-card,
  .flow-step,
  .outcome,
  .course-image,
  .crm-panel {
    box-shadow: 0 20px 58px rgba(0, 0, 0, 0.24);
  }

  .training-flow::after {
    opacity: 0.22;
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.78)),
      url("assets/training-practice-studio.png") center / cover no-repeat;
  }
}

.training-flow .flow-step,
.outcomes .outcome {
  isolation: isolate;
  overflow: hidden;
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    transform 190ms cubic-bezier(0.4, 0, 0.2, 1),
    border-color 190ms cubic-bezier(0.4, 0, 0.2, 1),
    background 190ms cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 220ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.training-flow .flow-step.reveal.is-visible,
.outcomes .outcome.reveal.is-visible {
  animation: none;
}

.training-flow .flow-step > *,
.outcomes .outcome > * {
  position: relative;
  z-index: 1;
}

.training-flow .flow-step span,
.training-flow .flow-step h3,
.outcomes .outcome span,
.outcomes .outcome h3 {
  transition:
    color 190ms cubic-bezier(0.4, 0, 0.2, 1),
    text-shadow 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

.training-flow .flow-step::before,
.outcomes .outcome::before {
  position: absolute;
  z-index: 0;
  inset: -1px;
  content: "";
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 212, 92, 0.19), transparent 48%),
    linear-gradient(180deg, rgba(255, 212, 92, 0.11), rgba(255, 255, 255, 0.012) 68%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 212, 92, 0.34),
    inset 0 0 28px rgba(255, 212, 92, 0.08);
  transition:
    opacity 190ms cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

.training-flow .flow-step::after {
  transition:
    opacity 190ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 190ms cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

.outcomes .outcome::after {
  position: absolute;
  z-index: 0;
  right: 28px;
  bottom: 24px;
  left: 28px;
  height: 1px;
  content: "";
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 212, 92, 0.78), transparent);
  box-shadow: 0 0 18px rgba(255, 212, 92, 0.28);
  transform: scaleX(0.92);
  transition:
    opacity 190ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 190ms cubic-bezier(0.4, 0, 0.2, 1);
}

.training-flow .flow-step:hover,
.training-flow .flow-step:focus-within,
.outcomes .outcome:hover,
.outcomes .outcome:focus-within {
  transform: translate3d(0, -5px, 0) scale(1.006);
  border-color: rgba(255, 212, 92, 0.42);
  background:
    linear-gradient(180deg, rgba(255, 212, 92, 0.11), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.018);
  box-shadow:
    0 30px 82px rgba(0, 0, 0, 0.36),
    0 0 30px rgba(255, 212, 92, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.training-flow .flow-step:hover::before,
.training-flow .flow-step:focus-within::before,
.outcomes .outcome:hover::before,
.outcomes .outcome:focus-within::before {
  opacity: 1;
}

.training-flow .flow-step:hover::after,
.training-flow .flow-step:focus-within::after {
  opacity: 0.78;
  transform: scale(1.08);
  box-shadow: 0 0 34px rgba(255, 212, 92, 0.26);
}

.outcomes .outcome:hover::after,
.outcomes .outcome:focus-within::after {
  opacity: 1;
  transform: scaleX(1);
}

.training-flow .flow-step:hover span,
.training-flow .flow-step:focus-within span,
.outcomes .outcome:hover span,
.outcomes .outcome:focus-within span {
  color: var(--accent-bright);
  text-shadow: 0 0 14px rgba(255, 212, 92, 0.34);
}

@media (prefers-reduced-motion: reduce) {
  .training-flow .flow-step,
  .outcomes .outcome {
    transition: none;
  }

  .training-flow .flow-step:hover,
  .training-flow .flow-step:focus-within,
  .outcomes .outcome:hover,
  .outcomes .outcome:focus-within {
    transform: none;
  }
}

/* Mobile excellence pass: resolve late cascade conflicts and tune touch layouts. */
@media (max-width: 860px) {
  :root {
    --header-height: 64px;
  }

  body {
    background: #050505;
    -webkit-text-size-adjust: 100%;
  }

  .site-header {
    height: var(--header-height);
    padding: 0 max(18px, env(safe-area-inset-left)) 0 max(18px, env(safe-area-inset-right));
    background: rgba(4, 5, 9, 0.88);
  }

  .brand {
    font-size: 25px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.075);
    touch-action: manipulation;
  }

  .main-nav {
    left: 0;
    right: 0;
    top: var(--header-height);
    bottom: 0;
    width: 100vw;
    height: calc(100svh - var(--header-height));
    justify-self: stretch;
    align-content: start;
    justify-items: stretch;
    padding: 12px 22px calc(104px + env(safe-area-inset-bottom));
    background:
      linear-gradient(180deg, rgba(5, 7, 13, 0.985), rgba(5, 7, 13, 0.94)),
      #05070d;
    overflow-y: auto;
  }

  .main-nav a {
    min-height: 58px;
    display: flex;
    align-items: center;
    padding: 0;
    font-size: 18px;
    letter-spacing: 0;
  }

  .mobile-nav-cta {
    display: flex;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    margin-top: 18px;
    color: #050505;
    background: var(--accent-bright);
    border: 1px solid rgba(255, 212, 92, 0.9);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42), 0 0 28px rgba(255, 212, 92, 0.18);
  }

  .hero,
  .statement,
  .warmup,
  .training-flow,
  .outcomes,
  .course-bridge,
  .contacts,
  .course-hero,
  .courses-section {
    padding-right: 22px;
    padding-left: 22px;
  }

  .hero {
    min-height: 100svh;
    padding-top: calc(var(--header-height) + 44px);
    padding-bottom: calc(42px + env(safe-area-inset-bottom));
  }

  .hero-content {
    width: 100%;
  }

  .hero p {
    max-width: 28rem;
    font-weight: 900;
  }

  .hero-actions {
    width: 100%;
    max-width: 420px;
  }

  .button,
  .header-cta,
  .video-trigger,
  .section-link {
    min-height: 48px;
    text-align: center;
    touch-action: manipulation;
  }

  .section-heading,
  .outcomes-heading,
  .section-heading-rich {
    align-items: start;
    gap: 14px;
    margin-bottom: 22px;
  }

  .section-heading p,
  .outcomes-heading p,
  .section-heading-rich p,
  .course-bridge p,
  .contacts-copy p {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.56;
  }

  .section-link {
    width: 100%;
    max-width: 320px;
  }

  .promo-grid,
  .promo-video,
  .training-flow,
  .course-bridge,
  .contacts,
  .course,
  .course-meta {
    grid-template-columns: minmax(0, 1fr);
  }

  .promo-grid {
    gap: 18px;
  }

  .promo-video {
    min-width: 0;
    min-height: 0;
  }

  .promo-media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .promo-media img {
    min-height: 0;
  }

  .promo-copy,
  .video-card,
  .flow-step,
  .outcome {
    padding: 22px;
  }

  .promo-copy {
    justify-content: start;
    gap: 14px;
  }

  .promo-actions {
    align-items: stretch;
    width: 100%;
  }

  .promo-actions .video-trigger,
  .promo-actions .channel-link {
    width: 100%;
  }

  .video-stack {
    gap: 18px;
  }

  .video-card {
    min-height: 0;
    overflow: hidden;
  }

  .video-thumb {
    aspect-ratio: 16 / 10;
  }

  .training-flow,
  .outcomes {
    gap: 24px;
  }

  .flow-step,
  .outcome {
    min-height: 0;
  }

  .flow-step h3 {
    margin-top: 36px;
  }

  .outcome span {
    margin-bottom: 34px;
  }

  .course-hero {
    min-height: 58svh;
    padding-top: calc(var(--header-height) + 56px);
    padding-bottom: 54px;
  }

  .course-hero-copy {
    max-width: 34rem;
  }

  .course-hero p {
    max-width: 100%;
    font-size: 18px;
    line-height: 1.48;
  }

  .courses-section-page {
    padding-top: 56px;
  }

  .course-list {
    display: grid;
    gap: 18px;
  }

  .course {
    gap: 20px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 2px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.014)),
      rgba(255, 255, 255, 0.014);
  }

  .course:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .course-image {
    width: 100%;
    max-width: none;
    aspect-ratio: 1.42;
    transform: none;
  }

  .tilt-left,
  .tilt-right {
    transform: none;
  }

  .course-body ul {
    gap: 10px;
  }

  .course-body li,
  .course-body p,
  .course-meta span {
    line-height: 1.52;
  }

  .course-meta {
    gap: 12px;
    padding-top: 2px;
  }

  .course-meta strong {
    white-space: normal;
  }

  .course-meta .button {
    width: 100%;
    margin-top: 4px;
  }

  .contact-actions {
    display: grid;
    gap: 14px;
  }

  .contact-link {
    width: 100%;
    min-width: 0;
  }

  .contact-link strong {
    overflow-wrap: anywhere;
  }

  .crm-hero {
    min-height: 54svh;
    padding: calc(var(--header-height) + 62px) 22px 58px;
  }

  .crm-hero h1,
  .crm-panel h2 {
    font-size: clamp(48px, 15vw, 72px);
    line-height: 0.92;
    text-wrap: balance;
  }

  .crm-hero p {
    font-size: clamp(17px, 4.7vw, 20px);
    line-height: 1.42;
  }

  .crm-workspace {
    gap: 18px;
    padding: 44px 22px 64px;
  }

  .crm-panel {
    padding: 22px;
  }

  .student-room-head,
  .admin-actions {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .admin-actions {
    display: grid;
  }

  .student-room-head .button,
  .admin-actions .button {
    width: 100%;
  }

  .crm-panel input,
  .crm-panel select,
  .crm-panel textarea,
  .admin-form input,
  .admin-form select,
  .admin-form textarea {
    min-height: 48px;
    font-size: 16px;
  }

  .reveal {
    transform: translate3d(0, 28px, 0) scale(0.992);
    filter: blur(5px);
    transition-duration: 760ms;
  }
}

@media (max-width: 520px) {
  .brand strong {
    display: none;
  }

  .hero h1 {
    font-size: clamp(62px, 19vw, 82px);
  }

  .hero p {
    font-size: clamp(17px, 4.8vw, 19px);
  }

  .statement h2,
  .section-heading h2,
  .training-flow h2,
  .outcomes h2,
  .contacts h2 {
    font-size: clamp(44px, 13.8vw, 56px);
    line-height: 0.98;
    text-wrap: balance;
  }

  .course-bridge h2,
  .course-hero h1 {
    font-size: clamp(42px, 13vw, 50px);
    line-height: 1;
    text-wrap: balance;
  }

  .promo-copy h3,
  .video-card h3,
  .flow-step h3,
  .course-body h3,
  .outcome h3 {
    font-size: clamp(30px, 9.8vw, 38px);
    line-height: 1.04;
    text-wrap: balance;
  }

  .promo-copy,
  .video-card,
  .flow-step,
  .outcome {
    padding: 20px;
  }

  .contact-link {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
  }
}

.contacts-trial {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  justify-self: end;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(16px, 2.4vw, 28px);
  width: min(100%, 1080px);
  margin-top: clamp(4px, 1.4vw, 18px);
  padding: clamp(18px, 2.1vw, 26px) clamp(18px, 2.6vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 4px solid var(--accent);
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(199, 154, 53, 0.2), rgba(255, 255, 255, 0.07)),
    rgba(5, 7, 13, 0.62);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
  transition:
    transform 720ms var(--ease-soft),
    border-color 720ms var(--ease-soft),
    background 720ms var(--ease-soft),
    box-shadow 720ms var(--ease-soft);
}

.contacts-trial:hover,
.contacts-trial:focus-visible {
  transform: translate3d(0, -5px, 0);
  border-color: rgba(255, 212, 92, 0.54);
  background:
    linear-gradient(90deg, rgba(199, 154, 53, 0.28), rgba(255, 255, 255, 0.09)),
    rgba(5, 7, 13, 0.72);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.contacts-trial:focus-visible {
  outline: 2px solid rgba(255, 212, 92, 0.72);
  outline-offset: 4px;
}

.contacts-trial-kicker {
  display: inline-grid;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 2px;
  background: var(--accent);
  color: #05070d;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.contacts-trial-copy {
  display: grid;
  min-width: 0;
  gap: 7px;
}

.contacts-trial-copy strong {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.02;
  text-wrap: balance;
}

.contacts-trial-copy span {
  max-width: 680px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.contacts-trial-action {
  justify-self: end;
  display: inline-grid;
  min-height: 44px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (hover: none) and (pointer: coarse) {
  .button:hover,
  .button:focus-visible,
  .header-cta:hover,
  .header-cta:focus-visible,
  .contact-link:hover,
  .contact-link:focus-visible,
  .contacts-trial:hover,
  .contacts-trial:focus-visible,
  .course:hover,
  .promo-video:hover,
  .video-card:hover,
  .flow-step:hover,
  .outcome:hover {
    transform: none;
  }
}

/* Public mobile polish: final cascade layer for the DJ school website. */
@media (max-width: 860px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding-right: max(18px, env(safe-area-inset-right));
    padding-left: max(18px, env(safe-area-inset-left));
  }

  .brand {
    min-width: 0;
    max-width: calc(100vw - 96px);
    overflow: hidden;
  }

  .main-nav {
    width: 100%;
    max-width: 100vw;
    height: calc(100dvh - var(--header-height));
    padding: 16px max(22px, env(safe-area-inset-right)) calc(34px + env(safe-area-inset-bottom)) max(22px, env(safe-area-inset-left));
    overscroll-behavior: contain;
  }

  .main-nav a {
    min-height: 56px;
    font-size: 17px;
    line-height: 1.1;
  }

  .hero-media {
    background:
      linear-gradient(120deg, rgba(5, 5, 5, 0.2), rgba(5, 5, 5, 0.16)),
      url("assets/hero-dj.jpg") 64% center / cover,
      #050505;
  }

  .hero,
  .course-hero {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero {
    align-items: center;
    min-height: 100svh;
    padding-top: calc(var(--header-height) + 30px);
    padding-bottom: calc(36px + env(safe-area-inset-bottom));
  }

  .hero-content,
  .course-hero-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero h1 {
    max-width: 9ch;
    font-size: clamp(58px, 18vw, 76px);
    line-height: 0.9;
    text-wrap: balance;
  }

  .hero p {
    max-width: 19.6rem;
    margin-top: 24px;
    font-size: clamp(16px, 4.25vw, 18px);
    font-weight: 800;
    line-height: 1.22;
    text-wrap: balance;
  }

  .hero-actions {
    display: grid;
    gap: 12px;
    width: min(100%, 21rem);
    max-width: 21rem;
    margin-top: 26px;
  }

  .button,
  .video-trigger,
  .channel-link,
  .section-link {
    width: 100%;
    min-height: 48px;
    padding-right: 18px;
    padding-left: 18px;
    font-size: 13px;
    line-height: 1.1;
  }

  .statement,
  .warmup,
  .training-flow,
  .outcomes,
  .course-bridge,
  .contacts,
  .course-hero,
  .courses-section {
    padding-right: max(22px, env(safe-area-inset-right));
    padding-left: max(22px, env(safe-area-inset-left));
  }

  .statement,
  .warmup,
  .training-flow,
  .outcomes,
  .course-bridge,
  .contacts,
  .courses-section {
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .statement {
    gap: 28px;
  }

  .statement-visual {
    min-height: 0;
    aspect-ratio: 1 / 1.02;
  }

  .section-heading,
  .outcomes-heading,
  .section-heading-rich {
    display: grid;
    justify-items: start;
    max-width: 100%;
    gap: 14px;
    margin-bottom: 24px;
  }

  .statement h2,
  .section-heading h2,
  .training-flow h2,
  .outcomes h2,
  .contacts h2,
  .course-bridge h2 {
    max-width: 100%;
    font-size: clamp(40px, 11.6vw, 52px);
    line-height: 0.98;
    text-wrap: balance;
  }

  .section-heading p,
  .outcomes-heading p,
  .section-heading-rich p,
  .statement p,
  .course-bridge p,
  .contacts-copy p {
    max-width: 19.4rem;
    font-size: 15.5px;
    line-height: 1.56;
  }

  .promo-video {
    border-radius: 6px;
  }

  .promo-media {
    aspect-ratio: 16 / 11;
  }

  .promo-copy,
  .video-card,
  .flow-step,
  .outcome {
    padding: 20px;
  }

  .promo-copy h3,
  .video-card h3,
  .flow-step h3,
  .course-body h3,
  .outcome h3 {
    font-size: clamp(28px, 8.6vw, 36px);
    line-height: 1.04;
    text-wrap: balance;
  }

  .promo-copy p,
  .video-card p,
  .flow-step p,
  .outcome p,
  .course-body li,
  .course-body p,
  .course-meta span {
    font-size: 15px;
    line-height: 1.5;
  }

  .flow-step h3 {
    margin-top: 26px;
  }

  .outcome span {
    margin-bottom: 22px;
  }

  .course-hero {
    min-height: 56svh;
    align-items: end;
    padding-top: calc(var(--header-height) + 52px);
    padding-bottom: 48px;
  }

  .course-hero-media {
    background-position: 58% center;
  }

  .course-hero h1 {
    max-width: 8.4ch;
    font-size: clamp(38px, 11.4vw, 48px);
    line-height: 0.98;
    text-wrap: balance;
  }

  .course-hero p {
    max-width: 19.4rem;
    margin-top: 22px;
    font-size: clamp(16px, 4.25vw, 18px);
    line-height: 1.48;
    text-wrap: pretty;
  }

  .courses-section-page {
    padding-top: 50px;
  }

  .course-list {
    gap: 20px;
    min-width: 0;
    max-width: 100%;
  }

  .course {
    gap: 18px;
    padding: 16px;
    max-width: 100%;
    overflow: hidden;
    border-radius: 6px;
  }

  .course > *,
  .course-body,
  .course-meta,
  .promo-copy,
  .flow-copy,
  .contacts-copy,
  .bridge-copy {
    min-width: 0;
    max-width: 100%;
  }

  .course-image {
    max-width: 100%;
    aspect-ratio: 16 / 10.5;
    border-radius: 5px;
  }

  .course-body ul {
    gap: 9px;
    margin: 16px 0;
    max-width: 18.5rem;
  }

  .course-body li {
    padding-left: 18px;
  }

  .course-body li,
  .course-body p,
  .course-meta span {
    overflow-wrap: anywhere;
  }

  .course-body p {
    max-width: 18.5rem;
  }

  .course-body li::before {
    width: 10px;
  }

  .course-meta {
    gap: 10px;
  }

  .course-meta strong {
    max-width: 100%;
    font-size: clamp(31px, 9vw, 38px);
    line-height: 1;
    overflow-wrap: anywhere;
  }

  .course-meta .button {
    margin-top: 6px;
  }

  .contacts {
    gap: 26px;
  }

  .contacts::after {
    left: 22px;
    width: 136px;
  }

  .contact-actions {
    width: 100%;
  }

  .contacts-trial {
    grid-template-columns: minmax(0, 1fr);
    justify-self: stretch;
    gap: 14px;
    width: 100%;
    margin-top: 0;
    padding: 18px;
  }

  .contacts-trial-kicker {
    justify-self: start;
  }

  .contacts-trial-copy strong {
    font-size: clamp(27px, 8.2vw, 34px);
    line-height: 1.03;
  }

  .contacts-trial-copy span {
    max-width: 100%;
    font-size: 15px;
  }

  .contacts-trial-action {
    justify-self: stretch;
    min-height: 46px;
    text-align: center;
  }

  .contact-link {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    min-height: 76px;
    padding: 14px;
    border-radius: 6px;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: clamp(54px, 17.4vw, 66px);
  }

  .hero p,
  .course-hero p {
    font-size: 15.5px;
  }

  .course-hero h1,
  .statement h2,
  .section-heading h2,
  .training-flow h2,
  .outcomes h2,
  .contacts h2,
  .course-bridge h2 {
    font-size: clamp(36px, 11vw, 44px);
  }

  .button,
  .video-trigger,
  .channel-link,
  .section-link {
    font-size: 12.5px;
  }
}

@media (max-width: 520px) {
  .course-list {
    max-width: 22rem;
  }
}
