* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #1a1a1a;
  background: #ffffff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 700px;
  margin: 0 auto;
  padding: 18px 20px 64px;
}

.preland-topbar {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 12px;
}

.back-to-site {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border: 1px solid #e4cfd4;
  border-radius: 999px;
  background: #fffaf8;
  color: #641927;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(56, 18, 30, .06);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.back-to-site:hover {
  border-color: #c99da7;
  background: #fff3f1;
  transform: translateY(-1px);
}

.back-to-site span {
  font-size: 15px;
}

.ad-label {
  text-align: center;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #9a9a9a;
  margin-bottom: 14px;
}

h1 {
  text-align: center;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 45px;
  margin-bottom: 24px;
}

/* ---------- video preview ---------- */
.video {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 3px;
  overflow: hidden;
  background: #eee7ea;
}

.video img {
  display: block;
  width: 100%;
  height: auto;
}

.video .play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 108px;
  height: 108px;
  background: #d62828;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  opacity: 0.96;
  z-index: 2;
  transition: transform .2s ease, opacity .2s ease;
  animation: playPulse 3.2s ease-in-out infinite;
  will-change: transform, opacity, box-shadow;
}

.video .play-badge::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 3px solid rgba(214,40,40,.48);
  opacity: .45;
  animation: playRipple 3.2s ease-in-out infinite;
  pointer-events: none;
}

.video .play-badge::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 53%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 16px 0 16px 26px;
  border-color: transparent transparent transparent #ffffff;
}

.video:hover .play-badge {
  filter: brightness(1.04);
}

@keyframes playPulse {
  0%, 100% {
    opacity: .96;
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .28);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.07);
    box-shadow:
      0 0 0 7px rgba(214, 40, 40, .18),
      0 15px 32px rgba(0, 0, 0, .30),
      0 0 26px rgba(214, 40, 40, .28);
  }
}

@keyframes playRipple {
  0%, 100% {
    opacity: .46;
    transform: scale(.94);
  }
  50% {
    opacity: .12;
    transform: scale(1.08);
  }
}

.note {
  text-align: center;
  font-size: 11px;
  color: #555;
  margin: 10px 0 26px;
}

/* ---------- CTA ---------- */
.cta {
  display: block;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  background: #f5c518;
  color: #000;
  text-align: center;
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
  padding: 16px 20px;
  border-radius: 3px;
  transition: background .2s, transform .1s;
}

.cta:hover  { background: #e6b800; }
.cta:active { transform: translateY(1px); }

.bottom-cta { margin-top: 36px; }

/* ---------- body copy ---------- */
.content { margin: 30px 0; }

.content p {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 20px;
  line-height: 29px;
  font-weight: 400;
  margin-bottom: 18px;
}

/* ---------- US health and advertising disclosures ---------- */
.disclosure-footer {
  margin-top: 48px;
  overflow: hidden;
  border: 1px solid #ead9dc;
  border-top: 4px solid #d62828;
  border-radius: 10px;
  background: #fffaf8;
  box-shadow: 0 12px 34px rgba(56, 18, 30, .08);
  font-family: 'Roboto', Arial, sans-serif;
}

.disclosure-head {
  padding: 20px 22px 19px;
  background: linear-gradient(135deg, #32101a 0%, #641927 100%);
  color: #fff;
}

.disclosure-eyebrow {
  margin-bottom: 5px;
  color: #f5c518;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.disclosure-head h2 {
  font-size: 22px;
  line-height: 1.25;
}

.disclosure-lead {
  padding: 20px 22px;
  border-bottom: 1px solid #ead9dc;
  background: #fff;
}

.disclosure-lead h3,
.disclosure-item h3 {
  margin-bottom: 8px;
  color: #a91f2d;
  font-size: 14px;
  line-height: 1.35;
}

.disclosure-lead p,
.disclosure-item p {
  color: #555057;
  font-size: 12.5px;
  line-height: 1.65;
}

.disclosure-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: #ead9dc;
}

.disclosure-item {
  padding: 18px 20px;
  background: #fff;
}

.disclosure-fda {
  background: #fff9e8;
  box-shadow: inset 4px 0 0 #f5c518;
}

.disclosure-fda h3 { color: #704700; }
.disclosure-fda p  { color: #3f3422; }

.disclosure-meta {
  padding: 16px 20px;
  border-top: 1px solid #ead9dc;
  background: #f7edef;
  color: #756a70;
  font-size: 11.5px;
  line-height: 1.6;
  text-align: center;
}

.disclosure-meta p + p { margin-top: 6px; }

/* ---------- Main BladderCare footer ---------- */
.main-site-footer {
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: #11202d;
  color: #a2b4c2;
  padding: 70px 0 28px;
  font-family: 'Roboto', Arial, sans-serif;
}

.main-site-footer-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.main-site-footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 50px;
}

.main-site-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.main-site-brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}

.main-site-brand-logo img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(44, 138, 132, .2);
}

