@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Manrope:wght@300;400;500;600;700&display=swap");

:root {
  --font-display: "Inter", "Manrope", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Manrope", "Segoe UI", Arial, sans-serif;
  --ink: #121314;
  --graphite: #202123;
  --deep: #0f0f0f;
  --milk: #f7f4ee;
  --mint: #ddeee4;
  --green: #42694e;
  --emerald: #006057;
  --gold: #c48a1b;
  --gold-dark: #9b6b13;
  --terra: #8f4a32;
  --paper: #fffaf2;
  --muted: #6b6258;
  --line: rgba(196, 138, 27, 0.22);
  --gold-glow-soft: 0 0 28px rgba(233, 193, 109, 0.22), 0 0 72px rgba(196, 138, 27, 0.12);
  --gold-card-glow: 0 0 0 1px rgba(233, 193, 109, 0.12), 0 0 30px rgba(233, 193, 109, 0.16), 0 22px 58px rgba(0, 0, 0, 0.16);
}

* { box-sizing: border-box; }

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, #0f0f0f 0%, #151515 42%, #0f0f0f 100%);
  color: var(--milk);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: center;
  gap: 26px;
  padding: 18px 18px;
  border-bottom: 1px solid rgba(255, 250, 242, 0.13);
  background: rgba(15, 15, 15, 0.8);
  backdrop-filter: blur(14px);
  color: #ead5a6;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  width: min(1180px, calc(100vw - 36px));
  margin: 0 auto;
  padding: 92px 0;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
  align-items: center;
  min-height: auto;
  margin-top: 34px;
  margin-bottom: 72px;
  padding: clamp(34px, 4.2vw, 62px);
  border: 1px solid rgba(233, 193, 109, 0.5);
  border-radius: 14px;
  background:
    radial-gradient(ellipse at 82% 58%, rgba(196, 138, 27, 0.08), transparent 34%),
    linear-gradient(90deg, rgba(47, 43, 42, 0.98) 0%, rgba(47, 43, 42, 0.98) 55%, rgba(47, 43, 42, 0.76) 70%, rgba(47, 43, 42, 0.36) 100%),
    #332f2f;
  box-shadow:
    0 0 0 1px rgba(233, 193, 109, 0.18),
    0 0 34px rgba(233, 193, 109, 0.34),
    0 0 76px rgba(196, 138, 27, 0.18),
    0 26px 86px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.hero::before {
  content: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: -18%;
  width: min(45vw, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 138, 27, 0.18), transparent 64%);
  filter: blur(24px);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 3;
  min-width: 0;
  max-width: 760px;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 560;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 4vw, 62px);
  line-height: 1.04;
  text-transform: uppercase;
  overflow-wrap: break-word;
  text-shadow: var(--gold-glow-soft);
}

.hero h1 span,
.hero h1 small,
.hero-eyebrow span,
.hero-eyebrow small {
  display: block;
}

