/* ============================================================
   VARIABLES
   ============================================================ */
:root {
  --red:        #cd1c18;
  --blue-dark:  #1044ba;
  --blue-mid:   #265ad0;
  --black:      #0b0a0f;
  --white:      #ffffff;
  --text:       #000000;
  --font:       'Open Sans', Helvetica, sans-serif;
  --max-w:      440px;
  --pad:        0 28px;
}

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

/* Meyer reset kills font-weight on strong — restore it */
strong, b {
  font-weight: 700;
}

body {
  margin: 0 auto;
  max-width: var(--max-w);
  font-family: var(--font);
  font-size: 16px;
  color: var(--text);
  background: var(--white);
}

h1, h2, h3 { margin: 0; }

p { margin: 0; }

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

a { text-decoration: none; }

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  padding: var(--pad);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: block;
  width: 100%;
  max-width: 334px;
  margin: 0 auto;
  padding: 20px 24px;
  border: none;
  border-radius: 5px;
  font-family: var(--font);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  cursor: pointer;
  line-height: 1;
}

.btn--blue-mid  { background-color: var(--blue-mid); }
.btn--blue-dark { background-color: var(--blue-dark); }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background-color: var(--red);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
}

.announcement-bar__content {
  text-align: center;
}

.announcement-bar__text {
  font-size: 12px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 2px;
}

.announcement-bar__timer {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.announcement-bar__arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 27px;
  height: 27px;
  border-radius: 5px;
  object-fit: cover;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 20px 0 32px;
}

.hero__headline {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}

.hero__subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 28px;
}

/* Author */
.author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  opacity: 0.88;
}

.author__photo {
  width: 53px;
  height: 48px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.author__label {
  font-weight: 400;
  color: var(--text);
}

.author__name {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 3px;
}

.author__read-time {
  font-size: 12px;
  color: #444;
}

/* Hero screenshot */
.hero__screenshot {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 24px;
}

/* Story text */
.hero__story {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
}

.hero__story p + p {
  margin-top: 16px;
}

.hero__cta-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 16px;
  font-weight: 400;
  color: var(--blue-dark);
}

/* ============================================================
   WARREN BUFFETT QUOTE
   ============================================================ */
.buffett {
  overflow: hidden;
  line-height: 0;
  font-size: 0;
  margin: 0;
  padding: 0;
  background-color: #1d3a8a;
}

.buffett__quote {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: bottom;
}

.buffett__photo {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  margin-top: -6px;
}

/* ============================================================
   SOUNDS FAMILIAR
   ============================================================ */
.familiar {
  padding: 36px 0 32px;
}

.familiar__title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 20px;
}

.familiar__body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
}

.familiar__body p + p {
  margin-top: 14px;
}

.familiar__questions {
  list-style: disc;
  padding-left: 20px;
  margin-top: 14px;
  margin-bottom: 14px;
}

.familiar__questions li {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
}

/* ============================================================
   FULL-BLEED IMAGE
   ============================================================ */
.full-bleed-image {
  width: 100%;
  overflow: hidden;
}

.full-bleed-image img {
  width: 100%;
  object-fit: cover;
}

/* Content-width image (with side padding) */
.content-image {
  padding: 0 28px;
  margin: 24px 0;
}

.content-image img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
}

/* ============================================================
   9 BRUTAL TRUTHS
   ============================================================ */
.truths {
  padding: 36px 0 8px;
}

.truths__title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 12px;
}

.truths__intro {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 28px;
}

.truth {
  margin-bottom: 28px;
}

.truth__heading {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 8px;
}

.truth__body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
}

.truths__outro {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  margin-top: 8px;
}

/* Images between truth groups */
.truths__image {
  width: 100%;
  margin: 12px 0 32px;
  padding: 0 19px;
}

.truths__image img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
}

/* ============================================================
   MID CTA – JOIN NOW
   ============================================================ */
