*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; }
body {
  background: transparent;
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 82px;
}
html { background: var(--night-void); }
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--atmosphere-cosmic);
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap { width: 100%; max-width: 820px; margin: 0 auto; padding: 0 var(--wrapper-padding); }
.section { padding: var(--space-lg) 0; }
@media (min-width: 720px) { .section { padding: var(--space-2xl) 0; } }
.section h2 {
  margin: 0 0 var(--space-lg);
  font-size: clamp(24px, 5vw, 34px);
  font-weight: var(--fw-bold);
  letter-spacing: var(--letter-spacing-heading);
  line-height: 1.15;
  color: var(--warm-cream);
}
.panel {
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  padding: clamp(20px, 4vw, 32px);
}
.lead { color: var(--color-text-soft); font-size: var(--fs-body); line-height: 1.7; }
.eyebrow-h { margin: 0 0 var(--space-sm); font-size: var(--fs-body-lg); font-weight: var(--fw-bold); color: var(--warm-cream); }

.checklist { display: grid; gap: 13px; }
.checklist li { display: grid; grid-template-columns: 24px 1fr; gap: 12px; align-items: start; color: var(--color-text-soft); font-size: var(--fs-body); line-height: 1.5; }
.checklist li .ic { width: 22px; height: 22px; margin-top: 2px; display: grid; place-items: center; background: rgba(244,199,109,0.12); border: 1px solid var(--color-border-glow); border-radius: 6px; color: var(--warm-gold); }
.checklist li .ic svg { width: 13px; height: 13px; }
@media (min-width: 640px) { .checklist.cols-2 { grid-template-columns: 1fr 1fr; gap: 13px 26px; } }

.bullets { display: grid; gap: 10px; }
.bullets li { position: relative; padding-left: 20px; color: var(--color-text-soft); font-size: var(--fs-body); line-height: 1.5; }
.bullets li::before { content: ""; position: absolute; left: 2px; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--warm-gold); }

.site-header { background: rgba(10,9,22,0.82); border-bottom: 1px solid var(--color-border-soft); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 13px; padding-bottom: 13px; }
.logo { display: inline-flex; align-items: center; gap: 9px; }
.logo .logo__mascot { width: 28px; height: 28px; }
.logo .word { font-weight: var(--fw-bold); font-size: 18px; letter-spacing: -0.015em; color: var(--warm-cream); }
.site-header .support { font-size: var(--fs-body-sm); color: var(--color-text-soft); }
.site-header .support:hover { color: var(--warm-gold); }

.promo-bar { position: sticky; top: 0; z-index: 50; background: var(--gradient-dusk); color: var(--night-void); box-shadow: 0 8px 24px -12px rgba(0,0,0,0.55); transition: transform .35s cubic-bezier(0.2,0.8,0.2,1), opacity .35s ease; }
.promo-bar.is-hidden { transform: translateY(-100%); opacity: 0; pointer-events: none; }
.promo-inner { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; padding-top: 9px; padding-bottom: 9px; text-align: center; }
@media (min-width: 600px) { .promo-inner { flex-direction: row; gap: 22px; } }
.promo-title { margin: 0; font-weight: var(--fw-black); font-size: var(--fs-body); letter-spacing: 0.01em; }
.promo-title s { text-decoration-thickness: 2px; text-underline-offset: 0; }
.promo-timer { display: inline-flex; align-items: flex-start; gap: 8px; font-variant-numeric: tabular-nums; }
.pt-unit { display: inline-flex; flex-direction: column; align-items: center; line-height: 1; min-width: 30px; }
.pt-unit b { font-size: 21px; font-weight: var(--fw-black); }
.pt-unit i { font-size: 9px; font-style: normal; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.6; margin-top: 3px; }
.pt-sep { font-size: 21px; font-weight: var(--fw-bold); line-height: 1; opacity: 0.5; }
.promo-count { display: inline-flex; align-items: center; gap: 11px; }
.hourglass { display: inline-flex; }
.hourglass svg { width: 19px; height: 25px; display: block; transform-origin: 50% 50%; animation: hg-flip 3s ease-in-out infinite; }
.hg-frame { stroke: currentColor; stroke-width: 1.4; stroke-linejoin: round; stroke-linecap: round; opacity: 0.85; }
.hg-sand { fill: currentColor; }
.hg-top { transform-box: fill-box; transform-origin: center bottom; animation: hg-top 3s ease-in-out infinite; }
.hg-bot { transform-box: fill-box; transform-origin: center bottom; animation: hg-bot 3s ease-in-out infinite; }
.hg-stream { stroke: currentColor; stroke-width: 1.2; stroke-linecap: round; animation: hg-stream 3s ease-in-out infinite; }
@keyframes hg-top { 0% { transform: scaleY(1); } 72%, 100% { transform: scaleY(0); } }
@keyframes hg-bot { 0% { transform: scaleY(0); } 72%, 100% { transform: scaleY(1); } }
@keyframes hg-stream { 0%, 5% { opacity: 0; } 9%, 68% { opacity: 0.85; } 74%, 100% { opacity: 0; } }
@keyframes hg-flip { 0%, 78% { transform: rotate(0deg); } 100% { transform: rotate(180deg); } }
@media (prefers-reduced-motion: reduce) { .hourglass svg, .hg-top, .hg-bot, .hg-stream { animation: none; } .hg-top { transform: scaleY(0.45); } .hg-bot { transform: scaleY(0.55); } .hg-stream { opacity: 0; } }

