/* =============================================
   DOMAIN CLONE — MAIN STYLESHEET
   Color palette: Navy + Orange (high-conversion)
   Font: Inter (same as original)
   ============================================= */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand palette (best-selling: navy + orange) */
  --color-primary:        #0A2540;   /* deep navy — trust/authority */
  --color-primary-hover:  #0d2f4e;
  --color-cta:            #F16522;   /* orange — high-conversion CTA */
  --color-cta-hover:      #d9581e;
  --color-cta-light:      #fff3ec;
  --color-link:           #0A66C2;   /* professional blue for links */

  /* Neutrals */
  --color-black-100:      #1C1C1E;
  --color-black-300:      #3A3A3C;
  --color-black-700:      #636366;
  --color-grey-500:       #D1D5DB;
  --color-grey-700:       #F3F4F6;
  --color-grey-900:       #FFFFFF;

  /* Semantic */
  --color-green-100:      #00875A;   /* pro/success */
  --color-green-900:      #E3F9EE;
  --color-red-100:        #DE350B;
  --color-red-900:        #FFEBE6;
  --color-yellow-100:     #FFC107;   /* stars */
  --color-yellow-300:     #FFE082;
  --color-yellow-700:     #FFF8E1;

  /* Sizing scale (matches original: size-100=8px, size-150=12px, size-200=16px, size-400=32px) */
  --size-50:   4px;
  --size-100:  8px;
  --size-150:  12px;
  --size-200:  16px;
  --size-250:  20px;
  --size-300:  24px;
  --size-400:  32px;
  --size-500:  40px;
  --size-600:  48px;
  --size-700:  56px;
  --size-800:  64px;

  /* Typography */
  --main-font-family: 'Inter', 'Inter Fallback', Helvetica, Arial, sans-serif;

  /* Layout */
  --container-max: 1140px;
  --page-padding:  16px;

  /* Effects */
  --border-radius-small: 4px;
  --border-radius:       8px;
  --border-radius-large: 16px;
  --shadow-card:         0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-hover:        0 8px 24px rgba(0,0,0,.12), 0 2px 6px rgba(0,0,0,.06);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--main-font-family);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-black-100);
  background: var(--color-grey-900);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; }

/* ── SHARED LAYOUT ── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--page-padding);
  padding-right: var(--page-padding);
}

/* ── HEADER ── */
.header__wrapper {
  background: var(--color-grey-900);
  border-bottom: 1px solid var(--color-grey-500);
  position: sticky;
  top: 0;
  z-index: 200;
}
.header__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--size-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--size-200);
  height: 60px;
}
.header__logo {
  height: 28px;
  width: auto;
  object-fit: contain;
}
.header__button {
  font-family: var(--main-font-family);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-black-700);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color .15s;
}
.header__button:hover { color: var(--color-black-100); text-decoration: underline; }

/* ── SHARED DIALOG BASE ── */
dialog {
  /* margin: auto centres the dialog within the viewport without stretching it */
  margin: auto;
  border: none;
  background: var(--color-grey-900);
  box-shadow: 0 8px 40px rgba(0,0,0,.2);
}
dialog::backdrop {
  background: rgba(0, 0, 0, 0.5);
}

/* ── ADVERTISER DISCLOSURE DIALOG ── */
.dialog {
  border-radius: var(--border-radius-large);   /* 16px */
  padding: var(--size-300);                    /* 24px */
  max-width: 734px;
  width: calc(100% - var(--size-400));
  max-height: calc(100% - 38px);
  overflow: auto;
}
.dialog__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--size-200);
  margin-bottom: var(--size-200);
}
.dialog__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-black-100);
  line-height: 1.3;
}
.dialog__close-button {
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-small);
  transition: background .15s;
  margin-top: 2px;
}
.dialog__close-button:hover { background: var(--color-grey-700); }
.dialog__body h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-black-100);
  margin: var(--size-200) 0 var(--size-100);
}
.dialog__body h4:first-child { margin-top: 0; }
.dialog__body p {
  font-size: 14px;
  color: var(--color-black-700);
  line-height: 1.7;
  margin-bottom: var(--size-100);
}
/* Prevent body scroll when dialog open */
body.body--popup-open { overflow: hidden; }

