:root {
  --bg: #f5efe7;
  --bg-soft: #efe5da;
  --paper: #fffaf3;
  --ink: #284743;
  --ink-strong: #143b36;
  --muted: #786f66;
  --line: rgba(45, 68, 63, 0.16);
  --gold: #bc9e8a;
  --gold-dark: #bc9e8a;
  --green: #1f5b51;
  --green-dark: #143f39;
  --shadow: 0 24px 70px rgba(32, 45, 42, 0.18);
  --radius: 8px;
  --container: min(1120px, calc(100vw - 40px));
  font-family: "Georgia", "Times New Roman", serif;
  color: var(--ink);
  background: var(--bg);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.46), rgba(255,255,255,0) 280px),
    var(--bg);
}

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

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

.launch-banner {
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  width: min(980px, calc(100vw - 32px));
  padding: 14px 16px 14px 20px;
  border: 1px solid rgba(188, 158, 138, 0.48);
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.96);
  box-shadow: 0 20px 60px rgba(32, 45, 42, 0.18);
  transform: translateX(-50%);
  backdrop-filter: blur(14px);
}

.launch-kicker {
  display: block;
  margin-bottom: 3px;
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.launch-title {
  display: block;
  font-size: 20px;
  line-height: 1.12;
  font-weight: 500;
  color: var(--ink-strong);
}

.countdown {
  display: flex;
  align-items: center;
  gap: 8px;
}

.countdown span {
  display: grid;
  min-width: 54px;
  padding: 8px 9px;
  border-radius: var(--radius);
  background: rgba(31, 91, 81, 0.08);
  text-align: center;
}

.countdown strong {
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1;
  color: var(--green-dark);
}

.countdown small {
  margin-top: 3px;
  font-family: Arial, sans-serif;
  font-size: 10px;
  color: var(--muted);
}

.launch-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: var(--radius);
  background: var(--green);
  color: #fffaf3;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

button,
input,
select {
  font: inherit;
}

.hidden-field {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px max(20px, calc((100vw - 1120px) / 2));
  background: rgba(245, 239, 231, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 380px;
}

.brand-logo {
  display: block;
  width: 380px;
  max-height: 74px;
  object-fit: contain;
  object-position: left center;
}

.brand-logo:not([src]),
.brand-logo[src=""] {
  display: none;
}

.brand-fallback {
  display: none;
  align-items: center;
  gap: 10px;
}

.brand.has-fallback .brand-fallback {
  display: flex;
}

.brand-symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(31, 91, 81, 0.24);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(31, 91, 81, 0.12), rgba(183, 147, 108, 0.18));
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--green);
}

.brand-text {
  display: grid;
  gap: 1px;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.brand-text strong {
  font-size: 17px;
  font-weight: 500;
  color: var(--ink-strong);
}

.brand-text small {
  font-family: Arial, sans-serif;
  font-size: 8px;
  letter-spacing: 2.4px;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  color: rgba(20, 59, 54, 0.78);
}

.site-nav a {
  white-space: nowrap;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: var(--radius);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta,
.button.primary {
  color: #fffaf3;
  background: var(--green);
  box-shadow: 0 14px 34px rgba(31, 91, 81, 0.25);
}

.button.ghost {
  color: var(--green-dark);
  border: 1px solid rgba(31, 91, 81, 0.26);
  background: rgba(255, 250, 243, 0.5);
}

.button.full {
  width: 100%;
}

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

.button.is-disabled,
.nav-cta.is-disabled,
.launch-link.is-disabled {
  cursor: not-allowed;
  pointer-events: none;
  color: rgba(255, 250, 243, 0.9);
  background: rgba(31, 91, 81, 0.55);
  box-shadow: none;
  transform: none;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink-strong);
}

section {
  padding: 96px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  align-items: center;
  gap: 58px;
  width: var(--container);
  min-height: calc(100vh - 68px);
  margin: 0 auto;
  padding-top: 72px;
  padding-bottom: 76px;
}

.microcopy {
  margin: 0 0 18px;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--gold-dark);
}

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

h1 {
  max-width: 660px;
  margin-bottom: 22px;
  font-size: clamp(40px, 5.5vw, 70px);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ink-strong);
  overflow-wrap: break-word;
}

.accent-word {
  display: block;
  margin-bottom: 0.22em;
  color: var(--gold-dark);
}

h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  font-weight: 500;
  color: var(--ink-strong);
  overflow-wrap: break-word;
}

h3 {
  font-size: 22px;
  line-height: 1.15;
  font-weight: 500;
  color: var(--ink-strong);
}

p,
li {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}

.hero-lead {
  max-width: 620px;
  font-size: 18px;
}

.hero .microcopy {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border: 1px solid var(--gold-dark);
  border-radius: 999px;
  background: var(--gold-dark);
  color: #fffaf3;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 720px;
}

.hero-proof span {
  padding: 14px 0 0;
  border-top: 1px solid var(--line);
  font-family: Arial, sans-serif;
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink);
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 560px;
}

