:root {
  --bg: #070707;
  --ink: #f4f0e8;
  --soft: #c9c1b7;
  --muted: #8d867c;
  --quiet: #5f5952;
  --line: rgba(244, 240, 232, .13);
  --line-strong: rgba(244, 240, 232, .24);
  --panel: #10100f;
  --red: #c8102e;
  --red-hot: #c8102e;
  --display: "Bebas Neue", Impact, sans-serif;
  --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: dark;
}

.elliot-body::after {
  background:
    radial-gradient(circle at 78% 18%, rgba(200, 16, 46, .16), transparent 30%),
    linear-gradient(180deg, rgba(7, 7, 7, .82), #070707 66%),
    linear-gradient(90deg, #070707 0%, rgba(7, 7, 7, .72) 54%, rgba(7, 7, 7, .34));
}

.elliot-page {
  overflow: hidden;
}

.elliot-hero {
  min-height: 0;
  padding: 128px 0 72px;
  display: block;
  text-align: center;
}

.elliot-hero-classic {
  display: grid;
  justify-items: center;
  gap: 26px;
}

.elliot-hero-classic-head h1,
.elliot-hero-copy h1,
.elliot-section-head h2 {
  margin: 12px 0 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.elliot-hero-classic-head h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(3.8rem, 8vw, 6.8rem);
  line-height: .86;
}

.elliot-hero-classic-head p {
  margin: 12px 0 0;
  color: var(--red);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 500;
  line-height: 1.25;
}

.elliot-hero-copy h1 {
  max-width: 620px;
  font-size: clamp(3.2rem, 7.2vw, 5.6rem);
  line-height: .9;
}

.elliot-hero-copy h1 span,
.elliot-section-head h2 span {
  color: var(--red);
}

.elliot-hero-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin: 18px 0 0;
  color: var(--soft);
  font-size: clamp(.98rem, 1.4vw, 1.12rem);
  line-height: 1.62;
}

.elliot-portrait {
  position: relative;
  width: 150px;
  aspect-ratio: 1;
  min-height: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  overflow: hidden;
  background: #10100f;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .28);
}

.elliot-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 52%, rgba(7, 7, 7, .72)),
    linear-gradient(90deg, rgba(200, 16, 46, .18), transparent 42%);
  mix-blend-mode: screen;
  opacity: .3;
}

.elliot-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(.88) contrast(1.05);
}

.elliot-logos-band {
  width: min(96%, 1040px);
  margin-top: 10px;
  padding: 24px 26px 28px;
  border: 1px solid rgba(244, 240, 232, .08);
  border-radius: 8px;
  background: rgba(244, 240, 232, .045);
}

.elliot-logos-band p {
  max-width: none;
  margin: 0 auto 22px;
  color: var(--soft);
  font-size: clamp(.92rem, 1.32vw, 1.04rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.45;
  white-space: nowrap;
}

.elliot-logos-band img {
  width: min(100%, 860px);
  margin: 0 auto;
  opacity: .88;
}

.elliot-cv-access {
  margin: 0;
  padding: 56px 0 126px;
  text-align: center;
}

.elliot-cv-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #090909;
  color: var(--ink);
  font-size: .88rem;
  font-weight: 500;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025);
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.elliot-cv-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(200, 16, 46, .22), transparent);
  opacity: 0;
  transform: translateX(-110%);
  transition: opacity .22s ease, transform .46s ease;
}

.elliot-cv-button span,
.elliot-cv-button svg {
  position: relative;
  z-index: 1;
}

.elliot-cv-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .22s ease, color .22s ease;
}

@media (hover: hover) {
  .elliot-cv-button:hover {
    transform: translateY(-3px);
    border-color: rgba(200, 16, 46, .72);
    background: rgba(200, 16, 46, .12);
    box-shadow: 0 16px 38px rgba(0, 0, 0, .32), 0 0 0 1px rgba(200, 16, 46, .12) inset;
  }

  .elliot-cv-button:hover::before {
    opacity: 1;
    transform: translateX(110%);
  }

  .elliot-cv-button:hover svg {
    color: var(--red);
    transform: translateY(-1px) rotate(-2deg);
  }
}

.elliot-brands,
.elliot-showreels,
.elliot-skills,
.elliot-films,
.elliot-contact {
  padding: 62px 0;
}

.elliot-cv-access + .elliot-showreels {
  padding-top: 0;
}

.elliot-contact {
  padding-bottom: 118px;
}

.elliot-brands {
  text-align: center;
}

.elliot-brands p {
  max-width: 760px;
  margin: 0 auto 30px;
  color: var(--soft);
  font-size: 1.04rem;
}

.elliot-brands img,
.elliot-film-strip {
  width: min(100%, 980px);
  margin: 0 auto;
}

.elliot-video-grid,
.elliot-film-grid,
.elliot-skill-grid,
.elliot-contact-grid {
  display: grid;
  gap: 18px;
}

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

.elliot-video-card {
  position: relative;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(16, 16, 15, .92);
  cursor: pointer;
  box-shadow: 0 18px 54px rgba(0, 0, 0, .24);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.elliot-video-card:focus-visible {
  outline: 2px solid rgba(200, 16, 46, .9);
  outline-offset: 4px;
}

@media (hover: hover) {
  .elliot-video-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 16, 46, .55);
    background: rgba(24, 17, 17, .96);
  }
}

.elliot-video-frame,
.elliot-inline-video-frame {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #050505 center / cover no-repeat;
}

.elliot-video-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.86) contrast(1.06);
  transition: transform .45s ease, filter .45s ease;
}

@media (hover: hover) {
  .elliot-video-card:hover .elliot-video-frame img {
    transform: scale(1.035);
    filter: saturate(1) contrast(1.1);
  }
}

.elliot-video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, .7));
}

.elliot-video-frame .play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 56px;
  height: 56px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, .16);
}

@media (hover: hover) {
  .elliot-video-card:hover .elliot-video-frame .play-badge {
    transform: translate(-50%, -50%) scale(1.08);
    background: var(--red-hot);
  }
}

.elliot-video-card.is-playing .elliot-video-frame::after {
  display: none;
}

.elliot-video-card.is-playing .play-badge {
  display: none;
}

.elliot-video-copy {
  display: grid;
  gap: 4px;
  padding: 18px;
}

.elliot-video-copy strong {
  font-family: var(--display);
  color: var(--ink);
  font-size: clamp(2.15rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: .88;
  letter-spacing: 0;
}

.elliot-video-copy strong[data-count-up] {
  font-variant-numeric: tabular-nums;
}

.elliot-video-copy small {
  color: var(--soft);
  font-size: .84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.elliot-inline-video-frame iframe,
.elliot-inline-video-frame video {
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  transition: opacity .24s ease;
}

.elliot-inline-video-frame video {
  display: block;
  object-fit: cover;
  background: #000;
}

.elliot-video-card.is-ready .elliot-inline-video-frame iframe,
.elliot-video-card.is-ready .elliot-inline-video-frame video {
  opacity: 1;
}

.elliot-video-card.is-loading .play-badge {
  opacity: .55;
  transform: translate(-50%, -50%) scale(.92);
}

.elliot-video-error {
  color: var(--red);
}

.elliot-section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.elliot-section-head h2 {
  font-size: clamp(3.2rem, 7.2vw, 5.6rem);
  line-height: .9;
}

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

.elliot-skill-card {
  min-width: 0;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(244, 240, 232, .035);
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

@media (hover: hover) {
  .elliot-skill-card:hover {
    transform: translateY(-5px);
    border-color: rgba(200, 16, 46, .5);
    background: rgba(200, 16, 46, .07);
    box-shadow: 0 18px 48px rgba(0, 0, 0, .24);
  }
}

.elliot-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 16, 46, .42);
  border-radius: 8px;
  background: rgba(200, 16, 46, .08);
  color: var(--red);
  transition: transform .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
}

.elliot-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (hover: hover) {
  .elliot-skill-card:hover .elliot-icon,
  .elliot-contact-button:hover .elliot-icon {
    transform: translateY(-2px) scale(1.05);
    border-color: rgba(200, 16, 46, .74);
    background: rgba(200, 16, 46, .16);
    color: var(--ink);
  }
}

.elliot-skill-card h3 {
  margin: 16px 0 6px;
  color: var(--ink);
  font-size: .98rem;
  line-height: 1.22;
}

.elliot-skill-card p {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
}

.elliot-film-strip {
  margin-bottom: 118px;
}

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

.elliot-film-card .elliot-video-copy strong {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
}

.elliot-film-card .elliot-video-copy small {
  font-weight: 500;
  letter-spacing: 0;
}

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

.elliot-contact .elliot-section-head {
  max-width: none;
}

.elliot-contact .elliot-section-head h2 {
  white-space: nowrap;
  font-size: clamp(2.75rem, 6.2vw, 5.25rem);
}

.elliot-contact-button {
  min-width: 0;
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #090909;
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025);
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

@media (hover: hover) {
  .elliot-contact-button:hover {
    transform: translateY(-3px);
    border-color: rgba(200, 16, 46, .52);
    background: rgba(200, 16, 46, .07);
    box-shadow: 0 16px 42px rgba(0, 0, 0, .28);
  }
}

.elliot-contact-button .elliot-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
}

