:root {
  --bg: #0B0F19;
  --rose: #F43F5E;
  --violet: #A78BFA;
  --slate: #1E293B;
  --muted: #94A3B8;
  --white: #fff;
  --footer: #475569;
  --timer-bg: #1E1B4B;
  --gold: #FBBF24;
  --header-h: 44px;
  --font: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
}

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

html {
  overflow-x: clip;
  max-width: 100%;
  background: var(--bg);
  color: var(--muted);
  font-family: var(--font);
  font-size: 13px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

body {
  /* overflow-x on body breaks position:fixed in WebKit — keep clip on html only */
  overflow-x: visible;
  max-width: 100%;
  background: var(--bg);
  color: var(--muted);
  font-family: var(--font);
  font-size: 13px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-h);
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(244, 63, 94, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 30%, rgba(167, 139, 250, 0.12), transparent 50%),
    var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body > main,
body > .hero { flex: 0 0 auto; }
body > main { flex: 1 0 auto; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.wrap {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px 0 20px;
}

/* ——— Fixed header ——— */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(30, 41, 59, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.header-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
}

.brand-heart {
  width: 18px;
  height: 18px;
  filter: drop-shadow(0 0 6px rgba(244, 63, 94, 0.9));
}

.online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #cbd5e1;
  white-space: nowrap;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulse 1.4s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.lang-switch {
  display: flex;
  gap: 4px;
  margin-left: auto;
  margin-right: 8px;
}

.lang-btn {
  width: 26px;
  height: 18px;
  border-radius: 3px;
  font-size: 9px;
  font-weight: 700;
  color: #cbd5e1;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 16px;
  text-align: center;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.lang-btn.active {
  color: var(--white);
  border-color: var(--rose);
  background: rgba(244, 63, 94, 0.25);
}

/* ——— Intro ——— */
/* ——— Hero ——— */
.hero {
  position: relative;
  overflow: hidden;
  margin: 0 0 10px;
  isolation: isolate;
  background:
    radial-gradient(ellipse 55% 70% at 85% 35%, rgba(244, 63, 94, 0.22), transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(167, 139, 250, 0.16), transparent 55%),
    linear-gradient(180deg, #12182a 0%, var(--bg) 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding-top: 18px;
  padding-bottom: 20px;
  align-items: end;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 420px;
  animation: heroIn 650ms ease both;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fda4af;
  margin-bottom: 10px;
}

.hero-kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 10px rgba(244, 63, 94, 0.9);
}

.hero-brand {
  font-size: clamp(32px, 9vw, 46px);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--white);
  line-height: 0.95;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.hero-brand span {
  background: linear-gradient(90deg, #fff 40%, #fda4af 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-brand::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rose), var(--violet));
  animation: barIn 800ms 180ms ease both;
}

.hero h1 {
  margin-top: 14px;
  font-size: clamp(17px, 4.4vw, 22px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  max-width: 16ch;
}

.hero-lead {
  margin-top: 8px;
  font-size: 13px;
  color: #cbd5e1;
  max-width: 34ch;
  line-height: 1.45;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.hero-pill {
  font-size: 10px;
  font-weight: 700;
  color: #e2e8f0;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(8px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: 16px;
}

.hero-cta {
  min-width: 0;
  width: auto;
  padding: 0 22px;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(110deg, #FB7185 0%, #F43F5E 35%, #E11D48 55%, #FB7185 75%, #F43F5E 100%);
  background-size: 220% 100%;
  box-shadow: 0 10px 24px rgba(244, 63, 94, 0.4);
  animation: pulseCta 2.2s ease-in-out infinite, shimmerBtn 3.2s ease-in-out infinite;
}

.hero-stage {
  position: relative;
  z-index: 1;
  width: min(100%, 280px);
  margin: 0 auto;
  aspect-ratio: 3 / 4;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(244, 63, 94, 0.12);
  animation: heroIn 750ms 80ms ease both;
}

.hero-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transform: scale(1.03);
  animation: heroKen 14s ease-in-out infinite alternate;
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(11, 15, 25, 0.72) 100%);
  pointer-events: none;
}

.hero-float {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.hero-float .pulse {
  flex-shrink: 0;
}

@keyframes heroKen {
  from { transform: scale(1.03) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1%, -1%, 0); }
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes barIn {
  from { width: 0; opacity: 0; }
  to { width: 48px; opacity: 1; }
}

@keyframes pulseCta {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 8px 22px rgba(244, 63, 94, 0.35), 0 0 0 0 rgba(251, 113, 133, 0.45);
    filter: brightness(1);
  }
  50% {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 14px 34px rgba(244, 63, 94, 0.55), 0 0 0 10px rgba(251, 113, 133, 0);
    filter: brightness(1.08);
  }
}

@keyframes shimmerBtn {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes pulseBadge {
  0%, 100% {
    border-color: rgba(167, 139, 250, 0.35);
    box-shadow: 0 0 0 0 rgba(167, 139, 250, 0.35);
  }
  50% {
    border-color: rgba(244, 63, 94, 0.55);
    box-shadow: 0 0 16px rgba(167, 139, 250, 0.25);
  }
}

.offers-anchor {
  scroll-margin-top: calc(var(--header-h) + 8px);
  height: 0;
}

.disclosure-btn {
  font-size: 10px;
  color: #c4b5fd;
  text-decoration: underline;
  white-space: nowrap;
  position: static;
}

.hero .tooltip {
  position: absolute;
  left: 0;
  right: 0;
  top: auto;
  width: 100%;
  max-width: 420px;
  margin-top: 10px;
  padding: 10px 12px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-size: 11px;
  color: #cbd5e1;
  line-height: 1.4;
  z-index: 50;
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity 150ms ease, transform 150ms ease;
  box-sizing: border-box;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  overflow-wrap: anywhere;
}

.hero .tooltip.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (min-width: 640px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    min-height: min(62vh, 480px);
    padding-top: 28px;
    padding-bottom: 28px;
  }
  .hero-stage {
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: 0;
  }
  .hero-copy { padding-bottom: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-stage img,
  .hero-copy,
  .hero-stage,
  .hero-brand::after,
  .hero-cta { animation: none !important; }
}

/* ——— Timer ——— */
.timer-bar {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 8px;
  padding: 8px 14px;
  background: linear-gradient(90deg, #1e1b4b 0%, #312e81 50%, #1e1b4b 100%);
  border: 1px solid rgba(244, 63, 94, 0.55);
  border-radius: 999px;
  margin: 10px 0 14px;
  box-shadow: 0 0 18px rgba(244, 63, 94, 0.22), inset 0 1px 0 rgba(255,255,255,0.06);
  font-size: 12px;
  color: #e2e8f0;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.timer-bar b {
  color: var(--gold);
  font-weight: 800;
}

.timer-bar time {
  color: #fda4af;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.5px;
  font-weight: 800;
}

/* ——— Glass cards ——— */
.glass {
  background: rgba(30, 41, 59, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
}

.offer {
  padding: 14px;
  margin-bottom: 12px;
  position: relative;
}

.offer-gold {
  border: 1px solid rgba(251, 191, 36, 0.65);
  box-shadow: 0 0 18px rgba(251, 191, 36, 0.18), inset 0 0 0 1px rgba(251, 191, 36, 0.15);
}

.offer-muted { opacity: 0.92; }

.offer-top {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.offer-logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.offer-logo img { width: 100%; height: 100%; object-fit: cover; }

.offer-meta { flex: 1; min-width: 0; }

.offer-rank {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 2px;
}

.offer-rank.silver { color: #cbd5e1; }
.offer-rank.bronze { color: #d97706; }

.offer-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.offer-score {
  margin-top: 2px;
  font-size: 11px;
  color: #fbbf24;
}

.offer-desc {
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
}

.chat-preview {
  margin-top: 10px;
  display: grid;
  gap: 6px;
  padding: 8px;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.chat-bubble {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
}

.chat-bubble img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.chat-bubble .msg {
  background: rgba(167, 139, 250, 0.15);
  border-radius: 10px 10px 10px 2px;
  padding: 6px 8px;
  color: #e2e8f0;
  flex: 1;
}

.chat-bubble.me .msg {
  background: rgba(244, 63, 94, 0.18);
  border-radius: 10px 10px 2px 10px;
}

.voice {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.voice-bars {
  display: inline-flex;
  gap: 2px;
  align-items: flex-end;
  height: 12px;
}

.voice-bars span {
  width: 2px;
  background: var(--violet);
  border-radius: 1px;
  animation: bars 0.9s ease-in-out infinite alternate;
}

.voice-bars span:nth-child(1) { height: 4px; animation-delay: 0s; }
.voice-bars span:nth-child(2) { height: 10px; animation-delay: 0.15s; }
.voice-bars span:nth-child(3) { height: 6px; animation-delay: 0.3s; }
.voice-bars span:nth-child(4) { height: 12px; animation-delay: 0.1s; }

@keyframes bars {
  from { transform: scaleY(0.5); }
  to { transform: scaleY(1); }
}

.photo-previews {
  display: flex;
  gap: 6px;
  margin-left: 36px;
}

.photo-previews span {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.photo-previews img { width: 100%; height: 100%; object-fit: cover; }

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.tag {
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #cbd5e1;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  margin-top: 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  transition: transform 0.15s ease, filter 0.15s ease;
}

.btn:active { transform: scale(0.98); }

.btn-rose {
  background: linear-gradient(135deg, #FB7185, #F43F5E 40%, #E11D48);
  box-shadow: 0 8px 20px rgba(244, 63, 94, 0.35);
}

.btn-violet {
  background: linear-gradient(135deg, #A78BFA, #7C3AED 50%, #4F46E5);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

.btn-slate {
  background: linear-gradient(135deg, #475569, #1E293B);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.btn-sm {
  height: 28px;
  font-size: 10px;
  border-radius: 8px;
  margin-top: 0;
  animation: glow 1.8s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(244, 63, 94, 0.35); }
  50% { box-shadow: 0 0 12px 2px rgba(244, 63, 94, 0.55); }
}

/* ——— Banner ——— */
.mid-banner {
  position: relative;
  margin: 4px 0 14px;
  border-radius: 14px;
  overflow: hidden;
  min-height: 120px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mid-banner { min-height: 130px; }
.mid-banner img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  object-position: center top;
  aspect-ratio: 16 / 5;
}

.mid-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 15, 25, 0.88) 0%, rgba(11, 15, 25, 0.45) 55%, rgba(11, 15, 25, 0.2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px;
  gap: 10px;
}

.mid-banner-overlay p {
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  max-width: 70%;
  line-height: 1.35;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.mid-banner .btn {
  width: auto;
  align-self: flex-start;
  height: 34px;
  padding: 0 16px;
  margin: 0;
  font-size: 12px;
}

/* ——— Characters ——— */
.chars { margin: 8px 0 20px; }

.chars h2 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.chars-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6px;
  scrollbar-width: none;
}

.chars-track::-webkit-scrollbar { display: none; }

.char-card {
  flex: 0 0 140px;
  width: 140px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--slate);
}

.char-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.char-live {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 9px;
  font-weight: 700;
  color: var(--white);
  background: rgba(0, 0, 0, 0.55);
  padding: 3px 7px;
  border-radius: 999px;
}

.char-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 8px 8px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
}

.char-info strong {
  display: block;
  color: var(--white);
  font-size: 12px;
  margin-bottom: 6px;
}

/* ——— Sticky #1 offer bar (cohesive banner, shows after hero) ——— */
.sticky-offer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  /* art is 1920×220 — height tracks viewport width so full BG fits edge-to-edge */
  width: 100%;
  height: calc(100vw * 220 / 1920);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  text-decoration: none;
  overflow: hidden;
  border-top: 1px solid rgba(244, 63, 94, 0.35);
  box-shadow: 0 -12px 36px rgba(0, 0, 0, 0.5);
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), opacity 420ms ease, visibility 420ms;
  background: #1a0a2e;
}
.sticky-offer.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.sticky-offer-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(10, 6, 24, 0.08) 0%, rgba(10, 6, 24, 0.4) 40%, rgba(10, 6, 24, 0.4) 60%, rgba(10, 6, 24, 0.08) 100%),
    url("/images/sticky-banner-bg.webp") center / 100% 100% no-repeat;
}
.sticky-offer-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 8, 35, 0.1) 0%, transparent 45%, rgba(8, 4, 20, 0.28) 100%);
  pointer-events: none;
}
.sticky-offer-mid {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px 18px;
  flex-wrap: wrap;
  min-width: 0;
  padding: 8px 14px;
  border-radius: 14px;
  background: rgba(8, 4, 22, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.sticky-offer-brand {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.sticky-offer-brand span {
  background: linear-gradient(90deg, #fda4af, #f472b6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sticky-offer-text {
  font-size: 13px;
  font-weight: 600;
  color: #e2e8f0;
  white-space: nowrap;
}
.sticky-offer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(110deg, #FB7185 0%, #F43F5E 35%, #E11D48 55%, #FB7185 75%, #F43F5E 100%);
  background-size: 220% 100%;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(244, 63, 94, 0.4);
  animation: pulseCta 2.4s ease-in-out infinite, shimmerBtn 3s ease-in-out infinite;
}
.sticky-offer:hover .sticky-offer-cta { filter: brightness(1.06); }

@media (max-width: 699px) {
  .sticky-offer { padding: 0 8px; }
  .sticky-offer-mid {
    flex-wrap: nowrap;
    gap: 8px;
    padding: 5px 10px;
    background: rgba(8, 4, 22, 0.28);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .sticky-offer-text { display: none; }
  .sticky-offer-brand { font-size: 13px; }
  .sticky-offer-cta {
    height: 30px;
    padding: 0 12px;
    font-size: 11px;
  }
}

@media (min-width: 700px) {
  .sticky-offer-brand { font-size: 20px; }
  .sticky-offer-text { font-size: 15px; }
  .sticky-offer-mid { gap: 18px 22px; padding: 10px 18px; }
}

body:has(.sticky-offer.is-visible) {
  padding-bottom: max(90px, calc(100vw * 220 / 1920 + 16px));
}

/* ——— Sticky disclaimer + footer ——— */
.sticky-disc {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.88);
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  font-size: 10px;
  color: #94a3b8;
  text-align: center;
  line-height: 1.3;
}

.footer {
  flex: 0 0 auto;
  background: #020617;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 8px;
  font-size: 10px;
  color: var(--footer);
}

.footer-links a:hover { color: #94a3b8; }
.footer-links span { color: #334155; }

.footer-note {
  font-size: 8px;
  color: #334155;
  text-align: center;
  max-width: 1100px;
  width: 100%;
  line-height: 1.3;
  padding: 0 16px;
}

/* ——— Welcome popup (selling, competitor-style) ——— */
.popup {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.popup.open {
  opacity: 1;
  visibility: visible;
}

.popup-card {
  width: min(360px, 100%);
  background: #0b0f19;
  border: 1px solid rgba(244, 63, 94, 0.45);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  transform: scale(0.96);
  transition: transform 220ms ease;
  box-shadow: 0 0 0 1px rgba(244, 63, 94, 0.15), 0 28px 70px rgba(0, 0, 0, 0.65), 0 0 40px rgba(244, 63, 94, 0.18);
}

.popup-sell {
  width: min(680px, 100%);
  background: linear-gradient(120deg, #05070c 0%, #0a0d16 38%, #140818 72%, #1a0a16 100%);
  border: 1px solid rgba(251, 113, 133, 0.5);
  box-shadow:
    0 0 0 1px rgba(244, 63, 94, 0.12),
    0 32px 80px rgba(0, 0, 0, 0.7),
    0 0 60px rgba(236, 72, 153, 0.22);
}

.popup.open .popup-card { transform: scale(1); }

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: var(--white);
  font-size: 18px;
  line-height: 32px;
  text-align: center;
}

.popup-sell-inner {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 0;
}

.popup-sell-copy {
  padding: 28px 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  position: relative;
  z-index: 2;
}

.popup-brand {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #fda4af, #fff 55%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
}
.popup-brand span { color: #fff; background: none; -webkit-background-clip: unset; background-clip: unset; }

.popup-offer-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #cbd5e1;
  text-transform: uppercase;
}

.popup-offer-big {
  font-size: clamp(42px, 10vw, 56px);
  font-weight: 800;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.03em;
  text-shadow: 0 0 28px rgba(244, 63, 94, 0.35);
  margin: 2px 0 8px;
}

.popup-perks {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: grid;
  gap: 6px;
}
.popup-perks li {
  position: relative;
  padding-left: 18px;
  font-size: 12px;
  color: #e2e8f0;
  font-weight: 500;
  line-height: 1.35;
}
.popup-perks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #f472b6;
  font-weight: 800;
}

.popup-sell-copy .btn {
  width: 100%;
  max-width: 240px;
  height: 46px;
  margin-top: 4px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
}

.popup-sell-media {
  position: relative;
  min-height: 240px;
  background: #05070c;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-sell-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 7, 12, 0.2) 0%, transparent 18%, transparent 82%, rgba(5, 7, 12, 0.35) 100%),
    linear-gradient(90deg, #05070c 0%, rgba(5, 7, 12, 0.45) 14%, transparent 42%);
  pointer-events: none;
}
.popup-img {
  width: 100%;
  height: auto;
  max-height: min(320px, 42vh);
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

@media (min-width: 560px) {
  .popup-sell-inner {
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
  }
  .popup-sell-copy { padding: 36px 24px 32px 36px; }
  .popup-sell-media {
    min-height: 400px;
    max-height: none;
  }
  .popup-sell-media::before {
    background:
      linear-gradient(90deg, #05070c 0%, rgba(5, 7, 12, 0.65) 10%, rgba(5, 7, 12, 0.2) 28%, transparent 48%);
  }
  .popup-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: center 18%;
  }
  .popup-sell-copy .btn { max-width: none; }
}

/* "Best Overall" recap banner: purple header bar + dark body row */
.promo-best {
  display: block;
  margin: 18px 0 14px;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid rgba(168, 85, 247, 0.35);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
  transition: transform 150ms ease, border-color 150ms ease;
}
.promo-best:hover {
  transform: translateY(-1px);
  border-color: rgba(192, 132, 252, 0.7);
}
.promo-best-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  background: linear-gradient(90deg, #9333EA, #A855F7);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}
.promo-best-head svg { width: 16px; height: 16px; flex-shrink: 0; }
.promo-best-body {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 22px;
  padding: 18px 20px;
  background: #191521;
}
.promo-best-brand {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.promo-best-checks {
  flex: 1;
  min-width: 220px;
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.promo-best-checks li {
  position: relative;
  padding-left: 22px;
  font-size: 13px;
  color: #e2e8f0;
  line-height: 1.4;
}
.promo-best-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #EC4899;
  font-weight: 800;
}
.promo-best-rate {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.promo-best-scorebox {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.promo-best-scorebox strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #9333EA, #7C3AED);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}
.promo-best-scorebox span { font-size: 10px; color: #94a3b8; white-space: nowrap; }
.promo-best-stars { display: flex; flex-direction: column; gap: 2px; }
.promo-best-stars b { font-size: 14px; font-weight: 800; color: #fff; }
.promo-best-stars i { font-style: normal; color: #F59E0B; letter-spacing: 1px; font-size: 13px; }
.promo-best-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #FB7185, #E11D48);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(244, 63, 94, 0.4);
}
@media (max-width: 560px) {
  .promo-best-cta { width: 100%; }
}

/* Vertical #1 banner in a right column next to the cards (desktop only) */
.side-banner { display: none; }
@media (min-width: 1024px) {
  .offers-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 18px;
    align-items: start;
  }
  .side-banner {
    position: sticky;
    top: calc(var(--header-h) + 12px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 18px 16px 16px;
    border-radius: 22px;
    border: 2px solid rgba(244, 114, 182, 0.85);
    background:
      radial-gradient(ellipse 90% 55% at 50% 38%, rgba(219, 39, 119, 0.5), transparent 72%),
      #0a0508;
    box-shadow: 0 0 34px rgba(236, 72, 153, 0.25), 0 18px 40px rgba(0, 0, 0, 0.5);
    text-decoration: none;
    transition: transform 150ms ease, box-shadow 150ms ease;
  }
  .side-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 44px rgba(236, 72, 153, 0.4), 0 18px 40px rgba(0, 0, 0, 0.5);
  }
  .side-banner-brand {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, #fda4af, #f472b6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 12px;
  }
  .side-banner-brand span { color: #fff; background: none; -webkit-background-clip: unset; background-clip: unset; }
  .side-banner img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    -webkit-mask-image: linear-gradient(180deg, #000 72%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 72%, transparent 100%);
  }
  .side-banner-offer {
    position: relative;
    z-index: 1;
    margin-top: -56px;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .side-banner-offer small {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
  }
  .side-banner-offer strong {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.05;
    color: #fff;
    text-shadow: 0 0 22px rgba(255, 255, 255, 0.35), 0 2px 12px rgba(0, 0, 0, 0.8);
  }
  .side-banner-cta {
    margin-top: 14px;
    width: 85%;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #F472B6, #EC4899);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.45);
  }
}

/* ——— Subpages ——— */
.page {
  padding: 15px 0 24px;
}

.wrap.page {
  padding-left: 15px;
  padding-right: 15px;
}

.back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--violet);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 14px;
}

.page h1 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.page .updated {
  font-size: 11px;
  margin-bottom: 16px;
}

.page-content {
  font-family: var(--font);
  font-size: 12px;
  color: var(--muted);
  padding: 0;
}

.page-content h2 {
  font-size: 13px;
  color: var(--white);
  margin: 14px 0 6px;
}

.page-content p, .page-content li { margin-bottom: 8px; }
.page-content ul { padding-left: 16px; list-style: disc; }
.page-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  color: var(--violet);
}

.about-hero {
  margin: 0 0 18px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
  background: #3b0764;
  aspect-ratio: 16 / 9;
}
.about-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.page.about { max-width: 720px; }
.page.about h1 {
  font-size: clamp(22px, 5vw, 30px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* FAQ accordion */
.faq-item {
  margin-bottom: 8px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(30, 41, 59, 0.7);
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 12px 14px;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.faq-q::after {
  content: "+";
  color: var(--rose);
  font-size: 16px;
  flex-shrink: 0;
}

.faq-item.open .faq-q::after { content: "−"; }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 250ms ease, padding 250ms ease;
  padding: 0 14px;
  font-size: 12px;
  color: var(--muted);
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 14px 12px;
}

/* Contact page */
.page.contact { max-width: 560px; }
.page.contact h1 {
  font-size: clamp(26px, 6vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.page.contact .updated {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 22px;
  line-height: 1.45;
}
.contact-card {
  padding: 22px 18px 20px;
  border-radius: 20px;
  background:
    linear-gradient(165deg, rgba(51, 65, 85, 0.45), rgba(15, 23, 42, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.contact-mail {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(167, 139, 250, 0.25);
  color: #e2e8f0;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.contact-mail svg { width: 18px; height: 18px; color: #c4b5fd; flex-shrink: 0; }
.contact-mail:hover { border-color: rgba(167, 139, 250, 0.5); color: #fff; }

/* Contact form */
.form,
.contact-form {
  display: grid;
  gap: 14px;
}

.form label,
.contact-form label {
  display: grid;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  color: #cbd5e1;
  letter-spacing: 0.01em;
}

.form input,
.form textarea,
.contact-form input,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(11, 15, 25, 0.85);
  color: var(--white);
  padding: 12px 14px;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
  -webkit-appearance: none;
  appearance: none;
}

.form input::placeholder,
.form textarea::placeholder,
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #64748b; }

.form input:focus,
.form textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(167, 139, 250, 0.7);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
}

.form textarea,
.contact-form textarea { min-height: 130px; resize: vertical; }

.form .btn,
.contact-form .btn {
  width: 100%;
  height: 48px;
  margin-top: 4px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.form-error {
  color: #fb7185;
  font-size: 12px;
  display: none;
  margin: 0;
}

.form-error.show { display: block; }

.form-success {
  display: none;
  text-align: center;
  padding: 28px 16px;
  color: #86efac;
  font-size: 14px;
  font-weight: 600;
  background: rgba(30, 41, 59, 0.7);
  border-radius: 16px;
  border: 1px solid rgba(134, 239, 172, 0.25);
  margin-top: 14px;
}

.form-success.show { display: block; }

@media (min-width: 640px) {
  .contact-card { padding: 28px 28px 24px; }
  .form .row-2,
  .contact-form .row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
}

/* Geo toast */
.geo-toast {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 120px;
  z-index: 150;
  max-width: 406px;
  margin: 0 auto;
  padding: 14px 14px 12px;
  border-radius: 12px;
  background: rgba(30, 41, 59, 0.95);
  border: 1px solid rgba(167, 139, 250, 0.35);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  display: none;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.geo-toast.show { display: flex; }

.geo-toast p {
  flex: 1 1 100%;
  font-size: 12px;
  color: #e2e8f0;
  padding-right: 24px;
}

.geo-toast .btn {
  width: auto;
  flex: 1;
  height: 34px;
  padding: 0 12px;
  margin: 0;
  font-size: 11px;
  white-space: nowrap;
}

.geo-toast .geo-x {
  position: absolute;
  top: 6px;
  right: 6px;
  color: #94a3b8;
  font-size: 18px;
  width: 28px;
  height: 28px;
}


@media (max-width: 380px) {
  .lang-switch { gap: 2px; margin-right: 4px; }
  .lang-btn { width: 22px; font-size: 8px; }
  .online { font-size: 10px; }
  .brand { font-size: 12px; }
}

@media (min-width: 768px) {
  body { font-size: 14px; }
  .wrap, .header-inner { padding: 0 28px; }
  .wrap.page { padding-left: 28px; padding-right: 28px; }
  .hero h1 { font-size: 20px; }
  .offer { padding: 18px 20px; }
  .mid-banner img { height: 180px; }
  .chars-track { gap: 14px; }
  .char-card { flex: 0 0 160px; width: 160px; height: 230px; }
  .page-content { max-width: 820px; }
  .popup-card.popup-sell { width: min(680px, 100%); }
  .geo-toast { max-width: 520px; }
}

@media (min-width: 1024px) {
  .wrap, .header-inner, .footer-note { max-width: 1200px; }
  .offers-desktop { display: contents; }
}


/* CLS: reserve space for media & chrome */
.hero-grid { min-height: 0; }
.timer-bar { min-height: 32px; box-sizing: border-box; }
.offer-logo { aspect-ratio: 1 / 1; }
.offer-logo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1 / 1; }
.mid-banner { min-height: 130px; aspect-ratio: 16 / 5; }
.mid-banner img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16 / 5; }
.char-card { aspect-ratio: 140 / 200; contain: layout paint; }
.char-card img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 140 / 200; }
.popup-img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  max-height: min(460px, 50vh);
  object-fit: cover;
  object-position: center 18%;
  background: #0B0F19;
}
.popup-sell .popup-img {
  aspect-ratio: auto;
  max-height: min(320px, 42vh);
  object-fit: cover;
  object-position: center 18%;
  background: transparent;
}
@media (min-width: 560px) {
  .popup-sell .popup-img {
    max-height: none;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
  }
}
.sticky-disc, .footer { contain: layout; }


/* v3 CLS harden */
.chat-bubble img {
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  flex-shrink: 0;
}
.photo-previews span {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
}
.photo-previews img {
  width: 40px;
  height: 40px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.wrap {
  contain: layout;
}
.mid-banner {
  min-height: 130px;
  contain: layout;
}
.popup:not(.open) .popup-img {
  content-visibility: auto;
}



/* ——— Offer cards (topaigfs example style) ——— */
.offer {
  position: relative;
  margin: 30px 0 18px 14px;
  padding: 22px 16px 20px 28px;
  background: linear-gradient(165deg, rgba(42, 44, 58, 0.92), rgba(24, 24, 32, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  overflow: visible;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.offer:hover {
  transform: translateY(-2px);
  border-color: rgba(167, 139, 250, 0.45);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.55);
}
.offer-gold {
  border-color: rgba(167, 139, 250, 0.5);
  box-shadow: 0 0 0 1px rgba(167, 139, 250, 0.15) inset, 0 14px 38px rgba(124, 58, 237, 0.25), 0 14px 34px rgba(0, 0, 0, 0.45);
}
.offer-muted { opacity: 1; }

/* Purple ribbon tab above the card */
.offer-ribbon {
  position: absolute;
  top: -15px;
  left: 24px;
  z-index: 2;
  background: linear-gradient(135deg, #8B5CF6, #7C3AED);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2px;
  padding: 6px 14px;
  border-radius: 10px 10px 10px 0;
  white-space: nowrap;
  max-width: calc(100% - 44px);
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 8px 18px rgba(124, 58, 237, 0.45);
}

/* Rank circle on the left edge */
.offer-rank-dot {
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(145deg, #FB7185, #E11D48);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px #0B0F19, 0 8px 18px rgba(244, 63, 94, 0.55);
  z-index: 3;
}
.offer-gold .offer-rank-dot { background: linear-gradient(145deg, #F472B6, #DB2777); }

.offer-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 6px;
}
.offer-main { display: grid; gap: 16px; min-width: 0; }

/* Brand: logo + gradient wordmark */
.offer-brand-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.offer-logo-img {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  background: #fff;
  flex-shrink: 0;
  transition: transform 180ms ease;
}
.offer:hover .offer-logo-img { transform: scale(1.05); }
.offer-brand-name {
  font-size: clamp(19px, 5.6vw, 26px);
  font-weight: 800;
  letter-spacing: -0.01em;
  background: linear-gradient(90deg, #F9A8D4, #C084FC);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
  line-height: 1.1;
}

.offer-checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.offer-checks li {
  position: relative;
  padding-left: 24px;
  font-size: 13px;
  color: #e2e8f0;
  line-height: 1.45;
}
.offer-checks li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: #EC4899;
  font-weight: 800;
  font-size: 14px;
}

.offer-aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.offer-rate {
  display: flex;
  align-items: center;
  gap: 14px;
}
.offer-scorebox {
  background: linear-gradient(160deg, #8B5CF6, #6D28D9);
  border-radius: 12px;
  padding: 8px 12px;
  text-align: center;
  min-width: 56px;
}
.offer-scorebox strong {
  display: block;
  font-size: 22px;
  color: #fff;
  font-weight: 800;
  line-height: 1;
}
.offer-scorebox span {
  display: block;
  margin-top: 4px;
  font-size: 9px;
  color: #ddd6fe;
  font-weight: 600;
}
.offer-stars b {
  display: block;
  font-size: 15px;
  color: #fff;
  font-weight: 800;
}
.offer-stars i {
  display: block;
  font-style: normal;
  color: #FBBF24;
  font-size: 15px;
  letter-spacing: 2px;
  margin-top: 3px;
}
.btn-visit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 36px;
  border-radius: 999px;
  background: linear-gradient(110deg, #FB7185 0%, #F43F5E 35%, #E11D48 55%, #FB7185 75%, #F43F5E 100%);
  background-size: 220% 100%;
  color: #fff !important;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(244, 63, 94, 0.4);
  text-decoration: none;
  transition: transform 150ms ease, filter 150ms ease;
  animation: pulseCta 2.5s ease-in-out infinite, shimmerBtn 3.4s ease-in-out infinite;
}
.btn-visit:hover { transform: translateY(-1px); filter: brightness(1.06); }

/* Desktop: 3-column row like the example */
@media (min-width: 760px) {
  .offer { padding: 24px 28px 24px 36px; }
  .offer-row {
    grid-template-columns: 200px 1fr;
    gap: 28px;
    align-items: center;
  }
  .offer-brand-link { align-items: flex-start; }
  .offer-brand-name { text-align: left; }
  .offer-main {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .offer-checks { flex: 1; }
  .offer-aside { width: 220px; flex-shrink: 0; align-items: center; }
}


@media (min-width: 720px) {
  .hero-grid { min-height: min(58vh, 520px); }
}

/* ═══ topaigfs-style layout (v13) ═══ */

/* Hero with thematic background (topaigfs-style) */
.hero-center {
  padding: 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(105deg, #0b0f19 0%, #15102a 28%, #2a1450 58%, #3b1768 78%, #2a0f4a 100%);
}
.hero-center::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("/images/hero-companions.webp") no-repeat right 32%;
  background-size: cover;
  transform: scale(1.02);
  animation: heroKen 16s ease-in-out infinite alternate;
}
.hero-center::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg,
      #0b0f19 0%,
      rgba(11, 15, 25, 0.92) 22%,
      rgba(11, 15, 25, 0.72) 38%,
      rgba(20, 14, 40, 0.35) 58%,
      rgba(30, 16, 55, 0.12) 78%,
      transparent 100%),
    linear-gradient(180deg, rgba(11, 15, 25, 0.15) 0%, transparent 30%, transparent 75%, rgba(11, 15, 25, 0.55) 100%);
  pointer-events: none;
}
.hero-center .hero-inner {
  position: relative;
  z-index: 2;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 210px;
  padding-top: 14px;
  padding-bottom: 18px;
  animation: heroIn 650ms ease both;
}
.hero-center .hero-kicker { justify-content: flex-start; }
.hero-center h1 {
  font-size: clamp(22px, 6vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.15;
  max-width: 26ch;
  margin: 0;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.65);
}
.hero-center h1 span {
  background: linear-gradient(90deg, #fff 30%, #fda4af 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-center .hero-lead {
  max-width: 52ch;
  margin: 10px 0 0;
  font-size: 14px;
  color: #e2e8f0;
  line-height: 1.55;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}
.hero-center .trust-row {
  justify-content: flex-start;
  margin-top: 14px;
  max-width: 54ch;
}
.hero-center .hero-actions { justify-content: flex-start; margin-top: 14px; }
.hero-center .tooltip {
  left: 0;
  right: auto;
  transform: translateY(-4px);
  max-width: min(92vw, 560px);
  text-align: left;
}
.hero-center .tooltip.open { transform: translateY(0); }

/* Desktop: image on the right (cover), text on the left */
@media (min-width: 720px) {
  .hero-center::before {
    background-image: url("/images/hero-desktop.webp");
    background-position: right 32%;
    background-size: cover;
    transform: none;
    animation: none;
  }
  .hero-center::after {
    background:
      linear-gradient(90deg,
        #0b0f19 0%,
        rgba(11, 15, 25, 0.92) 22%,
        rgba(11, 15, 25, 0.72) 38%,
        rgba(20, 14, 40, 0.35) 58%,
        rgba(30, 16, 55, 0.12) 78%,
        transparent 100%),
      linear-gradient(180deg, rgba(11, 15, 25, 0.15) 0%, transparent 30%, transparent 75%, rgba(11, 15, 25, 0.55) 100%);
  }
  .hero-center .hero-inner {
    min-height: 300px;
    padding-top: 16px;
    padding-bottom: 24px;
    justify-content: flex-start;
  }
  .hero-center h1 { max-width: 24ch; }
  .hero-center .hero-lead { font-size: 15px; max-width: 54ch; }
  .hero-center .trust-row { max-width: 56ch; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-center::before { animation: none; }
  .hero-cta, .btn-visit, .sticky-offer-cta, .trust-badge { animation: none !important; }
}

/* Trust badges row */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #e2e8f0;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(167, 139, 250, 0.35);
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: pulseBadge 2.6s ease-in-out infinite;
}
.trust-badge:nth-child(2) { animation-delay: 0.4s; }
.trust-badge svg { width: 14px; height: 14px; color: var(--violet); flex-shrink: 0; }

/* Sale bar % accent — styled above via .timer-bar b */

/* SEO info sections */
.info { margin: 24px 0 8px; }
.info > h2 {
  font-size: 17px;
  color: #fff;
  font-weight: 800;
  margin: 0 0 12px;
  text-align: center;
}
.info-grid { display: grid; gap: 12px; }
.info-card {
  padding: 15px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(30, 41, 59, 0.5);
}
.info-card h3 { font-size: 13px; color: #fff; font-weight: 700; margin-bottom: 6px; }
.info-card p { font-size: 12px; color: #94a3b8; line-height: 1.55; }
@media (min-width: 640px) { .info-grid { grid-template-columns: 1fr 1fr; } }

/* Footer columns */
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 12px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 14px;
  text-align: left;
}
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #cbd5e1;
  margin-bottom: 8px;
}
.footer-col a { display: block; font-size: 12px; color: #64748b; padding: 3px 0; }
.footer-col a:hover { color: #94a3b8; }
@media (max-width: 420px) { .footer-cols { grid-template-columns: 1fr 1fr; } }

/* ═══ Compact mobile: hero + two cards peek below (v13) ═══ */
@media (max-width: 719px) {
  .hero-center::before {
    background-position: 78% 32%;
    background-size: cover;
    opacity: 1;
  }
  .hero-center::after {
    background:
      linear-gradient(90deg,
        #0b0f19 0%,
        rgba(11, 15, 25, 0.9) 40%,
        rgba(18, 12, 36, 0.45) 68%,
        rgba(11, 15, 25, 0.12) 100%),
      linear-gradient(180deg, transparent 72%, #0b0f19 100%);
  }
  .hero-center .hero-inner {
    min-height: 0;
    padding-top: 14px;
    padding-bottom: 14px;
    max-width: 1100px;
  }
  .hero-kicker { margin-bottom: 6px; }
  .hero-center h1 { font-size: clamp(19px, 5.4vw, 26px); max-width: 20ch; }
  .hero-center .hero-lead {
    font-size: 13px;
    line-height: 1.45;
    margin-top: 6px;
    max-width: 38ch;
  }
  .hero-center .trust-row { margin-top: 10px; gap: 6px; }
  .trust-badge { font-size: 10px; padding: 5px 9px; }
  .trust-badge svg { width: 12px; height: 12px; }
  .hero-center .hero-actions { margin-top: 12px; }
  .hero-cta.btn { width: auto; height: 42px; margin-top: 0; padding: 0 24px; font-size: 13px; }
  .disclosure-btn { font-size: 10px; }
  .timer-bar { margin: 10px 0; }

  .offer { margin: 20px 0 12px 14px; padding: 16px 12px 14px 22px; }
  .offer-row { gap: 10px; }
  .offer-main { gap: 10px; }
  .offer-brand-link { flex-direction: row; align-items: center; gap: 10px; justify-content: flex-start; }
  .offer-logo-img { width: 44px; height: 44px; border-radius: 13px; }
  .offer-brand-name { font-size: clamp(17px, 5vw, 21px); text-align: left; }
  .offer-checks { gap: 6px; }
  .offer-checks li { font-size: 12px; padding-left: 20px; line-height: 1.35; }
  .offer-aside { gap: 8px; }
  .offer-rate { gap: 10px; }
  .offer-scorebox { padding: 6px 10px; min-width: 48px; }
  .offer-scorebox strong { font-size: 18px; }
  .offer-stars b { font-size: 13px; }
  .offer-stars i { font-size: 13px; }
  .btn-visit { height: 38px; padding: 0 26px; font-size: 13px; }
  .offer-ribbon { font-size: 10px; padding: 5px 11px; top: -13px; }
  .offer-rank-dot { width: 34px; height: 34px; font-size: 16px; }
}