/* ── HERO ── */
.hero {
  padding: var(--size-400) 0 0;
}
.hero__wrapper {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: var(--size-400);
  border-bottom: 1px solid var(--color-grey-500);
}
.hero__date {
  font-size: 14px;
  color: var(--color-black-700);
  margin-bottom: var(--size-150);
}
.hero__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--color-black-100);
  margin-bottom: var(--size-200);
}
.hero__text {
  font-size: 16px;
  color: var(--color-black-700);
  line-height: 1.6;
}

/* ── PAGE LAYOUT ── */
.page {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--size-400) var(--page-padding) var(--size-800);
}

/* ── RIBBON (card banner) ── */
.ribbon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px var(--size-200);
}
.ribbon--yellow {
  background: var(--color-cta);     /* orange instead of yellow */
  color: var(--color-grey-900);
}
.ribbon__content {
  display: flex;
  align-items: center;
  gap: var(--size-100);
  flex: 1;
}
.ribbon__container {
  display: flex;
  align-items: center;
  gap: 6px;
}
.ribbon__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2px;
}
.ribbon__dot {
  width: 4px;
  height: 4px;
  opacity: .6;
}
.ribbon__text {
  font-size: 13px;
  font-weight: 500;
}
.ribbon__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  /* tint orange icons to white */
  filter: brightness(0) invert(1);
}

/* ── LINEUP (card list) ── */
.lineup {
  display: flex;
  flex-direction: column;
  gap: var(--size-200);
  margin-bottom: var(--size-800);
}

/* ── LINEUP ITEM WRAPPER (the clickable card link) ── */
.lineup-item-wrapper {
  display: block;
  border-radius: var(--border-radius-large);
  border: 1px solid var(--color-grey-500);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s, border-color .2s;
  background: var(--color-grey-900);
}
.lineup-item-wrapper:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--color-primary);
  text-decoration: none;
}
.lineup-item-wrapper--featured {
  border-color: var(--color-cta);
  border-width: 2px;
}
.lineup-item-wrapper--featured:hover {
  border-color: var(--color-cta-hover);
}

/* ── LINEUP ITEM INNER (the card grid) ── */
.lineup-item {
  display: grid;
  grid-template-columns: 200px 1px auto 1fr 230px;
  align-items: stretch;
  gap: 0 var(--size-400);
  padding: var(--size-400);
}

/* Logo column */
.lineup-item__logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lineup-item__provider-logo {
  width: 168px;
  height: 168px;
  object-fit: contain;
}

/* Separator */
.lineup-item__separator {
  width: 1px;
  background: var(--color-grey-500);
  align-self: stretch;
  margin: 0;
}

/* Nudge (rank + labels) */
.lineup-item__nudge-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: var(--size-100);
  min-width: 80px;
}
.number {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  color: var(--color-black-100);
}
.label {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
}
.label--black {
  background: var(--color-primary);
  color: var(--color-grey-900);
}
.label--yellow {
  background: var(--color-cta);
  color: var(--color-grey-900);
}
.label--gray {
  background: var(--color-grey-700);
  color: var(--color-black-300);
}

/* Text column */
.lineup-item__text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--size-200);
}
.lineup-item__description {
  font-size: 15px;
  color: var(--color-black-300);
  line-height: 1.6;
}
.lineup-item__description b { color: var(--color-black-100); }

/* Feature list */
.lineup-item__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px var(--size-200);
}
.lineup-item__list-item {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-black-300);
  display: flex;
  align-items: center;
  gap: 6px;
}
.lineup-item__list-item::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.lineup-item__list-item--pro {
  color: var(--color-black-300);
}
.lineup-item__list-item--pro::before {
  /* Green filled circle with check */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8' fill='%2300875A'/%3E%3Cpath d='M5 8.5l2 2 4-4' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
}
.lineup-item__list-item--con {
  color: var(--color-black-300);
}
.lineup-item__list-item--con::before {
  /* Red filled circle with x */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8' fill='%23DE350B'/%3E%3Cpath d='M5.5 5.5l5 5M10.5 5.5l-5 5' stroke='white' stroke-width='1.5' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
}

