:root {
  --bg: #240808;
  --bg-deep: #120303;
  --text: #f0e6cb;
  --muted: rgba(240, 230, 203, 0.72);
  --cream: #f0e6cb;
  --cream-soft: #fff2d2;
  --wine: #5b1111;
  --wine-dark: #190404;
  --panel: rgba(59, 16, 16, 0.88);
  --line: rgba(240, 230, 203, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
}

a {
  color: inherit;
}

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

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

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 28%, rgba(240, 230, 203, 0.12), transparent 22%),
    radial-gradient(circle at 82% 18%, rgba(151, 31, 31, 0.42), transparent 28%),
    linear-gradient(112deg, #300b0b 0%, var(--bg) 48%, #100303 100%);
}

.hero__texture {
  position: absolute;
  inset: 0;
  opacity: 0.72;
  background:
    linear-gradient(90deg, rgba(36, 8, 8, 0.05), rgba(11, 2, 2, 0.9)),
    repeating-linear-gradient(118deg, transparent 0 44px, rgba(240, 230, 203, 0.035) 45px 46px);
}

.hero__texture::after {
  content: "";
  position: absolute;
  inset: -18%;
  background:
    radial-gradient(ellipse at 18% 52%, rgba(240, 230, 203, 0.09), transparent 18%),
    radial-gradient(ellipse at 66% 46%, rgba(240, 230, 203, 0.05), transparent 24%);
  filter: blur(26px);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 705px) minmax(320px, 420px);
  gap: 30px;
  align-items: start;
  padding: 28px 0 46px;
}

.brand,
.footer__logo {
  display: block;
  width: 225px;
  height: 48px;
  overflow: hidden;
}

.brand img,
.footer__logo img {
  width: 225px;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  filter: grayscale(1) invert(1) brightness(2.15) sepia(0.25);
}

.eyebrow {
  margin: 34px 0 14px;
  color: var(--cream-soft);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  color: var(--cream);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(50px, 6vw, 76px);
  font-weight: 700;
  line-height: 0.98;
}

h1 span {
  display: inline-block;
  padding: 0 8px 4px;
  background: rgba(132, 22, 22, 0.72);
}

.subtitle {
  max-width: 760px;
  margin-top: 16px;
  color: var(--cream);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 3.5vw, 46px);
  font-style: italic;
  line-height: 1.12;
}

.program {
  margin-top: 28px;
}

.program h2 {
  color: var(--cream-soft);
  font-size: 18px;
  line-height: 1.2;
}

.program ul {
  display: grid;
  gap: 12px;
  max-width: 720px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--text);
  font-size: 16px;
  line-height: 1.42;
}

.program li {
  position: relative;
  padding-left: 24px;
}

.program li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cream);
}

.bonus-line {
  display: flex;
  gap: 8px;
  align-items: baseline;
  margin: 25px 0 20px;
  color: var(--text);
  font-size: 19px;
  line-height: 1.2;
}

.bonus-line span,
.bonus-line strong {
  color: var(--cream-soft);
}

.media-row {
  display: grid;
  grid-template-columns: minmax(220px, 340px) minmax(180px, 245px);
  gap: 12px;
  align-items: stretch;
  margin-bottom: 36px;
}

.video-card,
.bonus-mockups {
  border: 1px solid rgba(240, 230, 203, 0.72);
  border-radius: 7px;
  background: rgba(20, 3, 3, 0.72);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
}

.video-card {
  position: relative;
  min-height: 177px;
  overflow: hidden;
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--cream-soft), var(--cream));
  transform: translate(-50%, -50%);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.play-button::after {
  content: "";
  position: absolute;
  left: 21px;
  top: 15px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 15px solid var(--wine);
}

.bonus-mockups {
  width: 100%;
  height: 181px;
  object-fit: contain;
  object-position: center;
  padding: 6px;
}

.primary-button,
.support-button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cream-soft), var(--cream));
  color: var(--wine);
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.primary-button {
  width: min(280px, 100%);
}

.primary-button:hover,
.support-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(240, 230, 203, 0.2);
}

.expert {
  position: relative;
  min-height: 970px;
  padding-top: 58px;
}

.expert__portrait {
  position: relative;
  height: 885px;
  overflow: hidden;
}

.expert__portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, var(--bg) 0%, transparent 32%),
    linear-gradient(0deg, var(--bg) 0%, transparent 42%),
    linear-gradient(270deg, var(--bg-deep) 0%, transparent 34%);
}

.expert__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 18%;
}

.expert__card {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 22px;
  width: min(360px, 95%);
  padding: 18px 18px 16px;
  border: 1px solid rgba(240, 230, 203, 0.12);
  border-radius: 8px;
  background: var(--panel);
}

.expert__card h2 {
  color: var(--cream-soft);
  font-size: 24px;
  line-height: 1.08;
}

.expert__card ul {
  margin: 12px 0 0;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.25;
}

.footer {
  background: var(--wine-dark);
  padding: 86px 0 34px;
  color: rgba(240, 230, 203, 0.6);
}

.footer__top {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(240, 230, 203, 0.18);
}

.footer__logo {
  width: 46px;
  height: 36px;
}

.footer__logo img {
  width: 46px;
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(240, 230, 203, 0.5);
  border-radius: 50%;
  color: var(--cream);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.footer__email,
.footer__bottom a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.support-button {
  min-height: 40px;
  min-width: 265px;
  padding: 0 28px;
  font-size: 14px;
  text-transform: none;
}

.footer__bottom {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 330px);
  gap: 40px;
  padding-top: 28px;
  font-size: 12px;
  line-height: 1.35;
}

.footer__bottom p {
  margin: 0 0 14px;
}

.footer__bottom a {
  display: block;
  margin-top: 7px;
}

.requisites {
  text-align: right;
}

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

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 40px;
  }

  .expert {
    min-height: 540px;
    max-width: 520px;
  }

  .expert__portrait {
    height: 520px;
  }

  .footer__top {
    grid-template-columns: auto 1fr;
  }

  .support-button {
    grid-column: 1 / -1;
    width: min(320px, 100%);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 20px, 420px);
  }

  .hero__grid {
    padding-top: 20px;
  }

  .brand {
    width: 166px;
    height: 38px;
  }

  .brand img {
    width: 166px;
  }

  .eyebrow {
    margin-top: 34px;
    font-size: 12px;
  }

  h1 {
    font-size: 42px;
  }

  .subtitle {
    font-size: 28px;
  }

  .program ul {
    font-size: 14px;
  }

  .bonus-line {
    font-size: 16px;
  }

  .media-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  .video-card {
    min-height: 112px;
  }

  .bonus-mockups {
    width: 100%;
    height: auto;
    max-height: 230px;
  }

  .expert {
    min-height: 470px;
  }

  .expert__portrait {
    height: 445px;
  }

  .expert__card {
    left: 0;
    bottom: 0;
    width: 100%;
  }

  .footer {
    padding-top: 54px;
  }

  .footer__top,
  .footer__bottom {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer__email {
    order: 3;
  }

  .requisites {
    text-align: left;
  }
}
