/* ============================================================
   Landing pages
   Ad-traffic pages with minimal chrome (announcement bar, logo,
   phone, one CTA), a curated treatment list, admin-ordered
   sections, and the "find your starting point" quiz. Themed via
   data-theme="for_him|for_her" (see themes.css).
   ============================================================ */

.landing {
  --landing-ink: #0f1526;
  --landing-body: #4b5563;
  --landing-cream: #fbfaf7;
  color: var(--landing-ink);
}

.body--landing .site__main {
  flex: 1;
}

/* ---- Announcement bar ---- */

.announcement {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 16px;
  padding: 10px 24px;
  background: #111111;
  color: #ffffff;
  font-size: 13px;
  text-align: center;
}

.announcement__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
}

/* ---- Header ---- */

.landing-header {
  background: #ffffff;
  border-bottom: 1px solid #ececec;
}

.landing-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.landing-header__logo img {
  display: block;
  height: 32px;
  width: auto;
}

.landing-header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.landing-header__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--landing-ink, #0f1526);
}

.landing-header__phone svg {
  color: var(--theme-kicker-color, var(--color-gold));
}

.landing-header__phone span {
  display: none;
}

@media (min-width: 640px) {
  .landing-header__phone span {
    display: inline;
  }
}

.landing-header__cta {
  height: 44px;
  padding: 0 24px;
  font-size: 15px;
  font-weight: 600;
}

/* ---- Hero ---- */

/* Vertical padding sits on the block, not the .container inner (which
   storefront.css, loaded later, resets to horizontal padding only). */
.landing-hero {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
  background: linear-gradient(100deg, var(--theme-hero-wash) 0%, var(--theme-hero-wash-25) 70%, #ffffff 100%);
}

.landing-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 32px;
}

@media (min-width: 900px) {
  .landing-hero {
    padding: 80px 0 72px;
  }

  .landing-hero__inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    align-items: center;
    gap: 64px;
  }
}

.landing-hero__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--landing-ink);
}

@media (min-width: 900px) {
  .landing-hero__title {
    font-size: 56px;
  }
}

.landing-hero__rule {
  display: block;
  width: 64px;
  height: 1px;
  margin: 24px 0;
  background: rgba(15, 21, 38, 0.2);
}

.landing-hero__text p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--landing-body);
  margin-bottom: 12px;
}

@media (min-width: 900px) {
  .landing-hero__text p {
    font-size: 18px;
  }
}

.landing-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

@media (min-width: 640px) {
  .landing-hero__actions {
    flex-direction: row;
    align-items: center;
  }
}

.landing-hero__media {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.landing-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.landing-hero__branch {
  position: absolute;
  right: -40px;
  top: 0;
  width: 220px;
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 899px) {
  .landing-hero__branch {
    width: 150px;
    top: auto;
    bottom: 200px;
  }
}

.landing-hero__branch {
  display: none;
}

@media (min-width: 640px) {
  .landing-hero__branch {
    display: block;
  }
}

/* ---- Trust strip ---- */

.trust-strip {
  background: var(--theme-band-bg);
  padding: 12px 24px;
}

/* One row: scrolls sideways on phones, centered on wider screens. */
.trust-strip__list {
  list-style: none;
  display: flex;
  gap: 8px 32px;
  max-width: 1280px;
  margin: 0 auto;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.trust-strip__list::-webkit-scrollbar {
  display: none;
}

@media (min-width: 900px) {
  .trust-strip__list {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.trust-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--landing-ink, #0f1526);
}

.trust-strip__item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
  flex-shrink: 0;
}

/* ---- Sections ---- */

.landing-section {
  padding: 64px 0;
  background: #ffffff;
}

@media (min-width: 900px) {
  .landing-section {
    padding: 96px 0;
  }
}

.landing-section--cream {
  background: var(--landing-cream);
}

.landing-section--tint {
  background: var(--theme-tint-bg);
}

.landing-section--dark {
  background: #111111;
  color: #ffffff;
}

.landing-section__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 32px;
}

.landing-section__header {
  max-width: 720px;
  margin-bottom: 36px;
}

.landing-section__header--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.landing-section__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: inherit;
}

@media (min-width: 900px) {
  .landing-section__title {
    font-size: 40px;
  }
}

.landing-section__title--center {
  text-align: center;
  margin-bottom: 36px;
}

.landing-section__subtitle {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--landing-body);
}

