:root {
  --red: #bf1f1f;
  --pink: #e11d8e;
  --green: #16a34a;
  --blue: #1d4f91;
  --text: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
}
button, input { font: inherit; }
button { cursor: pointer; }
.block {
  width: min(100% - 32px, 768px);
  margin-left: auto;
  margin-right: auto;
}
.topbar { background: var(--red); color: #fff; }
.topbar-inner {
  height: 56px;
  width: min(100%, 1152px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}
.topbar h1 {
  margin: 0;
  font-size: 24px;
  letter-spacing: .04em;
}
.menu-spacer, .menu-icon { width: 24px; font-size: 23px; line-height: 1; }
.ticker {
  border-top: 1px solid rgba(255,255,255,.25);
  overflow: hidden;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
  padding: 9px 0;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.ticker-track span { padding: 0 24px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.author { padding-top: 24px; }
.author strong { font-size: 16px; }
.author p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 12px;
}
.headline {
  padding: 16px 16px 24px;
  text-align: center;
}
.headline h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 40px);
  line-height: 1.1;
  font-weight: 900;
}
.video-holder { min-height: 225px; }
.watch-note {
  margin-top: 12px;
  padding: 12px;
  text-align: center;
  background: #f3f4f6;
  border-radius: 6px;
  font-size: 14px;
}
.primary-btn {
  width: 100%;
  margin-top: 16px;
  padding: 16px;
  border: 0;
  border-radius: 12px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 10px 18px rgba(22,163,74,.24);
  animation: ctaPulse 1.55s ease-in-out infinite;
}
.primary-btn:hover { filter: brightness(1.08); }
@keyframes ctaPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.035); }
}
.live {
  margin-top: 40px;
  text-align: center;
}
.watching {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
}
.watching span {
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #dc2626;
}
.watching span::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #ef4444;
  animation: ping 1.4s infinite;
}
@keyframes ping { 75%,100% { transform: scale(2); opacity: 0; } }
.live p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.live img { max-width: 100%; height: auto; }

