:root {
  --black: #050505;
  --dark: #0d0d0d;
  --dark-raised: #161616;
  --white: #fff;
  --off-white: #f4f4f1;
  --gray-light: #b9b9b9;
  --gray: #777;
  --green: #b6f000;
  --green-light: #c0f500;
  --line-dark: rgba(255, 255, 255, 0.1);
  --line-light: rgba(5, 5, 5, 0.16);
  --container: 1200px;
  --radius: 8px;
  --font: Poppins, "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.has-mobile-checkout {
  padding-bottom: 82px;
}

img,
svg,
video,
iframe {
  display: block;
  max-width: 100%;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

button {
  color: inherit;
}

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

h1,
h2,
h3,
.price,
.type-stack,
.closing__statements {
  font-family: Poppins, "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.005em;
  line-height: 0.96;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 7.5vw, 4.8rem);
}

h3 {
  line-height: 1.05;
}

.container {
  width: min(100% - 36px, var(--container));
  margin-inline: auto;
}

.container--narrow {
  width: min(100% - 36px, 1020px);
}

.section-black,
.section-dark,
.section-light,
.bonus {
  padding-block: clamp(80px, 10vw, 144px);
}

.section-black {
  background: var(--black);
}

.section-dark {
  background: var(--dark);
}

.section-light {
  background: var(--off-white);
  color: var(--black);
}

.eyebrow,
.section-index {
  margin-bottom: 18px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 24px;
  height: 2px;
  margin-right: 10px;
  background: currentColor;
  content: "";
  vertical-align: middle;
}

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

.section-heading {
  max-width: 900px;
  margin-bottom: clamp(42px, 7vw, 76px);
}

.section-heading > p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--gray-light);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow::before {
  display: none;
}

.section-heading--dark > p:last-child {
  color: #454545;
}

.section-heading--dark .eyebrow {
  color: #597500;
}

.section-action {
  margin-top: 54px;
  text-align: center;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--green);
  color: var(--black);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.announcement {
  display: grid;
  min-height: 75px;
  padding: 8px 18px;
  place-items: center;
  background: var(--green);
  color: var(--black);
  font-size: 1.3rem;
  font-weight: 800;
  text-align: center;
}