.hero h1 span {
  width: fit-content;
  max-width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fffaf1;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.hero h1 small {
  margin-top: 20px;
  font-size: 0.6em;
  font-weight: 560;
  line-height: 1.08;
  text-transform: lowercase;
}

.section h2 {
  font-size: clamp(42px, 4.4vw, 66px);
  line-height: 1.12;
}

body:not(.legal-page) > main > .section:not(.light):not(.program) h2,
.final h2,
.author-copy h2 {
  text-shadow: var(--gold-glow-soft);
}

.eyebrow {
  margin: 0 0 16px;
  color: #e9c16d;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-eyebrow {
  margin-bottom: 34px;
}

.hero-eyebrow span {
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 800;
  line-height: 1.08;
}

.hero-eyebrow small {
  margin-top: 6px;
  color: #f5eee0;
  font-size: clamp(14px, 1.05vw, 17px);
  font-weight: 650;
  letter-spacing: 0.08em;
}

.lead {
  max-width: min(760px, 100%);
  margin: 34px 0 36px;
  color: #f5eee0;
  font-size: clamp(21px, 1.42vw, 24px);
  font-weight: 450;
  line-height: 1.42;
  overflow-wrap: break-word;
}

.lead strong {
  color: #f2ca70;
}

.hero-actions,
.footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 14px 28px;
  border: 1px solid rgba(224, 191, 126, 0.38);
  border-radius: 999px;
  background: linear-gradient(135deg, #8f4a32, #b7633d);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 18px 38px rgba(143, 74, 50, 0.2);
}

.button-gold {
  min-height: 64px;
  padding: 18px 42px;
  border-color: rgba(255, 225, 142, 0.82);
  background: linear-gradient(135deg, #f2bd45 0%, #d58a17 45%, #b55d2d 100%);
  font-size: 18px;
  box-shadow: 0 22px 54px rgba(213, 138, 23, 0.34);
}

.button-telegram {
  border-color: rgba(95, 202, 255, 0.58);
  background: linear-gradient(135deg, #168ac4, #28a8ea);
  color: #fff;
  box-shadow: 0 18px 38px rgba(24, 154, 217, 0.25);
}

.button-max {
  border-color: rgba(176, 158, 255, 0.68);
  background: linear-gradient(135deg, #0d9ee0 0%, #2777f0 48%, #7c4dff 100%);
  color: #fff;
  box-shadow: 0 18px 38px rgba(72, 95, 235, 0.28);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.social-icon-telegram {
  background: rgba(255, 255, 255, 0.2);
}

.social-icon-telegram::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 13px solid #fff;
  transform: translateX(1px) rotate(-18deg);
}

.social-icon-telegram {
  font-size: 0;
}

.social-icon-max {
  width: 34px;
  flex-basis: 34px;
  background: rgba(255, 255, 255, 0.17);
  font-size: 9px;
}

.button-soft {
  background: transparent;
  color: #ead5a6;
  box-shadow: none;
}

.hero-media {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 1;
  width: min(42%, 560px);
  min-height: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  pointer-events: none;
}

.hero-media::before {
  content: none;
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% 18%;
  mix-blend-mode: normal;
  filter: saturate(1.02) contrast(1.02);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.15) 18%, black 38%);
}

.split {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1fr);
  gap: 70px;
  align-items: stretch;
}

.split > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.question-list,
.cards,
.method-grid,
.reasons-list,
.lesson-list {
  display: grid;
  gap: 14px;
}

.question-list {
  height: 100%;
  grid-template-rows: repeat(5, minmax(0, 1fr));
}

.question-list article {
  min-height: 0;
  padding: 20px 0 20px 24px;
  border-left: 1px solid rgba(233, 193, 109, 0.7);
  background: transparent;
  color: #f6efe2;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.55;
}

.light {
  width: 100%;
  max-width: none;
  padding-right: max(18px, calc((100% - 1180px) / 2));
  padding-left: max(18px, calc((100% - 1180px) / 2));
  background: #f8f4ec;
  color: var(--ink);
}

.light .eyebrow {
  color: var(--gold-dark);
}

.intro {
  max-width: 880px;
  margin-bottom: 46px;
}

.intro p:not(.eyebrow),
.bonus-copy p,
.author-lead {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.7;
}

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

.method-grid article,
.cards article,
.lesson-list article,
.materials-panel,
.legal article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(196, 138, 27, 0.18);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.42);
  color: var(--ink);
}

.method-grid article,
.cards article {
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 42px rgba(36, 30, 22, 0.06);
}

.method-grid article {
  justify-content: flex-start;
}

.method-grid span,
.lesson-list span {
  display: block;
  margin-bottom: 16px;
  color: var(--gold-dark);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.method-grid h3,
.cards h3,
.lesson-list h3,
.materials-panel h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.method-grid p,
.cards p,
.lesson-list p,
.materials-panel li {
  margin: 0;
  color: inherit;
  font-size: 18px;
  line-height: 1.65;
}

.method-grid p {
  min-height: 5.1em;
}

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

#results .cards article {
  min-height: 210px;
}

