:root {
  color-scheme: light;
  --ink: #090909;
  --muted: #68707f;
  --line: #ececf1;
  --soft: #f7f7f9;
  --white: #ffffff;
  --gold: #ffca1a;
  --gold-dark: #e4ad00;
  --wine: #6f1f3d;
  --rose: #fff4f7;
  --green: #179900;
  --shadow: 0 24px 70px rgba(16, 18, 24, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Inter Tight", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
iframe {
  max-width: 100%;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 18px clamp(18px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(236, 236, 241, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand span {
  color: var(--wine);
}

.topbar nav {
  display: flex;
  gap: 24px;
  color: #4a4f5a;
  font-size: 15px;
  font-weight: 700;
}

.topbar-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--gold);
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(255, 202, 26, 0.28);
}

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

.hero {
  width: min(100% - 36px, 900px);
  padding-top: 76px;
  text-align: center;
}

.eyebrow,
.section-heading span,
.mini-label,
.plan-label {
  color: var(--wine);
  font-size: 15px;
  font-style: italic;
  font-weight: 700;
}

.hero h1,
.section-heading h2,
.visual-split h2,
.guarantee h2,
.final-cta h2 {
  margin: 12px 0 0;
  font-size: clamp(42px, 6vw, 70px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero-subtitle {
  max-width: 760px;
  margin: 22px auto 0;
  color: #303745;
  font-size: clamp(19px, 2vw, 24px);
  font-style: italic;
  line-height: 1.42;
}

.video-card {
  position: relative;
  overflow: hidden;
  width: min(100%, 780px);
  margin: 34px auto 0;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  background: #18040c;
  box-shadow: var(--shadow);
}

.video-trigger {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transform: scale(1.01);
}

.video-trigger::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.28));
}

.video-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.32);
  transform: translate(-50%, -50%);
}

.play-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  width: 0;
  height: 0;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  border-left: 31px solid #151515;
  transform: translate(-50%, -50%);
}

.video-card strong {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 34px;
  z-index: 2;
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.support-copy {
  max-width: 760px;
  margin: 28px auto 0;
  color: #5f6673;
  font-size: 21px;
  line-height: 1.45;
}

.support-copy strong {
  color: var(--ink);
}

.proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  margin: 28px auto 0;
  padding: 7px 18px 7px 8px;
  border-radius: 999px;
  background: #f1f1f3;
  color: #303745;
  font-size: 14px;
  font-weight: 800;
}

.avatar-stack {
  display: flex;
}

.avatar-stack img {
  width: 27px;
  height: 27px;
  object-fit: cover;
  border: 2px solid var(--white);
  border-radius: 50%;
}

.avatar-stack img + img {
  margin-left: -9px;
}

.stars {
  color: #f2b800;
  letter-spacing: 0;
}

.primary-button,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 66px;
  margin-top: 34px;
  padding: 0 42px;
  border-radius: 999px;
  font-size: 20px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-button {
  background: var(--gold);
  color: #070707;
  box-shadow: 0 20px 48px rgba(255, 202, 26, 0.35);
}

.outline-button {
  border: 1px solid #171717;
  background: var(--white);
}

.primary-button:hover,
.outline-button:hover,
.topbar-cta:hover {
  transform: translateY(-2px);
}

.primary-button.full,
.outline-button {
  width: 100%;
}

.muted {
  width: 100%;
  max-width: none;
  background: var(--soft);
}

.muted > * {
  width: min(100% - 36px, 1100px);
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading h2,
.visual-split h2,
.guarantee h2,
.final-cta h2 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.02;
}

.section-heading p,
.visual-split p,
.guarantee p,
.final-cta p {
  margin: 22px 0 0;
  color: #666e7a;
  font-size: 20px;
  line-height: 1.58;
}

.section-heading.compact {
  margin-bottom: 36px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-grid article,
.price-card,
.media-card,
.faq details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.feature-grid article {
  padding: 26px;
}

.feature-grid h3,
.media-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.05;
}

.feature-grid p,
.media-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.visual-split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 58px;
  align-items: center;
  margin-top: 72px;
}

.visual-split.reverse {
  grid-template-columns: 1fr 1fr;
}

.visual-split img,
.media-card img,
.testimonial-grid img,
.guarantee img {
  display: block;
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.clean-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
  color: #20242b;
  font-size: 18px;
  font-weight: 700;
}