.elliot-contact-label {
  min-width: 0;
  color: var(--ink);
  font-size: .96rem;
  font-weight: 500;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

@media (max-width: 980px) {
  .elliot-hero {
    min-height: 0;
    padding: 112px 0 58px;
  }

  .elliot-video-grid,
  .elliot-skill-grid,
  .elliot-film-grid,
  .elliot-contact-grid {
    grid-template-columns: 1fr;
  }

  .elliot-portrait {
    width: 132px;
  }

  .elliot-portrait,
  .elliot-portrait img {
    min-height: 0;
  }

  .elliot-brands,
  .elliot-showreels,
  .elliot-skills,
  .elliot-films,
  .elliot-contact {
    padding: 58px 0;
  }

  .elliot-cv-access {
    padding: 34px 0 82px;
  }

  .elliot-cv-access + .elliot-showreels {
    padding-top: 0;
  }

  .elliot-contact {
    padding-bottom: 90px;
  }

  .elliot-film-strip {
    margin-bottom: 82px;
  }
}

@media (max-width: 640px) {
  .elliot-hero-copy h1 {
    font-size: clamp(3.3rem, 18vw, 5rem);
  }

  .elliot-hero-classic-head h1 {
    font-size: clamp(3.6rem, 16vw, 5.4rem);
  }

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

  .elliot-portrait,
  .elliot-portrait img {
    min-height: 0;
  }

  .elliot-portrait {
    width: 112px;
  }

  .elliot-logos-band {
    width: 100%;
    padding: 20px 16px 22px;
  }

  .elliot-logos-band p {
    font-size: .95rem;
    white-space: normal;
  }

  .elliot-video-copy {
    padding: 18px;
  }

  .elliot-contact-button {
    min-height: 76px;
    padding: 14px 16px;
  }

  .elliot-section-head h2 {
    font-size: clamp(3rem, 16vw, 4.5rem);
  }

  .elliot-contact .elliot-section-head h2 {
    font-size: clamp(2.08rem, 10vw, 3.2rem);
  }
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background: var(--bg);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
}

body > main {
  flex: 1 0 auto;
}

body > footer {
  flex-shrink: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background: url("https://www.industrie.school/content-assets/public/eyJhbGciOiJIUzI1NiJ9.eyJvYmplY3Rfa2V5IjoiNG03enI0MmpnNmkzejhscHk3bmFmaGN0YWttMiIsImRvbWFpbiI6Ind3dy5pbmR1c3RyaWUuc2Nob29sIn0.3zGckF8o9BSfWUDz-sqPrCXntI0dturotBMzDeNzq28") center / cover no-repeat;
  opacity: .12;
  filter: saturate(.78) contrast(1.08);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 7, 7, .9), #070707 62%),
    linear-gradient(90deg, #070707 0%, rgba(7, 7, 7, .74) 48%, rgba(7, 7, 7, .28));
}

#cursor-fx {
  position: fixed;
  inset: 0;
  z-index: 4;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid rgba(200, 16, 46, .9);
  outline-offset: 3px;
}

button,
input,
a {
  -webkit-tap-highlight-color: rgba(200, 16, 46, .18);
}

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

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  margin: 0;
  color: var(--red-hot);
  font-size: .72rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(244, 240, 232, .04);
  color: var(--ink);
  font: 600 .88rem/1 var(--font);
  text-align: center;
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
  touch-action: manipulation;
}

.btn-red {
  border-color: var(--red);
  background: var(--red);
  color: white;
}

@media (hover: hover) {
  .btn:hover {
    transform: translateY(-2px);
    border-color: var(--line-strong);
    background: rgba(244, 240, 232, .075);
  }

  .btn-red:hover {
    border-color: var(--red-hot);
    background: var(--red-hot);
  }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(244, 240, 232, .08);
  background: rgba(7, 7, 7, .74);
  backdrop-filter: blur(18px);
}

.home-scroll-progress {
  display: none;
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: 2;
  width: 0;
  height: 2px;
  border-radius: 0 999px 999px 0;
  background: var(--red);
  box-shadow: 0 0 14px rgba(200, 16, 46, .5);
  pointer-events: none;
  transition: width .12s linear;
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
}

.brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 13px;
  font-weight: 900;
  line-height: 1;
}

.mark {
  width: 43px;
  height: 27px;
  position: relative;
  flex: 0 0 auto;
}

.mark span {
  position: absolute;
  top: -2px;
  width: 3px;
  height: 32px;
  border-radius: 2px;
  background: var(--red);
  transform: rotate(48deg);
}

.mark span:nth-child(1) { left: 4px; }
.mark span:nth-child(2) { left: 12px; }
.mark span:nth-child(3) { left: 20px; }
.mark span:nth-child(4) { left: 28px; }

.brand-name {
  min-width: 0;
  max-width: 38vw;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1.05rem;
  letter-spacing: 0;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
}

.nav-links {
  margin-left: auto;
  gap: 28px;
  color: var(--muted);
  font-size: .9rem;
}

.nav-links a {
  transition: color .18s ease;
}

@media (hover: hover) {
  .nav-links a:hover {
    color: var(--ink);
  }
}

.nav-actions {
  gap: 10px;
  flex: 0 0 auto;
}

.section {
  border-top: 1px solid var(--line);
  padding: 58px 0 88px;
}

.cursor-fx-zone {
  position: relative;
}

.catalogue-hero {
  padding: 122px 0 74px;
  border-top: 0;
}

.lead-kit-success {
  --lead-kit-success-x: -50%;
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 22px;
  width: auto;
  max-width: calc(100% - 40px);
  padding: 14px 18px;
  border: 1px solid rgba(200, 16, 46, .34);
  border-radius: 999px;
  background: rgba(8, 8, 8, .28);
  color: var(--soft);
  box-shadow: 0 16px 70px rgba(0, 0, 0, .24);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  pointer-events: none;
  transform: translateX(var(--lead-kit-success-x));
  animation: lead-kit-success-in .3s ease both, lead-kit-success-out .75s ease 7s forwards;
}

body.ck-visible .lead-kit-success {
  bottom: 120px;
}

.lead-kit-success-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(200, 16, 46, .48);
  border-radius: 50%;
  background: rgba(200, 16, 46, .12);
  box-shadow: 0 0 0 8px rgba(200, 16, 46, .08);
}

.lead-kit-success-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--red);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lead-kit-success-icon path {
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
  animation: lead-kit-check-draw .46s ease .18s forwards;
}

.lead-kit-success-copy {
  min-width: 0;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.lead-kit-success strong {
  flex: 0 0 auto;
  color: var(--ink);
  font-weight: 800;
  white-space: nowrap;
}

.lead-kit-success-copy span {
  min-width: 0;
  line-height: 1.45;
  white-space: nowrap;
}

@keyframes lead-kit-success-in {
  from {
    opacity: 0;
    transform: translate(var(--lead-kit-success-x), 10px);
  }

  to {
    opacity: 1;
    transform: translate(var(--lead-kit-success-x), 0);
  }
}

@keyframes lead-kit-success-out {
  to {
    opacity: 0;
    visibility: hidden;
    transform: translate(var(--lead-kit-success-x), 12px);
  }
}

@keyframes lead-kit-check-draw {
  to {
    stroke-dashoffset: 0;
  }
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 410px);
  gap: 34px;
  align-items: end;
  margin-bottom: 28px;
}