/* Rating column */
.lineup-item__rating-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: var(--size-100);
}
.lineup-item__labels-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
.rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.rating__number {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
  color: var(--color-black-100);
}
.rating__stars-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.stars {
  display: flex;
  gap: 1px;
}
.stars span {
  font-size: 18px;
  color: var(--color-yellow-100);
  line-height: 1;
}
.stars span.empty { color: var(--color-grey-500); }
.rating__text {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-black-700);
}

/* CTA Button */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--size-100);
  font-family: var(--main-font-family);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.33;
  letter-spacing: -0.18px;
  color: var(--color-grey-900);
  background: var(--color-cta);
  border: none;
  border-radius: var(--border-radius-small);
  padding: var(--size-150) var(--size-200);
  min-height: 56px;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s, transform .1s;
  width: 100%;
}
.button:hover { background: var(--color-cta-hover); transform: translateY(-1px); }
.button__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* ── FAQ ── */
.faq {
  background: var(--color-grey-700);
  border-radius: var(--border-radius-large);
  padding: var(--size-500);
  margin-bottom: var(--size-800);
}
.faq__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-black-100);
  margin-bottom: var(--size-300);
}
.faq__items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq__item {
  border-bottom: 1px solid var(--color-grey-500);
}
.faq__item:last-child { border-bottom: none; }
.faq__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--size-200);
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--size-200) 0;
  text-align: left;
  font-family: var(--main-font-family);
}
.faq__toggle:hover .faq__question { color: var(--color-primary); }
.faq__question {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-black-100);
  line-height: 1.4;
  transition: color .15s;
}
.faq__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform .25s ease;
  filter: brightness(0);  /* make the original black svg match */
}
.faq__item.open .faq__icon { transform: rotate(180deg); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  font-size: 15px;
  color: var(--color-black-700);
  line-height: 1.7;
}
.faq__item.open .faq__answer {
  max-height: 400px;
  padding-bottom: var(--size-200);
}

/* ── EDITORS PICKS ── */
.editors-pick {
  padding: var(--size-800) 0;
}
.editors-pick__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-black-100);
  margin-bottom: var(--size-400);
}
.editors-pick__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--size-200);
}
.editors-pick-card {
  background: var(--color-grey-900);
  border: 1px solid var(--color-grey-500);
  border-radius: var(--border-radius-large);
  padding: var(--size-300);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow .2s, transform .2s;
  cursor: pointer;
}
.editors-pick-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}
.editors-pick-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: var(--size-200);
}
.editors-pick-card__labels {
  display: flex;
  flex-direction: column;
  gap: var(--size-50);
  align-items: flex-end;
}
.editors-pick-card__rating-wrapper {
  display: flex;
  align-items: center;
  gap: var(--size-200);
  margin-bottom: var(--size-200);
  height: 100px;
}
.editors-pick-card__logo {
  width: 120px;
  height: 80px;
  object-fit: contain;
}
.editors-pick-card__separator {
  width: 1px;
  background: var(--color-grey-500);
  align-self: stretch;
}
.editors-pick-card__separator--horizontal {
  width: auto;
  height: 1px;
  margin: var(--size-200) 0;
}
.editors-pick-card__rating .rating__number { font-size: 36px; }
.editors-pick-card__description {
  font-size: 14px;
  color: var(--color-black-300);
  line-height: 1.6;
  flex: 1;
  margin-bottom: var(--size-200);
}
.editors-pick-card__description b { color: var(--color-black-100); }

/* Description list (specs) */
.description-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--size-100);
  margin-bottom: var(--size-200);
}
.description-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--size-100);
  font-size: 14px;
}
.description-list__item dt {
  color: var(--color-black-700);
  font-weight: 400;
}
.description-list__item dd {
  font-weight: 600;
  color: var(--color-black-100);
  text-align: right;
}

/* Pick card button */
.editors-pick-card .button {
  font-size: 16px;
  min-height: 48px;
}