.clean-list li::before,
.price-card li::before {
  content: "✓";
  color: var(--green);
  margin-right: 8px;
  font-weight: 900;
}

.pricing-section {
  width: 100%;
  max-width: none;
  padding-top: 76px;
  padding-bottom: 96px;
  background: #020202;
  color: var(--white);
}

.pricing-section > * {
  width: min(100% - 28px, 1180px);
  margin-left: auto;
  margin-right: auto;
}

.pricing-section .section-heading {
  margin-bottom: 68px;
}

.pricing-section .section-heading h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.08;
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  justify-content: center;
  gap: 34px;
  align-items: start;
}

.price-card {
  position: relative;
  padding: 42px 32px 36px;
  color: var(--ink);
  text-align: center;
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.06);
}

.price-card.featured {
  border: 2px solid var(--gold);
  padding-top: 54px;
  box-shadow: 0 0 34px rgba(255, 202, 26, 0.5), 0 22px 70px rgba(255, 202, 26, 0.22);
}

.price-card.basic {
  margin-top: 54px;
}

.badge {
  position: absolute;
  top: -19px;
  left: 50%;
  transform: translateX(-50%);
  min-width: min(78%, 520px);
  padding: 9px 28px;
  border-radius: 999px;
  background: var(--gold);
  color: #060606;
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
}

.price-card h3 {
  min-height: 74px;
  margin: 0;
  color: #ff861c;
  font-size: 34px;
  line-height: 1.08;
  font-weight: 900;
  text-transform: uppercase;
}

.vip-headline {
  max-width: 620px;
  margin: 0 auto 24px;
  color: #050505;
  font-size: 27px;
  line-height: 1.08;
  font-weight: 900;
}

.plan-note {
  min-height: 22px;
  margin: 8px 0 0;
  color: #050505;
  font-size: 26px;
  font-weight: 500;
  text-transform: uppercase;
}

.featured .plan-note {
  color: #ff861c;
  font-size: 30px;
  font-weight: 900;
}

.old-price {
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid #cfcfcf;
  color: #090909;
  font-size: 20px;
  line-height: 1.2;
}

.old-price s {
  color: #f01818;
  font-weight: 900;
}

.price {
  margin: 28px 0 0;
}

.price small {
  display: block;
  color: #707782;
  font-size: 14px;
  font-weight: 800;
}

.price strong {
  display: block;
  color: var(--green);
  font-size: clamp(82px, 8vw, 116px);
  line-height: 0.95;
  letter-spacing: 0;
}

.installment {
  margin: 18px 0 24px;
  color: #323842;
  font-size: 18px;
  font-weight: 800;
}

.payment-note {
  margin: -12px 0 22px;
  color: #323842;
  font-size: 14px;
  font-weight: 700;
}

.price-card > ul {
  display: grid;
  gap: 11px;
  min-height: 176px;
  padding: 24px 0 0;
  margin: 0;
  border-top: 1px solid var(--line);
  list-style: none;
  color: #1b1f25;
  font-size: 17px;
  line-height: 1.35;
  text-align: left;
}

.vip-validity {
  margin: 18px auto 0;
  padding: 14px 0 18px;
  border-bottom: 1px solid #d9d9d9;
  color: #050505;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.vip-validity strong {
  display: block;
  margin-top: 5px;
  color: #f01818;
  font-size: 13px;
}

.vip-details {
  margin-top: 26px;
  text-align: left;
}

.vip-details h4 {
  margin: 0 0 16px;
  color: #111;
  font-size: 18px;
  line-height: 1.25;
  text-align: center;
}

.vip-details h4 strong {
  color: var(--green);
}

.vip-learning-list,
.vip-bonus-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: #1b1f25;
  font-size: 14px;
  line-height: 1.35;
  text-align: left;
}

.vip-learning-list li,
.vip-bonus-list li {
  padding: 7px 0;
  border-bottom: 1px solid #ececec;
}

.bonus-ribbon {
  margin: 22px 0 16px;
  padding: 10px 14px;
  background: #ffe500;
  color: #070707;
  font-size: 18px;
  font-style: italic;
  font-weight: 900;
  text-align: center;
}