.hero { position: relative; }
.hero .wrap { position: relative; z-index: 1; }
.hero-inner { padding: var(--space-xl) 0 var(--space-lg); }
.badge-new { display: inline-block; margin-bottom: 14px; padding: 5px 12px; font-size: var(--fs-micro); letter-spacing: 0.16em; text-transform: uppercase; font-weight: var(--fw-bold); color: var(--night-void); background: var(--warm-gold); border-radius: var(--radius-pill); }
.hero h1 { margin: 0 0 var(--space-lg); font-size: clamp(28px, 6.5vw, 46px); font-weight: var(--fw-black); line-height: 1.1; letter-spacing: var(--letter-spacing-heading); color: var(--warm-cream); }

.video-frame { position: relative; width: 100%; aspect-ratio: 16 / 9; margin: 0 0 var(--space-xl); border-radius: var(--radius-md); overflow: hidden; /*border: 1px solid var(--color-border-soft);*/ box-shadow: var(--shadow-card); background: var(--night-base); }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-frame--image { border-radius: 0; }
.video-frame--image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.trust { margin: 0 0 var(--space-xl); display: flex; flex-direction: column; gap: 14px; }
.trust-top { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.trust-rated { font-size: var(--fs-body); color: var(--color-text-soft); }
.trust-rated strong { color: var(--warm-cream); font-weight: var(--fw-bold); }
.tp-stars { display: inline-flex; gap: 4px; }
.tp-star { width: 26px; height: 26px; border-radius: 5px; background: #00B67A; display: grid; place-items: center; }
.tp-star svg { width: 16px; height: 16px; fill: #fff; }
.trust-bottom { display: flex; align-items: center; gap: 12px; flex-wrap: nowrap; }
.trust-avatars { display: flex; flex-shrink: 0; }
.trust-avatars img { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; border: 1.5px solid rgba(10,9,22,0.9); margin-left: -13px; background: var(--night-base); }
.trust-avatars img:first-child { margin-left: 0; }
.trust-avatars img:nth-child(n+9) { display: none; }
@media (min-width: 360px) {
  .trust-avatars img:nth-child(9), .trust-avatars img:nth-child(10) { display: block; }
  .trust-avatars img:nth-child(n+11) { display: none; }
}
@media (min-width: 400px) {
  .trust-avatars img:nth-child(11), .trust-avatars img:nth-child(12) { display: block; }
  .trust-avatars img:nth-child(n+13) { display: none; }
}
@media (min-width: 440px) {
  .trust-avatars img:nth-child(13), .trust-avatars img:nth-child(14) { display: block; }
}
.trust-trusted { display: flex; flex-direction: column; gap: 2px; flex-shrink: 0; max-width: 108px; }
.trust-trusted .mini-stars { color: var(--warm-gold); font-size: 12px; letter-spacing: 1.5px; line-height: 1; }
.trust-trusted .trust-txt { font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-text-muted); font-weight: var(--fw-medium); line-height: 1.3; }
@media (min-width: 760px) {
  .trust-rated { font-size: var(--fs-body-lg); }
  .tp-star { width: 30px; height: 30px; }
  .tp-star svg { width: 18px; height: 18px; }
  .trust-bottom { gap: 18px; }
  .trust-avatars img { width: 38px; height: 38px; margin-left: -11px; }
  .trust-trusted { max-width: none; gap: 3px; }
  .trust-trusted .mini-stars { font-size: 14px; letter-spacing: 2px; }
  .trust-trusted .trust-txt { font-size: var(--fs-micro); letter-spacing: 0.08em; line-height: 1.4; }
}

.hero-desc p { margin: 0 0 var(--space-md); }
.course-meta { display: flex; flex-direction: column; gap: 14px; margin-top: var(--space-lg); padding-top: var(--space-lg); border-top: 1px solid var(--color-border-soft); }
.cm-row { display: grid; grid-template-columns: 22px 1fr; gap: 14px; align-items: start; }
.cm-ic { width: 22px; color: var(--color-text-muted); display: grid; place-items: center; margin-top: 1px; }
.cm-ic svg { width: 21px; height: 21px; }
.cm-txt { font-size: var(--fs-body-sm); color: var(--color-text-muted); line-height: 1.4; }
.cm-txt b { color: var(--warm-cream); font-weight: var(--fw-bold); }
@media (min-width: 720px) { .cm-txt { font-size: var(--fs-body); } }

/* Dot bullets */
.hero-desc ul, .panel ul { display: grid; gap: 10px;margin-bottom: 10px }
.hero-desc ul li, .panel ul li { position: relative; padding-left: 20px; color: var(--color-text-soft); font-size: var(--fs-body); line-height: 1.5; }
.hero-desc ul li::before,.panel ul li::before { content: ""; position: absolute; left: 2px; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--warm-gold); }

.hero-desc h2, .panel h2 {font-size: clamp(20px, 3.5vw, 26px); margin-top: var(--space-xl);}
.hero-desc h2:first-of-type, .panel h2:first-of-type {margin-top: 0;}
.invite { margin-top: var(--space-lg); padding-left: var(--space-md); border-left: 2px solid var(--color-border-glow); }
.invite p { margin: 0 0 4px; color: var(--color-text-soft); }
.invite .sign { color: var(--warm-gold); font-weight: var(--fw-medium); }

.buy { padding-top: 0; }
.buy-card {
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(143,48,202,0.28) 0%, transparent 65%),
    linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid var(--color-border-glow);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: clamp(44px, 8vw, 72px) clamp(22px, 4vw, 36px);
}
.buy-eyebrow { font-size: var(--fs-micro); letter-spacing: 0.14em; text-transform: uppercase; color: var(--warm-gold); font-weight: var(--fw-bold); }
.buy-title { margin: 8px 0 var(--space-lg); font-size: var(--fs-body-lg); font-weight: var(--fw-bold); color: var(--warm-cream); line-height: 1.25; }
.price-row { display: flex; align-items: baseline; flex-wrap: wrap; gap: 10px 14px; margin-bottom: var(--space-md); }
.price-row .cur { font-size: var(--fs-small); color: var(--color-text-muted); align-self: center; }
.price-row .old { font-size: var(--fs-body-lg); color: var(--color-text-faint); text-decoration: line-through; }
.price-row .new { font-size: 44px; font-weight: var(--fw-black); color: var(--warm-cream); letter-spacing: -0.02em; line-height: 1; }
.price-row .new sup { font-size: 20px; font-weight: var(--fw-bold); top: -0.9em; }
.price-row .disc { padding: 5px 11px; font-size: var(--fs-small); font-weight: var(--fw-bold); color: var(--sage); background: rgba(143,168,136,0.14); border: 1px solid rgba(143,168,136,0.4); border-radius: var(--radius-pill); }
.countdown { display: inline-flex; align-items: center; gap: 8px; margin-bottom: var(--space-lg); padding: 8px 14px; font-size: var(--fs-body-sm); color: var(--warm-rose); background: rgba(224,160,168,0.10); border: 1px solid rgba(224,160,168,0.3); border-radius: var(--radius-pill); }
.countdown b { color: var(--warm-cream); font-variant-numeric: tabular-nums; font-weight: var(--fw-bold); }