.landing-section--dark .landing-section__subtitle {
  color: rgba(255, 255, 255, 0.72);
}

.landing-section__offer {
  font-size: 16px;
  font-weight: 600;
  color: var(--landing-ink);
  margin-bottom: 36px;
}

.landing-section__offer em {
  color: var(--theme-kicker-color, var(--color-gold-dark));
}

.landing-section__footnote {
  margin-top: 24px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--landing-body);
}

.landing-section__footnote + .landing-section__footnote {
  margin-top: 10px;
}

.landing-section__footnote strong {
  color: var(--landing-ink);
}

.landing-section__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  margin-top: 28px;
}

.landing-section__aside {
  font-size: 15px;
  color: var(--landing-ink);
}

.landing-section__aside a {
  color: var(--theme-kicker-color, var(--color-gold-dark));
  font-weight: 600;
}

/* ---- Treatments ---- */

.treatment-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .treatment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .treatment-grid {
    grid-template-columns: repeat(var(--treatment-cols, 4), minmax(0, 1fr));
  }
}

.treatment-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
}

.treatment-card--featured {
  border-color: #111111;
  box-shadow: 0 0 0 1px #111111;
}

.treatment-card__badge {
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  color: var(--landing-body);
  background: #f3efe6;
}

.treatment-card--featured .treatment-card__badge {
  background: #111111;
  color: var(--color-gold);
}

/* Same fixed 4:3 frame as the homepage product cards, so every card's
   image area is the same height whatever the photo's proportions. */
.treatment-card__image {
  aspect-ratio: 4 / 3;
  padding: 12px;
  background: #ffffff;
  overflow: hidden;
}

.treatment-card__img,
.treatment-card__image .product-image-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.treatment-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 22px 22px;
  border-top: 1px solid #f3f4f6;
}

.treatment-card__name {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--landing-ink);
}

.treatment-card__actives {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--theme-kicker-color, var(--color-gold-dark));
}

.treatment-card__desc {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--landing-body);
}

.treatment-card__pricing {
  margin-top: auto;
  padding-top: 20px;
}

.treatment-card__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 10px;
}

.treatment-card__amount {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--landing-ink);
}

.treatment-card__period {
  font-size: 13px;
  color: var(--landing-body);
}

.treatment-card__offer {
  margin-left: auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--theme-kicker-color, var(--color-gold-dark));
}

.treatment-card__plan {
  margin-top: 4px;
  font-size: 13px;
  color: var(--landing-ink);
}

.treatment-card__body .btn {
  margin-top: 18px;
}

/* ---- Comparison (extends .compare) ---- */

.compare--landing {
  border-radius: 14px;
}

.compare--landing .compare__table {
  font-size: 14px;
}

.compare--landing .compare__product {
  padding: 18px 20px;
  text-align: left;
  vertical-align: middle;
  min-width: 200px;
}

.compare--landing .compare__corner,
.compare--landing .compare__label {
  background: var(--theme-tint-bg);
  padding: 18px 20px;
  font-size: 14px;
}

.compare--landing .compare__corner {
  background: #ffffff;
}

.compare--landing .compare__cell {
  padding: 18px 20px;
  text-align: left;
  color: var(--landing-body);
}

/* ---- Card grid (why it's happening, the actives) ---- */

.info-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .info-grid {
    grid-template-columns: repeat(var(--info-cols, 4), minmax(0, 1fr));
  }
}

.info-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 26px 24px;
}

.info-card__title {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--landing-ink);
}

.info-card__text {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--landing-body);
}

.info-card__note {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #f3f4f6;
  font-size: 13px;
  line-height: 1.55;
  color: var(--landing-body);
}

.info-card__note strong {
  color: var(--landing-ink);
}

/* ---- Numbered steps (dark band) ---- */

.landing-steps__list {
  list-style: none;
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .landing-steps__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
  }
}

.landing-steps__item {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.landing-steps__number {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--theme-kicker-color, var(--color-gold));
}

.landing-steps__title {
  margin-top: 12px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.landing-steps__text {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

.landing-section--dark .landing-section__footnote {
  color: rgba(255, 255, 255, 0.6);
}

/* ---- Timeline ---- */

.landing-timeline__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .landing-timeline__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.landing-timeline__item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 24px;
}

.landing-timeline__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--theme-kicker-color, var(--color-gold-dark));
}