.section-title {
  max-width: 1060px;
  margin: 12px 0 0;
  font-family: var(--display);
  font-size: clamp(3.3rem, 8vw, 7.8rem);
  font-weight: 400;
  line-height: .86;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-title span {
  color: var(--red);
}

.section-copy {
  max-width: 62ch;
  margin: 0;
  color: var(--soft);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
}

.catalogue-hero .section-head {
  display: block;
  max-width: 980px;
  margin-bottom: 34px;
}

.catalogue-hero .section-title {
  max-width: 920px;
  font-size: clamp(3.2rem, 7.1vw, 5.9rem);
  line-height: .88;
}

.catalogue-hero .section-copy {
  max-width: 760px;
  margin-top: 18px;
  font-size: clamp(1rem, 1.28vw, 1.16rem);
  line-height: 1.55;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-stat {
  min-height: 68px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(244, 240, 232, .045);
  color: var(--muted);
  backdrop-filter: blur(18px);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.hero-stat-number {
  color: var(--red);
  font-family: var(--display);
  font-size: clamp(2rem, 3.3vw, 2.45rem);
  font-weight: 400;
  line-height: .9;
  letter-spacing: 0;
}

.hero-stat span:last-child {
  max-width: 128px;
  color: var(--soft);
  font-size: .86rem;
  line-height: 1.25;
}

@media (hover: hover) {
  .hero-stat:hover {
    transform: translateY(-3px);
    border-color: rgba(200, 16, 46, .46);
    background: rgba(200, 16, 46, .09);
  }
}

.catalogue-toolbar {
  position: sticky;
  top: 72px;
  z-index: 20;
  margin-top: 30px;
  margin-bottom: 20px;
  padding: 11px 0;
  border-top: 0;
  border-bottom: 0;
  background: rgba(7, 7, 7, .78);
  backdrop-filter: blur(14px);
}

.filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-top: 4px;
  padding-bottom: 7px;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.filters::-webkit-scrollbar {
  display: none;
}

.mobile-rail-shell {
  position: relative;
}

.mobile-rail-button {
  display: none;
  touch-action: manipulation;
}

.filter {
  position: relative;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(244, 240, 232, .035);
  color: var(--muted);
  font: 750 .74rem/1 var(--font);
  white-space: nowrap;
  cursor: pointer;
  touch-action: manipulation;
  transition: color .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.filter.active {
  border-color: rgba(200, 16, 46, .5);
  background: rgba(200, 16, 46, .34);
  color: white;
}

@media (hover: hover) {
  .filter:hover {
    transform: translateY(-2px);
    border-color: rgba(200, 16, 46, .7);
    background: rgba(200, 16, 46, .26);
    color: white;
    box-shadow: 0 14px 34px rgba(200, 16, 46, .15), inset 0 1px 0 rgba(244, 240, 232, .08);
  }

  .filter.active:hover {
    border-color: rgba(200, 16, 46, .78);
    background: rgba(200, 16, 46, .5);
    color: white;
    box-shadow: 0 16px 38px rgba(200, 16, 46, .16), inset 0 1px 0 rgba(255, 255, 255, .08);
  }
}

.filter:active {
  transform: translateY(0);
}

.lead-kit {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 440px) minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(14px, 1.4vw, 22px);
  align-items: center;
  margin: 0 0 20px;
  min-height: 244px;
  padding: 0 22px 0 0;
  scroll-margin-top: 130px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(90deg, #060606 0%, #0b0b0b 27%, #101010 58%, #121212 100%);
  box-shadow:
    inset 0 1px 0 rgba(244, 240, 232, .075),
    inset 0 -1px 0 rgba(0, 0, 0, .42),
    0 18px 70px rgba(0, 0, 0, .18);
  isolation: isolate;
}

.lead-kit::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .05;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

.lead-kit::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 0, 0, .18) 0%, transparent 30%, rgba(244, 240, 232, .012) 68%, rgba(244, 240, 232, .014) 100%);
}

.lead-kit-copy,
.lead-form,
.lead-kit-visual {
  position: relative;
  z-index: 2;
}

.lead-kit-copy {
  padding-block: clamp(24px, 2.4vw, 34px);
}

.lead-kit-visual {
  align-self: center;
  width: 100%;
  aspect-ratio: 3 / 2;
  min-height: 0;
}

.lead-kit-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: url("./lead-kit/kit-demarrage.webp") left center / cover no-repeat;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 57%, rgba(0, 0, 0, .88) 69%, rgba(0, 0, 0, .3) 84%, transparent 96%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 57%, rgba(0, 0, 0, .88) 69%, rgba(0, 0, 0, .3) 84%, transparent 96%, transparent 100%);
}

.lead-kit-visual::after {
  content: "";
  position: absolute;
  inset: 0 -1px 0 0;
  pointer-events: none;
  display: none;
}

.lead-kit-mobile-image {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .34);
}

.lead-kit-mobile-visual {
  position: relative;
  display: none;
  margin: 0 0 14px;
}

.lead-kit .lead-kit-pill {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  padding: 6px 8px;
  border: 1px solid rgba(200, 16, 46, .45);
  background: rgba(200, 16, 46, .32);
  color: white;
  font: 500 .74rem/1 var(--font);
  box-shadow: none;
}

.lead-kit-visual .lead-kit-pill {
  right: clamp(46px, 4vw, 64px);
}

.lead-kit h2 {
  margin: 10px 0;
  font-family: var(--display);
  font-size: clamp(2.25rem, 3.15vw, 3.35rem);
  font-weight: 400;
  line-height: .9;
  letter-spacing: 0;
  text-wrap: balance;
}

.lead-kit p {
  max-width: 58ch;
  margin: 0;
  color: var(--soft);
  font-size: .96rem;
}

.lead-form {
  display: flex;
  gap: 9px;
}

.lead-turnstile {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
}

.lead-form input {
  width: 100%;
  min-height: 44px;
  padding: 0 13px;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  outline: none;
  background: rgba(7, 7, 7, .58);
  color: var(--ink);
  font: 500 .9rem/1 var(--font);
}

.lead-form input::placeholder {
  color: var(--muted);
}

.lead-form input:focus {
  border-color: rgba(200, 16, 46, .58);
}

.lead-form .btn {
  min-width: 132px;
  border: 0;
  cursor: pointer;
}

.home-proof {
  margin: 86px 0 0;
}

.home-proof-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 16px;
}

.home-proof-head h2 {
  max-width: 780px;
  margin: 8px 0 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 400;
  line-height: .9;
  letter-spacing: 0;
}

.home-proof-intro {
  max-width: 650px;
  margin: 14px 0 0;
  color: var(--soft);
  font-size: clamp(.98rem, 1.25vw, 1.08rem);
}

.home-video-wall {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.home-wall-card {
  --testimonial-position: center center;
  min-width: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(16, 16, 15, .76);
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  outline: 0;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.home-wall-card[data-video-key="adam"] {
  --testimonial-position: center 58%;
}

.home-wall-card[data-video-key="cyril"] {
  --testimonial-position: center 55%;
}

.home-wall-card[data-video-key="erwan"] {
  --testimonial-position: center 47%;
}

.home-wall-card[data-video-key="jessica"] {
  --testimonial-position: center 49%;
}

.home-wall-card[data-video-key="romaric"] {
  --testimonial-position: center 49%;
}

.home-wall-card[data-video-key="sacha"] {
  --testimonial-position: center 47%;
}

.home-wall-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
  background-position: var(--testimonial-position);
}

.home-wall-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--testimonial-position);
  opacity: .74;
  filter: saturate(.88) contrast(1.08);
  transition: transform .5s ease, opacity .5s ease;
}

.home-wall-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 58%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .78));
  pointer-events: none;
}

.home-wall-media.has-inline-video::after,
.video-frame.has-inline-video::after {
  display: none;
}

.home-wall-media .play-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
}

.home-wall-copy {
  display: grid;
  gap: 7px;
  padding: 16px;
  min-height: 184px;
  align-content: start;
}

.home-wall-copy strong {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.1;
}

.home-wall-copy small {
  color: var(--muted);
  font-size: .76rem;
}

.home-wall-copy span {
  color: var(--soft);
  font-size: .86rem;
  line-height: 1.45;
}

.home-wall-card iframe,
.home-wall-card video {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #000;
}

.inline-video-frame {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  border-radius: inherit;
  background: #000;
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.inline-video-frame::before {
  content: "";
  position: absolute;
  inset: -12%;
  background: inherit;
  filter: blur(18px) brightness(.58) saturate(1.05);
  transform: scale(1.06);
}

.inline-video-frame iframe,
.inline-video-frame video {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
}

.inline-video-frame video {
  object-fit: cover;
  object-position: var(--testimonial-position);
}

.home-wall-card.is-playing .inline-video-frame,
.video-proof-card.is-playing .inline-video-frame {
  height: 100%;
}

.home-wall-card.is-playing {
  display: grid;
  background: #000;
}

.home-wall-card.is-loading {
  pointer-events: none;
}

.home-wall-card.is-loading .play-badge {
  animation: proofPlayPulse .9s ease-in-out infinite alternate;
}

.home-wall-card--error {
  border-color: rgba(200, 16, 46, .36);
}

.home-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(260px, .82fr);
  gap: 12px;
}