#results .cards h3 {
  min-height: 1.25em;
  white-space: nowrap;
}

#results .cards p {
  display: -webkit-box;
  min-height: 4.95em;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

#results .cards article,
.program .lesson-list article {
  border-color: rgba(233, 193, 109, 0.18);
  background: rgba(255, 250, 242, 0.045);
  color: var(--milk);
  box-shadow: var(--gold-card-glow);
}

#results .cards h3,
.program .lesson-list h3 {
  color: #f0cb76;
}

.compact article {
  min-height: 144px;
}

.program .lesson-list {
  grid-template-columns: 1fr;
  gap: 24px;
}

.program {
  width: 100%;
  max-width: none;
  padding-right: max(18px, calc((100% - 1180px) / 2));
  padding-left: max(18px, calc((100% - 1180px) / 2));
  background: #f8f4ec;
  color: var(--ink);
}

.program .eyebrow {
  color: var(--gold-dark);
}

.program .lesson-list article {
  position: relative;
  min-height: auto;
  display: block;
  padding: clamp(28px, 3.4vw, 44px);
  border-color: rgba(196, 138, 27, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(249, 242, 231, 0.88)),
    #fffaf2;
  color: var(--ink);
  box-shadow:
    0 20px 52px rgba(36, 30, 22, 0.08),
    0 0 30px rgba(196, 138, 27, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.58);
}

.program .lesson-list h3 {
  margin: 24px 0 0;
  max-width: 920px;
  color: var(--gold-dark);
  font-size: clamp(34px, 3vw, 46px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.program .lesson-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 206px;
  min-height: 58px;
  padding: 10px 30px 12px;
  margin: 0;
  border: 1px solid rgba(233, 193, 109, 0.72);
  border-radius: 2px;
  background: linear-gradient(135deg, #c48a1b, #8f4a32);
  color: #fff;
  font-size: clamp(21px, 1.7vw, 25px);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 0 16px 34px rgba(143, 74, 50, 0.16);
}

.lesson-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 26px 0 0;
  padding: 0;
  padding-top: 10px;
  border-top: 1px solid rgba(196, 138, 27, 0.2);
  list-style: none !important;
  list-style-type: none !important;
}

.lesson-points li {
  position: relative;
  align-items: start;
  padding: 16px 24px 16px 34px;
  border-left: 0;
  border-bottom: 1px solid rgba(196, 138, 27, 0.14);
  color: #2a2824;
  font-size: clamp(18px, 1.45vw, 22px);
  font-weight: 500;
  line-height: 1.46;
}

.lesson-points li:last-child {
  border-bottom: 0;
}

.lesson-points li:nth-last-child(2):nth-child(odd) {
  border-bottom: 0;
}

.lesson-points li::before {
  content: "";
  position: absolute;
  top: 1.48em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(196, 138, 27, 0.12);
}

.lesson-points strong {
  color: #f0cb76;
}

.program .lesson-list article:nth-child(even) {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 238, 226, 0.88)),
    #fffaf2;
}

.certificate-section {
  padding-top: 40px;
}

.certificate-card {
  padding: clamp(18px, 2.8vw, 32px);
  border: 1px solid rgba(233, 193, 109, 0.25);
  background: rgba(255, 250, 242, 0.06);
  box-shadow: var(--gold-card-glow);
}

