:root {
  --ink: #121417;
  --muted: #525a60;
  --teal: #278b83;
  --teal-dark: #1f766f;
  --teal-soft: #edf8f7;
  --gold: #f0b84f;
  --line: #d8e4e2;
  --danger: #b9473d;
  --page: #ffffff;
  --shell: #161616;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page {
  width: 100%;
  min-height: 100vh;
}

.article {
  width: min(100%, 430px);
  margin: 0 auto;
  background: var(--page);
  padding: 16px 18px 28px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.hero {
  text-align: left;
  padding-top: 2px;
}

.kicker {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}

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

h1 {
  margin-bottom: 14px;
  color: #050607;
  font-size: 31px;
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 900;
}

h2 {
  margin: 24px 0 10px;
  color: #101416;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 7px;
  font-size: 18px;
  line-height: 1.2;
}

p {
  margin-bottom: 14px;
  font-size: 17px;
  line-height: 1.42;
}

strong {
  font-weight: 900;
}

.article-image,
.product-photo {
  display: block;
  width: 100%;
  height: auto;
  margin: 18px 0;
  border-radius: 7px;
}

.product-photo-small {
  width: min(100%, 320px);
  margin-left: auto;
  margin-right: auto;
}

.quote-list,
.negative-list,
.check-list {
  margin: 10px 0 16px;
}

.quote-list p,
.negative-list p,
.check-list p {
  position: relative;
  margin: 0;
  padding: 10px 0 10px 26px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
}

.quote-list p::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 17px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.negative-list p::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 15px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--danger);
  border-radius: 50%;
}

.check-list p::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 14px;
  width: 13px;
  height: 8px;
  border-left: 3px solid var(--teal);
  border-bottom: 3px solid var(--teal);
  transform: rotate(-45deg);
}

.proof-card,
.cta-panel,
.ready-block,
.quiz {
  margin: 22px 0;
  padding: 16px;
  border-radius: 7px;
  background: var(--teal-soft);
  border: 1px solid #d8eeee;
}

.proof-card h2,
.ready-block h2,
.quiz h2 {
  margin-top: 0;
}

.proof-card ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.proof-card li {
  margin-bottom: 9px;
  font-size: 16px;
  line-height: 1.35;
}

.cta-panel {
  background: linear-gradient(180deg, #f4fbfa 0%, #edf8f7 100%);
}

.panel-title {
  margin-bottom: 12px;
  color: var(--teal-dark);
  font-weight: 900;
  text-align: center;
}

.mini-benefits {
  margin: 0 0 12px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mini-benefits div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 58px;
  border-bottom: 1px solid var(--line);
}

.mini-benefits div:last-child {
  border-bottom: 0;
}

.mini-benefits span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid var(--teal);
  border-radius: 50%;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
}

.mini-benefits p {
  margin: 0;
  font-size: 15px;
  line-height: 1.24;
}

.cta-button {
  display: flex;
  width: min(100%, 408px);
  min-height: 49px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 24px auto 0;
  padding: 10px 18px;
  border: 1px solid #124c12;
  border-radius: 8px;
  background: linear-gradient(180deg, #49a93b 0%, #27751f 100%);
  color: #ffffff;
  cursor: pointer;
  font-family: inherit;
  font-size: 20px;
  line-height: 1.12;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 4px 8px rgba(0, 0, 0, 0.24);
}

.cta-button:hover,
.cta-button:focus-visible {
  background: linear-gradient(180deg, #51b943 0%, #236f1c 100%);
  outline: 3px solid rgba(48, 138, 37, 0.2);
  outline-offset: 2px;
}

.pointer {
  flex: 0 0 auto;
  font-size: 19px;
  line-height: 1;
  text-shadow: none;
}

.cta-note {
  margin: 9px auto 0;
  color: #3d3d3d;
  font-size: 21px;
  line-height: 1.15;
  font-weight: 900;
  text-align: center;
}

.comments-section {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.comments-section h2 {
  margin: 0 0 14px;
}

.comments-list {
  display: grid;
  gap: 12px;
}

.comment-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border: 1px solid #dedede;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.comment-avatar {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border: 2px solid #e5e5e5;
  border-radius: 50%;
  background: #dcdcdc;
  object-fit: cover;
}

.comment-body {
  min-width: 0;
}

.comment-name {
  margin-bottom: 5px;
  color: #222222;
  font-size: 16px;
  line-height: 1.15;
  font-weight: 900;
}

.comment-body p {
  margin: 0;
  color: #303030;
  font-size: 15px;
  line-height: 1.42;
}

.trust-row {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 8px;
  align-items: center;
  margin-top: 10px;
}

.trust-row p {
  margin: 0;
  color: #596167;
  font-size: 12px;
  line-height: 1.25;
}

.shield {
  position: relative;
  display: block;
  width: 25px;
  height: 29px;
  margin-left: auto;
  border: 3px solid var(--teal);
  border-radius: 13px 13px 16px 16px;
}

.shield::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  width: 9px;
  height: 5px;
  border-left: 3px solid var(--teal);
  border-bottom: 3px solid var(--teal);
  transform: rotate(-45deg);
}

.ingredient-grid {
  display: grid;
  gap: 10px;
  margin: 12px 0 16px;
}

.ingredient-grid p,
.phase-card {
  margin: 0;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #ffffff;
  font-size: 15px;
}

.phase-card {
  margin-bottom: 10px;
  border-left: 5px solid var(--gold);
}

.phase-card p {
  margin: 0;
  font-size: 15px;
}

.ready-block {
  background: #f9f7ef;
  border-color: #eee2bf;
}

.ready-block .cta-button {
  margin-top: 14px;
}

.quiz-kicker,
.result-label {
  margin-bottom: 6px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.quiz-progress {
  width: 100%;
  height: 8px;
  margin: 12px 0 15px;
  overflow: hidden;
  border-radius: 999px;
  background: #d9e7e5;
}

.quiz-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--teal);
  transition: width 220ms ease;
}

.quiz-step {
  display: none;
}

.quiz-step.is-active {
  display: grid;
  gap: 9px;
}

.question {
  margin-bottom: 3px;
  font-size: 18px;
  font-weight: 900;
}

.quiz-step button {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid #bddbd8;
  border-radius: 7px;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.2;
  text-align: left;
}

.quiz-step button:hover,
.quiz-step button:focus-visible {
  border-color: var(--teal);
  outline: 3px solid rgba(39, 139, 131, 0.15);
}

.quiz-result h2 {
  margin-top: 0;
}

.result-button {
  margin-top: 14px;
}

.disclaimer {
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.disclaimer p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

@media (max-width: 360px) {
  .article {
    padding-right: 14px;
    padding-left: 14px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }

  p {
    font-size: 16px;
  }

  .cta-button {
    min-height: 58px;
    font-size: 18px;
  }

  .cta-note {
    font-size: 18px;
  }

  .comment-card {
    gap: 9px;
    padding: 10px;
  }

  .comment-avatar {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .comment-name {
    font-size: 15px;
  }

  .comment-body p {
    font-size: 14px;
  }
}

@media (min-width: 720px) {
  .article {
    width: 530px;
  }
}