.vip-bonus-image {
  display: block;
  width: 100%;
  margin: 0 0 16px;
  border-radius: 4px;
  box-shadow: none;
}

.vip-bottom-offer {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid #d9d9d9;
  text-align: center;
}

.price.compact {
  margin-top: 0;
}

.price.compact strong {
  font-size: clamp(72px, 7vw, 94px);
}

.vip-bottom-offer p {
  margin: -4px 0 18px;
  color: #111;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 800;
}

.vip-bottom-offer small {
  display: block;
  margin-top: 14px;
  color: #343a43;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.dark {
  width: 100%;
  max-width: none;
  background: #080808;
  color: var(--white);
}

.dark > * {
  width: min(100% - 36px, 1100px);
  margin-left: auto;
  margin-right: auto;
}

.dark p {
  color: #d2d5db;
}

.gold {
  color: var(--gold);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.bonus-grid span {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.media-card {
  overflow: hidden;
  padding: 20px;
}

.media-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  box-shadow: none;
}

.media-card h3,
.media-card p {
  padding: 0 10px;
}

.media-card h3 {
  margin-top: 22px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.testimonial-grid img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: 0 16px 36px rgba(17, 17, 17, 0.08);
}

.guarantee {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.guarantee img {
  box-shadow: none;
}

.faq {
  width: min(100%, 860px);
  margin: 0 auto;
}

.faq details {
  padding: 0 26px;
}

.faq details + details {
  margin-top: 12px;
}

.faq summary {
  cursor: pointer;
  padding: 23px 0;
  font-size: 20px;
  font-weight: 900;
}

.faq p {
  margin: -6px 0 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.final-cta {
  width: min(100% - 36px, 860px);
  text-align: center;
}

.footer {
  padding: 38px 18px;
  background: #070707;
  color: #c9cbd1;
  text-align: center;
}

.footer p {
  max-width: 820px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.55;
}

.footer p + p {
  margin-top: 12px;
}

@media (max-width: 980px) {
  .topbar nav {
    display: none;
  }

  .feature-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 640px;
  }

  .price-card.basic {
    margin-top: 0;
  }

  .visual-split,
  .visual-split.reverse,
  .two-column,
  .guarantee {
    grid-template-columns: 1fr;
  }

  .guarantee img {
    max-width: 260px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .topbar {
    padding: 14px 16px;
    gap: 10px;
  }

  .brand {
    min-width: 0;
    font-size: 15px;
    line-height: 1;
  }

  .topbar-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
    white-space: nowrap;
  }

  .section,
  .hero {
    width: min(100% - 24px, 1100px);
    padding: 62px 0;
  }

  .hero {
    padding-top: 48px;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 1.02;
    text-wrap: balance;
  }

  .hero-subtitle,
  .support-copy,
  .section-heading p,
  .visual-split p,
  .guarantee p,
  .final-cta p {
    font-size: 18px;
  }

  .proof-pill {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 18px;
    padding-right: 8px;
    font-size: 12px;
  }

  .primary-button,
  .outline-button {
    width: 100%;
    min-height: 58px;
    padding: 0 18px;
    font-size: 18px;
  }

  .feature-grid,
  .testimonial-grid,
  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .pricing-section {
    padding-top: 60px;
    padding-bottom: 72px;
  }

  .pricing-section .section-heading {
    margin-bottom: 42px;
  }

  .price-card h3 {
    min-height: auto;
    font-size: 27px;
  }

  .price-card {
    padding: 34px 22px 28px;
  }

  .price-card.featured {
    padding-top: 46px;
  }

  .vip-headline {
    font-size: 22px;
  }

  .plan-note,
  .featured .plan-note {
    font-size: 22px;
  }

  .badge {
    min-width: min(88%, 420px);
    font-size: 15px;
  }

  .price-card ul {
    min-height: auto;
  }

  .price strong {
    font-size: 64px;
  }

  .section-heading h2,
  .visual-split h2,
  .guarantee h2,
  .final-cta h2 {
    font-size: 34px;
    line-height: 1.05;
  }

  .play-button {
    width: 78px;
    height: 78px;
  }

  .play-button::before {
    border-top-width: 17px;
    border-bottom-width: 17px;
    border-left-width: 24px;
  }

  .video-card strong {
    bottom: 22px;
    font-size: 16px;
  }
}
