* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0 0 40px;
  background: #f8f9fa;
  color: #111;
  font-family: Nunito, Arial, Helvetica, sans-serif;
}

a {
  color: #007bff;
}

img {
  max-width: 100%;
}

.adv {
  display: none;
  padding: 18px 10px 8px;
  color: #98999a;
  font-size: 13px;
  font-weight: 300;
  text-align: center;
  letter-spacing: 0.02em;
}

.container {
  width: calc(100% - 22px);
  max-width: 800px;
  margin: 0 auto;
  padding: 10px 12px 28px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.13);
}

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

.badge {
  display: inline-block;
  padding: 5px 10px;
  background-color: #e8e9ea;
  color: #68696a;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1;
}

h1 {
  margin: 18px auto 17px;
  max-width: 760px;
  font-size: 31px;
  line-height: 1.08;
  font-weight: 900;
  text-align: center;
  letter-spacing: -0.02em;
}

.red-emphasis {
  color: #e30000;
  font-weight: 900;
  font-style: italic;
  white-space: normal;
}

.views-line {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 17px;
  font-size: 14px;
  font-weight: 700;
}

.icon {
  color: #fd0b0b;
  line-height: 0;
}

.lp-hero-container {
  position: relative;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  overflow: hidden;
  background: #111;
}

.hero-link {
  position: relative;
  display: block;
  min-height: 245px;
  color: inherit;
  text-decoration: none;
}

.hero-image {
  display: block;
  width: 100%;
  margin: 0;
}

.hero-dim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.03) 38%, rgba(0, 0, 0, 0.28) 100%);
  pointer-events: none;
}

.top-ribbon {
  position: absolute;
  top: 13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 7px 15px;
  border-radius: 999px;
  background: rgba(227, 0, 0, 0.92);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-align: center;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.22);
  white-space: nowrap;
}

.visual-callout {
  position: absolute;
  bottom: 18px;
  width: min(230px, 38%);
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  color: #101010;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.left-callout {
  left: 17px;
}

.right-callout {
  right: 17px;
}

.callout-kicker {
  display: block;
  color: #e30000;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.visual-callout strong {
  display: block;
  margin-top: 4px;
  font-size: 15px;
  line-height: 1.1;
}

.nerve-chip {
  position: absolute;
  left: 17px;
  bottom: 18px;
  right: auto;
  top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(9, 9, 9, 0.74);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(2px);
}


.pulse-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff2e2e;
  box-shadow: 0 0 0 rgba(255, 46, 46, 0.65);
  animation: pulseDot 1.6s infinite;
}

.breathing-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 100px;
  height: 100px;
  padding-left: 10px;
  padding-bottom: 3px;
  border-radius: 50%;
  background-color: #e50914;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 48px;
  line-height: 1;
  box-shadow: 0 0 0 0 rgba(229, 9, 20, 0.7);
  animation: breathe 2s infinite ease-in-out;
}

@keyframes breathe {
  0% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 0 rgba(229, 9, 20, 0.7);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow: 0 0 25px 12px rgba(229, 9, 20, 0);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 0 rgba(229, 9, 20, 0);
  }
}

@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 46, 46, 0.65);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(255, 46, 46, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 46, 46, 0);
  }
}

.hook-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 750px;
  margin: 12px auto 12px;
}

.hook-card {
  padding: 11px 10px;
  border: 1px solid #e4e8ee;
  border-radius: 9px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.hook-card span {
  display: block;
  margin-bottom: 3px;
  color: #e30000;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.hook-card strong {
  display: block;
  font-size: 14px;
  line-height: 1.14;
}

.article-copy {
  max-width: 750px;
  margin: 0 auto;
}

.article-copy p {
  margin: 17px 0;
  font-size: 20px;
  line-height: 1.38;
}

.article-copy .lead-bold {
  margin-top: 9px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.24;
}

.micro-disclaimer {
  margin: 18px 0 8px;
  padding: 12px 14px;
  border-left: 4px solid #dce7f7;
  background: #f8fbff;
  color: #4d5967;
  font-size: 13px;
  line-height: 1.35;
}

.cta-section {
  padding-top: 13px;
}

.btn {
  display: inline-block;
  margin: 0 auto 18px;
  padding: 20px 45px;
  border-radius: 6px;
  background-color: #0b86f8;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 5px 0 #0570d2, 0 10px 22px rgba(11, 134, 248, 0.22);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
  box-shadow: 0 6px 0 #0570d2, 0 13px 25px rgba(11, 134, 248, 0.28);
}

.below-cta {
  display: block;
  max-width: 720px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.25;
}

.footer {
  width: calc(100% - 22px);
  max-width: 800px;
  margin: 105px auto 0;
  padding: 10px;
  color: #98999a;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.25;
  text-align: center;
}

.footer p {
  margin: 0 0 10px;
}

.footer a {
  color: inherit;
}

.footer-links {
  margin-top: 12px;
}

.legal-page {
  max-width: 820px;
  margin: 32px auto;
  padding: 24px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.13);
}

.legal-page h1 {
  text-align: left;
  font-size: 30px;
}

.legal-page p,
.legal-page li {
  font-size: 17px;
  line-height: 1.5;
}

.legal-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.legal-page th,
.legal-page td {
  padding: 10px;
  border: 1px solid #e5e5e5;
  text-align: left;
  vertical-align: top;
}

@media (min-width: 768px) {
  .adv {
    display: block;
  }

  h1 {
    font-size: 36px;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 28px;
  }

  .container {
    width: 100%;
    padding: 10px 10px 22px;
    box-shadow: none;
  }

  h1 {
    font-size: 28px;
  }

  .views-line {
    margin-bottom: 13px;
    font-size: 13px;
  }

  .hero-link {
    min-height: 210px;
  }

  .top-ribbon {
    top: 9px;
    font-size: 11px;
  }

  .breathing-play-btn {
    width: 78px;
    height: 78px;
    font-size: 38px;
  }

  .visual-callout {
    bottom: 10px;
    width: 43%;
    padding: 8px 9px;
  }

  .visual-callout strong {
    font-size: 12px;
  }

  .callout-kicker {
    font-size: 10px;
  }

  .nerve-chip {
    right: 10px;
    top: 43px;
    padding: 7px 9px;
    font-size: 11px;
  }

  .hook-row {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .hook-card {
    padding: 9px 10px;
  }

  .article-copy p {
    font-size: 18px;
  }

  .article-copy .lead-bold {
    font-size: 17px;
  }

  .btn {
    width: 86%;
    padding: 18px 20px;
    font-size: 19px;
  }

  .below-cta {
    font-size: 16px;
  }

  .footer {
    margin-top: 60px;
  }
}
