@font-face {
  font-family: "Manrope";
  src: url("fonts/Manrope-Variable.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 200 800;
}

:root {
  color-scheme: dark;
  --bg: #0a0a0c;
  --bg-deep: #060607;
  --surface: #121216;
  --surface-raised: #18181e;
  --text: #ffffff;
  --body: #d1d1d6;
  --muted: #8f8f98;
  --gold: #d4af37;
  --gold-light: #e5c158;
  --gold-dark: #8f7121;
  --line: rgba(255, 255, 255, 0.11);
  --header-height: 76px;
  --shell: 1240px;
  --section-space: clamp(5.5rem, 10vw, 10rem);
  --font: "Manrope", Arial, sans-serif;
  --display: "Arial Narrow", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1.5rem);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(212, 175, 55, 0.055), transparent 23rem),
    var(--bg);
  color: var(--body);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 20;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background-image:
    repeating-linear-gradient(90deg, transparent 0, transparent 3px, rgba(255, 255, 255, 0.012) 4px),
    repeating-linear-gradient(0deg, transparent 0, transparent 5px, rgba(255, 255, 255, 0.01) 6px);
  mix-blend-mode: soft-light;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

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

h1,
h2,
h3 {
  color: var(--text);
  font-family: var(--display);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 5px;
}

::selection {
  background: var(--gold);
  color: #080808;
}