.mid-cta {
  padding: 32px 28px 24px;
  text-align: center;
}

.mid-cta .btn {
  margin-bottom: 18px;
}

.mid-cta__note {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  max-width: 280px;
  margin: 0 auto;
  color: var(--text);
}

/* ============================================================
   ALL-IN-ONE FEATURES
   ============================================================ */
.features {
  background: linear-gradient(180deg, #eaebed 0%, #ffffff 100%);
  padding: 32px 0 36px;
}

.features__title {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  color: var(--text);
  margin-bottom: 14px;
}

.features__title-accent {
  color: var(--blue-dark);
  font-weight: 700;
}

.features__subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 32px;
}

.features__list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.features__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.features__icon {
  width: 58px;
  height: 53px;
  object-fit: contain;
  flex-shrink: 0;
}

.features__item-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 4px;
}

.features__item-desc {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
}

/* ============================================================
   #1 COMMUNITY STATS
   ============================================================ */
.stats {
  background-color: var(--black);
  padding: 36px 0 40px;
  color: var(--white);
}

.stats__title {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.stats__subtitle {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 32px;
}

.stats__cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stats__card {
  border: 1px solid var(--white);
  border-radius: 5px;
  padding: 28px 24px 24px;
  text-align: center;
}

.stats__number {
  font-size: 52px;
  font-weight: 800;
  color: var(--white);
  text-align: center;
  margin-bottom: 12px;
  line-height: 1;
  letter-spacing: -1px;
}

.stats__desc {
  font-size: 16px;
  line-height: 1.5;
  color: var(--white);
}

/* ============================================================
   FINAL JOIN CTA
   ============================================================ */
.join-cta {
  padding: 36px 0 48px;
}

.join-cta__pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--blue-dark);
  border-radius: 5px;
  padding: 12px 24px;
  margin: 0 auto 36px;
  max-width: 232px;
  text-align: center;
}

.join-cta__regular {
  font-size: 16px;
  font-weight: 400;
  color: var(--blue-dark);
  text-decoration: line-through;
  text-decoration-color: var(--blue-dark);
  line-height: 1.3;
}

.join-cta__today {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1.3;
}

.join-cta__headline-wrap {
  text-align: center;
  margin-bottom: 28px;
}

.join-cta__headline {
  font-size: 40px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
}

.join-cta__tagline {
  font-size: 28px;
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1.2;
  margin-top: 2px;
}

.join-cta__desc {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text);
  text-align: center;
  margin-bottom: 12px;
}

.join-cta__benefits {
  margin-bottom: 32px;
  text-align: center;
}

.join-cta__benefits li {
  font-size: 18px;
  line-height: 1.9;
  color: var(--text);
}

.join-cta .btn {
  margin-bottom: 20px;
}

.join-cta__disclaimer {
  font-size: 15px;
  color: var(--text);
  text-align: center;
  margin-bottom: 28px;
}

.join-cta__ratings {
  margin: 0 auto;
  max-width: 227px;
  object-fit: contain;
}

/* ============================================================
   STICKY CTA BAR
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--max-w);
  background: linear-gradient(to top, rgba(255,255,255,1) 70%, rgba(255,255,255,0));
  padding: 16px 28px 24px;
  z-index: 100;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.sticky-cta--hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(100%);
  pointer-events: none;
}

.sticky-cta__btn {
  display: block;
  width: 100%;
  padding: 18px 24px;
  background-color: var(--blue-dark);
  color: var(--white);
  font-family: var(--font);
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  border-radius: 5px;
  box-shadow: 0 4px 20px rgba(16, 68, 186, 0.45);
  line-height: 1;
}

/* Push page content up so nothing hides behind sticky bar */
body {
  padding-bottom: 90px;
}

/* ============================================================
   RESPONSIVE – wider screens center the mobile card
   ============================================================ */
@media (min-width: 480px) {
  body {
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.08);
  }
}