.form-heading { margin: 0 0 var(--space-sm); font-size: var(--fs-body); font-weight: var(--fw-medium); color: var(--warm-cream); }
.field-row { position: relative; margin-bottom: 12px; }
.field-row input {
  width: 100%; padding: 15px 16px; font-family: inherit; font-size: var(--fs-body); font-weight: var(--fw-medium);
  color: var(--night-void); background: #F6F1E9; border: 1px solid transparent; border-radius: var(--radius-sm);
  box-shadow: 0 2px 10px rgba(0,0,0,0.25); outline: none; transition: box-shadow .2s, background .2s; -webkit-appearance: none; appearance: none;
}
.field-row input::placeholder { color: rgba(36,34,62,0.42); font-weight: var(--fw-regular); }
.field-row input:focus { background: #fff; box-shadow: 0 0 0 3px rgba(244,199,109,0.35), 0 2px 10px rgba(0,0,0,0.25); }
.field-err { display: none; margin: 4px 2px 0; font-size: var(--fs-small); color: var(--warm-rose); }

.consent { position: relative; margin: 12px 0 var(--space-lg); }
.consent input { position: absolute; opacity: 0; width: 22px; height: 22px; margin: 0; top: 1px; left: 0; cursor: pointer; }
.consent label { display: block; position: relative; padding-left: 32px; cursor: pointer; font-size: var(--fs-small); color: var(--color-text-muted); line-height: 1.5; }
.consent label::before { content: ""; position: absolute; left: 0; top: 0; width: 22px; height: 22px; border: 1.5px solid rgba(244,199,109,0.5); border-radius: 6px; background: rgba(244,199,109,0.06); transition: all .2s; }
.consent input:checked + label::before { background-color: var(--warm-gold); border-color: var(--warm-gold); background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2324223E' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>"); background-size: 14px 14px; background-position: center; background-repeat: no-repeat; }
.consent label a { color: var(--color-text-soft); border-bottom: 1px solid rgba(245,239,230,0.22); }
.consent label a:hover { color: var(--warm-gold); }

.cta-big { position: relative; overflow: hidden; display: inline-flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 18px 28px; font-family: var(--font-body); font-weight: var(--fw-bold); font-size: var(--fs-body-lg); letter-spacing: 0.02em; color: var(--warm-cream); background: var(--gradient-cta); border: none; border-radius: var(--radius-pill); box-shadow: var(--shadow-cta); cursor: pointer; transition: transform .4s cubic-bezier(0.2,0.8,0.2,1), background .4s, box-shadow .4s; }
.cta-big:hover { background: var(--gradient-cta-hover); box-shadow: var(--shadow-cta), var(--shadow-glow-purple); }
.cta-big:active { transform: scale(0.98); }
.cta-big > * { position: relative; z-index: 1; }
.cta-big::after { content: ""; position: absolute; top: 0; left: -60%; width: 45%; height: 100%; background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.5) 50%, transparent 100%); transform: skewX(-20deg); pointer-events: none; animation: cta-shine 2s ease-in-out infinite; }
@keyframes cta-shine { 0% { left: -60%; } 32% { left: 140%; } 100% { left: 140%; } }
@media (prefers-reduced-motion: reduce) { .cta-big::after { animation: none; opacity: 0; } }