.shell {
  width: min(calc(100% - 2rem), var(--shell));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: var(--section-space);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  background: var(--gold-light);
  color: #080808;
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.55rem;
  border: 1px solid #ddb94a;
  border-radius: 999px;
  background: linear-gradient(135deg, #f0cf68, #d6ad34);
  box-shadow:
    0 8px 24px rgba(212, 175, 55, 0.12),
    inset 0 1px rgba(255, 255, 255, 0.22);
  color: #09090a;
  font-family: var(--font);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  transition:
    transform 180ms var(--ease),
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.button:hover {
  border-color: #eac958;
  background: linear-gradient(135deg, #f7dc83, #e2b93f);
  transform: translateY(-2px);
  box-shadow:
    0 12px 30px rgba(212, 175, 55, 0.18),
    inset 0 1px rgba(255, 255, 255, 0.25);
}

.button--compact {
  min-height: 44px;
  padding: 0.7rem 1.15rem;
  font-size: 0.68rem;
}

.button--dark {
  border-color: #141417;
  background: #141417;
  box-shadow: none;
  color: #fff;
}

.button--dark:hover {
  border-color: #202025;
  background: #202025;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

.button--wide {
  width: 100%;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition:
    background-color 240ms ease,
    border-color 240ms ease,
    backdrop-filter 240ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(7, 7, 8, 0.88);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  width: 132px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: filter 240ms ease;
}

.brand:hover img {
  filter: drop-shadow(0 0 12px rgba(229, 193, 88, 0.45));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2.5rem);
}

.site-nav > a:not(.button) {
  position: relative;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -0.55rem;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease);
}

.site-nav > a:not(.button):hover,
.site-nav > a[aria-current="true"] {
  color: #fff;
}

.site-nav > a:not(.button):hover::after,
.site-nav > a[aria-current="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: max(740px, 100svh);
  overflow: hidden;
  background: var(--bg-deep);
}

.hero__media {
  position: absolute;
  inset: 0 0 0 43%;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  filter: grayscale(1) contrast(1.15) brightness(0.83);
  transform: scale(1.035);
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #070708 0%, #070708 37%, rgba(7, 7, 8, 0.9) 50%, rgba(7, 7, 8, 0.25) 78%, rgba(7, 7, 8, 0.54) 100%),
    linear-gradient(0deg, rgba(7, 7, 8, 0.75), transparent 35%);
}

.hero__line {
  position: absolute;
  top: 20%;
  bottom: 16%;
  left: 48%;
  width: 1px;
  background: linear-gradient(transparent, var(--gold-light), transparent);
  opacity: 0.5;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: max(740px, 100svh);
  align-items: center;
  padding-top: var(--header-height);
}

.hero__content {
  width: min(570px, 46%);
  padding-block: 5rem 4rem;
}

.hero__logo {
  width: 220px;
  height: 146px;
  margin: 0 0 clamp(2rem, 4vw, 4rem);
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 0 18px rgba(229, 193, 88, 0.18));
}

.hero h1 {
  max-width: 570px;
  margin-bottom: 1.8rem;
  color: #fff;
  font-size: clamp(4rem, 6.2vw, 6.2rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.78;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: transparent;
  font-size: 0.64em;
  letter-spacing: -0.055em;
  -webkit-text-stroke: 1px var(--gold-light);
  text-stroke: 1px var(--gold-light);
}

.hero__lead {
  max-width: 545px;
  margin-bottom: 2.2rem;
  padding-left: 1.25rem;
  border-left: 1px solid var(--gold);
  color: var(--body);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.55;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 9vw, 9rem);
  align-items: start;
}

.section-heading {
  position: sticky;
  top: calc(var(--header-height) + 3rem);
}

.section-heading h2,
.benefits h2,
.about h2 {
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(3.4rem, 6.6vw, 6.7rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.section-heading h2 span,
.benefits h2 span {
  display: block;
  color: var(--gold-light);
}

.problems {
  background:
    linear-gradient(130deg, rgba(212, 175, 55, 0.045), transparent 42%),
    var(--bg);
}

.problem-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.problem-list li {
  position: relative;
  padding: 1.55rem 0 1.55rem 3.3rem;
  border-bottom: 1px solid var(--line);
  color: #f0f0f2;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 600;
  line-height: 1.45;
}

.problem-list li::before {
  position: absolute;
  top: 2.04rem;
  left: 0.2rem;
  width: 1.4rem;
  height: 1px;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(229, 193, 88, 0.7);
  content: "";
}

.statement {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  margin-top: clamp(4rem, 8vw, 7rem);
  padding: clamp(2rem, 5vw, 4.25rem);
  background:
    radial-gradient(circle at 94% 16%, rgba(255, 255, 255, 0.25), transparent 12rem),
    linear-gradient(120deg, #a88728, var(--gold-light) 48%, #bb922e);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  color: #0a0a0c;
}

.statement blockquote {
  max-width: 890px;
  margin-bottom: 0;
  font-size: clamp(1.6rem, 3.2vw, 3.15rem);
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.benefits {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 50%, rgba(212, 175, 55, 0.08), transparent 30rem),
    var(--surface);
}

.benefits__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.benefits__media {
  position: relative;
  height: min(760px, 74vw);
  min-height: 550px;
  overflow: hidden;
  border: 1px solid rgba(229, 193, 88, 0.42);
  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.45),
    0 0 50px rgba(212, 175, 55, 0.08);
}

.benefits__media::after,
.module-card__media::after,
.about__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(4, 4, 5, 0.72));
  content: "";
  pointer-events: none;
}

.benefits__media img,
.module-card__media img,
.about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.85) contrast(1.08);
}

.benefits h2 {
  margin-bottom: clamp(2.2rem, 5vw, 4.5rem);
}

.benefits h3 {
  margin-bottom: 1.5rem;
  color: var(--gold-light);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  letter-spacing: -0.02em;
}