.certificate-image {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(196, 138, 27, 0.24);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.author {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1fr);
  gap: 76px;
  align-items: center;
  overflow: hidden;
  min-height: 640px;
  padding: clamp(42px, 5vw, 74px);
  border: 1px solid rgba(233, 193, 109, 0.24);
  background:
    linear-gradient(90deg, rgba(18, 18, 18, 0.98) 0%, rgba(18, 18, 18, 0.7) 45%, rgba(18, 18, 18, 0.98) 100%),
    radial-gradient(ellipse at 24% 58%, rgba(196, 138, 27, 0.15), transparent 42%),
    #111;
  box-shadow:
    0 0 0 1px rgba(233, 193, 109, 0.1),
    0 0 44px rgba(233, 193, 109, 0.16),
    0 28px 76px rgba(0, 0, 0, 0.28);
}

.author-photo {
  position: absolute;
  inset: 0 auto 0 0;
  width: min(48%, 560px);
  height: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  pointer-events: none;
}

.author-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  mask-image: linear-gradient(90deg, black 0%, black 60%, transparent 100%);
}

.author-copy {
  position: relative;
  z-index: 2;
  grid-column: 2;
}

.author-copy h2 {
  color: #f4d487;
}

.author-lead {
  color: #f4ead6;
}

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

.fact-list li {
  min-height: 48px;
  padding: 14px 0 14px 18px;
  border-left: 1px solid rgba(233, 193, 109, 0.7);
  background: transparent;
  box-shadow: -12px 0 24px -24px rgba(233, 193, 109, 0.7);
  color: #f5eee0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
}

.reasons {
  padding: clamp(56px, 6vw, 84px) 0;
}

.reasons .intro {
  display: none;
}

.reason-groups {
  display: grid;
  gap: 28px;
  max-width: 1040px;
  margin: 0 auto;
}

.reason-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(196, 138, 27, 0.28);
  box-shadow: 0 22px 58px rgba(36, 30, 22, 0.08), 0 0 34px rgba(196, 138, 27, 0.12);
}

.reason-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.reason-card > * {
  position: relative;
  z-index: 1;
}

.reason-card h3 {
  max-width: 760px;
  margin: 0 0 clamp(22px, 3vw, 32px);
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 570;
  line-height: 1.04;
  color: var(--gold);
}

.reason-card-light {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 250, 242, 0.76)),
    radial-gradient(circle at 88% 12%, rgba(196, 138, 27, 0.14), transparent 34%),
    #fffaf2;
  color: var(--ink);
}

.reason-card-dark {
  background:
    linear-gradient(135deg, rgba(18, 19, 20, 0.98), rgba(42, 38, 34, 0.94)),
    radial-gradient(circle at 12% 8%, rgba(196, 138, 27, 0.2), transparent 30%),
    #121314;
  color: var(--milk);
}

.reason-card-warm {
  background:
    linear-gradient(135deg, rgba(245, 238, 224, 0.96), rgba(255, 250, 242, 0.84)),
    linear-gradient(90deg, rgba(66, 105, 78, 0.1), transparent 54%),
    #f7f4ee;
  color: var(--ink);
}

.reasons-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.reasons-list article {
  min-height: 0;
  padding: 18px 20px 18px 38px;
  border: 1px solid rgba(196, 138, 27, 0.18);
  background: rgba(255, 255, 255, 0.62);
  color: #2c2a25;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.15vw, 18px);
  font-weight: 450;
  line-height: 1.5;
  position: relative;
}

.reasons-list article strong {
  display: block;
  margin-bottom: 6px;
  color: #171717;
  font-weight: 620;
}

.reasons-list article::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 18px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(196, 138, 27, 0.12);
}

.reason-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reason-card li {
  position: relative;
  min-height: 86px;
  padding: 18px 20px 18px 38px;
  border: 1px solid rgba(196, 138, 27, 0.2);
  box-shadow: 0 12px 30px rgba(36, 30, 22, 0.05);
  color: #2c2a25;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.15vw, 18px);
  font-weight: 450;
  line-height: 1.5;
}

.reason-card li::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 18px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.reason-card-dark h3 {
  color: #e9c16d;
}