.main-site-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.main-site-brand-text strong {
  color: #fff;
  font-size: 23px;
  letter-spacing: -.02em;
}

.main-site-brand-text small {
  margin-top: 5px;
  color: #48cbbf;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.main-site-footer-brand > p {
  max-width: 320px;
  margin: 0;
  color: #98abb9;
  font-size: 16px;
  line-height: 1.6;
}

.main-site-company-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0;
  color: #98abb9;
  font-size: 14px;
  font-style: normal;
  line-height: 1.55;
}

.main-site-company-info strong { color: #cfdae3; }

.main-site-company-info a {
  color: #a2b4c2;
  text-decoration: none;
}

.main-site-company-info a:hover { color: #48cbbf; }

.main-site-app-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  border: 1px solid #333;
  border-radius: 18px;
  background: #000;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
  transition: transform .2s ease, box-shadow .2s ease;
}

.main-site-app-button:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .3);
}

.main-site-app-button > i {
  font-size: 32px;
  line-height: 1;
}

.main-site-app-button > span {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.main-site-app-button small {
  color: #d1d5db;
  font-size: 11px;
  font-weight: 500;
}

.main-site-app-button strong {
  color: #fff;
  font-size: 18px;
}

.main-site-footer-col h4 {
  margin: 0 0 22px;
  color: #fff;
  font-size: 18px;
  line-height: 1.25;
}

.main-site-footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-site-footer-col li { margin: 0 0 12px; }

.main-site-footer-col a {
  color: #a2b4c2;
  font-size: 16px;
  line-height: 1.45;
  text-decoration: none;
  transition: color .2s ease;
}

.main-site-footer-col a:hover { color: #48cbbf; }

.main-site-disclaimer {
  margin-bottom: 34px;
  padding: 22px 26px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  background: rgba(255, 255, 255, .04);
}

.main-site-disclaimer p {
  margin: 0;
  color: #8c9fa7;
  font-size: 14px;
  line-height: 1.65;
}

.main-site-disclaimer strong { color: #cfdae3; }

.main-site-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.main-site-footer-bottom p {
  margin: 0;
  color: #7b8e9c;
  font-size: 14px;
  line-height: 1.5;
}

/* ---------- sticky mobile CTA ---------- */
.sticky-cta {
  display: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(120%);
  transition: transform .25s ease, opacity .25s ease, visibility .25s;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 50;
  background: #f5c518;
  color: #000;
  text-align: center;
  text-decoration: none;
  font-size: 19px;
  font-weight: 700;
  padding: 15px 16px;
  border-radius: 4px;
  box-shadow: 0 6px 22px rgba(0,0,0,.22);
}

@media (max-width: 600px) {
  h1 { font-size: 24px; line-height: 32px; }
  .cta { font-size: 19px; }
  .content p { font-size: 18px; line-height: 27px; }
  .video .play-badge { width: 78px; height: 78px; border-width: 4px; }
  .video .play-badge::after { border-width: 12px 0 12px 19px; }
  .sticky-cta { display: block; }
  .sticky-cta.show { opacity: 1; visibility: visible; transform: translateY(0); }
  .disclosure-head { padding: 18px; }
  .disclosure-head h2 { font-size: 20px; }
  .disclosure-lead { padding: 18px; }
  .disclosure-grid { grid-template-columns: 1fr; }
  .disclosure-item { padding: 17px 18px; }
  .disclosure-meta { padding: 15px 18px; }
  .wrap { padding-bottom: 64px; }
  .preland-topbar { margin-bottom: 10px; }
  .back-to-site { font-size: 11px; }
  .main-site-footer { padding: 52px 0 92px; }
  .main-site-footer-container { padding: 0 20px; }
  .main-site-footer-top { grid-template-columns: 1fr; gap: 34px; }
  .main-site-footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (min-width: 601px) and (max-width: 980px) {
  .main-site-footer-top { grid-template-columns: 1fr 1fr; }
}