.home-video-card,
.home-quote-stack {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 16, 15, .76);
  overflow: hidden;
}

.home-video-card {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  border: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  padding: 0;
  text-align: left;
}

.home-video-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .68;
  filter: saturate(.84) contrast(1.08);
  transition: transform .5s ease, opacity .5s ease;
}

.home-video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 7, 7, .02), rgba(7, 7, 7, .86));
}

.home-video-card iframe {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

.home-video-copy {
  position: relative;
  z-index: 1;
  padding: 24px;
}

.play-badge {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .34);
}

.play-badge::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 13px solid white;
}

.home-video-copy .play-badge {
  margin-bottom: 18px;
}

@keyframes proofPlayPulse {
  from {
    transform: scale(1);
    opacity: .78;
  }

  to {
    transform: scale(1.08);
    opacity: 1;
  }
}

.home-video-copy h3 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 900;
  line-height: .92;
  letter-spacing: 0;
}

.home-video-copy p {
  max-width: 560px;
  margin: 0;
  color: var(--soft);
}

.home-quote-stack {
  display: grid;
}

.proof-mini {
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.proof-mini:last-child {
  border-bottom: 0;
}

.proof-mini span {
  display: block;
  margin-bottom: 16px;
  color: var(--red-hot);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.proof-mini p {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 1.02rem;
}

.proof-mini small {
  color: var(--muted);
  font-weight: 700;
}

.testimonials-hero {
  padding: 126px 0 28px;
  background: linear-gradient(180deg, rgba(244, 240, 232, .012), transparent 72%);
}

.testimonials-body .site-header,
.testimonials-body .site-footer,
.testimonials-body .sales-cta-band {
  border: 0;
}

.testimonials-body::after {
  background:
    linear-gradient(180deg, rgba(7, 7, 7, .68), rgba(7, 7, 7, 0) 46%),
    linear-gradient(90deg, rgba(7, 7, 7, .92), rgba(7, 7, 7, .82) 58%, rgba(7, 7, 7, .72));
}

.testimonials-hero-grid {
  display: block;
}

.testimonials-hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.4rem, 5.6vw, 6.1rem);
  font-weight: 400;
  line-height: .9;
  letter-spacing: 0;
  text-wrap: balance;
}

.testimonials-hero h1 span {
  color: var(--red-hot);
}

.testimonials-hero p {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--soft);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
}

.testimonial-section {
  padding: 28px 0 50px;
  border-top: 0;
}

.video-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 14px;
  align-items: start;
}

.video-proof-card {
  --testimonial-position: center center;
  min-width: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(16, 16, 15, .72);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
  cursor: pointer;
  outline: 0;
}

.video-proof-card.is-loading {
  pointer-events: none;
}

.video-proof-card.is-loading .play-badge {
  animation: proofPlayPulse .9s ease-in-out infinite alternate;
}

.video-proof-card--error {
  border-color: rgba(200, 16, 46, .36);
}

.video-proof-card[data-video-key="adam"] {
  --testimonial-position: center 58%;
}

.video-proof-card[data-video-key="cyril"] {
  --testimonial-position: center 60%;
}

.video-proof-card[data-video-key="erwan"] {
  --testimonial-position: center 47%;
}

.video-proof-card[data-video-key="jessica"] {
  --testimonial-position: center 49%;
}

.video-proof-card[data-video-key="romaric"] {
  --testimonial-position: center 49%;
}

.video-proof-card[data-video-key="sacha"] {
  --testimonial-position: center 47%;
}

.video-proof-card.no-thumb .video-frame {
  background:
    radial-gradient(circle at 18% 18%, rgba(200, 16, 46, .2), transparent 34%),
    linear-gradient(135deg, rgba(244, 240, 232, .08), rgba(16, 16, 15, .94));
}

.video-frame {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
  background-position: var(--testimonial-position);
  background-size: cover;
  isolation: isolate;
}

.video-frame img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--testimonial-position);
  opacity: .76;
  filter: saturate(.88) contrast(1.08);
  transition: transform .5s ease, opacity .5s ease;
}

.video-frame img[src=""] {
  display: none;
}

.video-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 50%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .74));
  pointer-events: none;
  z-index: 1;
}

.video-placeholder {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 74px;
  z-index: 2;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: .9;
  letter-spacing: 0;
}

.video-frame .play-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  width: 44px;
  height: 44px;
  z-index: 3;
}

.video-copy {
  display: grid;
  gap: 8px;
  padding: 18px;
  min-height: 170px;
  align-content: start;
}

.video-proof-card iframe,
.video-proof-card video {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #000;
}

.video-proof-card.is-playing {
  display: grid;
  background: #000;
}

/* Testimonials are now all horizontal YouTube videos: keep the tile itself 16/9. */
.home-wall-card,
.video-proof-card {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  min-height: 0;
  height: auto;
}

.home-wall-media,
.video-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border-radius: inherit;
}

.inline-video-frame {
  height: 100%;
  min-height: 0;
}

.inline-video-frame::before {
  display: none;
}

.home-wall-media img,
.video-frame img {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  box-shadow: none;
}

.home-wall-media::after,
.video-frame::after {
  z-index: 2;
  height: 72%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .52) 48%, rgba(0, 0, 0, .9) 100%);
}

.home-wall-copy,
.video-copy {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 0;
  padding: clamp(12px, 1.4vw, 18px);
  gap: 5px;
  pointer-events: none;
  background: transparent;
}

.home-wall-copy span,
.video-copy .quote {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.home-wall-copy {
  gap: 3px;
  padding: 12px;
}

.home-wall-copy strong {
  font-size: .9rem;
}

.home-wall-copy small {
  font-size: .68rem;
}

.home-wall-copy span {
  display: none;
}

.home-wall-media .play-badge,
.video-frame .play-badge {
  left: auto;
  top: clamp(12px, 8%, 18px);
  right: clamp(12px, 4%, 18px);
  bottom: auto;
  transform: none;
}

.home-wall-card.is-playing .home-wall-copy,
.video-proof-card.is-playing .video-copy,
.home-wall-card.is-playing .play-badge,
.video-proof-card.is-playing .play-badge {
  opacity: 0;
}

.video-error {
  margin-top: 4px;
  color: var(--red-hot);
  font-size: .82rem;
  font-weight: 700;
}

.person {
  color: var(--ink);
  font-weight: 850;
  font-size: 1.15rem;
}

.role,
.quote-card small {
  color: var(--muted);
  font-size: .82rem;
}

.quote {
  color: var(--soft);
  font-size: .92rem;
}

.quote-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 16, 15, .76);
  break-inside: avoid;
}

.quote-card p {
  margin: 0 0 24px;
  color: var(--soft);
  font-size: 1.02rem;
}

.quote-card footer {
  display: grid;
  gap: 4px;
}

.quote-card span {
  color: var(--ink);
  font-weight: 850;
}

.video-proof-grid .quote-card {
  display: flex;
  width: auto;
  min-height: 0;
  margin: 0;
  flex-direction: column;
  justify-content: flex-start;
  padding: 24px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 0%, rgba(200, 16, 46, .08), transparent 46%),
    rgba(16, 16, 15, .76);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.video-proof-grid .quote-card p {
  margin-bottom: 14px;
  color: var(--soft);
  font-size: .98rem;
  line-height: 1.45;
}

.video-proof-grid .quote-card footer {
  margin-top: 0;
}

@media (hover: hover) {
  .home-wall-card:hover {
    transform: translateY(-3px);
    border-color: rgba(244, 240, 232, .25);
    background: rgba(22, 22, 20, .9);
  }

  .home-wall-card:hover img {
    transform: scale(1.045);
    opacity: .9;
  }

  .home-video-card:hover img,
  .video-proof-card:hover img {
    transform: scale(1.045);
    opacity: .86;
  }

  .video-proof-card:hover {
    transform: translateY(-2px);
    border-color: rgba(244, 240, 232, .24);
    background: rgba(22, 22, 20, .84);
  }

  .video-proof-grid .quote-card:hover {
    transform: translateY(-2px);
    border-color: rgba(244, 240, 232, .24);
    background:
      radial-gradient(circle at 50% 0%, rgba(200, 16, 46, .11), transparent 48%),
      rgba(22, 22, 20, .86);
  }
}

.catalogue {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.course {
  position: relative;
  min-width: 0;
  min-height: 392px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  isolation: isolate;
  touch-action: manipulation;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.course[data-hidden="true"] {
  display: none;
}

.course::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, .08) 10%, rgba(0, 0, 0, .56) 54%, rgba(0, 0, 0, .94) 100%);
}