.reason-card-dark li {
  border-color: rgba(233, 193, 109, 0.24);
  background: rgba(255, 250, 242, 0.06);
  color: #f5eee0;
  box-shadow: 0 0 22px rgba(233, 193, 109, 0.08);
}

.reason-card-warm li {
  background: rgba(255, 255, 255, 0.5);
}

.reason-card ul li:last-child:nth-child(odd),
.reasons-list article:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.bonus {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: stretch;
  padding: clamp(38px, 5vw, 62px);
  border: 1px solid rgba(233, 193, 109, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 242, 0.94)),
    #fffaf2;
  color: var(--ink);
  box-shadow:
    0 0 0 1px rgba(233, 193, 109, 0.12),
    0 0 42px rgba(233, 193, 109, 0.18),
    0 28px 76px rgba(0, 0, 0, 0.26);
}

.materials-panel {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.bonus-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.gift-mark {
  position: relative;
  display: inline-flex;
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(233, 193, 109, 0.7);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 42%, rgba(255, 248, 219, 0.76) 42%, rgba(255, 248, 219, 0.76) 58%, transparent 58%),
    linear-gradient(180deg, transparent 42%, rgba(255, 248, 219, 0.7) 42%, rgba(255, 248, 219, 0.7) 58%, transparent 58%),
    linear-gradient(135deg, #f6d47d 0%, #c48a1b 48%, #8f4a32 100%);
  box-shadow: 0 0 26px rgba(233, 193, 109, 0.34), 0 18px 34px rgba(196, 138, 27, 0.2);
}

.gift-mark::before,
.gift-mark::after {
  content: "";
  position: absolute;
  top: -19px;
  width: 30px;
  height: 24px;
  border: 7px solid #d79d2a;
  border-radius: 999px 999px 6px 999px;
  background: rgba(255, 250, 242, 0.2);
}

.gift-mark::before {
  left: 9px;
  transform: rotate(30deg);
}

.gift-mark::after {
  right: 9px;
  transform: scaleX(-1) rotate(30deg);
}

.bonus-heading .eyebrow {
  margin: 0;
  color: var(--gold-dark);
}

.bonus-copy {
  max-width: 980px;
}

.bonus-copy h2 {
  max-width: 980px;
  color: var(--ink);
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 1.12;
}

.materials-panel h3 {
  color: var(--gold-dark);
  font-size: clamp(26px, 2.1vw, 34px);
  letter-spacing: 0;
  text-transform: none;
}

.materials-panel ul {
  display: grid;
  gap: 0;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.materials-panel li {
  position: relative;
  padding: 18px 0 18px 34px;
  border-top: 1px solid rgba(196, 138, 27, 0.18);
  color: #191715;
  font-size: clamp(20px, 1.55vw, 24px);
  font-weight: 550;
  line-height: 1.42;
}

.materials-panel li::before {
  content: "";
  position: absolute;
  top: 1.58em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(196, 138, 27, 0.12);
}

.bonus-copy .button {
  margin-top: 28px;
}

.bonus-copy p {
  color: #3c342c;
}

.final {
  min-height: 54svh;
  text-align: center;
}

.final h2 {
  max-width: 900px;
  margin: 0 auto 28px;
  color: #f5ead0;
}

.join-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.footer {
  display: grid;
  gap: 14px;
  padding: 34px 18px;
  border-top: 1px solid rgba(233, 193, 109, 0.28);
  background: #0a0a0a;
  color: #e9dfca;
  font-size: 15px;
  text-align: center;
}

.footer div {
  justify-content: center;
}

.footer strong,
.footer a {
  color: #f0cb76;
}

.legal-page {
  background: var(--milk);
  color: var(--ink);
}

.legal {
  max-width: 920px;
}

.legal h1 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(38px, 5.4vw, 64px);
  font-weight: 600;
  line-height: 0.96;
}

.legal-date {
  margin: 0 0 28px;
  color: #6b6258;
  font-size: 18px;
}

.legal article {
  margin-top: 22px;
}

.legal h2 {
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-size: 22px;
}

.legal p,
.legal li {
  color: #3b3730;
}

@media (max-width: 1120px) {
  .method-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 980px) {
  .lesson-points {
    grid-template-columns: 1fr;
  }

  #results .cards h3 {
    white-space: normal;
  }
}