/* ── FOOTER ── */
.footer {
  background: rgba(0,0,0,0);
  padding: var(--size-400) 0;
}
.footer__content {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--page-padding);
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--size-200);
  padding-bottom: var(--size-200);
  margin-bottom: var(--size-200);
  border-bottom: 1px solid var(--color-grey-500);
}
.footer__logo {
  height: 22px;
  object-fit: contain;
}
.footer__navigation {
  display: flex;
  gap: var(--size-100);
  flex-wrap: wrap;
}
.footer__link {
  color: var(--color-black-100);
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: color .15s;
}
.footer__link:hover { text-decoration: underline; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--size-150);
  font-size: 14px;
  color: var(--color-black-700);
}
.footer__copyright { text-align: center; }

/* ── STICKY FOOTER ── */
.sticky-footer {
  position: fixed;
  bottom: var(--size-200);
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
  z-index: 100;
  width: calc(100% - var(--size-400) * 2);
  max-width: calc(var(--container-max) - var(--size-400));
  background: var(--color-grey-900);
  border: 2px solid var(--color-primary);
  border-radius: var(--border-radius);
  padding: var(--size-200) var(--size-300);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--size-200);
  box-shadow: 0 4px 24px rgba(10,37,64,.15);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: box-shadow .2s;
}
.sticky-footer:hover { box-shadow: 0 8px 32px rgba(10,37,64,.2); }
.sticky-footer__left-side-wrapper {
  display: flex;
  align-items: center;
  gap: var(--size-200);
  min-width: 0;
  flex: 1;
}
.sticky-footer__logo {
  flex-shrink: 0;
}
.sticky-footer__logo-image {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.sticky-footer__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.sticky-footer__text-badges-wrapper {
  display: flex;
  align-items: center;
  gap: var(--size-100);
}
.sticky-footer__text-badge .label {
  font-size: 11px;
  padding: 2px 8px;
}
.sticky-footer__text-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-black-100);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-footer__text-title b { font-weight: 700; }
.sticky-footer__button-wrapper { flex-shrink: 0; }
.sticky-footer__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--size-100);
  background: var(--color-cta);
  color: var(--color-grey-900);
  font-family: var(--main-font-family);
  font-size: 16px;
  font-weight: 600;
  padding: var(--size-100) var(--size-200);
  min-height: 44px;
  border-radius: var(--border-radius-small);
  white-space: nowrap;
  transition: background .15s;
}
.sticky-footer__button:hover { background: var(--color-cta-hover); }

/* Mini rating (in sticky footer) */
.mini-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-black-100);
}
.mini-rating img {
  width: 18px;
  height: 18px;
  /* tint star to our yellow */
  filter: invert(75%) sepia(100%) saturate(400%) hue-rotate(5deg);
}