.course img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .58;
  filter: saturate(.86) contrast(1.12);
  transition: transform .5s ease, opacity .5s ease;
}

.course--machine img {
  opacity: 0;
}

.course-machine-spinner {
  --machine-scale: 1;
  position: absolute;
  left: 50%;
  top: 46%;
  z-index: 1;
  width: min(48%, 220px);
  aspect-ratio: 1;
  opacity: .82;
  background: url("./brand/logo-v6.png") center / contain no-repeat;
  filter: drop-shadow(0 20px 42px rgba(200, 16, 46, .22));
  transform-origin: 50% 50%;
  transform: translate(-50%, -50%) rotate(0deg) scale(var(--machine-scale));
  animation: machineLogoTurn 18s linear infinite;
  transition: opacity .5s ease, filter .5s ease;
  will-change: transform, opacity, filter;
}

@keyframes machineLogoTurn {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) scale(var(--machine-scale));
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg) scale(var(--machine-scale));
  }
}

@media (hover: hover) {
  .course:hover {
    border-color: rgba(244, 240, 232, .24);
    transform: translateY(-2px);
  }

  .course:hover img {
    transform: scale(1.045);
    opacity: .72;
  }

  .course--machine:hover img {
    opacity: 0;
  }

  .course--machine:hover .course-machine-spinner {
    --machine-scale: 1.055;
    opacity: .96;
    filter: drop-shadow(0 24px 52px rgba(200, 16, 46, .34)) brightness(1.14);
  }

  .course--machine:hover .course-machine-spinner {
    animation-duration: 14s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .course-machine-spinner {
    animation: none;
    transform: translate(-50%, -50%) rotate(0deg) scale(var(--machine-scale));
  }
}

.course-body {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
  padding: 22px;
}

.course-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 13px;
}

.pill,
.course-price {
  border-radius: 999px;
  white-space: nowrap;
}

.pill {
  padding: 6px 9px;
  border: 1px solid rgba(244, 240, 232, .18);
  background: rgba(7, 7, 7, .42);
  color: #ddd3c5;
  font: 750 .69rem/1 var(--font);
}

.course-price {
  padding: 6px 8px;
  border: 1px solid rgba(200, 16, 46, .45);
  background: rgba(200, 16, 46, .32);
  color: white;
  font: 500 .74rem/1 var(--font);
}

.course h2 {
  margin: 0 0 10px;
  overflow-wrap: anywhere;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 400;
  line-height: .9;
  letter-spacing: 0;
  text-wrap: balance;
}

.course p {
  min-height: 44px;
  margin: 0 0 18px;
  color: #d5cec4;
  font-size: .9rem;
}

.course h2,
.course p {
  text-shadow: 0 1px 18px rgba(0, 0, 0, .66);
}

.course .btn {
  width: 100%;
  pointer-events: none;
  background: rgba(244, 240, 232, .08);
  border-color: rgba(244, 240, 232, .2);
  transition: border-color .22s ease, background .22s ease, color .22s ease, transform .22s ease;
}

@media (hover: hover) {
  .course:hover .btn {
    transform: translateY(-2px);
  }
}

.closing {
  padding: 100px 0 112px;
  border-top: 0;
  background: linear-gradient(180deg, #070707, #10100f);
  text-align: center;
}

.closing h2 {
  margin: 0 0 22px;
  font-family: var(--display);
  font-size: clamp(3.2rem, 7.1vw, 5.9rem);
  font-weight: 400;
  line-height: .88;
  letter-spacing: 0;
}

.closing h2 span {
  color: var(--red);
}

.closing p {
  max-width: 640px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 1.08rem;
}

.site-footer {
  margin-top: auto;
  padding: 28px 0 34px;
  border-top: 1px solid var(--line);
  background: #070707;
  color: var(--quiet);
  font-size: .82rem;
}

.site-footer .foot {
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.site-footer a,
.footer-pill {
  color: var(--muted);
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}

.footer-pill {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(244, 240, 232, .035);
  color: var(--soft);
  touch-action: manipulation;
}

@media (hover: hover) {
  .site-footer a:hover {
    color: var(--ink);
  }

  .footer-pill:hover {
    transform: translateY(-2px);
    border-color: rgba(244, 240, 232, .25);
    background: rgba(244, 240, 232, .065);
  }
}

.foot {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.sales-main {
  min-height: 100vh;
}

.formation-body::before {
  opacity: .16;
}

.sales-hero {
  position: relative;
  overflow: hidden;
  padding: 106px 0 54px;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.sales-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--hero-image) right center / min(58vw, 820px) auto no-repeat;
  opacity: .42;
  filter: saturate(.88) contrast(1.08);
}

.sales-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, #070707 0%, rgba(7, 7, 7, .92) 42%, rgba(7, 7, 7, .38) 100%),
    linear-gradient(180deg, rgba(7, 7, 7, .42), #070707 100%);
}

.sales-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 44px;
  align-items: center;
}

.sales-hero-copy {
  min-width: 0;
  padding-bottom: 18px;
}

.sales-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 18px;
}

.sales-title {
  max-width: 880px;
  margin: 0 0 22px;
  overflow-wrap: anywhere;
  font-size: clamp(3.35rem, 8vw, 7.8rem);
  font-weight: 900;
  line-height: .86;
  letter-spacing: 0;
  text-wrap: balance;
}

.sales-lead {
  max-width: 720px;
  margin: 0 0 28px;
  color: var(--soft);
  font-size: clamp(1.04rem, 1.55vw, 1.26rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(18px, 3vw, 32px);
}

.sales-card {
  position: sticky;
  top: 96px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 16, 15, .76);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .34);
  transition: border-color .2s ease, transform .2s ease;
}

@media (hover: hover) {
  .sales-card:hover {
    border-color: rgba(244, 240, 232, .22);
    transform: translateY(-2px);
  }
}

.sales-card img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  opacity: .9;
  filter: saturate(.9) contrast(1.06);
}

.sales-card-body {
  padding: 20px;
  border-top: 1px solid var(--line);
}

.buy-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.buy-row:first-child {
  padding-top: 0;
}

.buy-row + .btn {
  margin-top: 16px;
}

.buy-row span {
  color: var(--quiet);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.buy-row p {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 500;
  text-align: right;
}

.sales-card .btn {
  width: 100%;
}

.microcopy {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: .82rem;
}

.sales-section {
  padding: 76px 0;
  border-top: 1px solid var(--line);
}

.sales-section-grid {
  display: grid;
  grid-template-columns: minmax(220px, 330px) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.section-label h2,
.sales-section-head h2,
.list-panel h2,
.sales-cta-band h2 {
  margin: 10px 0 0;
  font-size: clamp(2rem, 4.2vw, 4.4rem);
  font-weight: 900;
  line-height: .94;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-note {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--muted);
}

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

.outcome-card {
  position: relative;
  min-height: 154px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(200, 16, 46, .14), transparent 38%),
    linear-gradient(180deg, rgba(244, 240, 232, .06), rgba(244, 240, 232, .018));
  box-shadow: inset 0 1px 0 rgba(244, 240, 232, .05);
}

.outcome-card span {
  width: 34px;
  height: 34px;
  display: block;
  margin-bottom: 26px;
  border: 1px solid rgba(200, 16, 46, .42);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(200, 16, 46, .95), rgba(200, 16, 46, .18));
  box-shadow: 0 12px 32px rgba(200, 16, 46, .16);
}

.outcome-card p {
  margin: 0;
  color: var(--ink);
  font-size: 1.04rem;
  font-weight: 720;
  line-height: 1.38;
}

.program-section {
  background:
    linear-gradient(180deg, rgba(244, 240, 232, .022), rgba(244, 240, 232, .008));
}

.sales-section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.program-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.program-row {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 16, 15, .62);
}

.program-row h3 {
  margin: 0 0 26px;
  color: var(--ink);
  font-size: 1.04rem;
  line-height: 1.1;
}

.program-row p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

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

.list-panel {
  position: relative;
  min-width: 0;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(244, 240, 232, .06), rgba(16, 16, 15, .72));
  box-shadow: inset 0 1px 0 rgba(244, 240, 232, .05);
}

.list-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), transparent);
}

.sales-list {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.sales-list li {
  position: relative;
  padding: 15px 0 15px 24px;
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-weight: 620;
}

.sales-list li::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--red-hot);
}

.original-sales-section {
  background: #080808;
}

.original-flow {
  display: grid;
  gap: 6px;
}