.comments { margin-top: 40px; }
.comments h3, .result-comments h3 { font-size: 20px; margin: 0 0 16px; }
.comment {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.comment img {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  object-fit: cover;
  flex: 0 0 auto;
}
.comment-bubble {
  background: #f3f4f6;
  border-radius: 18px;
  padding: 9px 14px;
}
.comment-name {
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
}
.comment-text { font-size: 14px; line-height: 1.42; }
.comment-meta {
  margin-top: 4px;
  padding-left: 8px;
  color: var(--muted);
  font-size: 12px;
}
.closed-comments {
  margin-top: 24px;
  padding: 16px 0 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}
.testimonials {
  margin-top: 64px;
  padding-bottom: 48px;
}
.testimonials h3 {
  margin: 0;
  color: var(--blue);
  text-align: center;
  font-size: clamp(26px, 4vw, 32px);
  line-height: 1.15;
  font-weight: 900;
}
.testimonials h4 {
  margin: 8px 0 0;
  text-align: center;
}
.testimonials > p {
  margin: 4px 0 24px;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}
.testimonial {
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
  margin-bottom: 32px;
}
.testimonial-head {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
}
.testimonial-head img {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  object-fit: cover;
}
.testimonial-name { font-weight: 800; }
.testimonial-location, .helpful {
  color: var(--muted);
  font-size: 12px;
}
.stars { color: #eab308; font-size: 18px; }
.testimonial-title { margin-top: 4px; font-weight: 800; }
.testimonial-photo {
  display: block;
  max-width: 320px;
  width: 100%;
  border-radius: 8px;
  margin: 12px 0;
}
.testimonial-body {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.6;
}
.testimonial-actions button {
  border: 0;
  background: none;
  text-decoration: underline;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 8px 0 0;
}

.quiz-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  overflow-y: auto;
  background: #fff;
}
.quiz-overlay.open { display: block; }
.quiz-top {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.quiz-nav {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-btn {
  border: 0;
  background: none;
  color: #374151;
  font-size: 14px;
  font-weight: 700;
}
.close-btn { font-size: 26px; line-height: 1; }
.step-label {
  color: #4b5563;
  font-size: 12px;
  font-weight: 800;
}
.progress { height: 4px; background: #e5e7eb; }
.progress div {
  height: 100%;
  width: 10%;
  background: var(--pink);
  transition: width .2s ease;
}
.quiz-body {
  padding-top: 24px;
  padding-bottom: 40px;
}
.is-hidden { display: none !important; }
.quiz-kicker {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin: 0 0 8px;
}
.quiz-card h2 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 900;
}
.quiz-card .subtitle {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
}
.option-list { display: grid; gap: 12px; margin-top: 20px; }
.option-btn, .sex-btn {
  width: 100%;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  padding: 16px;
  text-align: left;
  font-weight: 700;
  transition: border-color .15s, background .15s;
}
.option-btn:hover, .sex-btn:hover,
.option-btn.selected, .sex-btn.selected {
  border-color: var(--pink);
  background: #fdf2f8;
}
.sex-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}
.sex-btn {
  min-height: 148px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.sex-btn span:first-child { font-size: 48px; }
.info-box {
  margin-top: 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fdf2f8, #eff6ff);
  padding: 24px;
  text-align: center;
  font-size: 14px;
  line-height: 1.55;
}
.warning-box {
  margin-top: 20px;
  border: 1px solid #fde68a;
  border-radius: 12px;
  background: #fffbeb;
  padding: 20px;
  font-size: 14px;
  line-height: 1.55;
}
.warning-box h4 { margin: 12px 0 6px; font-size: 16px; }
.warning-box ul {
  margin: 10px 0 0;
  padding-left: 0;
  list-style: none;
}
.warning-box li { margin-top: 8px; }
.input-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}
.field {
  position: relative;
  margin-top: 20px;
}
.input-grid .field { margin-top: 0; }
.field input {
  width: 100%;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 15px 58px 15px 14px;
  font-size: 18px;
  font-weight: 700;
}
.field span {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-weight: 700;
}
.error {
  display: none;
  color: #b91c1c;
  margin-top: 8px;
  font-size: 13px;
}
.next-btn {
  width: 100%;
  margin-top: 20px;
  border: 0;
  border-radius: 12px;
  padding: 16px;
  background: var(--pink);
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}
.next-btn:disabled {
  background: #d1d5db;
  cursor: not-allowed;
}
.loading {
  padding: 80px 0;
  text-align: center;
}
.spinner {
  width: 64px;
  height: 64px;
  margin: 24px auto 0;
  border: 4px solid var(--pink);
  border-top-color: transparent;
  border-radius: 999px;
  animation: spin .9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.result { padding-bottom: 40px; }
.result h2 {
  text-align: center;
  font-size: clamp(22px, 4vw, 28px);
  line-height: 1.25;
  margin: 0 0 24px;
}
.pink { color: var(--pink); }
.chart-wrap { position: relative; margin: 18px 0 26px; }
.chart-label {
  position: absolute;
  background: #f97316;
  color: #fff;
  border-radius: 5px;
  padding: 5px 8px;
  font-size: 12px;
  font-weight: 800;
}
.chart-start { left: 6%; top: 0; }
.chart-end { right: 4%; bottom: 0; }
.body-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border: 1px solid #dcfce7;
  background: #f0fdf4;
  border-radius: 12px;
  padding: 16px;
}
.body-card {
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  box-shadow: 0 1px 8px rgba(0,0,0,.05);
}
.body-card h4 { margin: 0 0 8px; }
.body-img {
  aspect-ratio: 1 / 1.42;
  border-radius: 8px;
  background-color: #f9fafb;
  background-repeat: no-repeat;
  background-size: 200% 100%;
  background-position-y: center;
}
.body-card p { margin: 8px 0 0; font-size: 14px; }
.fat-box {
  margin-top: 8px;
  border-radius: 8px;
  background: #f3f4f6;
  padding: 8px;
  font-size: 12px;
}
.goal-fat { background: #dcfce7; color: #15803d; font-weight: 700; }
.study-box {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f9fafb;
  padding: 20px;
  font-size: 14px;
  line-height: 1.55;
}
.recommend {
  margin-top: 24px;
  text-align: center;
}
.offer-card {
  display: block;
  margin-top: 18px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  color: inherit;
  text-decoration: none;
  transition: transform .15s;
  text-align: center;
}
.final-offer {
  margin-top: 0;
  margin-bottom: 32px;
}
.offer-card:hover { transform: scale(1.01); }
.was { color: #9ca3af; text-decoration: line-through; font-size: 20px; }
.price { color: var(--pink); font-size: 40px; font-weight: 900; }
.save { color: var(--green); font-size: 14px; font-weight: 800; }
.bottles { display: block; width: 100%; max-width: 320px; margin: 16px auto 0; }
.claim {
  width: 100%;
  margin-top: 16px;
  border: 0;
  border-radius: 12px;
  padding: 16px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}
.guarantee { color: var(--muted); font-size: 12px; margin: 10px 0 0; }
.result-comments { padding-top: 24px; }

@media (max-width: 560px) {
  .block { width: min(100% - 28px, 768px); }
  .headline h2 { font-size: 30px; }
  .body-grid, .sex-grid { gap: 10px; }
  .body-grid { padding: 10px; }
  .body-card { padding: 10px; }
}
