/* podboq v5 — funnel design pass: respuesta directa + look unicornio */

:root {
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 180ms;
  --t-med: 260ms;
  --t-slow: 420ms;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

html { font-family: 'Source Sans 3', system-ui, sans-serif; }
.tracking-tightest { letter-spacing: -0.035em; }

/* ----- Logo mark ----- */
.logo-mark {
  display: inline-flex;
  height: 2.25rem;
  width: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.875rem;
  background: linear-gradient(135deg, #2563eb 0%, #6366f1 50%, #8b5cf6 100%);
  color: #fff;
  box-shadow: 0 4px 12px -2px rgba(37, 99, 235, 0.45);
}

/* ----- Announcement bar ----- */
.announce-bar {
  position: relative;
  z-index: 41;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  background: linear-gradient(90deg, #1d4ed8 0%, #6366f1 50%, #8b5cf6 100%);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 500;
  text-align: center;
}
.announce-dot {
  display: inline-block;
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 9999px;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  animation: pulse-dot 2s ease-out infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

/* ----- Nav ----- */
.nav-pill {
  display: inline-block;
  padding: 0.5rem 0.9rem;
  border-radius: 9999px;
  color: #475569;
  transition: background var(--t-fast) var(--ease-out), color var(--t-fast) var(--ease-out);
}
.nav-pill:hover { background: rgba(37, 99, 235, 0.08); color: #2563eb; }
.dark .nav-pill { color: #cbd5e1; }
.dark .nav-pill:hover { background: rgba(255,255,255,0.08); color: #fff; }

.mobile-nav-link {
  display: block;
  border-radius: 0.75rem;
  padding: 0.65rem 0.75rem;
  color: #334155;
  transition: background var(--t-fast) var(--ease-out);
}
.mobile-nav-link:hover { background: #f1f5f9; }
.dark .mobile-nav-link { color: #e2e8f0; }
.dark .mobile-nav-link:hover { background: rgba(255,255,255,0.06); }

.icon-btn {
  display: inline-flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  color: #475569;
  background: #fff;
  transition:
    border-color var(--t-fast) var(--ease-out),
    background var(--t-fast) var(--ease-out),
    color var(--t-fast) var(--ease-out),
    box-shadow var(--t-fast) var(--ease-out),
    transform 120ms var(--ease-spring);
}
.icon-btn:hover { border-color: #cbd5e1; box-shadow: 0 4px 12px -2px rgba(15,23,42,0.08); }
.icon-btn:active { transform: scale(0.94); }
.dark .icon-btn { border-color: rgba(255,255,255,0.12); background: rgba(255,255,255,0.05); color: #e2e8f0; }
.dark .icon-btn:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.08); }

/* ----- Botones ----- */
.btn-primary {
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  font-family: Lexend, system-ui, sans-serif;
  font-weight: 600;
  background: linear-gradient(135deg, #2563eb 0%, #6366f1 50%, #8b5cf6 100%);
  background-size: 200% 200%;
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px -4px rgba(37, 99, 235, 0.5);
  transition:
    transform var(--t-fast) var(--ease-spring),
    box-shadow var(--t-fast) var(--ease-out),
    background-position var(--t-med) var(--ease-out),
    filter var(--t-fast) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 600ms var(--ease-out);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -4px rgba(37,99,235,0.55);
  background-position: 100% 100%;
}
.btn-primary:hover::after { transform: translateX(100%); }
.btn-primary:active { transform: translateY(0) scale(0.97); box-shadow: 0 2px 8px -2px rgba(37,99,235,0.4); }
.btn-primary:focus-visible { outline: 3px solid rgba(56, 189, 248, 0.5); outline-offset: 3px; }

.btn-primary-on-dark {
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  font-family: Lexend, system-ui, sans-serif;
  font-weight: 600;
  background: #fff;
  color: #0f172a;
  border: none;
  cursor: pointer;
  transition:
    transform var(--t-fast) var(--ease-spring),
    box-shadow var(--t-fast) var(--ease-out),
    background var(--t-fast) var(--ease-out);
}
.btn-primary-on-dark:hover {
  transform: translateY(-2px);
  background: #f8fafc;
  box-shadow: 0 12px 32px -4px rgba(0,0,0,0.3);
}
.btn-primary-on-dark:active { transform: scale(0.97); }

/* ----- HERO ----- */
.hero-wrap {
  position: relative;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
}
.dark .hero-wrap {
  background: linear-gradient(180deg, #0f172a 0%, #020617 50%, #0f172a 100%);
}
.hero-glow {
  background:
    radial-gradient(ellipse 70% 45% at 50% -10%, rgba(37,99,235,0.18), transparent 65%),
    radial-gradient(ellipse 55% 35% at 100% 10%, rgba(139,92,246,0.15), transparent 55%),
    radial-gradient(ellipse 40% 25% at 0% 30%, rgba(99,102,241,0.10), transparent 50%);
}
.dark .hero-glow {
  background:
    radial-gradient(ellipse 70% 45% at 50% -5%, rgba(56,189,248,0.16), transparent 60%),
    radial-gradient(ellipse 55% 35% at 95% 5%, rgba(139,92,246,0.18), transparent 55%),
    radial-gradient(ellipse 40% 25% at 5% 35%, rgba(99,102,241,0.18), transparent 55%);
}
.hero-grid {
  background-image:
    linear-gradient(to right, rgba(15,23,42,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15,23,42,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000 30%, transparent 80%);
}
.dark .hero-grid {
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.95rem 0.45rem 0.65rem;
  border-radius: 9999px;
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.15);
  color: #1d4ed8;
  font-size: 0.78rem;
  font-weight: 600;
}
.dark .kicker { background: rgba(56,189,248,0.1); border-color: rgba(56,189,248,0.25); color: #7dd3fc; }
.kicker-dot {
  display: inline-block;
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 9999px;
  background: #2563eb;
  box-shadow: 0 0 0 4px rgba(37,99,235,0.18);
}
.dark .kicker-dot { background: #38bdf8; box-shadow: 0 0 0 4px rgba(56,189,248,0.25); }

.hero-title {
  margin-top: 1.25rem;
  font-family: Lexend, system-ui, sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: #0f172a;
}
.dark .hero-title { color: #fff; }
.hero-highlight {
  background: linear-gradient(135deg, #2563eb 0%, #6366f1 50%, #8b5cf6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
  padding: 0 0.1em;
}
.hero-highlight::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05em;
  height: 0.2em;
  background: linear-gradient(135deg, rgba(37,99,235,0.18), rgba(139,92,246,0.18));
  border-radius: 0.4em;
  z-index: -1;
}

.hero-sub {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #475569;
}
.dark .hero-sub { color: #cbd5e1; }
@media (min-width: 640px) { .hero-sub { font-size: 1.2rem; } }

.hero-ctas {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: Lexend, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #475569;
  padding: 0.5rem 0.6rem;
  border-radius: 9999px;
  transition: color var(--t-fast) var(--ease-out), background var(--t-fast) var(--ease-out), transform var(--t-fast) var(--ease-out);
}
.hero-link svg { transition: transform var(--t-fast) var(--ease-spring); }
.hero-link:hover { color: #2563eb; background: rgba(37,99,235,0.06); }
.hero-link:hover svg { transform: translateY(2px); }
.dark .hero-link { color: #cbd5e1; }
.dark .hero-link:hover { color: #fff; background: rgba(255,255,255,0.06); }

/* trust row */
.hero-trust {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-avatars {
  display: flex;
  flex-shrink: 0;
}
.hero-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.4rem;
  width: 2.4rem;
  border-radius: 9999px;
  border: 2px solid #fff;
  margin-left: -0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  font-family: Lexend, sans-serif;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.hero-avatar:first-child { margin-left: 0; }
.dark .hero-avatar { border-color: #0f172a; }
.hero-trust-text { font-size: 0.85rem; color: #475569; }
.dark .hero-trust-text { color: #cbd5e1; }
.hero-trust-text strong { color: #0f172a; }
.dark .hero-trust-text strong { color: #fff; }
.hero-stars { color: #f59e0b; display: inline-flex; gap: 0.05rem; }

.hero-guarantee {
  margin-top: 1.75rem;
  display: inline-flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem 1.1rem 0.85rem 0.9rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(16,185,129,0.08), rgba(16,185,129,0.02));
  border: 1px solid rgba(16,185,129,0.25);
}
.dark .hero-guarantee {
  background: linear-gradient(135deg, rgba(16,185,129,0.12), rgba(16,185,129,0.04));
  border-color: rgba(16,185,129,0.3);
}
.hero-guarantee-icon {
  display: inline-flex;
  height: 2.25rem;
  width: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: #10b981;
  color: #fff;
  flex-shrink: 0;
}
.hero-guarantee-title { font-family: Lexend, sans-serif; font-weight: 700; font-size: 0.92rem; color: #047857; }
.hero-guarantee-sub { font-size: 0.8rem; color: #065f46; opacity: 0.85; }
.dark .hero-guarantee-title { color: #6ee7b7; }
.dark .hero-guarantee-sub { color: #a7f3d0; opacity: 0.8; }

/* ----- Mock product (right side hero) ----- */
.mock-stage {
  position: relative;
  width: 100%;
  min-height: 380px;
  perspective: 1200px;
}
.mock-card {
  position: absolute;
  border-radius: 1.25rem;
  background: rgba(255,255,255,0.92);
  border: 1px solid #e2e8f0;
  box-shadow: 0 24px 64px -12px rgba(15,23,42,0.18), 0 8px 16px -8px rgba(15,23,42,0.1);
  backdrop-filter: blur(8px);
}
.dark .mock-card {
  background: rgba(15,23,42,0.85);
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 24px 64px -12px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.03);
}
.mock-card-main {
  top: 0;
  left: 5%;
  right: 5%;
  padding: 1.1rem;
  transform: rotate(-1.5deg);
  animation: mock-float 6s ease-in-out infinite;
}
@keyframes mock-float {
  0%, 100% { transform: rotate(-1.5deg) translateY(0); }
  50% { transform: rotate(-1.5deg) translateY(-8px); }
}
.mock-card-head { display: flex; align-items: center; gap: 0.4rem; padding-bottom: 0.85rem; border-bottom: 1px solid #f1f5f9; }
.dark .mock-card-head { border-color: rgba(255,255,255,0.08); }
.mock-dot { display: inline-block; height: 0.55rem; width: 0.55rem; border-radius: 9999px; }
.mock-dot-r { background: #ef4444; }
.mock-dot-y { background: #f59e0b; }
.mock-dot-g { background: #10b981; }
.mock-card-title {
  margin-left: auto;
  font-family: Lexend, sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.mock-card-body { padding-top: 1rem; }
.mock-metric { margin-bottom: 0.85rem; }
.mock-metric-label { display: block; font-size: 0.72rem; font-weight: 600; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.04em; }
.mock-metric-value { display: block; font-family: Lexend, sans-serif; font-size: 2.2rem; font-weight: 800; color: #10b981; line-height: 1.1; letter-spacing: -0.03em; margin-top: 0.2rem; }
.mock-metric-trend { display: block; font-size: 0.72rem; color: #475569; margin-top: 0.1rem; }
.dark .mock-metric-trend { color: #94a3b8; }
.mock-chart { height: 70px; margin-bottom: 0.85rem; }
.mock-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
.mock-mini { padding: 0.55rem 0.65rem; border-radius: 0.65rem; background: #f8fafc; border: 1px solid #f1f5f9; }
.dark .mock-mini { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.06); }
.mock-mini-label { display: block; font-size: 0.65rem; font-weight: 600; color: #94a3b8; text-transform: uppercase; }
.mock-mini-value { display: block; font-family: Lexend, sans-serif; font-size: 1rem; font-weight: 700; color: #0f172a; margin-top: 0.1rem; }
.dark .mock-mini-value { color: #fff; }

.mock-card-float { padding: 0.85rem 1rem; max-width: 14rem; }
.mock-card-floatA { top: 60%; left: -3%; transform: rotate(-4deg); animation: mock-floatA 5s ease-in-out infinite; }
@keyframes mock-floatA { 0%, 100% { transform: rotate(-4deg) translateY(0); } 50% { transform: rotate(-4deg) translateY(6px); } }
.mock-card-floatB { top: 78%; right: -3%; transform: rotate(3deg); animation: mock-floatB 5.5s ease-in-out infinite; }
@keyframes mock-floatB { 0%, 100% { transform: rotate(3deg) translateY(0); } 50% { transform: rotate(3deg) translateY(-6px); } }

.mock-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.65rem;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 700;
  font-family: Lexend, sans-serif;
}
.mock-pill-good { background: rgba(16,185,129,0.12); color: #047857; }
.dark .mock-pill-good { background: rgba(16,185,129,0.2); color: #6ee7b7; }
.mock-pill-info { background: rgba(37,99,235,0.12); color: #1d4ed8; }
.dark .mock-pill-info { background: rgba(56,189,248,0.18); color: #7dd3fc; }
.mock-spinner {
  display: inline-block;
  height: 0.7rem;
  width: 0.7rem;
  border-radius: 9999px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.mock-float-text { margin-top: 0.4rem; font-size: 0.78rem; color: #475569; }
.dark .mock-float-text { color: #cbd5e1; }

/* ----- Logos marquee ----- */
.marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marquee 35s linear infinite;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-logo {
  flex-shrink: 0;
  font-family: Lexend, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #64748b;
  letter-spacing: -0.01em;
  padding: 0 1.75rem;
  white-space: nowrap;
  filter: grayscale(0.4);
  opacity: 0.85;
}
.dark .marquee-logo { color: #cbd5e1; }
.marquee-sep {
  flex-shrink: 0;
  display: inline-block;
  height: 0.4rem;
  width: 0.4rem;
  border-radius: 9999px;
  background: #cbd5e1;
}
.dark .marquee-sep { background: rgba(255,255,255,0.18); }

/* ----- Section heading ----- */
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2563eb;
}
.dark .eyebrow { color: #7dd3fc; }
.section-head {
  margin-top: 0.75rem;
  font-family: Lexend, sans-serif;
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #0f172a;
}
.dark .section-head { color: #fff; }
.section-sub {
  margin-top: 1rem;
  font-size: 1.075rem;
  line-height: 1.6;
  color: #475569;
}
.dark .section-sub { color: #cbd5e1; }
.section-sub em { color: #2563eb; font-style: normal; font-weight: 700; }

/* ----- Pain cards ----- */
.pain-card {
  border-radius: 1.25rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 1.65rem 1.4rem;
  box-shadow: 0 4px 24px -8px rgba(15,23,42,0.08);
  transition: transform var(--t-med) var(--ease-out), box-shadow var(--t-med) var(--ease-out), border-color var(--t-fast) var(--ease-out);
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -12px rgba(15,23,42,0.14);
  border-color: #cbd5e1;
}
.dark .pain-card {
  border-color: rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}
.dark .pain-card:hover { border-color: rgba(255,255,255,0.18); box-shadow: 0 18px 48px -12px rgba(0,0,0,0.5); }
.pain-ico {
  display: inline-flex;
  height: 2.85rem;
  width: 2.85rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, rgba(37,99,235,0.12), rgba(99,102,241,0.12));
  color: #2563eb;
}
.pain-ico-amber { background: linear-gradient(135deg, rgba(245,158,11,0.14), rgba(251,191,36,0.14)); color: #d97706; }
.pain-ico-rose { background: linear-gradient(135deg, rgba(244,114,182,0.14), rgba(239,68,68,0.14)); color: #db2777; }
.pain-title {
  margin-top: 1rem;
  font-family: Lexend, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #0f172a;
}
.dark .pain-title { color: #fff; }
.pain-body {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #64748b;
}
.dark .pain-body { color: #94a3b8; }

/* ----- Big benefits ----- */
.big-benefit {
  position: relative;
  border-radius: 1.5rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 1.85rem 1.6rem;
  box-shadow: 0 4px 24px -8px rgba(15,23,42,0.08);
  transition: transform var(--t-med) var(--ease-out), box-shadow var(--t-med) var(--ease-out);
}
.big-benefit:hover { transform: translateY(-4px); box-shadow: 0 20px 48px -12px rgba(37,99,235,0.18); }
.dark .big-benefit { border-color: rgba(255,255,255,0.08); background: rgba(255,255,255,0.03); }
.big-benefit-feat {
  border-color: #2563eb;
  box-shadow: 0 8px 32px -8px rgba(37,99,235,0.25);
}
.dark .big-benefit-feat { border-color: rgba(56,189,248,0.4); box-shadow: 0 12px 40px -12px rgba(56,189,248,0.25); }
.big-benefit-ico {
  display: inline-flex;
  height: 3.25rem;
  width: 3.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  color: #fff;
  box-shadow: 0 4px 14px -2px rgba(0,0,0,0.15);
}
.big-benefit-ico-blue { background: linear-gradient(135deg, #2563eb, #6366f1); }
.big-benefit-ico-mint { background: linear-gradient(135deg, #10b981, #06b6d4); }
.big-benefit-ico-amber { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.big-benefit-title {
  margin-top: 1.15rem;
  font-family: Lexend, sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: #0f172a;
}
.dark .big-benefit-title { color: #fff; }
.big-benefit-body {
  margin-top: 0.6rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #475569;
}
.dark .big-benefit-body { color: #cbd5e1; }
.big-benefit-stat {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px dashed #e2e8f0;
  font-family: Lexend, sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: #2563eb;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.big-benefit-stat span {
  display: block;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.35rem;
}
.dark .big-benefit-stat { border-top-color: rgba(255,255,255,0.1); color: #7dd3fc; }

.bonus-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.15rem;
  border-radius: 9999px;
  background: rgba(16,185,129,0.06);
  border: 1px solid rgba(16,185,129,0.18);
  font-size: 0.9rem;
  font-weight: 600;
  color: #047857;
}
.dark .bonus-row { background: rgba(16,185,129,0.1); border-color: rgba(16,185,129,0.25); color: #6ee7b7; }
.bonus-check {
  display: inline-flex;
  height: 1.2rem;
  width: 1.2rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: #10b981;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
}

/* ----- Testimonials ----- */
.testi-card {
  display: flex;
  flex-direction: column;
  border-radius: 1.5rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 1.85rem 1.6rem;
  box-shadow: 0 4px 24px -8px rgba(15,23,42,0.08);
  transition: transform var(--t-med) var(--ease-out), box-shadow var(--t-med) var(--ease-out);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -12px rgba(15,23,42,0.14); }
.dark .testi-card { border-color: rgba(255,255,255,0.08); background: rgba(255,255,255,0.03); }
.testi-card-feat {
  background: linear-gradient(160deg, #eff6ff 0%, #ffffff 60%);
  border-color: #bfdbfe;
}
.dark .testi-card-feat {
  background: linear-gradient(160deg, rgba(37,99,235,0.18) 0%, rgba(15,23,42,0.6) 70%);
  border-color: rgba(56,189,248,0.3);
}
.testi-stars { color: #f59e0b; font-size: 1.05rem; letter-spacing: 0.1em; }
.testi-quote {
  margin-top: 0.9rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #1e293b;
  flex-grow: 1;
}
.dark .testi-quote { color: #e2e8f0; }
.testi-foot {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testi-avatar {
  display: inline-flex;
  height: 2.4rem;
  width: 2.4rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  font-family: Lexend, sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.testi-name { font-family: Lexend, sans-serif; font-weight: 700; font-size: 0.92rem; color: #0f172a; }
.dark .testi-name { color: #fff; }
.testi-role { font-size: 0.78rem; color: #64748b; }
.dark .testi-role { color: #94a3b8; }
.testi-metric {
  margin-left: auto;
  padding: 0.3rem 0.65rem;
  border-radius: 0.55rem;
  background: rgba(16,185,129,0.12);
  color: #047857;
  font-family: Lexend, sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
}
.dark .testi-metric { background: rgba(16,185,129,0.18); color: #6ee7b7; }

/* ----- Compare ----- */
.compare-card {
  border-radius: 1.5rem;
  padding: 1.85rem 1.6rem;
  transition: transform var(--t-med) var(--ease-out);
}
.compare-card:hover { transform: translateY(-2px); }
.compare-before {
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 4px 16px rgba(15,23,42,0.04);
}
.dark .compare-before { border-color: rgba(255,255,255,0.1); background: rgba(255,255,255,0.04); }
.compare-after {
  border: 1px solid transparent;
  background: linear-gradient(160deg, #1d4ed8 0%, #4338ca 50%, #312e81 100%);
  box-shadow: 0 18px 48px -12px rgba(37,99,235,0.45);
  color: #fff;
}
.compare-badge {
  display: inline-block;
  border-radius: 9999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.compare-badge-muted { background: #e2e8f0; color: #475569; }
.dark .compare-badge-muted { background: rgba(255,255,255,0.1); color: #cbd5e1; }
.compare-badge-hot { background: #fff; color: #1d4ed8; }
.compare-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px dashed rgba(148,163,184,0.4);
}
.compare-after .compare-row { border-bottom-color: rgba(255,255,255,0.18); }
.compare-row:last-child { border-bottom: none; padding-bottom: 0; }
.compare-x {
  flex-shrink: 0;
  display: inline-flex;
  height: 1.5rem;
  width: 1.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: rgba(239,68,68,0.12);
  color: #dc2626;
  font-weight: 800;
  font-size: 0.85rem;
}
.dark .compare-x { background: rgba(239,68,68,0.18); color: #fca5a5; }
.compare-c {
  flex-shrink: 0;
  display: inline-flex;
  height: 1.5rem;
  width: 1.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: rgba(16,185,129,0.25);
  color: #fff;
  font-weight: 800;
  font-size: 0.78rem;
}
.compare-label { font-size: 0.95rem; color: #475569; line-height: 1.5; }
.compare-label strong { color: #0f172a; font-weight: 700; }
.dark .compare-label { color: #cbd5e1; }
.dark .compare-label strong { color: #fff; }
.compare-label-light { font-size: 0.95rem; color: #e0e7ff; line-height: 1.5; }
.compare-label-light strong { color: #fff; font-weight: 700; }

/* ----- Steps ----- */
.step-pill {
  display: flex;
  flex-direction: column;
  border-radius: 1.25rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 1.65rem 1.4rem;
  box-shadow: 0 4px 16px rgba(15,23,42,0.05);
  transition: transform var(--t-med) var(--ease-out), box-shadow var(--t-med) var(--ease-out);
}
.step-pill:hover { transform: translateY(-3px); box-shadow: 0 14px 32px -10px rgba(15,23,42,0.12); }
.dark .step-pill { border-color: rgba(255,255,255,0.1); background: rgba(255,255,255,0.04); }
.step-badge {
  display: inline-flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, #2563eb, #6366f1);
  color: #fff;
  font-family: Lexend, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 4px 12px -2px rgba(37,99,235,0.4);
}
.step-title { margin-top: 1.15rem; font-family: Lexend, sans-serif; font-weight: 700; font-size: 1.2rem; color: #0f172a; }
.dark .step-title { color: #fff; }
.step-body { margin-top: 0.55rem; font-size: 0.95rem; line-height: 1.55; color: #475569; flex-grow: 1; }
.dark .step-body { color: #cbd5e1; }
.step-cta {
  margin-top: 1.15rem;
  display: inline-flex;
  align-items: center;
  font-family: Lexend, sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: #2563eb;
  transition: gap var(--t-fast) var(--ease-out), color var(--t-fast) var(--ease-out);
}
.step-cta:hover { color: #1d4ed8; }
.dark .step-cta { color: #7dd3fc; }
.dark .step-cta:hover { color: #38bdf8; }
.step-time {
  display: inline-block;
  margin-top: 1.15rem;
  font-family: Lexend, sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #94a3b8;
}

/* ----- Plans ----- */
.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-radius: 1.5rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 1.85rem 1.65rem;
  box-shadow: 0 6px 24px -8px rgba(15,23,42,0.08);
  transition: transform var(--t-med) var(--ease-out), box-shadow var(--t-med) var(--ease-out);
}
.plan-card:hover { transform: translateY(-4px); box-shadow: 0 22px 48px -12px rgba(15,23,42,0.14); }
.dark .plan-card { border-color: rgba(255,255,255,0.1); background: rgba(255,255,255,0.04); }
.plan-card-featured {
  border: none;
  background: linear-gradient(165deg, #2563eb 0%, #4338ca 50%, #312e81 100%);
  color: #fff;
  box-shadow: 0 22px 56px -8px rgba(37,99,235,0.5);
  transform: translateY(-8px);
}
.plan-card-featured:hover { transform: translateY(-12px); box-shadow: 0 28px 64px -8px rgba(37,99,235,0.55); }
.plan-ribbon {
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 0.95rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: #fff;
  font-family: Lexend, sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px -2px rgba(245,158,11,0.5);
  white-space: nowrap;
}
.plan-tag {
  display: inline-block;
  width: fit-content;
  border-radius: 9999px;
  background: #eff6ff;
  padding: 0.35rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #2563eb;
}
.plan-tag-light { background: rgba(255,255,255,0.18); color: #e0f2fe; }
.plan-title {
  font-family: Lexend, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}
.dark .plan-title { color: #fff; }
.plan-price {
  margin-top: -0.25rem;
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
}
.dark .plan-price { color: #cbd5e1; }
.plan-price-num {
  font-family: Lexend, sans-serif;
  font-weight: 800;
  font-size: 1.65rem;
  color: #0f172a;
  letter-spacing: -0.02em;
}
.dark .plan-price-num { color: #fff; }
.plan-price-unit { font-size: 0.78rem; color: #94a3b8; font-weight: 500; }
.plan-desc { font-size: 0.95rem; line-height: 1.55; color: #64748b; }
.dark .plan-desc { color: #94a3b8; }
.plan-desc-light { color: #c7d2fe; }
.plan-list {
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.92rem;
  color: #475569;
}
.plan-list li { position: relative; padding-left: 1.5rem; line-height: 1.5; }
.plan-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 1.1rem;
  width: 1.1rem;
  border-radius: 9999px;
  background: rgba(16,185,129,0.15);
  color: #047857;
  font-size: 0.7rem;
  font-weight: 800;
}
.dark .plan-list {
  color: #e2e8f0;
}
.dark .plan-list li::before {
  background: rgba(52,211,153,0.22);
  color: #6ee7b7;
}
.plan-list-light li { color: #e0e7ff; }
.plan-list-light li::before { background: rgba(255,255,255,0.18); color: #fff; }
.plan-link {
  margin-top: auto;
  padding-top: 0.85rem;
  font-family: Lexend, sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: #2563eb;
  text-decoration: none;
  transition: color var(--t-fast) var(--ease-out), transform var(--t-fast) var(--ease-out);
  width: fit-content;
}
.plan-link:hover { color: #1d4ed8; transform: translateX(3px); }
.dark .plan-link { color: #7dd3fc; }
.dark .plan-link:hover { color: #38bdf8; }

/* ----- Guarantee block ----- */
.guarantee-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, rgba(16,185,129,0.08), rgba(6,182,212,0.05));
  border: 1px solid rgba(16,185,129,0.25);
  padding: 2.25rem 1.75rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .guarantee-block { flex-direction: row; align-items: center; padding: 2.5rem 3rem; gap: 2.25rem; }
}
.dark .guarantee-block {
  background: linear-gradient(135deg, rgba(16,185,129,0.14), rgba(6,182,212,0.08));
  border-color: rgba(16,185,129,0.3);
}
.guarantee-seal {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 6.5rem;
  width: 6.5rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #10b981, #06b6d4);
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 12px 28px -6px rgba(16,185,129,0.45);
  text-align: center;
}
.guarantee-seal svg { position: absolute; opacity: 0.18; }
.guarantee-seal-num { font-family: Lexend, sans-serif; font-weight: 900; font-size: 2.15rem; line-height: 1; letter-spacing: -0.04em; }
.guarantee-seal-text { font-family: Lexend, sans-serif; font-weight: 700; font-size: 0.65rem; letter-spacing: 0.18em; margin-top: 0.1rem; }
.guarantee-title {
  font-family: Lexend, sans-serif;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #047857;
  line-height: 1.2;
}
.dark .guarantee-title { color: #6ee7b7; }
.guarantee-body { margin-top: 0.85rem; font-size: 1rem; line-height: 1.6; color: #065f46; }
.guarantee-body strong { color: #047857; }
.dark .guarantee-body { color: #a7f3d0; }
.dark .guarantee-body strong { color: #6ee7b7; }
.guarantee-sign { margin-top: 0.65rem; font-size: 0.85rem; font-style: italic; color: #047857; opacity: 0.8; }
.dark .guarantee-sign { color: #a7f3d0; }

/* ----- FAQ ----- */
.faq-modern {
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  overflow: hidden;
  transition: box-shadow var(--t-fast) var(--ease-out), border-color var(--t-fast) var(--ease-out);
}
.faq-modern:hover { box-shadow: 0 4px 16px -4px rgba(15,23,42,0.08); border-color: #cbd5e1; }
.dark .faq-modern { border-color: rgba(255,255,255,0.1); background: rgba(255,255,255,0.04); }
.faq-sum {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.25rem;
  font-family: Lexend, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #0f172a;
  transition: background var(--t-fast) var(--ease-out), color var(--t-fast) var(--ease-out);
  position: relative;
  padding-right: 3rem;
}
.faq-sum::after {
  content: "+";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  height: 1.65rem;
  width: 1.65rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: rgba(37,99,235,0.1);
  color: #2563eb;
  font-weight: 700;
  font-size: 1.1rem;
  transition: transform var(--t-fast) var(--ease-spring), background var(--t-fast) var(--ease-out);
}
details[open] > .faq-sum::after { content: "−"; transform: translateY(-50%) rotate(180deg); background: #2563eb; color: #fff; }
.dark .faq-sum { color: #fff; }
.dark .faq-sum::after { background: rgba(56,189,248,0.15); color: #7dd3fc; }
.dark details[open] > .faq-sum::after { background: #38bdf8; color: #0f172a; }
.faq-sum::-webkit-details-marker { display: none; }
.faq-sum:hover { background: #f8fafc; }
.dark .faq-sum:hover { background: rgba(255,255,255,0.06); }
details[open] > .faq-sum { background: #eff6ff; color: #1d4ed8; }
.dark details[open] > .faq-sum { background: rgba(56,189,248,0.1); color: #7dd3fc; }
.faq-ans {
  padding: 0.4rem 1.25rem 1.1rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #475569;
}
.faq-ans strong { color: #0f172a; font-weight: 700; }
.dark .faq-ans { color: #cbd5e1; }
.dark .faq-ans strong { color: #fff; }

/* ----- CTA final ----- */
.cta-wrap {
  background: linear-gradient(160deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
  color: #fff;
}
.cta-glow-a {
  position: absolute;
  top: -6rem;
  right: -6rem;
  height: 24rem;
  width: 24rem;
  border-radius: 9999px;
  background: rgba(56,189,248,0.18);
  filter: blur(80px);
}
.cta-glow-b {
  position: absolute;
  bottom: -8rem;
  left: -4rem;
  height: 20rem;
  width: 20rem;
  border-radius: 9999px;
  background: rgba(139,92,246,0.18);
  filter: blur(80px);
}
.cta-title {
  margin-top: 0.85rem;
  font-family: Lexend, sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.cta-sub { margin: 1.25rem auto 0; max-width: 32rem; font-size: 1.075rem; line-height: 1.6; color: #cbd5e1; }
.cta-form {
  margin: 1.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 32rem;
}
@media (min-width: 640px) { .cta-form { flex-direction: row; } }
.input-email {
  height: 3.5rem;
  flex: 1;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  padding: 0 1.35rem;
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: border-color var(--t-fast) var(--ease-out), background var(--t-fast) var(--ease-out), box-shadow var(--t-fast) var(--ease-out);
}
.input-email::placeholder { color: #94a3b8; }
.input-email:hover { border-color: rgba(255,255,255,0.32); background: rgba(255,255,255,0.1); }
.input-email:focus { border-color: #7dd3fc; box-shadow: 0 0 0 3px rgba(125,211,252,0.25); }

.urgency-bar {
  margin: 2rem auto 0.5rem;
  height: 0.5rem;
  width: 100%;
  max-width: 24rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
  position: relative;
}
.urgency-fill {
  height: 100%;
  background: linear-gradient(90deg, #f59e0b, #ef4444);
  border-radius: 9999px;
  position: relative;
  animation: urgency-pulse 2.5s ease-in-out infinite;
}
.urgency-fill::after {
  content: "";
  position: absolute;
  top: 0;
  right: -0.4rem;
  height: 100%;
  width: 0.8rem;
  background: rgba(255,255,255,0.6);
  border-radius: 9999px;
  filter: blur(4px);
}
@keyframes urgency-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.85; } }
.urgency-text {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fbbf24;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cta-trust {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  font-size: 0.85rem;
  color: #cbd5e1;
}
.cta-trust li { display: inline-flex; align-items: center; gap: 0.4rem; }
.cta-trust svg { color: #4ade80; }

/* ----- Footer ----- */
.footer-trust {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  background: #f1f5f9;
  color: #475569;
  font-size: 0.7rem;
  font-weight: 600;
}
.dark .footer-trust { background: rgba(255,255,255,0.06); color: #cbd5e1; }
.footer-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #94a3b8;
}
.footer-a {
  color: #475569;
  text-decoration: none;
  transition: color var(--t-fast) var(--ease-out);
}
.footer-a:hover { color: #2563eb; }
.dark .footer-a { color: #cbd5e1; }
.dark .footer-a:hover { color: #fff; }

/* ----- Sticky CTA ----- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0.65rem 0.75rem max(0.65rem, env(safe-area-inset-bottom));
  background: rgba(15,23,42,0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.1);
  transform: translateY(110%);
  transition: transform 320ms var(--ease-out);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  max-width: 28rem;
  margin: 0 auto;
}
.sticky-cta-text { display: flex; flex-direction: column; line-height: 1.2; color: #fff; }
.sticky-cta-text strong { font-family: Lexend, sans-serif; font-weight: 700; font-size: 0.95rem; color: #fbbf24; }
.sticky-cta-text span { font-size: 0.75rem; color: #cbd5e1; }
@media (min-width: 768px) { .sticky-cta { display: none; } }

/* ----- Reveal ----- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ----- Language toggle ----- */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.2rem;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
}
.dark .lang-switch {
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
}
.lang-btn {
  min-width: 2.1rem;
  padding: 0.35rem 0.45rem;
  border-radius: 0.5rem;
  border: none;
  background: transparent;
  font-family: Lexend, system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #64748b;
  cursor: pointer;
  transition:
    background var(--t-fast) var(--ease-out),
    color var(--t-fast) var(--ease-out),
    transform 120ms var(--ease-spring);
}
.lang-btn:hover { color: #2563eb; background: rgba(37,99,235,0.08); }
.dark .lang-btn { color: #94a3b8; }
.dark .lang-btn:hover { color: #fff; background: rgba(255,255,255,0.1); }
.lang-btn-active {
  background: linear-gradient(135deg, #2563eb, #6366f1);
  color: #fff !important;
  box-shadow: 0 2px 8px -2px rgba(37,99,235,0.45);
}
.lang-btn:active { transform: scale(0.94); }
@media (max-width: 380px) {
  .lang-btn { min-width: 1.85rem; padding: 0.3rem 0.35rem; font-size: 0.65rem; }
}

/* ----- Focus visible ----- */
:focus-visible { outline: 2px solid #2563eb; outline-offset: 3px; border-radius: 0.25rem; }
.dark :focus-visible { outline-color: #7dd3fc; }