.original-block {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(16, 16, 15, .58);
  overflow: hidden;
}

.original-block summary {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 18px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
  list-style: none;
}

.original-block summary::-webkit-details-marker {
  display: none;
}

.original-block summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--red-hot);
  font-weight: 800;
}

.original-block[open] summary {
  border-bottom: 1px solid var(--line);
}

.original-block[open] summary::after {
  content: "−";
}

.original-block summary small {
  display: block;
  margin-bottom: 5px;
  color: var(--red-hot);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.original-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(244, 240, 232, .025), transparent);
}

.original-block.has-image .original-inner {
  grid-template-columns: minmax(0, .98fr) minmax(260px, .72fr);
  align-items: center;
}

.original-block.compact .original-inner {
  padding: 18px 22px 22px;
}

.original-copy {
  min-width: 0;
}

.original-block h3 {
  margin: 0 0 14px;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: clamp(1.8rem, 3.6vw, 3.8rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: 0;
  text-wrap: balance;
}

.original-block.compact h3 {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.08;
}

.original-subtitle {
  margin: -4px 0 16px;
  color: var(--ink);
  font-weight: 750;
}

.original-block p:not(.eyebrow):not(.original-subtitle) {
  margin: 0;
  color: var(--soft);
  font-size: .98rem;
}

.original-block p + p {
  margin-top: 14px;
}

.original-block img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 7px;
  border: 1px solid var(--line);
  opacity: .9;
}

.original-block.compact img {
  max-height: 150px;
}

.original-faqs {
  margin-top: 48px;
}

.faq-item {
  border-top: 1px solid var(--line);
}

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

.faq-item summary {
  cursor: pointer;
  padding: 18px 0;
  color: var(--ink);
  font-weight: 800;
}

.faq-item p {
  max-width: 860px;
  margin: 0 0 22px;
  color: var(--soft);
}

.sales-proof-section {
  background: rgba(244, 240, 232, .018);
}

.sales-proof-grid {
  display: grid;
  grid-template-columns: minmax(220px, 330px) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.sales-proof-grid .section-label .btn {
  margin-top: 24px;
}

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

.sales-proof-card {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 16, 15, .74);
}

.sales-proof-card span {
  display: block;
  margin-bottom: 24px;
  color: var(--red-hot);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sales-proof-card p {
  margin: 0 0 18px;
  color: var(--soft);
}

.sales-proof-card small {
  color: var(--muted);
  font-weight: 750;
}

.sales-cta-band {
  padding: 76px 0;
  border-top: 0;
  border-bottom: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(200, 16, 46, .055), transparent 46%),
    linear-gradient(180deg, #070707, #070707);
  text-align: center;
}

.sales-cta-band p:not(.eyebrow) {
  max-width: 640px;
  margin: 18px auto 28px;
  color: var(--soft);
}

.testimonials-end {
  position: relative;
  overflow: hidden;
  margin-top: -28px;
  padding: 112px 0 88px;
  border: 0;
  background:
    radial-gradient(circle at 50% 44%, rgba(200, 16, 46, .045), transparent 46%),
    linear-gradient(180deg, rgba(7, 7, 7, 0), rgba(7, 7, 7, .9) 22%, #070707 100%);
}

.testimonials-end::before {
  content: "";
  position: absolute;
  inset: -1px 0 auto;
  height: 230px;
  background: linear-gradient(180deg, #070707 0%, rgba(7, 7, 7, .92) 24%, rgba(7, 7, 7, 0) 100%);
  pointer-events: none;
}

.testimonials-end .wrap {
  position: relative;
  z-index: 1;
}

.legal-body::before {
  opacity: .08;
}

.legal-main {
  padding: 132px 0 76px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 780px);
  gap: 48px;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 8px;
  max-height: calc(100vh - 128px);
  overflow: auto;
  padding-right: 10px;
}

.legal-toc span {
  margin-bottom: 10px;
  color: var(--red);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.legal-toc a {
  padding: 5px 0 5px 12px;
  border-left: 1px solid transparent;
  color: var(--quiet);
  font-size: .82rem;
  line-height: 1.35;
  transition: color .2s ease, border-color .2s ease;
}

.legal-toc a:hover,
.legal-toc a.active {
  color: var(--ink);
  border-left-color: var(--red);
}

.legal-content {
  min-width: 0;
  max-width: 100%;
}

.legal-title {
  max-width: 820px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.9rem, 5.8vw, 4.9rem);
  font-weight: 400;
  line-height: .9;
  letter-spacing: 0;
}

.legal-title-cgv {
  max-width: 760px;
}

.legal-updated {
  margin: 16px 0 26px;
  color: var(--quiet);
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.legal-lede {
  max-width: 700px;
  margin: 0 0 34px;
  color: var(--soft);
  font-size: clamp(1.02rem, 1.45vw, 1.22rem);
  line-height: 1.7;
}

.legal-brief {
  margin: 0 0 54px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(200, 16, 46, .12), transparent 42%),
    rgba(16, 16, 15, .68);
}

.legal-brief h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 400;
  line-height: .95;
}

.legal-title span,
.legal-initial {
  color: var(--red);
}

.legal-brief h2 span,
.legal-content h2 span {
  color: inherit;
}

.legal-brief ul,
.legal-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-brief li,
.legal-content li {
  position: relative;
  padding-left: 18px;
  color: var(--soft);
  margin: 10px 0;
}

.legal-brief li::before,
.legal-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 8px;
  height: 1px;
  background: var(--red);
}

.legal-note {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--quiet);
  font-size: .86rem;
}

.legal-section {
  margin: 0 0 46px;
}

.legal-content h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 400;
  line-height: .96;
  letter-spacing: 0;
}

.legal-content h3 {
  margin: 22px 0 8px;
  color: var(--ink);
  font-size: 1rem;
}

.legal-content p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.legal-content strong {
  color: var(--ink);
  font-weight: 650;
}

.legal-content a {
  color: var(--soft);
  text-decoration: underline;
  text-decoration-color: rgba(200, 16, 46, .6);
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.legal-content a:hover {
  color: var(--ink);
}

.legal-ending {
  margin-top: 56px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(244, 240, 232, .045);
  box-shadow: inset 0 1px 0 rgba(244, 240, 232, .05);
  text-align: left;
}

.legal-ending p {
  max-width: 680px;
  margin: 0;
  color: var(--soft);
}

.legal-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 22px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(244, 240, 232, .035);
  color: var(--ink);
  font-size: .88rem;
  font-weight: 500;
  text-decoration: none;
  text-decoration-color: transparent;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}

.legal-back:hover {
  color: var(--ink);
  border-color: var(--line-strong);
  background: rgba(244, 240, 232, .075);
  transform: translateY(-2px);
}

.help-body::before {
  opacity: .1;
}

.help-main {
  min-height: 100vh;
}

.help-hero {
  padding: 132px 0 44px;
  background:
    linear-gradient(180deg, rgba(244, 240, 232, .03), transparent 76%);
}

.help-hero-grid {
  display: block;
}

.help-hero h1 {
  max-width: 820px;
  margin: 12px 0 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 7vw, 6.2rem);
  font-weight: 400;
  line-height: .9;
  letter-spacing: 0;
}

.help-hero h1 span {
  color: var(--red);
}

.help-hero p {
  max-width: 700px;
  margin: 20px 0 0;
  color: var(--soft);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.help-brief {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(200, 16, 46, .12), transparent 44%),
    rgba(16, 16, 15, .7);
}

.help-brief h2 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 400;
  line-height: .95;
}

.help-brief ul,
.help-contact ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.help-brief li,
.help-contact li {
  position: relative;
  margin: 10px 0;
  padding-left: 18px;
  color: var(--soft);
}

.help-contact li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: .22em;
  color: var(--red);
  font-size: .92em;
  font-weight: 850;
  line-height: 1;
}

.help-brief a,
.help-faq a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: rgba(200, 16, 46, .65);
  text-underline-offset: 3px;
}

.help-search-band {
  position: sticky;
  top: 72px;
  z-index: 20;
  padding: 14px 0;
  border: 0;
  background: rgba(7, 7, 7, .78);
  backdrop-filter: blur(18px);
}

.help-search {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.help-search span {
  color: var(--quiet);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.help-search input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(244, 240, 232, .055);
  color: var(--ink);
  font: 500 .95rem/1 var(--font);
}

.help-search input::placeholder {
  color: var(--quiet);
}

.help-filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0 6px;
  scrollbar-width: none;
}

.help-filters::-webkit-scrollbar {
  display: none;
}