.benefit-list {
  display: grid;
  gap: 0;
  margin: 0 0 2.3rem;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.benefit-list li {
  position: relative;
  padding: 1rem 0 1rem 2.1rem;
  border-bottom: 1px solid var(--line);
  color: #ededf0;
  line-height: 1.45;
}

.benefit-list li::before {
  position: absolute;
  top: 1.12rem;
  left: 0;
  color: var(--gold-light);
  content: "✓";
  font-size: 0.9rem;
  font-weight: 900;
}

.modules {
  background:
    linear-gradient(90deg, transparent calc(50% - 0.5px), rgba(255, 255, 255, 0.035) calc(50% - 0.5px), rgba(255, 255, 255, 0.035) calc(50% + 0.5px), transparent calc(50% + 0.5px)),
    var(--bg-deep);
}

.modules__header {
  display: grid;
  max-width: 920px;
  grid-template-columns: minmax(130px, 0.28fr) minmax(0, 0.72fr);
  gap: 1rem clamp(2rem, 6vw, 5rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.modules__header > p:first-child,
.module-card__eyebrow,
.course-offer__eyebrow {
  margin: 0;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.modules__header h2 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.8rem);
  font-weight: 900;
  line-height: 0.88;
  text-transform: uppercase;
}

.modules__header h2 span {
  display: block;
  color: var(--gold-light);
}

.modules__header > p:last-child {
  grid-column: 2;
  max-width: 42rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.module-card--open {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  overflow: hidden;
  border: 1px solid rgba(229, 193, 88, 0.48);
  background: var(--surface-raised);
  box-shadow:
    0 28px 95px rgba(0, 0, 0, 0.58),
    0 0 65px rgba(212, 175, 55, 0.075);
}

.module-card--open + .module-card--open {
  margin-top: clamp(1.5rem, 4vw, 3.5rem);
}

.module-card--reverse .module-card__media {
  grid-column: 2;
  grid-row: 1;
}

.module-card--reverse .module-card__content {
  grid-column: 1;
  grid-row: 1;
}

.module-card__media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: #0d0d0f;
}

.module-card__part {
  position: absolute;
  z-index: 2;
  right: 1.25rem;
  bottom: 1.25rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(229, 193, 88, 0.5);
  background: rgba(7, 7, 8, 0.82);
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.module-card__media img {
  object-position: 51% center;
  filter: none;
}

.module-card__content {
  padding: clamp(2rem, 5vw, 4.8rem);
}

.module-card__eyebrow {
  margin-bottom: 1rem;
}

.module-card__content > h2 {
  margin-bottom: 1.6rem;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

.module-card__content > h2 span {
  display: block;
  margin-top: 0.18em;
  color: var(--gold-light);
  font-size: 0.68em;
  letter-spacing: -0.035em;
}

.module-card__content > h2::after {
  display: block;
  width: 5rem;
  height: 2px;
  margin-top: 1.5rem;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(229, 193, 88, 0.55);
  content: "";
}

.module-card__lead {
  color: #efeff2;
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  line-height: 1.65;
}

.lesson-list {
  margin-top: clamp(2.75rem, 4vw, 3.5rem);
}

.lesson-list h3 {
  margin-bottom: 1.5rem;
  color: var(--gold-light);
  font-size: 1.25rem;
  letter-spacing: -0.015em;
}

.lesson-list ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(1.5rem, 3vw, 2.5rem);
  row-gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.lesson-list li {
  position: relative;
  padding: 1.25rem 0.5rem 1.25rem 2rem;
  border-bottom: 1px solid var(--line);
  color: #c8c8ce;
  font-size: 0.93rem;
  line-height: 1.62;
}

.lesson-list li:nth-child(odd) {
  padding-right: 0.5rem;
}

.lesson-list li::before {
  position: absolute;
  top: 1.95rem;
  left: 0.15rem;
  width: 0.85rem;
  height: 1px;
  background: var(--gold);
  content: "";
}

.module-quote {
  margin: 2.4rem 0;
  padding: 1.5rem;
  border: 1px solid rgba(229, 193, 88, 0.34);
  border-left: 3px solid var(--gold-light);
  background: rgba(212, 175, 55, 0.055);
  color: #f2f2f3;
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1.55;
}

.module-card__purchase {
  display: grid;
  grid-template-columns: minmax(180px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid var(--line);
}

.module-quote + .module-card__purchase {
  margin-top: 0;
}

.module-card__purchase p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.81rem;
  line-height: 1.55;
}

.module-card__purchase--summary-first {
  grid-template-columns: 1fr;
  justify-items: start;
}

.course-offer {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  column-gap: clamp(2.5rem, 6vw, 6rem);
  row-gap: clamp(3.5rem, 7vw, 6rem);
  margin-top: clamp(2rem, 6vw, 5rem);
  padding: clamp(2rem, 5vw, 4.5rem);
  border: 1px solid rgba(229, 193, 88, 0.42);
  background:
    radial-gradient(circle at 90% 10%, rgba(229, 193, 88, 0.14), transparent 22rem),
    #101014;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.course-offer__intro h2 {
  max-width: 12ch;
  margin: 1rem 0 1.5rem;
  font-size: clamp(2.5rem, 4.8vw, 4.9rem);
  font-weight: 900;
  line-height: 0.94;
  text-transform: uppercase;
}

.course-offer__intro > p:last-child {
  max-width: 43rem;
  margin: 0;
  color: #c8c8ce;
  line-height: 1.72;
}

.course-offer__buybox {
  align-self: start;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 5, 6, 0.66);
}

.course-offer__label,
.course-offer__deadline {
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.course-offer__price {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin: 0.35rem 0 1rem;
  white-space: nowrap;
  color: var(--gold-light);
  font-family: var(--display);
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
}

.course-offer__price span {
  color: var(--muted);
  font-family: var(--font);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
  margin: 1.2rem 0 1.5rem;
}

.countdown > span {
  display: grid;
  min-width: 0;
  padding: 0.8rem 0.35rem;
  border: 1px solid var(--line);
  place-items: center;
}

.countdown strong {
  color: #fff;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1;
}

.countdown small {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.course-offer__included {
  grid-column: 1 / -1;
  padding-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
}

.course-offer__included h3 {
  margin-bottom: 1.75rem;
  color: var(--gold-light);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.course-offer__included ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(1.5rem, 3vw, 2.5rem);
  row-gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.course-offer__included li {
  position: relative;
  padding: 1.35rem 0.75rem 1.35rem 2.4rem;
  border-bottom: 1px solid var(--line);
  color: #dddddf;
  line-height: 1.65;
}

.course-offer__included li:nth-child(odd) {
  border-right: 0;
}

.course-offer__included li::before {
  position: absolute;
  top: 1.4rem;
  left: 0.25rem;
  color: var(--gold-light);
  content: "✓";
  font-weight: 900;
}

.locked-modules {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.terms-dialog {
  width: min(calc(100% - 2rem), 820px);
  max-height: min(92dvh, 900px);
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(229, 193, 88, 0.48);
  border-radius: 14px;
  background: #101014;
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.72);
  color: var(--body);
}

.terms-dialog::backdrop {
  background: rgba(3, 3, 4, 0.88);
  backdrop-filter: blur(6px);
}

.terms-dialog__layout {
  display: grid;
  max-height: min(92dvh, 900px);
  grid-template-rows: auto auto minmax(140px, 1fr) auto;
}

.terms-dialog__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem clamp(1.25rem, 4vw, 2.25rem) 1.25rem;
  border-bottom: 1px solid var(--line);
}

.terms-dialog__header p {
  margin: 0 0 0.35rem;
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.terms-dialog__header h2 {
  margin: 0;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  line-height: 1;
  text-transform: uppercase;
}

.terms-dialog__close {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 1.55rem;
  place-items: center;
}

.terms-dialog__notice {
  padding: 0.9rem clamp(1.25rem, 4vw, 2.25rem);
  border-bottom: 1px solid rgba(229, 193, 88, 0.25);
  background: rgba(212, 175, 55, 0.08);
  color: #e9dba7;
  font-size: 0.76rem;
  line-height: 1.5;
}

.terms-dialog__content {
  overflow-y: auto;
  padding: 1rem clamp(1.25rem, 4vw, 2.25rem) 1.5rem;
  scrollbar-color: var(--gold-dark) #17171b;
}

.terms-dialog__content section {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.terms-dialog__content h3 {
  margin-bottom: 0.55rem;
  color: #fff;
  font-family: var(--font);
  font-size: 0.9rem;
  letter-spacing: 0;
  line-height: 1.35;
}

.terms-dialog__content p {
  margin: 0;
  color: #b9b9c0;
  font-size: 0.82rem;
  line-height: 1.6;
}

.terms-dialog__content a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.terms-dialog__actions {
  display: grid;
  gap: 0.75rem;
  padding: 1.25rem clamp(1.25rem, 4vw, 2.25rem) 1.5rem;
  border-top: 1px solid var(--line);
  background: #0b0b0e;
}

.terms-check {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 0.65rem;
  align-items: start;
  color: #dedee1;
  cursor: pointer;
  font-size: 0.8rem;
  line-height: 1.45;
}

.terms-check:first-child {
  margin-bottom: 0.5rem;
}

.terms-check input {
  width: 18px;
  height: 18px;
  margin: 0.1rem 0 0;
  accent-color: var(--gold);
}

.terms-dialog .button:disabled {
  border-color: #34343a;
  background: #26262c;
  box-shadow: none;
  color: #777781;
  cursor: not-allowed;
  transform: none;
}

body.terms-open {
  overflow: hidden;
}

.locked-card {
  position: relative;
  display: flex;
  min-height: 190px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.055), transparent 8rem),
    #101014;
}

.locked-card::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22));
  content: "";
}

.lock {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  width: 25px;
  height: 20px;
  border: 1px solid #696971;
  opacity: 0.75;
}

.lock::before {
  position: absolute;
  top: -11px;
  left: 5px;
  width: 13px;
  height: 12px;
  border: 1px solid #696971;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  content: "";
}

.locked-card h2 {
  max-width: 230px;
  margin-bottom: 0;
  color: #696971;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.05;
}

.portfolio {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 2%, rgba(212, 175, 55, 0.09), transparent 25rem),
    #09090b;
}

.portfolio__header {
  display: grid;
  grid-template-columns: minmax(150px, 0.28fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.portfolio__eyebrow {
  align-self: start;
  margin: 0;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.portfolio__header h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3rem, 5.6vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.9;
  text-transform: uppercase;
}

.portfolio__header h2 span {
  display: block;
  color: var(--gold-light);
}

.portfolio__intro {
  grid-column: 2;
  max-width: 42rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.gallery-grid {
  columns: 4 240px;
  column-gap: 0.85rem;
}

.gallery__item {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 0.85rem;
  padding: 0;
  break-inside: avoid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #101014;
  color: #fff;
  cursor: zoom-in;
}

.gallery__item::after {
  position: absolute;
  inset: 58% 0 0;
  background: linear-gradient(transparent, rgba(5, 5, 6, 0.86));
  content: "";
  opacity: 0;
  transition: opacity 180ms ease;
}

.gallery__img {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(0.74) contrast(1.03);
  transition: filter 220ms ease, transform 320ms var(--ease);
}

.gallery__item > span {
  position: absolute;
  right: 1rem;
  bottom: 0.9rem;
  z-index: 1;
  color: #fff;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  opacity: 0;
  text-transform: uppercase;
  transform: translateY(4px);
  transition: opacity 180ms ease, transform 220ms var(--ease);
}

.gallery__item:hover::after,
.gallery__item:focus-visible::after,
.gallery__item:hover > span,
.gallery__item:focus-visible > span {
  opacity: 1;
}

.gallery__item:hover > span,
.gallery__item:focus-visible > span {
  transform: none;
}

.gallery__item:hover .gallery__img,
.gallery__item:focus-visible .gallery__img {
  filter: saturate(0.95) contrast(1.06);
  transform: scale(1.018);
}

.gallery__show-more {
  display: none;
  margin: 2rem auto 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(4, 4, 5, 0.96);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 0s linear 180ms;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
}

.lightbox__content {
  position: relative;
  display: grid;
  width: min(100%, 1080px);
  height: min(90dvh, 900px);
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
}

.lightbox figure {
  display: grid;
  min-width: 0;
  height: 100%;
  margin: 0;
  place-items: center;
}

.lightbox figure img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(90dvh - 2.5rem);
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
}

.lightbox figcaption {
  position: absolute;
  right: 4.2rem;
  bottom: 0.2rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.lightbox__close,
.lightbox__nav {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(10, 10, 12, 0.78);
  color: #fff;
  cursor: pointer;
}

.lightbox__close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  font-size: 1.7rem;
}

.lightbox__nav {
  font-size: 2rem;
}

.lightbox__close:hover,
.lightbox__nav:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.lightbox-open {
  overflow: hidden;
}

.about {
  overflow: hidden;
  background:
    radial-gradient(circle at 89% 12%, rgba(212, 175, 55, 0.06), transparent 27rem),
    var(--surface);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.about__media {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  height: min(760px, calc(100svh - var(--header-height) - 4rem));
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(229, 193, 88, 0.34);
  background: #0c0c0e;
}

.about__media img {
  object-position: 50% 42%;
}

.about h2 {
  margin-bottom: 2rem;
}

.about__copy {
  color: #c7c7cd;
}

.about__copy > p {
  margin-bottom: 1.7rem;
}

.about__copy > p:first-child {
  color: #f0f0f2;
  font-size: clamp(1.08rem, 1.4vw, 1.24rem);
}

.about__project {
  margin: 2.5rem 0;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid rgba(229, 193, 88, 0.32);
  background: rgba(212, 175, 55, 0.05);
}

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

.about__project strong {
  display: block;
  margin: 0.4rem 0 1rem;
  color: var(--gold-light);
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1;
  text-transform: uppercase;
}

.contact {
  background:
    linear-gradient(rgba(212, 175, 55, 0.93), rgba(212, 175, 55, 0.93)),
    var(--gold);
}

.contact__panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
  padding: clamp(2rem, 6vw, 5rem);
  background: #09090a;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

.contact__heading {
  min-width: 0;
}

.contact__heading h2 {
  max-width: 9ch;
  margin-bottom: 0;
  font-size: clamp(2.7rem, 4.2vw, 4.25rem);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

.contact-list {
  display: grid;
  min-width: 0;
  margin: 0;
  font-style: normal;
}

.contact-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  transition: color 180ms ease, padding 240ms var(--ease);
}

.contact-list a:first-child {
  border-top: 1px solid var(--line);
}

.contact-list span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-list strong {
  min-width: 0;
  color: #f5f5f6;
  font-size: clamp(0.9rem, 1.5vw, 1.08rem);
  overflow-wrap: anywhere;
  text-align: right;
}

.contact-list a:hover {
  padding-left: 0.6rem;
  color: var(--gold-light);
}

.contact__brand {
  grid-column: 1 / -1;
  width: 220px;
  margin-top: 1rem;
  opacity: 0.78;
}

.contact__brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.js .hero .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 450ms var(--ease),
    transform 450ms var(--ease);
}

.js .hero .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 981px) {
  .problems .section-heading h2 {
    max-width: 100%;
    font-size: clamp(3.4rem, 5.1vw, 5rem);
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    border-bottom-color: var(--line);
    background: rgba(7, 7, 8, 0.9);
  }

  .site-header,
  .site-header.is-scrolled {
    background: #080809;
    backdrop-filter: none;
  }

  .brand {
    position: relative;
    z-index: 3;
    width: 116px;
    height: 52px;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 7px;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
  }

  .menu-toggle > span:not(.sr-only) {
    display: block;
    width: 25px;
    height: 1px;
    background: currentColor;
    transition: transform 220ms ease;
  }

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

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

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 2;
    display: flex;
    width: 100%;
    height: 100dvh;
    min-height: 100svh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.3rem;
    overflow-y: auto;
    padding: calc(var(--header-height) + 2.25rem) max(1.5rem, 8vw) 2rem;
    background:
      radial-gradient(circle at 90% 10%, rgba(212, 175, 55, 0.12), transparent 18rem),
      rgba(7, 7, 8, 0.985);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1rem);
    visibility: hidden;
    transition:
      opacity 220ms ease,
      transform 300ms var(--ease),
      visibility 0s linear 300ms;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
    transition-delay: 0s;
  }

  .site-nav > a:not(.button) {
    font-family: var(--display);
    font-size: clamp(1.7rem, 6vw, 2.7rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    text-transform: uppercase;
  }

  .site-nav .button {
    width: min(100%, 270px);
    margin-top: 0.6rem;
  }

  .hero__media {
    inset: 0;
  }

  .hero__media img {
    object-position: 59% 45%;
    filter: grayscale(1) contrast(1.18) brightness(0.65);
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(6, 6, 7, 0.98) 0%, rgba(6, 6, 7, 0.92) 44%, rgba(6, 6, 7, 0.42) 100%),
      linear-gradient(0deg, rgba(6, 6, 7, 0.8), transparent 42%);
  }

  .hero__line {
    left: 68%;
  }

  .hero__content {
    width: min(620px, 82%);
  }

  .hero h1 {
    font-size: clamp(4.4rem, 12vw, 7.2rem);
  }

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

  .section-heading,
  .about__media {
    position: relative;
    top: auto;
  }

  .benefits__media,
  .about__media {
    width: min(100%, 680px);
    height: 690px;
  }

  .benefits__content {
    padding-left: min(4vw, 2rem);
  }

  .module-card--open {
    grid-template-columns: 1fr;
  }

  .module-card--reverse .module-card__media,
  .module-card--reverse .module-card__content {
    grid-column: 1;
    grid-row: auto;
  }

  .module-card__media {
    width: 100%;
    height: clamp(360px, 58vw, 560px);
    min-height: 0;
  }

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

  .course-offer__buybox {
    width: min(100%, 520px);
  }

  .lesson-list ul,
  .module-card__purchase {
    grid-template-columns: 1fr;
  }

  .lesson-list li:nth-child(odd) {
    border-right: 0;
  }

  .portfolio__header {
    grid-template-columns: minmax(140px, 0.32fr) minmax(0, 1fr);
  }

  .portfolio__intro {
    grid-column: 2;
  }

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

@media (max-width: 760px) {
  .shell {
    width: min(calc(100% - 2rem), var(--shell));
  }

  .section {
    padding-block: clamp(4.25rem, 14vw, 5.5rem);
  }

  .hero {
    min-height: 0;
  }

  .hero__media {
    inset: 0 0 auto;
    height: clamp(260px, 44svh, 390px);
  }

  .hero__media img {
    object-position: 50% 46%;
    filter: grayscale(1) contrast(1.12) brightness(0.75);
    transform: none;
  }

  .hero__shade {
    background: linear-gradient(
      180deg,
      rgba(6, 6, 7, 0.04) 0%,
      rgba(6, 6, 7, 0.15) 24%,
      rgba(6, 6, 7, 0.94) 44%,
      #060607 56%,
      #060607 100%
    );
  }

  .hero__line {
    display: none;
  }

  .hero__inner {
    min-height: 0;
    align-items: flex-end;
  }

  .hero__content {
    width: 100%;
    padding: clamp(245px, 42svh, 370px) 0 3.25rem;
  }

  .hero__logo {
    display: none;
  }

  .hero h1 {
    margin-bottom: 1.35rem;
    font-size: clamp(2.75rem, 12.5vw, 3.6rem);
    line-height: 0.88;
  }

  .hero h1 span {
    margin-top: 0.12em;
    color: var(--gold-light);
    font-size: 0.62em;
    letter-spacing: -0.035em;
    line-height: 1;
    -webkit-text-fill-color: var(--gold-light);
    -webkit-text-stroke: 0;
    text-stroke: 0;
  }

  .hero__lead {
    max-width: 500px;
    margin-bottom: 2rem;
    padding-left: 0.9rem;
    color: #e3e3e5;
    font-size: 0.94rem;
    line-height: 1.6;
  }

  .section-heading h2,
  .benefits h2,
  .about h2 {
    font-size: clamp(2.4rem, 10.5vw, 3.5rem);
    line-height: 0.98;
  }

  .section-grid {
    gap: 3rem;
  }

  .problem-list li {
    padding: 1.4rem 0 1.4rem 2rem;
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .problem-list li::before {
    top: 2.05rem;
    width: 0.8rem;
  }

  .statement {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.75rem 1.25rem;
  }

  .statement blockquote {
    font-size: clamp(1.5rem, 7.5vw, 2.25rem);
  }

  .statement .button {
    width: 100%;
  }

  .benefits__media {
    height: 70vw;
    min-height: 250px;
    max-height: 360px;
  }

  .benefits__grid {
    gap: 3rem;
  }

  .benefits__content {
    padding-left: 0;
  }

  .benefits h2 {
    margin-bottom: 2.4rem;
  }

  .benefits h3 {
    margin-bottom: 1.75rem;
    font-size: 1.2rem;
  }

  .benefit-list {
    margin-bottom: 2.75rem;
  }

  .benefit-list li {
    padding: 1.2rem 0 1.2rem 2rem;
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .benefit-list li::before {
    top: 1.34rem;
  }

  .module-card--open {
    grid-template-columns: 1fr;
  }

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

  .modules__header > p:last-child {
    grid-column: auto;
  }

  .modules__header h2 {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
  }

  .module-card--reverse .module-card__media,
  .module-card--reverse .module-card__content {
    grid-column: 1;
    grid-row: auto;
  }

  .module-card__media {
    height: 76vw;
    min-height: 280px;
    max-height: 400px;
  }

  .module-card__content {
    padding: 2.75rem 1.5rem 3rem;
  }

  .module-card__content > h2 {
    margin-bottom: 2rem;
    font-size: clamp(1.85rem, 8.3vw, 2.4rem);
    letter-spacing: -0.035em;
    line-height: 1.02;
  }

  .module-card__lead {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .lesson-list {
    margin-top: 3rem;
  }

  .lesson-list h3 {
    margin-bottom: 1.5rem;
    font-size: 1.12rem;
  }

  .lesson-list li {
    padding: 1.3rem 0.35rem 1.3rem 2rem;
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .lesson-list li::before {
    top: 2rem;
  }

  .module-card__purchase {
    gap: 1.5rem;
  }

  .module-card__purchase .button {
    width: 100%;
  }

  .course-offer {
    gap: 2.75rem;
    padding: 1.5rem;
  }

  .course-offer__intro h2 {
    font-size: clamp(1.7rem, 8.6vw, 3.25rem);
    overflow-wrap: anywhere;
  }

  .course-offer__price {
    flex-direction: column;
    gap: 0.25rem;
  }

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

  .course-offer__included li:nth-child(odd) {
    border-right: 0;
  }

  .locked-modules {
    grid-template-columns: 1fr;
  }

  .locked-card {
    min-height: 150px;
  }

  .portfolio__header {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
  }

  .portfolio__header h2 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .portfolio__intro {
    grid-column: auto;
    max-width: 34rem;
    font-size: 0.9rem;
  }

  .gallery-grid {
    columns: 2;
    column-gap: 0.55rem;
  }

  .gallery__item {
    margin-bottom: 0.55rem;
  }

  .gallery__item--mobile-hidden {
    display: none;
  }

  .gallery__show-more.is-needed {
    display: flex;
    width: 100%;
  }

  .lightbox {
    padding: 0.75rem;
  }

  .lightbox__content {
    width: 100%;
    height: 88dvh;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
  }

  .lightbox__close,
  .lightbox__nav {
    width: 40px;
    height: 40px;
  }

  .lightbox figure img {
    max-height: calc(88dvh - 3rem);
  }

  .lightbox figcaption {
    right: 3.2rem;
  }

  .about__grid {
    gap: 3rem;
  }

  .about__media {
    height: 74vw;
    min-height: 280px;
    max-height: 390px;
  }

  .about__copy > p {
    margin-bottom: 0;
    padding-block: 1.35rem;
    border-top: 1px solid var(--line);
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .about__copy > p:first-child {
    font-size: 1rem;
  }

  .about__project {
    margin-block: 2rem;
  }

  .contact {
    padding-block: 1rem;
  }

  .contact__panel {
    gap: 2.5rem;
    padding: 2.25rem 1.5rem;
  }

  .contact__heading h2 {
    max-width: 12ch;
    font-size: clamp(2.1rem, 10.5vw, 3rem);
  }

  .contact-list a {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.2rem;
    padding-block: 1.4rem;
  }

  .contact-list strong {
    overflow-wrap: anywhere;
    text-align: left;
  }

  .contact__brand {
    width: 170px;
    margin-top: 0;
  }

  .terms-dialog {
    width: calc(100% - 1rem);
    max-height: 96dvh;
    border-radius: 10px;
  }

  .terms-dialog__layout {
    max-height: 96dvh;
  }

  .terms-dialog__header {
    padding-top: 1.1rem;
  }

  .terms-dialog__header h2 {
    font-size: 1.7rem;
  }

  .terms-dialog__notice {
    font-size: 0.72rem;
  }

  .terms-dialog__actions {
    max-height: 42dvh;
    overflow-y: auto;
  }
}

@media (max-width: 420px) {
  .hero__media img {
    object-position: 54% 46%;
  }

  .hero .button {
    width: auto;
    min-width: 178px;
  }
}

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

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