.photo-frame {
  overflow: hidden;
  border: 1px solid rgba(31, 91, 81, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(31,91,81,0.16), rgba(183,147,108,0.18)),
    #ded1c4;
  box-shadow: var(--shadow);
}

.photo-bg {
  width: 100%;
  height: 100%;
  min-height: inherit;
  background:
    var(--image) center / cover no-repeat,
    radial-gradient(circle at 38% 28%, rgba(255, 250, 243, 0.35), transparent 34%),
    linear-gradient(135deg, rgba(31,91,81,0.16), rgba(183,147,108,0.2)),
    #cfc5b7;
}

.main-photo {
  position: absolute;
  inset: 0 0 42px;
}

.floating-note {
  position: absolute;
  right: -20px;
  bottom: 0;
  width: min(340px, 82%);
  padding: 28px;
  border: 1px solid rgba(183, 147, 108, 0.42);
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.92);
  box-shadow: 0 20px 50px rgba(32, 45, 42, 0.16);
}

.floating-note strong,
.floating-note span {
  display: block;
}

.floating-note strong {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.08;
  font-weight: 500;
  color: var(--ink-strong);
}

.floating-note span {
  font-family: Arial, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

.pain-section,
.modules-section,
.faq-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  width: var(--container);
  margin: 0 auto 38px;
}

.section-heading p {
  max-width: 760px;
}

.section-heading.centered {
  max-width: 760px;
  text-align: center;
}

.section-heading.centered h2,
.section-heading.centered p {
  margin-left: auto;
  margin-right: auto;
}

.problem-grid,
.feature-grid,
.teacher-grid,
.testimonial-grid {
  display: grid;
  width: var(--container);
  margin: 0 auto;
  gap: 18px;
}

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

.problem-grid article,
.feature-grid article,
.testimonial-grid blockquote,
.lead-form,
.price-box,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.72);
}

.problem-grid article,
.feature-grid article {
  padding: 28px;
}

.problem-grid span {
  display: block;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-dark);
}

.bridge-copy {
  width: min(760px, calc(100vw - 40px));
  margin: 34px auto 0;
  text-align: center;
  color: var(--ink);
}

.method-section,
.teachers-section,
.testimonials-section {
  background: linear-gradient(180deg, var(--bg), #f8f1e9);
}

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

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 26px;
  border: 0;
  border-radius: 10px;
  background: rgba(31, 91, 81, 0.08);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
}

.icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.teacher-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 16px 36px rgba(32, 45, 42, 0.08);
}

.teacher-photo {
  aspect-ratio: 1.36 / 1;
  background:
    linear-gradient(135deg, rgba(31,91,81,0.14), rgba(183,147,108,0.16)),
    #ded1c4;
}

.teacher-photo .photo-bg {
  width: 100%;
  height: 100%;
}

.teacher-info {
  padding: 26px 28px 30px;
}

.teacher-info ul,
.offer-copy ul,
.module-content ul {
  padding-left: 18px;
  margin: 16px 0 0;
}

.accordion {
  display: grid;
  gap: 12px;
  width: min(860px, calc(100vw - 40px));
  margin: 0 auto;
}

.module {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.78);
  overflow: hidden;
}

.module button {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  width: 100%;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  color: var(--ink-strong);
  text-align: left;
  cursor: pointer;
}

.module button span {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(183, 147, 108, 0.17);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-dark);
}

.module-content {
  display: none;
  padding: 0 24px 24px 70px;
}

.module.open .module-content {
  display: block;
}

.live-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 54px;
  align-items: start;
  width: var(--container);
  margin: 0 auto;
}

.live-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.live-list span {
  padding: 14px 16px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 250, 243, 0.64);
  font-family: Arial, sans-serif;
  color: var(--ink);
}

.raffle-box {
  margin-top: 22px;
  padding: 22px;
  border: 1px solid rgba(183, 147, 108, 0.34);
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.7);
}

.raffle-box strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
  color: var(--ink-strong);
}

.raffle-box p {
  margin: 0;
  font-size: 14px;
}

.lead-form {
  display: grid;
  gap: 15px;
  padding: 28px;
  box-shadow: 0 18px 52px rgba(32, 45, 42, 0.12);
}

.lead-form h3 {
  margin-bottom: 4px;
}

.lead-form-intro {
  margin: -2px 0 4px;
  font-size: 14px;
  line-height: 1.45;
}

.form-benefits {
  display: grid;
  gap: 10px;
  margin: 4px 0 6px;
  padding: 0;
  list-style: none;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted);
}

.form-benefits li {
  position: relative;
  padding-left: 18px;
}

.form-benefits li::before {
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--sand);
  content: "";
}

.lead-form label {
  display: grid;
  gap: 7px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-strong);
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid rgba(31, 91, 81, 0.18);
  border-radius: var(--radius);
  background: #fffdf8;
  color: var(--ink-strong);
}

.lead-form .consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  font-weight: 400;
}