.guarantee-inline { display: grid; grid-template-columns: 22px 1fr; gap: 10px; margin-top: var(--space-lg); padding-top: var(--space-lg); border-top: 1px solid var(--color-border-soft); }
.guarantee-inline .gi-ic { color: var(--warm-gold); margin-top: 2px; }
.guarantee-inline .gi-ic svg { width: 20px; height: 20px; }
.guarantee-inline .gi-t { font-weight: var(--fw-medium); color: var(--warm-cream); font-size: var(--fs-body-sm); }
.guarantee-inline .gi-d { margin-top: 3px; font-size: var(--fs-small); color: var(--color-text-muted); line-height: 1.5; }
.buy-notes { margin-top: var(--space-md); display: grid; gap: 8px; }
.buy-notes p { margin: 0; font-size: var(--fs-small); color: var(--color-text-muted); display: grid; grid-template-columns: 18px 1fr; gap: 8px; align-items: start; }
.buy-notes svg { width: 16px; height: 16px; color: var(--warm-gold); margin-top: 2px; }
.includes { margin-top: var(--space-lg); padding-top: var(--space-lg); border-top: 1px solid var(--color-border-soft); }
.includes h4 { margin: 0 0 10px; font-size: var(--fs-micro); letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-text-faint); font-weight: var(--fw-bold); }
.includes ul { display: grid; gap: 8px; }
.includes li { display: grid; grid-template-columns: 18px 1fr; gap: 8px; font-size: var(--fs-body-sm); color: var(--color-text-soft); }
.includes svg { width: 16px; height: 16px; color: var(--warm-gold); margin-top: 2px; }
.course-incl { display: grid; gap: 18px; }
.course-incl li { display: grid; grid-template-columns: 30px 1fr; gap: 16px; align-items: center; font-size: var(--fs-body); color: var(--color-text-soft); }
.course-incl .ci-ic { color: var(--warm-gold); display: grid; place-items: center; }
.course-incl .ci-ic svg { width: 28px; height: 28px; }