.button {
  display: inline-flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 16px 28px;
  border: 1px solid var(--green);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #dffd84 0%, #8fb90d 100%);
  color: var(--black);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: filter 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.button:hover {
  border-color: #dffd84;
  background: linear-gradient(180deg, #dffd84 0%, #8fb90d 100%);
  filter: brightness(1.08);
}

.button:focus-visible,
.faq-item button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 4px;
}

.section-light .button:focus-visible,
.bonus .button:focus-visible,
.section-light a:focus-visible {
  outline-color: var(--black);
}

.button--small {
  min-height: 50px;
  padding: 12px 20px;
  font-size: 0.74rem;
}

.button--dark {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.button--dark:hover {
  border-color: #8fb90d;
  background: linear-gradient(180deg, #303030 0%, #101010 100%);
  filter: none;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line-dark);
  background: var(--black);
}

.hero::before {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  content: "";
  opacity: 0.35;
}

.hero__grid {
  display: grid;
  min-height: min(820px, calc(100vh - 94px));
  align-items: center;
  padding-block: 60px 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: 50px;
}

.hero__logo {
  width: 150px;
  height: auto;
  margin-bottom: 24px;
}

.hero h1 {
  max-width: 790px;
  margin-bottom: 25px;
  font-size: clamp(2.7rem, 12vw, 4.5rem);
}

.hero h1 span {
  color: var(--green);
}

.hero__promise {
  max-width: 700px;
  margin-bottom: 20px;
  font-size: clamp(1.05rem, 2.6vw, 1.48rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.28;
}

.hero__promise strong {
  color: var(--green);
}

.hero__description {
  max-width: 650px;
  margin-bottom: 34px;
  color: var(--gray-light);
  font-size: clamp(1rem, 2vw, 1.12rem);
}

.hero__description strong {
  color: var(--white);
}

.hero__action {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-visual {
  position: relative;
  min-height: 510px;
  align-self: end;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  right: 4%;
  bottom: 18%;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--green);
  content: "";
  filter: blur(100px);
  opacity: 0.1;
}

.hero-visual::after,
.expert-visual::after {
  position: absolute;
  z-index: 3;
  inset: auto 0 0;
  height: 32%;
  background: linear-gradient(transparent, var(--black) 92%);
  content: "";
  pointer-events: none;
}

.hero-visual .media-image,
.expert-visual .media-image {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.hero-visual .media-image {
  top: auto;
  bottom: 0;
  left: -11%;
  width: 122%;
  max-width: none;
  height: 105%;
}

.expert-visual .media-image {
  top: auto;
  bottom: 0;
  left: -8%;
  width: 116%;
  max-width: none;
  height: 112%;
}

.media-image.is-missing {
  display: none;
}

.hero-visual__placeholder,
.expert-visual__placeholder {
  position: absolute;
  inset: 10% 5% 0;
  display: grid;
  align-content: center;
  justify-items: center;
  border: 1px solid var(--line-dark);
  background: linear-gradient(145deg, #151515, #080808);
  color: #272727;
}

.hero-visual__placeholder::before,
.expert-visual__placeholder::before {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(182, 240, 0, 0.1);
  content: "";
}

.hero-visual__placeholder span,
.expert-visual__placeholder span {
  font-size: clamp(7rem, 25vw, 14rem);
  font-weight: 800;
  letter-spacing: -0.12em;
  line-height: 0.8;
}

.hero-visual__placeholder small,
.expert-visual__placeholder small {
  z-index: 1;
  margin-top: 30px;
  color: var(--gray);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.video-section {
  border-bottom: 1px solid var(--line-dark);
}

.video-section .section-heading h2 {
  font-size: clamp(2.2rem, 6vw, 4.4rem);
}

.video-player {
  width: 100%;
  margin-inline: auto;
}

.map-points {
  margin-top: clamp(70px, 9vw, 110px);
}

.map-points h3 {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-dark);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
}

.check-grid,
.check-list,
.negative-list,
.bonus__list,
.transparency ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-grid {
  display: grid;
}

.check-grid li,
.check-list li,
.bonus__list li,
.included li,
.not-included li {
  position: relative;
  padding-left: 31px;
}

.check-grid li {
  padding-block: 14px;
  border-bottom: 1px solid var(--line-dark);
  color: var(--gray-light);
}

.check-grid li::before,
.check-list li::before,
.bonus__list li::before,
.included li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 800;
}

.offer-card {
  position: relative;
  display: grid;
  margin-top: clamp(80px, 12vw, 140px);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  background: var(--dark-raised);
}

.offer-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--green);
  content: "";
}

.offer-card__intro,
.offer-card__content {
  padding: clamp(32px, 6vw, 60px);
}

.offer-card__intro {
  border-bottom: 1px solid var(--line-dark);
}

.old-price,
.price-label {
  margin-bottom: 3px;
  color: var(--gray);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.price {
  margin: 0;
  color: var(--green);
  font-size: clamp(5.2rem, 20vw, 9rem);
}

.price span {
  margin-right: 8px;
  font-size: 0.26em;
  letter-spacing: -0.03em;
  vertical-align: top;
}

.offer-card__receive {
  color: var(--gray);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.offer-item {
  display: grid;
  gap: 5px;
  padding-block: 20px;
  border-bottom: 1px solid var(--line-dark);
}

.offer-item strong {
  line-height: 1.3;
}

.offer-item span {
  color: var(--gray-light);
  font-size: 0.9rem;
}

.offer-card__content .button {
  width: 100%;
  margin-top: 28px;
}

.offer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 20px;
  margin: 18px 0 0;
  color: var(--gray);
  font-size: 0.68rem;
  text-align: center;
}

.offer-meta span:not(:last-child)::after {
  margin-left: 20px;
  color: var(--green);
  content: "•";
}

.learning .section-heading h2,
.transparency .section-heading h2 {
  max-width: 900px;
}

.learning-grid {
  display: grid;
}

.learning-item {
  padding-block: 28px;
  border-top: 1px solid var(--line-light);
}

.learning-item__number {
  display: block;
  margin-bottom: 38px;
  color: #729900;
  font-size: clamp(2.8rem, 8vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
}

.learning-item h3 {
  max-width: 320px;
  margin-bottom: 14px;
  font-size: 1.18rem;
  letter-spacing: 0.005em;
}

.learning-item p {
  max-width: 340px;
  margin-bottom: 0;
  color: #555;
  font-size: 0.95rem;
}

.belief {
  border-bottom: 1px solid var(--line-dark);
}

.belief__grid {
  display: grid;
  gap: 70px;
}

.belief h2 {
  margin-bottom: 42px;
}

.negative-list li {
  position: relative;
  padding: 13px 0 13px 32px;
  border-bottom: 1px solid var(--line-dark);
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  font-weight: 700;
}

.negative-list li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "×";
  font-size: 1.45rem;
  line-height: 1;
}

.belief__explanation {
  align-self: center;
}

.belief__explanation > p {
  max-width: 590px;
  color: var(--gray-light);
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
}

.type-stack {
  display: grid;
  margin-top: 34px;
}

.type-stack strong {
  padding-block: 13px;
  border-top: 1px solid var(--line-dark);
  color: var(--white);
  font-size: clamp(2rem, 7vw, 4.2rem);
}

.type-stack strong:nth-child(2) {
  color: var(--green);
}

.market {
  position: relative;
  overflow: hidden;
}

.market__grid {
  display: grid;
  gap: clamp(60px, 10vw, 130px);
}

.market__content h2 {
  font-size: clamp(2.5rem, 6.8vw, 4.6rem);
}

.market__content > p {
  color: var(--gray-light);
}

.check-list {
  margin-top: 26px;
}

.check-list li {
  padding-block: 8px;
  font-weight: 700;
}

.process {
  position: relative;
  padding: 20px;
  border: 1px solid var(--line-dark);
  background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 22px 22px;
}

.process__node {
  display: flex;
  min-height: 75px;
  align-items: center;
  gap: 20px;
  padding: 18px;
  border: 1px solid var(--line-dark);
  background: rgba(5, 5, 5, 0.94);
}

.process__node small {
  color: var(--green);
  font-family: monospace;
}

.process__node strong {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.process__node--accent {
  border-color: var(--green);
}

.process__connector {
  display: block;
  width: 1px;
  height: 34px;
  margin-inline: auto;
  background: var(--green);
}

.process__connector::after {
  display: block;
  width: 5px;
  height: 5px;
  margin-left: -2px;
  transform: translateY(29px) rotate(45deg);
  border-right: 1px solid var(--green);
  border-bottom: 1px solid var(--green);
  content: "";
}

.proof-copy {
  display: grid;
  gap: 40px;
  margin-bottom: 58px;
}

.proof-copy h2 {
  margin: 0;
  font-size: clamp(2.3rem, 6.5vw, 4.8rem);
}

.proof-copy h2 span {
  color: #5f7e00;
}

.proof-copy > div {
  max-width: 520px;
}

.proof-copy p {
  color: #4d4d4d;
}

.proof-copy blockquote {
  padding-left: 22px;
  border-left: 3px solid #729900;
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  font-weight: 700;
  line-height: 1.35;
}

.testimonials {
  display: flex;
  gap: 14px;
  margin-inline: -18px;
  padding: 0 18px 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-color: #6d6d6d transparent;
}

.testimonial-placeholder {
  position: relative;
  display: grid;
  flex: 0 0 min(84vw, 410px);
  overflow: hidden;
  aspect-ratio: 15 / 19;
  place-items: center;
  margin: 0;
  scroll-snap-align: center;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: #e9e9e5;
}

.testimonial-placeholder::before {
  width: 44px;
  height: 32px;
  border-top: 2px solid #aaa;
  border-bottom: 2px solid #aaa;
  content: "";
}

.testimonial-placeholder::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  height: 40%;
  border-top: 1px solid #cececa;
  border-bottom: 1px solid #cececa;
  content: "";
}

.testimonial-placeholder .media-image {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--white);
}

.testimonial-placeholder figcaption {
  position: absolute;
  z-index: 1;
  top: 20px;
  color: #989894;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.expert {
  padding-bottom: 0;
  overflow: hidden;
}

.expert__grid {
  display: grid;
  gap: 55px;
}

.expert-visual {
  position: relative;
  min-height: 530px;
}

.expert-visual__placeholder {
  inset: 0;
}

.expert-visual__line {
  position: absolute;
  z-index: 4;
  top: 20%;
  right: 0;
  width: 34%;
  height: 1px;
  background: var(--green);
}

.expert__content {
  padding-bottom: clamp(80px, 10vw, 140px);
}

.expert__content h2 {
  color: var(--green);
  font-size: clamp(4rem, 14vw, 7rem);
}

.expert__role {
  padding-block: 15px;
  border-block: 1px solid var(--line-dark);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.expert__bio {
  margin-top: 35px;
  color: var(--gray-light);
}

.expert__bio p:last-child {
  margin-bottom: 0;
}

.bonus {
  overflow: hidden;
  background: var(--green);
  color: var(--black);
}

.bonus__grid {
  display: grid;
  gap: 60px;
}

.bonus h2 {
  font-size: clamp(2.55rem, 7vw, 4.7rem);
}

.bonus__content > p:not(.eyebrow) {
  max-width: 660px;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
}

.bonus__list {
  margin-block: 30px;
}

.bonus__list li {
  padding-block: 7px;
  font-weight: 700;
}

.bonus__list li::before {
  color: var(--black);
}

.bonus__seal {
  display: inline-block;
  padding: 9px 13px;
  border: 1px solid var(--black);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.productivity-ui {
  align-self: center;
  padding: clamp(20px, 5vw, 40px);
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
  box-shadow: 18px 18px 0 rgba(5, 5, 5, 0.13);
}

.productivity-ui__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.productivity-ui__header div {
  display: grid;
}

.productivity-ui__header small,
.productivity-ui__header span,
.productivity-ui__task small {
  color: var(--gray);
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.productivity-ui__header strong {
  color: var(--green);
  font-size: clamp(2.5rem, 8vw, 4.3rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.productivity-ui__progress {
  height: 4px;
  margin-block: 26px;
  background: #262626;
}

.productivity-ui__progress span {
  display: block;
  width: 43%;
  height: 100%;
  background: var(--green);
}

.productivity-ui__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.productivity-ui__days span {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid #252525;
  color: #5c5c5c;
  font-size: 0.55rem;
  font-weight: 700;
}

.productivity-ui__days .is-done {
  color: var(--white);
}

.productivity-ui__days .is-done::after {
  position: absolute;
  content: "";
}

.productivity-ui__days .is-active {
  border-color: var(--green);
  background: var(--green);
  color: var(--black);
}

.productivity-ui__task {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
}

.productivity-ui__task > span {
  width: 17px;
  height: 17px;
  border: 1px solid var(--green);
}

.productivity-ui__task p {
  display: grid;
  margin: 0 auto 0 0;
}

.productivity-ui__task strong {
  font-size: 0.62rem;
}

.productivity-ui__task b {
  color: var(--green);
  font-family: monospace;
  font-size: 0.7rem;
}

.offer-final {
  scroll-margin-top: 20px;
  text-align: center;
}

.offer-final__card {
  padding: clamp(28px, 6vw, 68px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: clamp(16px, 3vw, 34px);
  background: #1b1b1b;
}

.offer-final__card .section-heading {
  margin-bottom: 38px;
}

.offer-lines {
  max-width: 780px;
  margin-inline: auto;
  margin-bottom: 55px;
  border-top: 1px solid var(--line-dark);
}

.offer-lines article {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  padding-block: 25px;
  border-bottom: 1px solid var(--line-dark);
  text-align: left;
}

.offer-lines article > span {
  color: var(--green);
  font-family: monospace;
  font-size: 0.75rem;
}

.offer-lines h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.offer-lines p {
  margin-bottom: 0;
  color: var(--gray-light);
  font-size: 0.9rem;
}

.final-price > p,
.final-price > span {
  display: block;
  margin-bottom: 0;
  color: var(--gray);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.final-price > p {
  width: fit-content;
  margin: 0 auto 26px;
  padding: 10px 24px;
  border: 2px solid #777980;
  border-radius: 14px;
  color: var(--gray-light);
  font-size: clamp(0.9rem, 2vw, 1.15rem);
}

.final-price > p s,
.closing__old-price s {
  color: var(--gray-light);
  text-decoration-color: var(--gray-light);
  text-decoration-thickness: 2px;
}

.final-price > strong {
  display: block;
  margin-block: 8px 28px;
  color: var(--green);
  font-size: clamp(6rem, 24vw, 11rem);
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.final-price > strong small {
  margin-right: 10px;
  font-size: 0.25em;
  vertical-align: top;
}

.final-price .button {
  width: min(100%, 510px);
}

.secure-note {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 18px !important;
  color: var(--gray) !important;
  font-size: 0.67rem !important;
  letter-spacing: 0 !important;
}

.secure-note svg {
  width: 14px;
  fill: none;
  stroke: var(--gray);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.transparency__grid {
  display: grid;
  border-top: 1px solid var(--line-light);
}

.transparency__grid article {
  padding-block: 34px;
}

.transparency__grid h3 {
  margin-bottom: 25px;
  font-size: 1.2rem;
}

.transparency__grid li {
  padding-block: 7px;
  color: #404040;
}

.included li::before {
  color: #5f7e00;
}

.not-included {
  border-top: 1px solid var(--line-light);
}

.not-included li::before {
  position: absolute;
  left: 0;
  color: #777;
  content: "×";
  font-size: 1.3rem;
  line-height: 1.25;
}

.not-included > p {
  margin: 26px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line-light);
  color: #666;
  font-size: 0.88rem;
}

.faq .section-heading {
  margin-bottom: 38px;
}

.faq-list {
  border-top: 1px solid var(--line-dark);
}

.faq-item {
  border-bottom: 1px solid var(--line-dark);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  border: 0;
  background: transparent;
  font-size: clamp(0.9rem, 2.4vw, 1.1rem);
  font-weight: 800;
  letter-spacing: 0.005em;
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  position: relative;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.faq-item button span::before,
.faq-item button span::after {
  position: absolute;
  top: 9px;
  right: 0;
  width: 20px;
  height: 2px;
  background: var(--green);
  content: "";
}

.faq-item button span::after {
  transform: rotate(90deg);
}

.faq-item button[aria-expanded="true"] span::after {
  transform: rotate(0);
}

.faq-answer p {
  max-width: 760px;
  margin-bottom: 0;
  padding: 0 42px 26px 0;
  color: var(--gray-light);
}

.closing {
  padding-block: clamp(90px, 12vw, 170px);
  text-align: center;
}

.closing__inner {
  max-width: 1060px;
}

.closing h2 {
  font-size: clamp(2.75rem, 8vw, 6.5rem);
}

.closing__intro {
  max-width: 560px;
  margin: 0 auto 55px;
  color: var(--gray-light);
  font-size: clamp(1rem, 2.3vw, 1.2rem);
}

.closing__statements {
  display: grid;
  margin-bottom: 64px;
  padding-block: 30px;
  border-block: 1px solid var(--line-dark);
  font-size: clamp(1.6rem, 6.5vw, 4.4rem);
}

.closing__statements strong {
  color: var(--green);
}

.closing__product {
  display: grid;
  margin-bottom: 22px;
  line-height: 1.2;
}

.closing__product-name {
  margin-bottom: 18px;
  color: var(--gray-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.closing__old-price,
.closing__promo-label {
  color: var(--gray-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.closing__old-price {
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.closing__product strong {
  margin-top: 5px;
  color: var(--green);
  font-size: 3.5rem;
  line-height: 1;
}

.closing__product strong small {
  margin-right: 5px;
  font-size: 0.35em;
  vertical-align: top;
}

.closing .button {
  width: min(100%, 520px);
}

.closing__note {
  margin: 15px 0 0;
  color: var(--gray);
  font-size: 0.7rem;
}

.site-footer {
  padding-block: 48px 28px;
  border-top: 1px solid var(--line-dark);
  background: var(--black);
  color: var(--gray);
}

.site-footer__top {
  display: grid;
  gap: 28px;
  align-items: start;
}

.site-footer__top img {
  width: 145px;
  height: auto;
}

.site-footer p {
  margin: 0;
  font-size: 0.73rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}

.site-footer a {
  font-size: 0.73rem;
  text-underline-offset: 4px;
}

.site-footer a:hover {
  color: var(--white);
}

.site-footer__disclaimer {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  font-size: 0.64rem;
  line-height: 1.6;
}

.mobile-checkout {
  position: fixed;
  z-index: 100;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 9px 16px calc(9px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line-dark);
  background: rgba(13, 13, 13, 0.98);
  visibility: hidden;
}

.mobile-checkout.is-visible {
  visibility: visible;
}

.mobile-checkout .button {
  width: min(100%, 400px);
}

.reveal {
  opacity: 1;
}

@media (min-width: 560px) {
  .container,
  .container--narrow {
    width: min(100% - 48px, var(--container));
  }

  .container--narrow {
    max-width: 1020px;
  }

  .check-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
  }

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

  .offer-lines article {
    grid-template-columns: 60px 1fr;
    gap: 20px;
  }
}

@media (min-width: 760px) {
  body.has-mobile-checkout {
    padding-bottom: 0;
  }

  .button {
    min-width: 310px;
  }

  .button--small {
    min-width: auto;
  }

  .learning-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 40px;
  }

  .offer-card {
    grid-template-columns: 0.82fr 1.18fr;
  }

  .offer-card__intro {
    border-right: 1px solid var(--line-dark);
    border-bottom: 0;
  }

  .transparency__grid {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .transparency__grid article {
    padding: 45px;
  }

  .transparency__grid .included {
    padding-left: 0;
  }

  .not-included {
    border-top: 0;
    border-left: 1px solid var(--line-light);
  }

  .site-footer__top {
    grid-template-columns: 1fr auto auto;
    gap: 60px;
  }

  .mobile-checkout {
    display: none;
  }
}

@media (min-width: 940px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
    gap: 20px;
    padding-top: 0;
  }

  .hero__content {
    padding-block: 80px;
  }

  .hero h1 {
    font-size: clamp(4.8rem, 6.3vw, 5.7rem);
  }

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

  .learning-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0 42px;
  }

  .learning-item {
    padding-block: 35px 48px;
  }

  .belief__grid,
  .market__grid,
  .bonus__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .belief__grid {
    gap: 100px;
  }

  .market__content {
    padding-right: 20px;
  }

  .process {
    align-self: center;
    padding: 34px;
  }

  .proof-copy {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: end;
  }

  .testimonials {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
    padding: 0;
    overflow: visible;
  }

  .testimonial-placeholder {
    width: 100%;
  }

  .expert__grid {
    grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 80px;
  }

  .expert-visual {
    min-height: 740px;
    align-self: end;
  }

  .expert__content {
    padding-block: 120px;
  }

  .offer-lines article {
    grid-template-columns: 80px 1fr;
    padding-block: 32px;
  }
}

@media (min-width: 1360px) {
  .container {
    width: min(100% - 64px, var(--container));
  }

  .container--narrow {
    max-width: 1020px;
  }
}

@media (max-width: 759px) {
  .hero__action {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .hero__action .button {
    width: 100%;
  }

  .hero-visual {
    display: none;
  }

  .offer-meta span::after {
    display: none;
  }

  .secure-note span {
    display: none;
  }
}

@media (max-width: 374px) {
  .container,
  .container--narrow {
    width: min(100% - 32px, var(--container));
  }

  .hero h1 {
    font-size: 2.7rem;
  }

  .mobile-checkout {
    padding-inline: 12px;
  }

  .mobile-checkout .button {
    min-width: 160px;
    padding-inline: 12px;
    font-size: 0.64rem;
  }
}