.lead-form .consent input {
  min-height: auto;
  margin-top: 3px;
}

.form-note {
  min-height: 22px;
  margin: 0;
  font-size: 13px;
  color: var(--green-dark);
}

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

.testimonial-grid blockquote {
  margin: 0;
  padding: 28px;
}

.testimonial-grid p {
  color: var(--ink);
}

.testimonial-grid cite {
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-style: normal;
  color: var(--muted);
}

.partners-section {
  padding-top: 58px;
  padding-bottom: 58px;
  background: var(--green);
}

.partners-section .section-heading {
  margin-bottom: 20px;
}

.partners-section .microcopy {
  color: #fffaf3;
  opacity: 0.86;
}

.partner-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  width: var(--container);
  margin: 0 auto;
}

.partner-logo {
  display: grid;
  width: 220px;
  min-height: 82px;
  place-items: center;
  padding: 8px 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fffaf3;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.partner-logo img {
  max-width: 180px;
  max-height: 52px;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
  mix-blend-mode: screen;
  opacity: 0.95;
}

.offer-section {
  padding-top: 72px;
}

.offer-card {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 34px;
  width: min(900px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 40px;
  border-radius: var(--radius);
  background: var(--green);
  box-shadow: 0 26px 70px rgba(20, 63, 57, 0.28);
}

.offer-card h2,
.offer-card p,
.offer-card li,
.offer-card .microcopy {
  color: #fffaf3;
}

.offer-card .microcopy {
  opacity: 0.78;
}

.offer-card li {
  opacity: 0.9;
}

.price-box {
  padding: 26px;
  background: #fffaf3;
}

.price-box span,
.price-box small {
  display: block;
  font-family: Arial, sans-serif;
  color: var(--muted);
}

.price-box strong {
  display: block;
  margin: 8px 0 4px;
  font-size: 42px;
  font-weight: 500;
  color: var(--ink-strong);
}

.price-box .installment {
  font-size: 30px;
}

.price-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  margin: 18px 0 10px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.price-divider::before,
.price-divider::after {
  content: "";
  height: 1px;
  background: var(--line);
}

.price-box .button {
  margin-top: 20px;
}

.price-box p {
  margin: 14px 0 0;
  font-size: 12px;
}

.price-box .price-note {
  margin-top: 16px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(31, 91, 81, 0.92);
  color: #fffaf3;
  font-size: 12px;
  line-height: 1.45;
}

.faq-list {
  display: grid;
  gap: 10px;
  width: min(780px, calc(100vw - 40px));
  margin: 0 auto;
}

.faq-list details {
  padding: 18px 22px;
}

.faq-list summary {
  font-family: Arial, sans-serif;
  font-weight: 700;
  color: var(--ink-strong);
  cursor: pointer;
}

.faq-list p {
  margin: 14px 0 0;
}

.final-cta {
  width: min(760px, calc(100vw - 40px));
  margin: 0 auto;
  text-align: center;
}

.final-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  border: 1px solid rgba(31, 91, 81, 0.24);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(31, 91, 81, 0.12), rgba(183, 147, 108, 0.18));
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
}

.final-logo {
  display: block;
  width: 96px;
  height: 96px;
  object-fit: contain;
  margin: 0 auto 22px;
}

.final-logo + .final-mark {
  display: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px max(20px, calc((100vw - 1120px) / 2));
  border-top: 1px solid var(--line);
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 920px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 67px;
    right: 20px;
    display: none;
    width: min(320px, calc(100vw - 40px));
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
    gap: 16px;
  }

  .hero,
  .live-section,
  .offer-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 34px;
  }

  .hero-visual {
    min-height: 520px;
  }

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

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .launch-banner {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: stretch;
  }

  .countdown {
    justify-content: space-between;
  }

  .countdown span {
    min-width: 0;
    flex: 1;
  }
}

@media (max-width: 620px) {
  :root {
    --container: min(1120px, calc(100vw - 28px));
  }

  section {
    padding: 72px 0;
  }

  .site-header {
    padding-left: 14px;
    padding-right: 14px;
  }

  .brand-text {
    letter-spacing: 2.4px;
  }

  .brand {
    min-width: auto;
  }

  .brand-logo {
    width: 260px;
    max-height: 60px;
  }

  .brand-text small {
    display: none;
  }

  h1 {
    max-width: 100%;
    font-size: 30px;
    line-height: 1.12;
  }

  h2 {
    font-size: 31px;
    line-height: 1.08;
  }

  .hero-visual {
    min-height: 440px;
  }

  .main-photo {
    inset-bottom: 62px;
  }

  .floating-note {
    right: 10px;
    width: calc(100% - 20px);
    padding: 22px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-content,
  .hero-lead,
  .hero-proof {
    min-width: 0;
    max-width: 100%;
  }

  .module button {
    padding: 18px;
  }

  .module-content {
    padding: 0 18px 20px 18px;
  }

  .offer-card {
    padding: 24px;
  }

  .site-footer {
    display: grid;
  }
}