/* ── SPACER for sticky footer ── */
/* ── BASE44 COMPARISON SECTION ── */
.base44-section {
  margin: var(--size-400) 0;
}
.base44-section__header {
  margin-bottom: var(--size-300);
}
.base44-section__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #FF631F;
  margin-bottom: var(--size-100);
}
.base44-section__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-black-100);
  margin-bottom: var(--size-100);
  letter-spacing: -0.3px;
}
.base44-section__subtitle {
  font-size: 15px;
  color: var(--color-black-700);
  line-height: 1.6;
}
.base44-card {
  display: block;
  background: var(--color-grey-900);
  border: 1px solid var(--color-grey-500);
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s, border-color .2s;
}
.base44-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: #FF631F;
}
.base44-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--size-300) var(--size-300) var(--size-200);
  gap: var(--size-200);
}
.base44-card__brand {
  display: flex;
  align-items: center;
  gap: var(--size-150);
}
.base44-card__logo {
  height: 28px;
  width: auto;
}
.base44-card__tag {
  font-size: 12px;
  font-weight: 600;
  color: #FF631F;
  background: #fff3ec;
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
}
.base44-card__cta {
  background: #FF631F;
  flex-shrink: 0;
  font-size: 14px;
  padding: 10px var(--size-300);
  min-height: auto;
  width: auto;
}
.base44-card__cta:hover { background: #e55519; }

/* Cross chart table */
.cross-chart {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.cross-chart th {
  background: var(--color-grey-700);
  padding: 10px var(--size-200);
  font-weight: 700;
  font-size: 13px;
  color: var(--color-black-300);
  text-align: center;
  border-top: 1px solid var(--color-grey-500);
}
.cross-chart th.cross-chart__feature-col {
  text-align: left;
  width: 50%;
}
.cross-chart td {
  padding: 11px var(--size-200);
  border-top: 1px solid var(--color-grey-500);
  color: var(--color-black-300);
  text-align: center;
  font-weight: 500;
}
.cross-chart td:first-child {
  text-align: left;
  color: var(--color-black-100);
  font-weight: 500;
}
.cross-chart tr:nth-child(even) td { background: var(--color-grey-700); }
.cross-chart tr:nth-child(even) .cross-chart__highlight-col { background: #fff8f5; }
.cross-chart__highlight-col { background: #fff8f5; }
.cross-chart th.cross-chart__highlight-col {
  background: #ffe8db;
  color: #c94a0a;
}
.cross-chart__yes {
  color: var(--color-green-100);
  font-size: 16px;
  font-weight: 700;
}
.cross-chart__no {
  color: var(--color-grey-500);
  font-size: 16px;
  font-weight: 700;
}

.sticky-footer-spacer { height: 120px; }

/* ── UTILITIES ── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ── EXIT-INTENT POPUP ── */
/* Closed state: must be display:none so dialog.close() hides it properly */
.popup { display: none; }
.popup[open] {
  display: flex;
  align-items: stretch;
  gap: 0;
  border-radius: var(--border-radius-large);
  padding: 0;
  max-width: 620px;
  width: calc(100% - var(--size-400));
  overflow: hidden;
}
.popup__ad-badge {
  position: absolute;
  top: var(--size-150);
  left: var(--size-150);
  font-size: 11px;
  font-weight: 600;
  color: var(--color-black-700);
  background: var(--color-grey-700);
  padding: 2px 6px;
  border-radius: var(--border-radius-small);
  line-height: 1.4;
  z-index: 1;
}
.popup__close-button {
  position: absolute;
  top: var(--size-150);
  right: var(--size-150);
  background: white;
  border: 1px solid var(--color-grey-500);
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-small);
  transition: background .15s;
  z-index: 1;
}
.popup__close-button:hover { background: var(--color-grey-700); }
.popup__logo-panel {
  flex-shrink: 0;
  width: 240px;
  background: linear-gradient(160deg, #0A2540 0%, #1a4a7a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--size-300);
  padding: var(--size-400) var(--size-300);
}
.popup__logo-panel-img {
  width: 140px;
  height: auto;
  filter: brightness(0) invert(1);
}
.popup__logo-panel-badge {
  background: var(--color-cta);
  color: white;
  font-family: var(--main-font-family);
  font-size: 20px;
  font-weight: 800;
  padding: var(--size-100) var(--size-200);
  border-radius: var(--border-radius);
  letter-spacing: -0.5px;
}
.popup__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: var(--size-300) var(--size-300) var(--size-300) var(--size-400);
  gap: var(--size-150);
}
.popup__bald-claim {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--color-black-100);
}
.popup__additional-text {
  font-size: 15px;
  color: var(--color-black-700);
}
.popup__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--size-100);
  font-family: var(--main-font-family);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-grey-900);
  background: var(--color-primary);
  border: none;
  border-radius: var(--border-radius-small);
  padding: var(--size-150) var(--size-200);
  min-height: 56px;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s;
  width: 100%;
  margin-top: var(--size-100);
  text-align: center;
}
.popup__button:hover { background: var(--color-primary-hover); }
.popup__no-thanks {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--main-font-family);
  font-size: 14px;
  color: var(--color-black-700);
  text-decoration: underline;
  padding: var(--size-50) 0;
  transition: color .15s;
  width: 100%;
  text-align: center;
}
.popup__no-thanks:hover { color: var(--color-black-100); }