.help-filters button {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(244, 240, 232, .035);
  color: var(--muted);
  font: 750 .75rem/1 var(--font);
  cursor: pointer;
  touch-action: manipulation;
  transform: translateZ(0);
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}

.help-filters button.active {
  border-color: rgba(200, 16, 46, .55);
  background: rgba(200, 16, 46, .22);
  color: var(--ink);
}

@media (hover: hover) {
  .help-filters button:hover {
    transform: translateY(-1px);
    border-color: var(--line-strong);
    color: var(--ink);
  }
}

.help-content {
  padding: 54px 0 38px;
}

.help-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.help-contact {
  position: sticky;
  top: 216px;
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 16, 15, .7);
}

.help-contact > p {
  margin: 0;
  color: var(--red);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.help-contact h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 400;
  line-height: .95;
}

.help-contact small {
  color: var(--quiet);
  font-size: .82rem;
  line-height: 1.55;
}

.help-faq {
  min-width: 0;
  display: grid;
  gap: 48px;
}

.help-group[hidden],
.help-empty:not(.visible),
.help-group details[hidden] {
  display: none;
}

.help-group h2 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(2.1rem, 4.7vw, 4.1rem);
  font-weight: 400;
  line-height: .92;
}

.help-group h2 span {
  color: var(--red);
}

.help-group details {
  border-top: 1px solid var(--line);
}

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

.help-group summary {
  position: relative;
  display: block;
  padding: 22px 46px 22px 0;
  color: var(--ink);
  font-weight: 850;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
  transition: color .2s ease;
}

.help-group summary::-webkit-details-marker {
  display: none;
}

.help-group summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red);
  font-size: 1.25rem;
  line-height: 1;
  transition: transform .22s ease, color .22s ease;
}

.help-group details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.help-group details > div {
  max-width: 760px;
  padding: 0 44px 24px 0;
  color: var(--muted);
}

.help-group p {
  margin: 0 0 13px;
  line-height: 1.72;
}

.help-group p:last-child {
  margin-bottom: 0;
}

@media (hover: hover) {
  .help-group details:hover summary {
    color: var(--soft);
  }

  .help-group details:hover summary::after {
    color: var(--ink);
  }
}

.help-empty {
  margin: 0;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(16, 16, 15, .68);
}

.help-ending {
  padding: 72px 0 92px;
  background: transparent;
  text-align: center;
}

.help-ending h2 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  font-weight: 400;
  line-height: .92;
}

.help-ending h2 span {
  color: var(--red);
}

.help-ending p {
  max-width: 640px;
  margin: 0 auto 24px;
  color: var(--soft);
}

.checkout-body {
  background: var(--bg);
}

.checkout-body::before {
  opacity: 0;
  background: none;
}

.checkout-body::after {
  background: var(--bg);
}

.checkout-main {
  min-height: 100vh;
}

.checkout-hero {
  position: relative;
  overflow: hidden;
  padding: 134px 0 66px;
  background: var(--bg);
}

.checkout-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 120px;
  pointer-events: none;
  background: var(--bg);
}

.checkout-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 480px);
  gap: 48px;
  align-items: end;
}

.checkout-copy h1,
.checkout-ending h2 {
  margin: 14px 0 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 7.1vw, 5.9rem);
  font-weight: 400;
  line-height: .88;
  letter-spacing: 0;
}

.checkout-copy h1 .red {
  color: var(--red);
}

.checkout-copy > p:not(.eyebrow),
.checkout-ending p {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--soft);
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  line-height: 1.68;
}

.checkout-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.checkout-actions .btn {
  font-weight: 500;
}

.checkout-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 30px;
}

.checkout-pills span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  gap: 9px;
  color: var(--soft);
  font-size: .82rem;
  font-weight: 650;
}

.checkout-pills span::before {
  content: "✓";
  color: var(--red);
  font-weight: 900;
  line-height: 1;
}

.checkout-card {
  padding: 26px;
  border: 1px solid rgba(244, 240, 232, .16);
  border-radius: 8px;
  background: rgba(16, 16, 15, .76);
  box-shadow: 0 24px 90px rgba(0, 0, 0, .28);
}

.checkout-card h2 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: .95;
}

.checkout-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.checkout-steps li {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(244, 240, 232, .1);
}

.checkout-steps li:last-child {
  padding-bottom: 0;
}

.checkout-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 30px;
  border: 1px solid rgba(200, 16, 46, .48);
  border-radius: 999px;
  color: var(--red);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.checkout-steps h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
}

.checkout-steps p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.62;
}

.checkout-support {
  padding: 34px 0 54px;
}

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

.checkout-note {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 16, 15, .62);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.checkout-note h2 {
  margin: 0;
  font-size: 1.14rem;
  line-height: 1.25;
}

.checkout-note p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.68;
}

.checkout-note a {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--ink);
  text-decoration: none;
}

.checkout-note a span {
  text-decoration: underline;
  text-decoration-color: rgba(244, 240, 232, .36);
  text-underline-offset: 4px;
}

.checkout-note a::before {
  content: "→";
  color: var(--red);
  font-weight: 900;
}

@media (hover: hover) {
  .checkout-note:hover {
    transform: translateY(-4px);
    border-color: rgba(244, 240, 232, .26);
    background: rgba(16, 16, 15, .78);
  }
}

.checkout-ending {
  position: relative;
  overflow: hidden;
  padding: 80px 0 104px;
  text-align: center;
  background: var(--bg);
}

.checkout-ending p {
  margin-left: auto;
  margin-right: auto;
}

.checkout-actions-center {
  justify-content: center;
}

.reveal {
  opacity: 0;
  transform: translateY(34px) scale(.985);
  transition:
    opacity .78s cubic-bezier(.2, .78, .24, 1),
    transform .78s cubic-bezier(.2, .78, .24, 1);
}

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

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

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

@media (max-width: 1200px) and (min-width: 981px) {
  .lead-kit {
    grid-template-columns: minmax(360px, 46%) minmax(0, 1fr);
    grid-template-areas:
      "kit-visual kit-copy"
      "kit-visual kit-form";
    column-gap: clamp(18px, 2vw, 28px);
    row-gap: 16px;
    align-items: center;
    min-height: 286px;
  }

  .lead-kit-visual {
    grid-area: kit-visual;
  }

  .lead-kit-copy {
    grid-area: kit-copy;
    align-self: end;
    padding-block: 28px 0;
  }

  .lead-kit h2 {
    max-width: 520px;
    font-size: clamp(2.45rem, 4vw, 3rem);
  }

  .lead-kit p {
    max-width: 46ch;
  }

  .lead-form {
    grid-area: kit-form;
    align-self: start;
    max-width: 620px;
    padding-bottom: 28px;
  }

  .lead-form input {
    min-width: 0;
  }
}