.landing-timeline__text {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--landing-ink);
}

/* ---- Testimonial ---- */

.testimonial {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 28px;
  background: #ffffff;
}

.testimonial + .testimonial {
  margin-top: 20px;
}

.testimonial__stars {
  color: var(--theme-kicker-color, var(--color-gold));
  letter-spacing: 2px;
  font-size: 14px;
}

.testimonial__text {
  margin-top: 16px;
}

.testimonial__text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--landing-ink);
  margin-bottom: 14px;
}

.testimonial__author {
  font-size: 13px;
  color: var(--landing-body);
}

/* ---- Boxed FAQ accordion (extends .accordion) ---- */

.accordion--boxed .accordion__item,
.accordion--boxed .accordion__item:first-child {
  border: 0;
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 12px;
}

.accordion--boxed .accordion__trigger {
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--landing-ink, #0f1526);
}

.accordion--boxed .accordion__icon {
  background: transparent;
  color: var(--theme-kicker-color, var(--color-gold));
}

.accordion--boxed .accordion__content-inner {
  padding: 0 24px 22px;
}

/* ---- Contact ---- */

.landing-contact__grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 900px) {
  .landing-contact__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 64px;
    align-items: start;
  }
}

.landing-contact__note {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
  color: var(--theme-kicker-color, var(--color-gold-dark));
}

.landing-contact__card {
  background: var(--theme-tint-bg);
  border-radius: 16px;
  padding: 28px;
}

.landing-contact__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.landing-contact__error,
.quiz__email-error {
  font-size: 14px;
  color: var(--color-danger-text);
}

.landing-contact__consent,
.quiz__consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.5;
  color: var(--landing-body, #4b5563);
}

.landing-contact__consent input,
.quiz__consent input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.landing-contact__consent a,
.quiz__consent a {
  text-decoration: underline;
}

.landing-contact__card--sent {
  text-align: center;
  color: var(--landing-ink);
}

.landing-contact__card--sent svg {
  color: var(--color-success-text);
}

.landing-contact__sent-title {
  margin-top: 12px;
  font-size: 22px;
  font-weight: 700;
}

.landing-contact__sent-text {
  margin-top: 8px;
  font-size: 15px;
  color: var(--landing-body);
}

/* ---- CTA bar ---- */

.cta-bar {
  background: #151b2d;
  color: #ffffff;
  padding: 32px 0;
}

.cta-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 32px;
}

.cta-bar__text {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* ---- Footer ---- */

.landing-footer {
  background: #fafaf8;
  border-top: 1px solid #ececec;
  padding: 56px 0 32px;
}

.landing-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.landing-footer__grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .landing-footer__grid {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 64px;
  }
}

.landing-footer__brand {
  max-width: 420px;
}

.landing-footer__logo {
  display: block;
  width: 160px;
  height: auto;
}

.landing-footer__notice {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--landing-ink, #0f1526);
}

.landing-footer__disclaimer {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--landing-body, #4b5563);
}

.landing-footer__heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 14px;
}