@media (max-width: 860px) {
  .topbar {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 14px;
    padding: 14px 12px;
    font-size: 12px;
    line-height: 1.2;
  }

  .section {
    width: min(1180px, calc(100vw - 28px));
    padding: 62px 0;
  }

  .light {
    width: 100%;
    padding-right: 14px;
    padding-left: 14px;
  }

  .hero,
  .split,
  .author,
  .bonus {
    grid-template-columns: 1fr;
  }

  .author {
    min-height: auto;
    padding: 28px;
    gap: 28px;
  }

  .author-photo {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 340px;
    grid-row: 2;
  }

  .author-photo img {
    mask-image: linear-gradient(180deg, black 0%, black 78%, transparent 100%);
  }

  .author-copy {
    grid-column: auto;
  }

  .question-list {
    height: auto;
    grid-template-rows: none;
  }

  .hero {
    min-height: auto;
    margin-top: 18px;
    margin-bottom: 44px;
    padding: 28px;
    gap: 28px;
  }

  .hero-media {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 300px;
    margin-top: 6px;
  }

  .hero-media img {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 12%;
    transform: none;
    mask-image: linear-gradient(180deg, black 0%, black 78%, transparent 100%);
  }
}

@media (max-width: 620px) {
  .hero h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  .hero h1 span {
    white-space: normal;
  }

  .hero h1 small {
    margin-top: 6px;
    font-size: 0.62em;
  }

  .hero-eyebrow span {
    font-size: 22px;
  }

  .section h2 {
    font-size: 36px;
    line-height: 1.15;
  }

  .lead {
    margin: 20px 0 24px;
    font-size: 19px;
    line-height: 1.48;
  }

  .hero {
    width: auto;
    max-width: none;
    margin-right: 14px;
    margin-left: 14px;
    padding: 24px;
  }

  .hero-actions {
    width: 100%;
  }

  .button {
    width: 100%;
    max-width: 100%;
    white-space: normal;
  }

  .button .social-icon {
    display: none;
  }

  .method-grid,
  .reasons-list,
  .reason-card ul,
  .program .lesson-list,
  .cards-4,
  .cards-3 {
    grid-template-columns: 1fr;
  }

  .reason-card {
    padding: 26px 20px;
  }

  .reason-card h3 {
    font-size: 32px;
    line-height: 1.12;
  }

  .reasons-list article {
    min-height: auto;
  }

  .question-list article {
    font-size: 19px;
  }

  .program .lesson-list h3 {
    font-size: 32px;
  }

  .program .lesson-list span {
    width: fit-content;
    min-width: 168px;
    min-height: 50px;
    padding: 9px 24px 10px;
    font-size: 20px;
  }

  .lesson-points li {
    padding-left: 32px;
  }

  .lesson-points li::before {
    width: 8px;
    height: 8px;
    box-shadow: 0 0 0 5px rgba(196, 138, 27, 0.12);
  }

  .program .lesson-list p,
  .lesson-points li,
  .intro p:not(.eyebrow),
  .bonus-copy p,
  .author-lead,
  .fact-list li {
    font-size: 19px;
  }

  .materials-panel li {
    font-size: 20px;
  }

  .reasons-list article,
  .reason-card li {
    min-height: auto;
    font-size: 15px;
    line-height: 1.52;
  }

  .hero-media {
    min-height: 280px;
  }

  .hero::before {
    content: none;
  }

  .hero::after {
    right: 12%;
    width: 90%;
  }

  .hero-media img {
    width: 100%;
  }
}