.price-big { font-size: clamp(38px, 11vw, 54px); font-weight: var(--fw-bold); color: var(--warm-cream); line-height: 1; letter-spacing: -0.02em; }
.price-sub { display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px; margin-top: 8px; font-size: var(--fs-body); color: var(--color-text-soft); }
.price-sub s { color: var(--color-text-faint); text-decoration: line-through; }
.sale-end { margin-top: 8px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; font-size: var(--fs-body); color: var(--color-text-soft); }
.sale-end .se-label { color: var(--warm-gold); font-weight: var(--fw-bold); }
.se-timer { display: inline-flex; align-items: flex-start; gap: 9px; font-variant-numeric: tabular-nums; }
.se-unit { display: inline-flex; flex-direction: column; align-items: center; line-height: 1; min-width: 30px; }
.se-unit b { font-size: 21px; font-weight: var(--fw-bold); color: var(--warm-cream); }
.se-unit i { font-size: 9px; font-style: normal; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-text-muted); margin-top: 3px; }
.se-sep { font-size: 21px; font-weight: var(--fw-bold); line-height: 1; color: var(--color-text-faint); }
.buy-cta { width: 100%; margin: var(--space-lg) 0 var(--space-md); }
.guarantee-row { display: grid; grid-template-columns: 24px 1fr; gap: 12px; align-items: start; margin-top: var(--space-md); }
.guarantee-row .gr-ic { color: var(--warm-gold); margin-top: 1px; }
.guarantee-row .gr-ic svg { width: 22px; height: 22px; }
.guarantee-row .gr-t { font-weight: var(--fw-bold); color: var(--warm-cream); font-size: var(--fs-body); }
.bonus-label { display: block; font-weight: var(--fw-bold); color: var(--warm-cream); font-size: var(--fs-body); }
.bonus-val { display: block; margin-top: 3px; font-weight: var(--fw-bold); font-size: var(--fs-body); background: var(--gradient-dusk); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
@media (max-width: 420px){
  .bonus-label {  font-size: var( --fs-small); }
  .bonus-val {  font-size: var( --fs-small);  }
  .guarantee-row .gr-t { font-size: var(--fs-small); }

}
.refund-text { margin: var(--space-md) 0 0; font-size: var(--fs-small); color: var(--color-text-muted); line-height: 1.6; }
.refund-text a { color: var(--color-text-soft); text-decoration: underline; text-decoration-color: rgba(245,239,230,0.25); text-underline-offset: 2px; }

.sticky-buy { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: flex; justify-content: center; padding: 10px var(--wrapper-padding); padding-bottom: calc(10px + env(safe-area-inset-bottom)); background: rgba(10,9,22,0.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-top: 1px solid var(--color-border-soft); transform: translateY(140%); transition: transform 0.32s cubic-bezier(0.2,0.8,0.2,1); }
.sticky-buy.is-visible { transform: translateY(0); }
.sticky-buy .cta-big { width: 100%; max-width: 680px; }

.accordion { display: grid; gap: 10px; }
.accordion details { border: 1px solid var(--color-border-soft); border-radius: var(--radius-sm); background: var(--color-bg-glass); overflow: hidden; }
.accordion summary { list-style: none; cursor: pointer; padding: 16px 18px; display: flex; align-items: center; gap: 12px; font-weight: var(--fw-medium); color: var(--warm-cream); font-size: var(--fs-body); }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary .chev { margin-left: auto; flex-shrink: 0; transition: transform .25s ease; color: var(--warm-gold); }
.accordion details[open] summary .chev { transform: rotate(180deg); }
.accordion summary .modnum { flex-shrink: 0; width: 26px; height: 26px; display: grid; place-items: center; font-size: var(--fs-small); font-weight: var(--fw-bold); color: var(--warm-gold); background: rgba(244,199,109,0.12); border: 1px solid var(--color-border-glow); border-radius: 7px; }
.accordion .acc-body { padding: 0 18px 16px 18px; }
.accordion .acc-body.faq-a { color: var(--color-text-soft); font-size: var(--fs-body-sm); line-height: 1.6; }
.accordion details.bonus { border: none; background: var(--gradient-warm); box-shadow: 0 14px 34px -20px rgba(224,160,168,0.5); }
.accordion details.bonus summary { color: #fff; font-weight: var(--fw-bold); letter-spacing: 0.1em; text-transform: uppercase; font-size: var(--fs-body-sm); }
.accordion details.bonus summary .chev { color: #fff; }
.accordion details.bonus .acc-body { padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.28); }
.bonus-title { margin: 0 0 12px; font-weight: var(--fw-bold); font-size: var(--fs-body); color: #fff; }
.bonus-list { display: grid; gap: 10px; }
.bonus-list li { position: relative; padding-left: 18px; font-size: var(--fs-body-sm); color: rgba(255,255,255,0.96); line-height: 1.45; }
.bonus-list li::before { content: "–"; position: absolute; left: 0; color: rgba(255,255,255,0.85); font-weight: 700; }
.lesson-list { display: grid; gap: 10px; padding-left: 40px; }
.lesson-list li { position: relative; font-size: var(--fs-body-sm); color: var(--color-text-soft); line-height: 1.5; }
.lesson-list li::before {
  content: "";
  position: absolute; left: -28px; top: 1px;
  width: 18px; height: 18px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F4C76D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polygon points='23 7 16 12 23 17 23 7'/><rect x='1' y='5' width='15' height='14' rx='2'/></svg>");
  background-size: contain; background-repeat: no-repeat; background-position: center;
  opacity: 0.9;
}
.academic-plan { display: grid; gap: 10px; }
.ap-module {
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-sm);
  background: var(--color-bg-glass);
  overflow: hidden;
}
.ap-module-title {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px;
  font-weight: var(--fw-medium); color: var(--warm-cream); font-size: var(--fs-body);
}
.ap-module-title .modnum {
  flex-shrink: 0; width: 26px; height: 26px; display: grid; place-items: center;
  font-size: var(--fs-small); font-weight: var(--fw-bold); color: var(--warm-gold);
  background: rgba(244,199,109,0.12); border: 1px solid var(--color-border-glow); border-radius: 7px;
}
.ap-module .lesson-list { padding: 0 18px 16px 58px; }
.lesson-details { border: none; background: transparent; }
.lesson-details summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: flex-start; gap: 8px;
  font-weight: inherit; color: inherit; font-size: inherit; line-height: 1.5;
  padding: 0;
}
.lesson-details summary::-webkit-details-marker { display: none; }
.lesson-details summary .chev {
  margin-left: auto; flex-shrink: 0; margin-top: 2px;
  transition: transform .25s ease; color: var(--warm-gold);
}
.lesson-details[open] summary .chev { transform: rotate(180deg); }
.lesson-list .ll-desc { display: block; margin-top: 6px; font-size: var(--fs-small); color: var(--color-text-muted); line-height: 1.5; }
.lesson-list .ll-desc > *:first-child { margin-top: 0; }
.lesson-list .ll-desc > *:last-child { margin-bottom: 0; }

.author-grid { display: grid; gap: var(--space-lg); align-items: start; }
@media (min-width: 720px) { .author-grid { grid-template-columns: 220px 1fr; gap: var(--space-xl); } }
.author-photo { width: 100%; max-width: 220px; margin: 0 auto; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--color-border-glow); aspect-ratio: 1/1; background: var(--night-base); }
.author-photo img { width: 100%; height: 100%; object-fit: cover; }
.author-body p { margin: 0 0 var(--space-md); color: var(--color-text-soft); font-size: var(--fs-body); line-height: 1.7; }

.guarantee-card { display: grid; grid-template-columns: 52px 1fr; gap: var(--space-md); align-items: start; }
.guarantee-card .g-ic { width: 52px; height: 52px; display: grid; place-items: center; border-radius: var(--radius-sm); background: rgba(244,199,109,0.12); border: 1px solid var(--color-border-glow); color: var(--warm-gold); }
.guarantee-card .g-ic svg { width: 28px; height: 28px; }
.guarantee-card h3 { margin: 0 0 8px; font-size: var(--fs-body-lg); color: var(--warm-cream); font-weight: var(--fw-bold); }
.guarantee-card p { margin: 0; color: var(--color-text-soft); font-size: var(--fs-body); line-height: 1.65; }
.guarantee-card a { color: var(--warm-gold); border-bottom: 1px solid rgba(244,199,109,0.4); }

.reviews-head { margin: 0 0 var(--space-lg); }
.reviews-head p { margin: 8px 0 0; font-size: var(--fs-body-sm); color: var(--color-text-muted); }
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-md); }
@media (min-width: 620px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
.review-card { min-width: 0; background: #FFFFFF; border-radius: 12px; padding: 18px; box-shadow: 0 14px 36px -22px rgba(0,0,0,0.65); display: flex; flex-direction: column; }
.rc-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.rc-av { flex: 0 0 38px; width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }
.rc-who { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.rc-name { font-weight: 700; font-size: 14px; color: #16141F; }
.rc-sub { font-size: 12px; color: #6B6980; }
.rc-verified { margin-left: auto; display: inline-flex; align-items: center; gap: 4px; font-size: 12.5px; font-weight: 600; color: #00B67A; white-space: nowrap; }
.rc-verified svg { width: 14px; height: 14px; }
.rc-rate { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.rc-stars { display: inline-flex; gap: 3px; }
.rc-stars .sq { width: 20px; height: 20px; border-radius: 4px; background: #00B67A; display: grid; place-items: center; }
.rc-stars .sq svg { width: 12px; height: 12px; display: block; }
.rc-date { font-size: 12px; color: #9A98A8; }
.rc-title { margin: 0 0 5px; font-weight: 700; font-size: 14.5px; color: #16141F; }
.rc-body { margin: 0; font-size: 13.5px; color: #3F3C54; line-height: 1.5; }

.timeline { list-style: none; margin: 0; padding: 0; max-width: 680px; }
.tl-step { position: relative; display: grid; grid-template-columns: auto 1fr; column-gap: 18px; align-items: start; padding-bottom: 28px; }
.tl-step:last-child { padding-bottom: 0; }
.tl-step:not(:last-child)::before {
  content: ""; position: absolute; z-index: 0;
  left: 8.5px; top: 13.5px; bottom: -13.5px;
  border-left: 2px dashed rgba(244,199,109,0.38);
}
.tl-dot {
  position: relative; z-index: 1; margin-top: 4px;
  width: 19px; height: 19px; flex-shrink: 0; border-radius: 50%;
  background: var(--warm-gold);
  box-shadow: 0 0 0 3px rgba(244,199,109,0.10);
}
.tl-text { margin: 0; color: var(--color-text-soft); font-size: var(--fs-body); line-height: 1.6; }
@media (min-width: 760px) {
  .tl-step { column-gap: 24px; padding-bottom: 38px; }
  .tl-step:not(:last-child)::before { left: 11px; top: 16px; bottom: -16px; }
  .tl-dot { width: 24px; height: 24px; box-shadow: 0 0 0 4px rgba(244,199,109,0.09); }
  .tl-text { font-size: var(--fs-body-lg); }
}

.manager .m-head { display: flex; align-items: center; gap: var(--space-md); margin-bottom: var(--space-md); }
.manager img { width: 80px; height: 80px; border-radius: var(--radius-pill); object-fit: cover; border: 1.5px solid var(--color-border-glow); background: var(--night-base); flex-shrink: 0; }
.manager .m-name { font-weight: var(--fw-bold); color: var(--warm-cream); font-size: var(--fs-body-lg); line-height: 1.25; }
.manager .m-role { font-size: var(--fs-small); color: var(--warm-gold); margin-top: 3px; }
.manager .m-text { margin: 0; font-size: var(--fs-body-sm); color: var(--color-text-soft); line-height: 1.6; }
.manager .m-text a { color: var(--warm-gold); text-decoration: underline; text-decoration-color: rgba(244,199,109,0.35); text-underline-offset: 2px; }

.fv { background: var(--night-void); border-top: 1px solid var(--color-border-soft); padding: var(--space-2xl) 0 var(--space-xl); }
.fv .wrap { max-width: var(--max-width); }
.fv-support { display: flex; flex-direction: column; gap: var(--space-md); }
.fv-support .title { font-size: var(--fs-h3); font-weight: 700; color: var(--warm-cream); letter-spacing: -0.015em; margin: 0; }
.fv-support img { display: block; max-width: 140px; height: auto; }
.fv-support .text { color: var(--color-text-soft); font-size: var(--fs-body-sm); margin: 0; max-width: 320px; line-height: 1.55; }
.fv-support .unsub { align-self: flex-start; font-family: inherit; font-size: var(--fs-small); font-weight: var(--fw-medium); color: var(--color-text-muted); background: rgba(245,239,230,0.06); border: 1px solid var(--color-border-soft); border-radius: var(--radius-pill); padding: 5px 14px; cursor: pointer; margin-top: 4px; }
.fv-support .unsub:hover { color: var(--warm-cream); border-color: var(--color-border-glow); }
.fv-col h4 { font-size: var(--fs-micro); letter-spacing: 0.18em; text-transform: uppercase; color: var(--warm-gold); font-weight: var(--fw-medium); margin: 0 0 var(--space-md); }
.fv-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.fv-col a { font-size: var(--fs-body-sm); color: var(--color-text-soft); transition: color 0.2s ease; }
.fv-col a:hover { color: var(--warm-gold); }
.fv2-grid { display: grid; grid-template-columns: 1.3fr 1.1fr 1fr 1fr; gap: var(--space-xl); align-items: start; }
.fv2-legal-info { display: flex; flex-direction: column; gap: var(--space-md); font-size: var(--fs-small); color: var(--color-text-faint); }
.fv2-legal-info p { margin: 0; line-height: 1.55; }
.fv2-legal-info .legal-text { font-style: italic; color: var(--color-text-muted); max-width: 280px; }
.fv2-social { margin-top: 8px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.fv2-social a { display: inline-flex; align-items: center; justify-content: center; color: var(--color-text-muted); transition: color 0.2s ease; }
.fv2-social a:hover { color: var(--warm-gold); }
.fv2-social a svg { width: 38px; height: 38px; display: block; }
.fv2-with-divider { border-left: 1px solid var(--color-border-soft); padding-left: var(--space-lg); }
.fv2-stacked .next { margin-top: var(--space-lg); }
.fv2-legal-col { display: flex; flex-direction: column; }
.fv2-legal-col ul { margin-bottom: var(--space-lg); }
.fv2-logo { margin-top: auto; display: flex; align-items: center; gap: 8px; padding-top: var(--space-md); }
.fv2-logo img { height: 26px; width: auto; }
.fv2-logo .word { font-family: var(--font-body); font-weight: var(--fw-bold); font-size: 18px; letter-spacing: -0.015em; color: var(--warm-cream); }
@media (max-width: 768px) {
  .fv2-grid { grid-template-columns: 1fr 1fr; grid-template-areas: "support support" "legal legal" "discover legallinks"; gap: var(--space-xl); }
  .fv2-grid > .fv-support { grid-area: support; }
  .fv2-grid > .fv2-legal-info { grid-area: legal; }
  .fv2-grid > .fv2-stacked { grid-area: discover; }
  .fv2-grid > .fv2-legal-col { grid-area: legallinks; }
  .fv2-with-divider { border-left: none; padding-left: 0; }
  .fv2-social { flex-wrap: wrap; }
}
@media (max-width: 600px) {
  .lead, .hero-desc p, .invite p, .bullets li, .checklist li,
  .author-body p, .tl-text, .accordion .acc-body.faq-a,
  .guarantee-card p { font-size: var(--fs-body-sm); line-height: 1.45; }
  .refund-text { font-size: 10px; line-height: 1.55; letter-spacing: -0.1px; }
  .cm-txt { line-height: 1.35; }
}

body:has(.previewInfoBlock) { padding-top: 60px; }
.previewInfoBlock {
  display: block;
  padding-bottom: 10px;
  background-color: var(--warm-gold);
  border-bottom: 1px solid rgba(36, 34, 62, 0.15);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.25);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}
.previewInfoBlock .wrapper {
  color: var(--night-void);
  font-size: 16px;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .previewInfoBlock .wrapper { font-size: 14px; }
}
@media screen and (max-width: 640px) {
  .previewInfoBlock .wrapper { font-size: 12px; }
}
@media screen and (max-width: 480px) {
  .previewInfoBlock .wrapper { font-size: 10px; }
}

.signup-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl) var(--wrapper-padding);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.signup-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.signup-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 22, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
@media (max-width: 600px){
  .signup-modal__backdrop {
    /*background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);*/
    background: var(--atmosphere-aurora);
    /*backdrop-filter: blur(40px) saturate(140%);*/
  }
}
.signup-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  max-height: calc(100dvh - 2 * var(--space-2xl));
  overflow-y: auto;
}
@media (max-width: 600px){
  .signup-modal__dialog {
    position: initial;
  }
}
.signup-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-pill);
  color: var(--color-text-muted);
  background: rgba(245,239,230,0.04);
  border: 1px solid var(--color-border-soft);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  cursor: pointer;
  z-index: 2;
}
.signup-modal__close:hover {
  color: var(--warm-cream);
  border-color: rgba(244,199,109,0.4);
  background: rgba(244,199,109,0.08);
}
.signup-modal__close svg { width: 18px; height: 18px; stroke: currentColor; }
body.modal-open { overflow: hidden; }

.signup-modal .form-card {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  backdrop-filter: blur(40px) saturate(140%);
  -webkit-backdrop-filter: blur(40px) saturate(140%);
  border: 1px solid var(--color-border-soft);
  box-shadow: var(--shadow-card);
}
@media (max-width: 600px) {
  .signup-modal .form-card {
    padding: var(--space-lg) var(--space-md);
    border-radius: var(--radius-md);
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter:none;
    background: none;
  }
}
.signup-modal .form-card h1 {
  font-size: clamp(22px, 5.5vw, 27px);
  font-weight: var(--fw-bold);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 var(--space-lg);
  color: var(--warm-cream);
  text-align: center;
}
.signup-modal .field-label {
  display: block;
  margin-bottom: var(--space-sm);
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text-soft);
}
.signup-modal .row {
  position: relative;
  margin-bottom: var(--space-md);
}
.signup-modal .row > svg.lead-ic {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  pointer-events: none;
  color: var(--color-text-muted);
  z-index: 2;
}
.signup-modal .row > svg.lead-ic [stroke="#999999"] { stroke: currentColor; }
.signup-modal .row > svg.lead-ic [fill="#999999"] { fill: currentColor; }
.signup-modal .form-control {
  width: 100%;
  padding: 15px 16px 15px 44px;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-medium);
  color: var(--night-void);
  background: #F6F1E9;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  outline: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.signup-modal .form-control::placeholder { color: rgba(36,34,62,0.42); font-weight: var(--fw-regular); }
.signup-modal .form-control:hover { background: #FBF8F2; }
.signup-modal .form-control:focus {
  background: #FFFFFF;
  border-color: var(--warm-gold);
  box-shadow: 0 0 0 3px rgba(244,199,109,0.35), 0 2px 10px rgba(0,0,0,0.25);
}
.signup-modal .row > svg.lead-ic { color: rgba(36,34,62,0.5); }
.signup-modal .row:focus-within > svg.lead-ic { color: var(--warm-ochre); }
.signup-modal .form-control.has-error {
  border-color: #E25571;
  background-color: #FCEEF1;
  box-shadow: 0 0 0 3px rgba(226,85,113,0.28), 0 2px 10px rgba(0,0,0,0.25);
}
.signup-modal .row.has-error > svg.lead-ic { color: #E25571; }
.signup-modal .form-error {
  display: none;
  margin-bottom: var(--space-md);
  padding: 12px 14px;
  background: rgba(226,85,113,0.10);
  border: 1px solid rgba(226,85,113,0.5);
  border-radius: var(--radius-sm);
  color: #E25571;
  font-size: var(--fs-body-sm);
  line-height: 1.45;
  align-items: flex-start;
  gap: 10px;
}
.signup-modal .form-error.is-visible { display: flex; }
.signup-modal .form-error svg {
  width: 18px; height: 18px;
  flex-shrink: 0; margin-top: 1px;
  stroke: currentColor; fill: none;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}
.signup-modal .consent {
  position: relative;
  margin-bottom: var(--space-lg);
}
.signup-modal .consent input {
  position: absolute;
  opacity: 0;
  width: 22px; height: 22px;
  margin: 0;
  top: 1px; left: 0;
  cursor: pointer;
  z-index: 1;
}
.signup-modal .consent label {
  display: block;
  position: relative;
  padding-left: 34px;
  min-height: 22px;
  cursor: pointer;
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  line-height: 1.5;
}
.signup-modal .consent label::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 22px; height: 22px;
  border: 1.5px solid rgba(244,199,109,0.5);
  border-radius: 6px;
  background: rgba(244,199,109,0.06);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.signup-modal .consent label:hover::before {
  border-color: var(--warm-gold);
  background: rgba(244,199,109,0.14);
}
@media (max-width: 420px) {
  .signup-modal .consent label {font-size: var(--fs-micro)}
}
.signup-modal .consent input:focus-visible + label::before {
  box-shadow: 0 0 0 3px rgba(244,199,109,0.25);
}
.signup-modal .consent input:checked + label::before {
  background-color: var(--warm-gold);
  border-color: var(--warm-gold);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2324223E' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 14px 14px;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 0 12px rgba(244,199,109,0.3);
}
.signup-modal .consent.has-error label::before {
  border-color: #E25571;
  background-color: rgba(226,85,113,0.10);
  box-shadow: 0 0 0 3px rgba(226,85,113,0.28);
}
.signup-modal .consent.has-error label { color: var(--color-text-soft); }
.signup-modal .consent label a {
  color: inherit;
  border-bottom: 1px solid rgba(245,239,230,0.22);
  transition: color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.signup-modal .consent label a:hover {
  color: var(--color-text-soft);
  border-bottom-color: rgba(245,239,230,0.4);
}
.signup-modal .btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  padding: 18px 32px;
  font-family: var(--font-body); font-weight: var(--fw-bold); font-size: var(--fs-body);
  letter-spacing: 0.04em;
  color: var(--warm-cream);
  background: var(--gradient-cta);
  border: none; border-radius: var(--radius-pill);
  /*box-shadow: var(--shadow-cta);*/
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1), background 0.4s, box-shadow 0.4s;
}
.signup-modal .btn-primary:hover { background: var(--gradient-cta-hover); box-shadow: var(--shadow-cta), var(--shadow-glow-purple); }
.signup-modal .btn-primary:active { transform: scale(0.98); }
@keyframes lv-shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-5px); }
  40%, 80% { transform: translateX(5px); }
}
.signup-modal .btn-primary.is-shaking { animation: lv-shake 0.42s cubic-bezier(0.36, 0.07, 0.19, 0.97); }