@media (max-width: 980px) {
  .home-scroll-progress {
    display: block;
  }

  .lead-kit-success {
    --lead-kit-success-x: 0;
    left: 20px;
    right: 20px;
    width: auto;
    max-width: none;
    align-items: flex-start;
    border-radius: 10px;
  }

  body.ck-visible .lead-kit-success {
    bottom: 150px;
  }

  .lead-kit-success-copy {
    display: grid;
    gap: 4px;
  }

  .lead-kit-success-copy span {
    white-space: normal;
  }

  .nav {
    gap: clamp(12px, 2.4vw, 22px);
  }

  .nav-links {
    display: flex;
    gap: 18px;
    font-size: .84rem;
  }

  .section-head,
  .sales-hero-grid,
  .sales-section-grid,
  .split-grid,
  .testimonials-hero-grid,
  .sales-proof-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .home-video-wall {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 0 48px 10px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-rail-shell::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    width: 58px;
    pointer-events: none;
    background: linear-gradient(270deg, var(--bg) 8%, rgba(7, 7, 7, 0));
  }

  .catalogue-toolbar .mobile-rail-shell::after {
    background: linear-gradient(270deg, rgba(7, 7, 7, .96) 8%, rgba(7, 7, 7, 0));
  }

  .help-search-band .mobile-rail-shell::after {
    background: linear-gradient(270deg, rgba(7, 7, 7, .96) 8%, rgba(7, 7, 7, 0));
  }

  .mobile-rail-button {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(244, 240, 232, .16);
    border-radius: 999px;
    background: rgba(12, 12, 12, .88);
    color: var(--ink);
    transform: translateY(-50%);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .26);
    backdrop-filter: blur(14px);
    transition: opacity .18s ease, border-color .18s ease, background .18s ease;
  }

  .mobile-rail-button svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-rail-button.rail-left {
    left: 0;
  }

  .mobile-rail-button.rail-right {
    right: 0;
  }

  .mobile-rail-button[disabled] {
    opacity: 0;
    pointer-events: none;
  }

  .mobile-rail-button[data-rail-disabled="true"] {
    opacity: 0;
    pointer-events: none;
  }

  .filter-rail .filters {
    padding-left: 0;
    padding-right: 48px;
  }

  .help-filter-rail .help-filters {
    padding-left: 0;
    padding-right: 48px;
  }

  .filter-rail .mobile-rail-button {
    top: calc(50% - 3px);
    width: 34px;
    height: 34px;
  }

  .help-filter-rail .mobile-rail-button {
    top: calc(50% - 3px);
    width: 34px;
    height: 34px;
  }

  .home-testimonial-rail .mobile-rail-button {
    top: 24%;
    width: 42px;
    height: 52px;
    border-radius: 8px;
  }

  .home-video-wall::-webkit-scrollbar {
    display: none;
  }

  .home-wall-card {
    flex: 0 0 min(72vw, 330px);
    scroll-snap-align: start;
  }

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

  .help-hero-grid,
  .help-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .checkout-support-grid {
    grid-template-columns: 1fr;
  }

  .help-contact {
    position: relative;
    top: auto;
  }

  .legal-toc {
    display: none;
  }

  .catalogue-hero {
    padding: 104px 0 76px;
  }

  .lead-kit {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: 0;
    padding: 18px;
  }

  .lead-kit-copy {
    padding-block: 0;
  }

  .lead-kit-visual {
    display: none;
  }

  .lead-kit-mobile-visual {
    display: block;
  }

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

  .sales-hero {
    padding: 104px 0 46px;
  }

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

  .sales-card {
    position: relative;
    top: auto;
    max-width: 560px;
  }

  .original-block.has-image,
  .original-block.compact .original-inner,
  .original-block.has-image .original-inner {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .video-proof-card {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(100% - 28px, 1180px);
  }

  .lead-kit-success {
    left: 14px;
    right: 14px;
    bottom: 18px;
  }

  body.ck-visible .lead-kit-success {
    bottom: 176px;
  }

  .reveal {
    transform: translateY(16px) scale(.995);
    transition:
      opacity .36s cubic-bezier(.2, .78, .24, 1),
      transform .36s cubic-bezier(.2, .78, .24, 1);
  }

  .nav {
    min-height: 66px;
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    margin-left: auto;
  }

  .brand {
    gap: 10px;
  }

  .mark {
    width: 34px;
    transform: scale(.86);
    transform-origin: left center;
  }

  .brand-name {
    max-width: 42vw;
    font-size: .95rem;
  }

  .login-link {
    display: inline-flex;
    min-height: 38px;
    padding: 0 12px;
    font-size: .78rem;
  }

  .btn {
    min-height: 40px;
    padding: 0 13px;
    font-size: .82rem;
  }

  .catalogue-hero {
    padding: 96px 0 68px;
  }

  .section-head {
    margin-bottom: 22px;
  }

  .section-title {
    font-size: clamp(3.35rem, 15vw, 5.5rem);
    line-height: .92;
  }

  .section-copy {
    font-size: .98rem;
    line-height: 1.55;
  }

  .catalogue-hero .section-copy {
    margin-top: 16px;
  }

  .hero-stats {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-top: 22px;
  }

  .hero-stat {
    width: 100%;
    min-height: 58px;
    justify-content: flex-start;
    gap: 6px;
    padding: 10px 9px;
  }

  .hero-stat-number {
    flex: 0 0 auto;
    font-size: clamp(1.65rem, 8vw, 2.05rem);
  }

  .hero-stat span:last-child {
    max-width: none;
    font-size: .71rem;
    line-height: 1.18;
  }

  .catalogue-toolbar {
    top: 66px;
    padding: 10px 0;
  }

  .filter {
    min-height: 36px;
    font-size: .69rem;
  }

  .lead-kit {
    padding: 18px;
  }

  .lead-form {
    flex-direction: column;
  }

  .lead-form .btn {
    width: 100%;
  }

  .home-proof-head {
    display: grid;
    gap: 16px;
    align-items: start;
  }

  .home-proof-head .btn {
    justify-self: start;
    width: max-content;
  }

  .home-video-card {
    min-height: 300px;
  }

  .home-video-copy {
    padding: 20px;
  }

  .home-wall-card {
    flex-basis: min(84vw, 330px);
  }

  .course--machine .course-machine-spinner {
    animation: machineLogoTurn 16s linear infinite;
    opacity: .9;
  }

  .home-wall-copy {
    padding: 14px;
  }

  .testimonials-hero {
    padding: 92px 0 46px;
  }

  .testimonials-hero h1 {
    font-size: clamp(2.75rem, 12vw, 4.5rem);
    line-height: .92;
  }

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

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

  .video-proof-card {
    grid-column: auto;
  }

  .video-frame {
    aspect-ratio: 16 / 9;
  }

  .video-copy {
    min-height: 0;
  }

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

  .course {
    min-height: 308px;
  }

  .course-machine-spinner {
    opacity: .96;
    filter: drop-shadow(0 22px 48px rgba(200, 16, 46, .32)) brightness(1.08);
    animation-duration: 9s;
  }

  .course-body {
    padding: 20px;
  }

  .course h2 {
    font-size: clamp(1.85rem, 9vw, 2.55rem);
  }

  .course p {
    min-height: 0;
  }

  .closing {
    padding: 76px 0 88px;
  }

  .sales-hero {
    padding: 86px 0 38px;
  }

  .sales-title {
    font-size: clamp(2.65rem, 14vw, 4.7rem);
    line-height: .92;
  }

  .sales-lead {
    font-size: 1rem;
  }

  .hero-actions,
  .hero-actions .btn,
  .sales-card .btn {
    width: 100%;
  }

  .sales-card img {
    aspect-ratio: 16 / 10;
  }

  .sales-card-body {
    padding: 18px;
  }

  .sales-card .microcopy {
    display: none;
  }

  .sales-section {
    padding: 50px 0;
  }

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

  .section-label h2,
  .sales-section-head h2,
  .list-panel h2,
  .sales-cta-band h2 {
    font-size: clamp(2rem, 9vw, 3.3rem);
  }

  .outcome-card {
    min-height: 0;
  }

  .program-row {
    padding: 20px 0;
  }

  .list-panel {
    padding: 20px;
  }

  .sales-cta-band {
    padding: 64px 0;
  }

  .legal-main {
    padding: 94px 0 56px;
  }

  .help-hero {
    padding: 92px 0 36px;
  }

  .help-hero h1 {
    font-size: clamp(3rem, 15vw, 5.2rem);
    line-height: .92;
  }

  .help-search-band {
    top: 66px;
    padding: 12px 0;
  }

  .help-search input {
    min-height: 44px;
  }

  .help-content {
    padding: 40px 0 30px;
  }

  .help-contact {
    padding: 20px;
  }

  .help-faq {
    gap: 38px;
  }

  .help-group h2 {
    font-size: clamp(2.2rem, 11vw, 3.5rem);
  }

  .help-group summary {
    padding: 20px 38px 20px 0;
  }

  .help-group details > div {
    padding: 0 0 22px;
  }

  .help-ending {
    padding: 58px 0 72px;
  }

  .checkout-hero {
    padding: 92px 0 38px;
  }

  .checkout-copy h1,
  .checkout-ending h2 {
    font-size: clamp(2.8rem, 13.5vw, 4.6rem);
    line-height: .92;
  }

  .checkout-copy > p:not(.eyebrow),
  .checkout-ending p {
    font-size: .98rem;
    line-height: 1.62;
  }

  .checkout-actions,
  .checkout-actions .btn {
    width: 100%;
  }

  .checkout-card,
  .checkout-note {
    padding: 20px;
  }

  .checkout-steps li {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px 0;
  }

  .checkout-pills span {
    min-height: 26px;
    font-size: .78rem;
  }

  .checkout-support {
    padding: 28px 0 40px;
  }

  .checkout-note {
    min-height: 0;
  }

  .checkout-ending {
    padding: 58px 0 76px;
  }

  .legal-toc {
    display: none;
  }

  .legal-title {
    font-size: clamp(2.65rem, 12.5vw, 4.1rem);
    overflow-wrap: anywhere;
  }

  .legal-brief {
    padding: 20px;
    margin-bottom: 42px;
  }

  .legal-content h2 {
    font-size: clamp(1.75rem, 8vw, 2.55rem);
    overflow-wrap: anywhere;
  }

  .foot {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    gap: 8px;
  }

  .footer-pill {
    min-height: 38px;
    padding: 0 13px;
  }

}