.landing-footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.landing-footer__link {
  font-size: 14px;
  color: var(--landing-ink, #0f1526);
}

.landing-footer__link:hover {
  text-decoration: underline;
}

.landing-footer__seal img {
  display: block;
}

.landing-footer__copyright {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
  font-size: 13px;
  color: #6b7280;
}

/* ---- Quiz ---- */

.quiz-page {
  background: var(--landing-cream, #fbfaf7);
  padding: 48px 0 72px;
  min-height: 70vh;
}

.quiz-page__exit {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
}

.quiz-page__exit a {
  color: var(--landing-body, #4b5563);
  text-decoration: underline;
}

.quiz {
  max-width: 560px;
  margin: 0 auto;
}

.quiz__panel {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (min-width: 640px) {
  .quiz__panel {
    padding: 40px;
  }
}

/* The panels are display:flex, which would beat the UA's [hidden] rule. */
.quiz__panel[hidden] {
  display: none;
}

.quiz__panel--enter {
  animation: quiz-panel-enter 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes quiz-panel-enter {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.quiz__kicker,
.quiz__counter,
.quiz-pick__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--theme-kicker-color, var(--color-gold-dark));
}

.quiz__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--landing-ink, #0f1526);
}

.quiz__intro,
.quiz__helper {
  font-size: 15px;
  line-height: 1.6;
  color: var(--landing-body, #4b5563);
}

.quiz__helper {
  margin-top: -6px;
}

.quiz__note {
  font-size: 13px;
  text-align: center;
  color: #6b7280;
}

.quiz__progress {
  height: 4px;
  border-radius: 999px;
  background: #e5e7eb;
  overflow: hidden;
}

.quiz__progress-fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: var(--theme-kicker-color, var(--color-gold));
  transition: width 0.3s ease;
}

.quiz__question {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--landing-ink, #0f1526);
}

.quiz__options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quiz__option {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 16px;
  text-align: left;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--landing-ink, #0f1526);
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.quiz__option:hover {
  border-color: var(--theme-kicker-color, var(--color-gold));
}

.quiz__option--selected {
  border-color: var(--theme-kicker-color, var(--color-gold));
  background: var(--theme-tint-bg, #f3f1ea);
}

.quiz__radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid #d1d5db;
  flex-shrink: 0;
  position: relative;
}

.quiz__option--selected .quiz__radio {
  border-color: var(--theme-kicker-color, var(--color-gold));
}

.quiz__option--selected .quiz__radio::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--theme-kicker-color, var(--color-gold));
}

.quiz__skip,
.quiz__back {
  align-self: center;
  background: none;
  border: 0;
  padding: 4px;
  font-family: inherit;
  font-size: 14px;
  color: #6b7280;
  cursor: pointer;
}

.quiz__back {
  align-self: flex-start;
}

.quiz__skip:hover,
.quiz__back:hover {
  color: var(--landing-ink, #0f1526);
}

.quiz__headline {
  font-size: 17px;
  font-weight: 600;
  color: var(--theme-kicker-color, var(--color-gold-dark));
}

.quiz-pick {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: var(--landing-cream, #fbfaf7);
}

.quiz-pick__image {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  padding: 6px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #eeeee9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quiz-pick__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.quiz-pick__body {
  min-width: 0;
  flex: 1;
}

.quiz-pick--lead {
  background: var(--theme-tint-bg, #f3f1ea);
  border-color: var(--theme-kicker-color, var(--color-gold));
}

.quiz-pick__name {
  margin-top: 4px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--landing-ink, #0f1526);
}

.quiz-pick__actives {
  margin-top: 4px;
  font-size: 13px;
  color: var(--landing-body, #4b5563);
}

.quiz-pick__price {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--landing-ink, #0f1526);
}

.quiz-pick__note {
  margin-top: 8px;
  font-size: 13px;
  color: var(--landing-body, #4b5563);
}

.quiz__timing {
  padding: 18px 20px;
  border-radius: 12px;
  background: var(--landing-cream, #fbfaf7);
}

.quiz__timing-text {
  margin-top: 6px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--landing-ink, #0f1526);
}

.quiz__disclaimer {
  padding-left: 14px;
  border-left: 2px solid var(--theme-kicker-color, var(--color-gold));
  font-size: 13px;
  line-height: 1.6;
  color: var(--landing-body, #4b5563);
}

.quiz__email-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.quiz__email-status:empty {
  display: none;
}

.quiz__email-sent {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ---- Quiz dialog: centered card on desktop, bottom sheet on phones ---- */

.quiz-dialog {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: none;
  max-height: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.quiz-dialog::backdrop {
  background: rgba(15, 21, 38, 0.55);
  backdrop-filter: blur(2px);
}

.quiz-dialog[open] {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.quiz-dialog__sheet {
  position: relative;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  padding: 28px 16px 24px;
  background: #ffffff;
  border-radius: 20px 20px 0 0;
  animation: quiz-sheet-up 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes quiz-sheet-up {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.quiz-dialog__sheet .quiz__panel {
  border: 0;
  padding: 8px 8px 0;
}

.quiz-dialog__handle {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 44px;
  height: 4px;
  margin-left: -22px;
  border-radius: 999px;
  background: #e5e7eb;
}

.quiz-dialog__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #6b7280;
  cursor: pointer;
}

.quiz-dialog__close:hover {
  background: #f3f4f6;
  color: #111111;
}

@media (min-width: 640px) {
  .quiz-dialog[open] {
    align-items: center;
    padding: 24px;
  }

  .quiz-dialog__sheet {
    max-width: 600px;
    border-radius: 20px;
    padding: 36px 28px 28px;
  }

  .quiz-dialog__handle {
    display: none;
  }
}
