:root {
  --teal: #00465a;
  --yellow: #fecc5e;
  --red: #e02828;
  --text: #242424;
  --muted: #6f6f6f;
  --line: #e4e4e4;
  --green: #16a34a;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  background: #efefef;
}

a { color: inherit; }

.topbar {
  background: var(--teal);
  color: #fff;
}

.brand-wrap {
  max-width: 760px;
  margin: 0 auto;
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 14px;
  font-size: 14px;
}

.brand {
  margin-right: auto;
  font-family: Georgia, serif;
  font-size: 28px;
  letter-spacing: .2px;
}

.page {
  max-width: 760px;
  margin: 0 auto;
}

.story {
  background: #fff;
  padding: 12px 22px 90px;
}

.breadcrumb {
  display: flex;
  gap: 6px;
  align-items: center;
  margin: 2px 0 14px;
  color: #777;
  font-size: 13px;
}

h1 {
  margin: 0 0 12px;
  color: #111;
  font-size: 35px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

h2 {
  margin: 24px 0 12px;
  color: #111;
  font-size: 24px;
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.2;
}

p {
  margin: 0 0 17px;
  font-size: 18px;
  line-height: 1.45;
}

li {
  margin: 6px 0;
  font-size: 18px;
  line-height: 1.4;
}

.share-row {
  padding: 8px 0;
}

.share-row img {
  width: 210px;
  max-width: 70%;
  display: block;
}

.meta-row {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 12px;
  align-items: center;
  margin: 10px 0 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.meta-row p {
  margin: 2px 0;
  font-size: 14px;
  line-height: 1.28;
}

.date { color: #555; }

.author {
  width: 78px;
  height: 78px;
  object-fit: cover;
  border-radius: 50%;
}

.hero-img,
.wide-img,
.main-photo {
  display: block;
  width: 100%;
  height: auto;
}

.wide-img {
  margin: 0 0 16px;
}

.main-photo {
  margin: 16px 0 0;
}

.caption {
  margin: 7px 0 16px;
  color: #777;
  text-align: center;
  font-size: 13px;
}

.copy {
  padding: 0 2px;
}

.copy strong {
  color: #111;
}

.quote-box {
  margin: 18px 0;
  padding: 20px;
  border-left: 6px solid var(--teal);
  background: #f3f8fa;
}

.quote-box p {
  margin-bottom: 10px;
  font-size: 21px;
  font-family: Georgia, serif;
  font-style: italic;
}

.quote-box span {
  color: #666;
  font-size: 14px;
  font-weight: 700;
}

.yellow-callout {
  margin: 0 -2px 15px;
  padding: 18px 20px;
  background: var(--yellow);
  color: #111;
  text-align: center;
  font-size: 23px;
  line-height: 1.18;
}

.feature-grid {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  align-items: start;
  margin: 22px 0 8px;
  padding: 10px;
}

.feature-number {
  color: var(--red);
  font-size: 42px;
  line-height: 1;
  font-weight: 800;
}

.feature-grid p {
  margin-bottom: 0;
}

.mid-cta {
  margin: 22px 0;
  padding: 20px;
  border: 1px solid var(--line);
  background: #f8f8f8;
  text-align: center;
}

.mid-cta.yellow {
  border: 0;
  background: var(--yellow);
}

.mid-cta p {
  margin-bottom: 8px;
  font-weight: 800;
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.proof-list div {
  padding: 15px;
  border: 1px solid var(--line);
  background: #fbfbfb;
}

.proof-list strong,
.proof-list span {
  display: block;
}

.proof-list strong {
  margin-bottom: 5px;
  color: #111;
  font-size: 17px;
}

.proof-list span {
  color: #555;
  font-size: 15px;
  line-height: 1.35;
}

.results {
  padding: 10px 0;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.result-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.testimonial-stack {
  display: grid;
  gap: 16px;
  margin: 18px 0 24px;
}

.testimonial-stack div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 15px;
  align-items: center;
  padding: 12px;
  background: #f7f7f7;
  border: 1px solid var(--line);
}

.testimonial-stack img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.testimonial-stack p {
  margin: 0;
  font-style: italic;
}

.offer-box {
  margin: 26px 0;
  padding: 18px;
  border: 3px solid var(--yellow);
  background: #fff9e8;
  text-align: center;
}

.offer-box .label {
  display: inline-block;
  margin: 0 auto 10px;
  padding: 8px 12px;
  background: #111;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.offer-box img {
  display: block;
  width: min(360px, 100%);
  margin: 10px auto 14px;
}

.final-offer {
  background: #fff;
  border-color: #111;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin: 8px auto 0;
  padding: 0 28px;
  border-radius: 4px;
  color: #fff;
  background: var(--green);
  box-shadow: 0 4px 0 #0b6f2f;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 800;
}

.cta:hover {
  background: #11823b;
}

.warning {
  margin: 22px 0;
  padding: 18px;
  border: 2px dashed #c21d1d;
  background: #fff;
  text-align: center;
}

.warning h2 {
  margin-top: 0;
  color: #c21d1d;
}

.deal {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 18px;
  align-items: center;
  margin: 24px 0;
  padding: 18px;
  background: #f7f7f7;
  border: 1px solid var(--line);
}

.deal img {
  width: 100%;
}

.small-title {
  margin-bottom: 6px;
  color: var(--red);
  font-weight: 800;
}

.faq,
.reader-note {
  margin: 26px 0;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

.faq h2,
.reader-note h2 {
  margin-top: 0;
}

.faq-item {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.faq-item h3 {
  color: #111;
  font-size: 19px;
}

.faq-item p {
  margin-bottom: 0;
}

.reader-note {
  border: 3px solid var(--teal);
  text-align: center;
}

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

.comment-input {
  height: 42px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid #cfd5dd;
  border-radius: 3px;
  color: #777;
  font-size: 14px;
}

.comment {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 10px;
  margin-top: 14px;
}

.comment.nested {
  margin-left: 56px;
}

.comment img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.comment h3 {
  margin: 0;
  color: #365899;
  font-size: 14px;
}

.comment p {
  margin: 3px 0 4px;
  font-size: 14px;
  line-height: 1.35;
}

.comment span {
  color: #6b6b6b;
  font-size: 12px;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  padding: 10px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 -4px 18px rgba(0,0,0,.12);
  text-align: center;
}

.sticky-cta a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: min(420px, 100%);
  min-height: 48px;
  color: #fff;
  background: var(--green);
  border-radius: 4px;
  text-decoration: none;
  font-weight: 800;
  font-size: 17px;
}

@media (max-width: 640px) {
  .brand-wrap {
    gap: 12px;
    overflow: hidden;
    white-space: nowrap;
  }

  .brand {
    font-size: 25px;
  }

  .brand-wrap span:nth-of-type(n+3) {
    display: none;
  }

  .story {
    padding: 10px 13px 88px;
  }

  h1 {
    font-size: 29px;
    line-height: 1.08;
  }

  h2 {
    font-size: 22px;
  }

  p,
  li {
    font-size: 17px;
  }

  .meta-row {
    grid-template-columns: 68px 1fr;
  }

  .author {
    width: 64px;
    height: 64px;
  }

  .yellow-callout {
    padding: 15px 12px;
    font-size: 20px;
  }

  .feature-grid {
    grid-template-columns: 42px 1fr;
    padding: 6px 0;
  }

  .feature-number {
    font-size: 35px;
  }

  .result-grid {
    grid-template-columns: 1fr;
  }

  .proof-list,
  .testimonial-stack div {
    grid-template-columns: 1fr;
  }

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

  .deal {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .cta {
    width: 100%;
    padding: 0 14px;
    font-size: 18px;
  }

  .comment.nested {
    margin-left: 28px;
  }
}
