/* Whispr landing — page styles. Tokens live in _tokens.css. */

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--whispr-font-sans);
  background: var(--whispr-bg);
  color: var(--whispr-text);
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
  overflow-x: hidden;
}

a { color: inherit; }

/* Skip link */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--whispr-primary); color: #fff;
  padding: 8px 16px; border-radius: 0 0 8px 8px;
  font-weight: 600; font-size: 14px; text-decoration: none;
  z-index: 9999; transition: top 0.15s;
}
.skip-link:focus { top: 0; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(63,55,201,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(63,55,201,0.5); }

::placeholder { color: #6A6A7A !important; opacity: 1; }

/* ── Animations ───────────────────────────────────────────────────────────── */
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes whispr-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.4); }
}
@media (prefers-reduced-motion: no-preference) {
  .animate-fade-up { animation: fadeInUp 0.55s var(--whispr-easing) both; }
}

.spinner { animation: spin 0.8s linear infinite; display: inline-block; }
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--whispr-accent);
  box-shadow: 0 0 8px rgba(6,214,160,0.8);
  display: inline-block;
  animation: whispr-pulse 1.6s var(--whispr-easing) infinite;
}

/* ── Layout helpers ───────────────────────────────────────────────────────── */
.section { padding: 96px 24px; }
.section__inner { max-width: 1200px; margin: 0 auto; }

.section__label-row { display: flex; justify-content: center; margin-bottom: 16px; }
.section__label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(63,55,201,0.1);
  border: 1px solid rgba(63,55,201,0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px; font-weight: 600;
  color: var(--whispr-primary);
  letter-spacing: 0.06em; text-transform: uppercase;
}
.section__label i { font-size: 11px; }

.section__heading-wrap { text-align: center; margin-bottom: 48px; }
.section__heading-wrap--with-sub { margin-bottom: 12px; }
.section__heading {
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.75rem);
  font-weight: 700; line-height: 1.15;
  color: var(--whispr-text); margin: 0;
}
.section__sub {
  margin: 16px auto 0;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--whispr-text-muted);
  max-width: 580px; line-height: 1.65;
}

/* ── Navigation ───────────────────────────────────────────────────────────── */
.whispr-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
  background: transparent;
}
.whispr-nav.is-scrolled {
  background: rgba(248,249,250,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
[data-bs-theme="dark"] .whispr-nav.is-scrolled { background: rgba(18,18,24,0.92); }

.whispr-nav__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 68px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}
.whispr-nav__brand { text-decoration: none; flex-shrink: 0; }
.whispr-nav__links {
  display: flex; gap: 8px; align-items: center;
}
.whispr-nav__link {
  color: var(--whispr-text-muted); text-decoration: none;
  font-size: 14px; font-weight: 500;
  padding: 6px 12px; border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.whispr-nav__link:hover {
  color: var(--whispr-text); background: var(--whispr-border);
}
.whispr-nav__controls {
  display: flex; align-items: center; gap: 10px;
}
.whispr-nav__lang-wrap { position: relative; }
.whispr-nav__lang {
  background: transparent;
  border: 1px solid var(--whispr-border);
  color: var(--whispr-text-muted);
  border-radius: 8px;
  padding: 6px 28px 6px 10px;
  font-size: 13px; font-weight: 500;
  cursor: pointer;
  font-family: var(--whispr-font-sans);
  outline: none; appearance: none; -webkit-appearance: none;
}
.whispr-nav__lang-caret {
  position: absolute; right: 8px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none; color: var(--whispr-text-muted);
  font-size: 10px;
}
.whispr-nav__theme {
  background: var(--whispr-border); border: none; border-radius: 8px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--whispr-text-muted); font-size: 16px;
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
}
.whispr-nav__theme:hover {
  background: rgba(var(--whispr-primary-rgb),0.12);
  color: var(--whispr-primary);
}
.whispr-nav__cta {
  background: var(--whispr-gradient); color: #fff;
  border: none; border-radius: 10px; padding: 8px 18px;
  font-weight: 600; font-size: 13.5px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s;
  white-space: nowrap; flex-shrink: 0;
}
.whispr-nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(63,55,201,0.4);
  color: #fff;
}
.whispr-nav__hamburger {
  display: none; background: transparent; border: none;
  color: var(--whispr-text); font-size: 22px; cursor: pointer;
  padding: 4px;
}
.whispr-nav__mobile {
  display: none;
  background: rgba(248,249,250,0.97);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--whispr-border);
  padding: 20px 24px 28px;
}
[data-bs-theme="dark"] .whispr-nav__mobile { background: rgba(18,18,24,0.97); }
.whispr-nav__mobile.is-open { display: block; }
.whispr-nav__mobile-link {
  display: block; color: var(--whispr-text); text-decoration: none;
  font-size: 16px; font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--whispr-border);
}
.whispr-nav__mobile-cta {
  display: block; margin-top: 20px;
  background: var(--whispr-gradient); color: #fff;
  border-radius: 12px; padding: 14px 20px;
  font-weight: 600; font-size: 15px;
  text-decoration: none; text-align: center;
}
.whispr-nav__mobile-cta:hover { color: #fff; }

@media (max-width: 767px) {
  .whispr-nav__links, .whispr-nav__cta { display: none !important; }
  .whispr-nav__hamburger { display: flex; }
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  background: linear-gradient(160deg, #0C0C18 0%, #0F0F1E 50%, #131320 100%);
  display: flex; align-items: center;
  padding: 120px 24px 80px;
  color: #E6E6EA;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero__bg-glow {
  position: absolute; border-radius: 50%;
}
.hero__bg-glow--left {
  top: 15%; left: -8%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(63,55,201,0.18) 0%, transparent 70%);
}
.hero__bg-glow--right {
  top: 10%; right: -5%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(123,47,247,0.15) 0%, transparent 70%);
}
.hero__bg-glow--bottom {
  bottom: -10%; left: 40%; width: 400px; height: 300px;
  background: radial-gradient(circle, rgba(6,214,160,0.06) 0%, transparent 70%);
}
.hero__bg-grid {
  position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.18;
}

.hero__inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px 64px; align-items: center;
  position: relative;
}
.hero__copy { color: inherit; }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(6,214,160,0.1);
  border: 1px solid rgba(6,214,160,0.25);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 28px;
}
.hero__eyebrow-text {
  font-size: 12px; font-weight: 600; color: var(--whispr-accent);
  letter-spacing: 0.07em; text-transform: uppercase;
}

.hero__headline {
  font-size: clamp(2.5rem, 5vw + 0.5rem, 4.25rem);
  font-weight: 700; line-height: 1.07;
  margin: 0 0 20px;
  color: #FFFFFF;
}
.hero__headline-grad {
  background: linear-gradient(135deg, #3F37C9, #7B2FF7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.7;
  color: #9A9AA8;
  margin-bottom: 40px;
  max-width: 480px;
}

/* Waitlist forms (hero + waitlist section share the same look) */
.waitlist-form { max-width: 460px; }
.waitlist-form--hero { display: flex; flex-direction: column; gap: 10px; }
.waitlist-form__row { display: flex; gap: 10px; }
.waitlist-form__input {
  flex: 1;
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  font-size: 15px; color: #E6E6EA;
  outline: none;
  font-family: var(--whispr-font-sans);
  transition: border-color 0.2s;
}
.waitlist-form__input:focus { border-color: rgba(63,55,201,0.7); }
.waitlist-form__input.is-invalid { border-color: var(--whispr-error); }

.waitlist-form__submit {
  background: linear-gradient(135deg,#3F37C9,#7B2FF7);
  color: #fff; border: none; border-radius: 12px;
  padding: 14px 22px;
  font-weight: 600; font-size: 15px;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--whispr-font-sans);
  transition: transform 0.15s, box-shadow 0.2s, opacity 0.2s;
  flex-shrink: 0;
}
.waitlist-form__submit:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(63,55,201,0.45);
}
.waitlist-form__submit:disabled {
  background: rgba(63,55,201,0.6);
  cursor: wait;
}
.waitlist-form__error {
  font-size: 13px; color: var(--whispr-error);
}
.waitlist-form__note {
  font-size: 13px; color: #5C5C70;
  display: inline-flex; align-items: center; gap: 5px;
}
.waitlist-form__note i { font-size: 11px; }

.waitlist-success {
  background: rgba(6,214,160,0.1);
  border: 1px solid rgba(6,214,160,0.3);
  border-radius: 14px;
  padding: 18px 24px;
  display: flex; align-items: center; gap: 12px;
  max-width: 460px;
}
.waitlist-success i { color: var(--whispr-accent); font-size: 20px; }
.waitlist-success span { color: #E6E6EA; font-size: 15px; font-weight: 500; }

.hero__trust {
  display: flex; gap: 24px; margin-top: 40px; flex-wrap: wrap;
}
.hero__trust-item {
  display: flex; align-items: center; gap: 7px;
  color: #6A6A7A; font-size: 13px; font-weight: 500;
}
.hero__trust-item i { color: var(--whispr-primary); font-size: 15px; }

.hero__mockup {
  display: flex; justify-content: center; align-items: center;
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__mockup { order: -1; max-width: 480px; margin: 0 auto; }
}
@media (max-width: 540px) {
  .waitlist-form__row { flex-direction: column; }
}

/* ── How it works ─────────────────────────────────────────────────────────── */
.how { background: var(--whispr-surface); }
.how__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px; margin-top: 56px; position: relative;
}
.how__step { position: relative; }
.how__connector {
  position: absolute; top: 28px; left: 100%;
  width: 32px; height: 2px;
  background: linear-gradient(to right, rgba(63,55,201,0.4), rgba(123,47,247,0.2));
  z-index: 0;
}
@media (max-width: 768px) { .how__connector { display: none; } }

.step-card {
  background: var(--whispr-bg);
  border-radius: var(--whispr-radius-lg);
  padding: 32px 28px;
  height: 100%;
  border: 1px solid var(--whispr-border);
  transition: transform 0.2s var(--whispr-easing), box-shadow 0.2s var(--whispr-easing);
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--whispr-shadow-lg);
}
.step-card__step {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--whispr-primary);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.step-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(63,55,201,0.12), rgba(123,47,247,0.12));
  border: 1px solid rgba(63,55,201,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--whispr-primary); font-size: 22px;
}
.step-card__title {
  font-size: 1.1rem; font-weight: 600;
  color: var(--whispr-text);
  margin: 0 0 10px;
}
.step-card__desc {
  font-size: 14.5px; line-height: 1.65;
  color: var(--whispr-text-muted);
  margin: 0;
}

/* ── Features / tier comparison ──────────────────────────────────────────── */
.features { background: #F0F0FA; }
[data-bs-theme="dark"] .features { background: #0C0C18; }

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.tier-card {
  background: var(--whispr-surface);
  border-radius: 24px;
  border: 1px solid var(--whispr-border);
  padding: 36px 32px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.tier-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--whispr-shadow-lg);
}
.tier-card--premium {
  border: 1.5px solid transparent;
  background-image:
    linear-gradient(var(--whispr-surface), var(--whispr-surface)),
    linear-gradient(135deg,#3F37C9,#7B2FF7);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.tier-card--premium:hover {
  box-shadow: 0 16px 48px rgba(63,55,201,0.25);
}

.tier-card__pill {
  position: absolute; top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg,#3F37C9,#7B2FF7); color: #fff;
  border-radius: 100px;
  padding: 5px 18px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(63,55,201,0.4);
  white-space: nowrap;
}
.tier-card__badge {
  display: inline-block;
  background: rgba(6,214,160,0.12);
  border: 1px solid rgba(6,214,160,0.3);
  color: var(--whispr-accent);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 20px;
}
.tier-card__badge--premium {
  background: linear-gradient(135deg, rgba(63,55,201,0.15), rgba(123,47,247,0.15));
  border-color: rgba(63,55,201,0.3);
  color: var(--whispr-primary);
}
.tier-card__name {
  font-size: 1.5rem; font-weight: 700;
  color: var(--whispr-text);
  margin: 0 0 12px;
}
.tier-card__desc {
  font-size: 14.5px; line-height: 1.65;
  color: var(--whispr-text-muted);
  margin-bottom: 28px;
}
.tier-card__features {
  border-top: 1px solid var(--whispr-border);
  padding-top: 24px;
}
.tier-card__feature {
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.tier-card__feature-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  flex-shrink: 0;
  background: rgba(6,214,160,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--whispr-accent); font-size: 13px;
}
.tier-card__feature-label {
  font-size: 14.5px; color: var(--whispr-text); line-height: 1.4;
}
.tier-card__trial {
  margin-top: 20px;
  display: flex; align-items: center; gap: 8px;
  background: rgba(63,55,201,0.08);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px; color: var(--whispr-primary); font-weight: 500;
}
.tier-card__trial i { color: var(--whispr-primary); font-size: 14px; }
.tier-card__price {
  margin-top: 28px; padding-top: 24px;
  border-top: 1px solid var(--whispr-border);
}
.tier-card__price--with-trial { margin-top: 24px; }
.tier-card__price-row {
  display: flex; align-items: baseline; gap: 6px;
}
.tier-card__price-amount {
  font-size: 36px; font-weight: 700; color: var(--whispr-text);
}
.tier-card__price-period {
  font-size: 15px; color: var(--whispr-text-muted);
}
.tier-card__price-note {
  font-size: 12px; color: var(--whispr-text-muted); margin: 4px 0 0;
}
.tier-card__cta {
  display: block; margin-top: 20px; text-align: center;
  border-radius: 12px;
  padding: 13px 20px;
  font-weight: 600; font-size: 15px;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s, box-shadow 0.2s;
}
.tier-card__cta--free {
  border: 1.5px solid var(--whispr-primary);
  color: var(--whispr-primary);
  background: transparent;
}
.tier-card__cta--free:hover {
  background: rgba(63,55,201,0.07); color: var(--whispr-primary);
}
.tier-card__cta--premium {
  background: linear-gradient(135deg,#3F37C9,#7B2FF7); color: #fff;
  box-shadow: 0 4px 20px rgba(63,55,201,0.35);
}
.tier-card__cta--premium:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(63,55,201,0.5);
  color: #fff;
}

/* ── Use cases ────────────────────────────────────────────────────────────── */
.usecases { background: var(--whispr-bg); }
.usecases__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.usecase-card {
  background: var(--whispr-surface);
  border-radius: var(--whispr-radius-lg);
  border: 1px solid var(--whispr-border);
  padding: 28px 26px;
  transition: transform 0.2s var(--whispr-easing), box-shadow 0.2s var(--whispr-easing);
}
.usecase-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--whispr-shadow-lg);
}
.usecase-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.usecase-card__title {
  font-size: 1.1rem; font-weight: 600;
  color: var(--whispr-text);
  margin: 0 0 10px;
}
.usecase-card__desc {
  font-size: 14.5px; line-height: 1.65;
  color: var(--whispr-text-muted);
  margin: 0;
}

/* ── Waitlist CTA section ────────────────────────────────────────────────── */
.waitlist-cta {
  padding: 100px 24px;
  background: linear-gradient(135deg, #0C0C18 0%, #130F28 50%, #0C0C18 100%);
  position: relative; overflow: hidden;
  color: #E6E6EA;
}
.waitlist-cta__bg {
  position: absolute; inset: 0; pointer-events: none;
}
.waitlist-cta__bg-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 400px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(63,55,201,0.2) 0%, transparent 65%);
}
.waitlist-cta__inner {
  max-width: 600px; margin: 0 auto; text-align: center;
  position: relative;
}
.waitlist-cta__store-icons {
  display: flex; justify-content: center; gap: 16px; margin-bottom: 32px;
}
.waitlist-cta__store-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #E6E6EA;
}
.waitlist-cta__title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700; color: #FFFFFF;
  margin: 0 0 16px;
  line-height: 1.15;
}
.waitlist-cta__sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #9A9AA8;
  line-height: 1.65;
  margin: 0 0 40px;
}
.waitlist-cta .waitlist-form { margin: 0 auto; }
.waitlist-cta .waitlist-form__input {
  padding: 15px 20px;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 14px;
}
.waitlist-cta .waitlist-form__submit {
  border-radius: 14px;
  padding: 15px 26px;
  box-shadow: 0 4px 20px rgba(63,55,201,0.4);
}
.waitlist-cta .waitlist-form__submit:hover:not(:disabled) {
  box-shadow: 0 6px 28px rgba(63,55,201,0.55);
}
.waitlist-cta .waitlist-form__error { text-align: center; }
.waitlist-cta__note {
  margin-top: 20px;
  font-size: 13px; color: #4A4A5A;
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
.site-footer {
  background: #0C0C18;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 24px 40px;
  color: #9A9AA8;
}
.site-footer__inner { max-width: 1200px; margin: 0 auto; }
.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 48px 32px;
  margin-bottom: 56px;
}
.site-footer__tagline {
  font-size: 14px; line-height: 1.6;
  color: #6A6A7A;
  margin: 16px 0 20px;
}
.site-footer__social { display: flex; gap: 12px; }
.site-footer__social-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #6A6A7A; font-size: 15px;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}
.site-footer__social-icon:hover {
  border-color: rgba(63,55,201,0.5);
  color: #9A9AA8;
}
.site-footer__h4 {
  color: #E6E6EA;
  font-size: 13px; font-weight: 600;
  margin: 0 0 16px;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.site-footer__link {
  display: block;
  color: #6A6A7A;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.15s;
}
.site-footer__link:hover { color: #E6E6EA; }
.site-footer__store-badge {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 10px 14px;
  text-decoration: none;
  margin-bottom: 10px;
  transition: border-color 0.15s, background 0.15s;
}
.site-footer__store-badge:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}
.site-footer__store-badge i { font-size: 20px; color: #E6E6EA; }
.site-footer__store-badge-meta { font-size: 10px; color: #9A9AA8; }
.site-footer__store-badge-name { font-size: 13px; font-weight: 600; color: #E6E6EA; }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.site-footer__copyright { font-size: 13px; }
.site-footer__lang-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.site-footer__lang-pill {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  color: #6A6A7A;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 12px; font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  font-family: var(--whispr-font-sans);
  text-decoration: none;
}
.site-footer__lang-pill.is-active {
  background: rgba(63,55,201,0.2);
  border-color: rgba(63,55,201,0.5);
  color: #9A9AAF;
}

/* ── Brand wordmark (logo) ────────────────────────────────────────────────── */
.whispr-logo {
  display: inline-flex; align-items: center; gap: 10px;
  direction: ltr; unicode-bidi: isolate;
}
.whispr-logo svg { width: auto; }
.whispr-logo__mark {
  width: 28px; height: 28px;
  border-radius: 6px;
  overflow: hidden; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(123,47,247,0.35);
}
.whispr-logo__mark img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.whispr-logo--lg .whispr-logo__mark { width: 32px; height: 32px; border-radius: 7px; }
.whispr-logo--sm .whispr-logo__mark { width: 26px; height: 26px; border-radius: 6px; }

/* ── RTL adjustments ──────────────────────────────────────────────────────── */
[dir="rtl"] .whispr-nav__lang { padding: 6px 10px 6px 28px; }
[dir="rtl"] .whispr-nav__lang-caret { right: auto; left: 8px; }
[dir="rtl"] .hero__bg-glow--left  { left: auto; right: -8%; }
[dir="rtl"] .hero__bg-glow--right { right: auto; left: -5%; }

/* ── Legal pages (privacy / terms / data privacy / delete account) ───────── */
.legal-page {
  background: var(--whispr-bg);
  min-height: 70vh;
}
.legal-page__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

/* Legacy header rule — kept for any future page that doesn't use the banner. */
.legal-page__header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--whispr-border);
}
.legal-page__title {
  font-size: clamp(2rem, 4vw + 0.5rem, 3rem);
  font-weight: 700; line-height: 1.15;
  color: var(--whispr-text);
  margin: 0;
}
.legal-page__updated {
  margin-top: 12px;
  font-size: 14px;
  color: var(--whispr-text-muted);
}
.legal-page__updated strong {
  color: var(--whispr-text); font-weight: 600;
}
.legal-page__lede {
  margin: 0 0 32px;
  font-size: 17px; line-height: 1.65;
  color: var(--whispr-text-muted);
  max-width: 720px;
}

/* ── Legal banner (top of every legal page) ──────────────────────────────── */
.legal-banner {
  position: relative; overflow: hidden;
  height: 320px;
  background: linear-gradient(160deg, #0d0d1a 0%, #1a1030 50%, #0f1220 100%);
  /* Anchor content from the top with explicit breathing room above the breadcrumb.
     The 124px top padding accounts for the 68px fixed-position navbar plus ~56px
     of visual breathing room — keeps the breadcrumb clearly below the nav. */
  display: flex; align-items: flex-start; justify-content: flex-start;
  padding: 124px 3rem 0;
  color: #fff;
}

/* On legal pages, force the navbar into its "scrolled" solid-background state from
   the start — gives a clear horizontal separation between the nav and the banner
   gradient (matches the Claude Design comp). */
body:has(.legal-banner) .whispr-nav {
  background: rgba(248,249,250,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
[data-bs-theme="dark"] body:has(.legal-banner) .whispr-nav {
  background: rgba(18,18,24,0.92);
}
[data-bs-theme="light"] .legal-banner {
  background: linear-gradient(160deg, #1a1040 0%, #2d1a60 50%, #1a2050 100%);
}
.legal-banner__svg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none;
}
.legal-banner__content {
  position: relative; z-index: 2;
  max-width: 960px; width: 100%;
  margin: 0 auto;
}
.legal-banner__back {
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.5); text-decoration: none;
  font-size: 13px; font-weight: 500;
  margin-bottom: 14px;
  transition: color 0.2s;
}
.legal-banner__back:hover { color: rgba(255,255,255,0.9); }
.legal-banner__back i { font-size: 13px; }
[dir="rtl"] .legal-banner__back i { transform: scaleX(-1); }

.legal-banner__breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
}
.legal-banner__breadcrumb a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
}
.legal-banner__breadcrumb a:hover { color: rgba(255,255,255,0.7); }
.legal-banner__breadcrumb-sep { font-size: 11px; }
[dir="rtl"] .legal-banner__breadcrumb-sep { transform: scaleX(-1); display: inline-block; }

.legal-banner__pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(6,214,160,0.15);
  border: 1px solid rgba(6,214,160,0.3);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px; font-weight: 600;
  color: #06D6A0;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.legal-banner__pill-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #06D6A0;
  animation: legal-pulse-dot 2s ease-in-out infinite;
}
.legal-banner__title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800; color: #fff;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0;
}
.legal-banner__title-grad {
  background: var(--whispr-gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.legal-banner__updated {
  margin: 10px 0 0;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.legal-banner__updated strong { color: rgba(255,255,255,0.65); }

/* SVG element animations */
.legal-banner__ring {
  transform-origin: center;
  animation: legal-ripple 3s ease-out infinite;
  opacity: 0;
}
.legal-banner__ring--l:nth-of-type(1) { animation-delay: 0s; }
.legal-banner__ring--l:nth-of-type(2) { animation-delay: 0.6s; }
.legal-banner__ring--l:nth-of-type(3) { animation-delay: 1.2s; }
.legal-banner__ring--l:nth-of-type(4) { animation-delay: 1.8s; }
.legal-banner__ring--r:nth-of-type(1) { animation-delay: 0.3s; }
.legal-banner__ring--r:nth-of-type(2) { animation-delay: 0.9s; }
.legal-banner__ring--r:nth-of-type(3) { animation-delay: 1.5s; }
.legal-banner__ring--r:nth-of-type(4) { animation-delay: 2.1s; }

.legal-banner__bar {
  animation: legal-voice-eq 1.4s ease-in-out infinite alternate;
  transform-origin: bottom;
}
.legal-banner__bar:nth-of-type(1) { animation-duration: 0.9s;  animation-delay: 0s; }
.legal-banner__bar:nth-of-type(2) { animation-duration: 1.1s;  animation-delay: 0.1s; }
.legal-banner__bar:nth-of-type(3) { animation-duration: 0.8s;  animation-delay: 0.2s; }
.legal-banner__bar:nth-of-type(4) { animation-duration: 1.3s;  animation-delay: 0.05s; }
.legal-banner__bar:nth-of-type(5) { animation-duration: 0.95s; animation-delay: 0.15s; }
.legal-banner__bar:nth-of-type(6) { animation-duration: 1.2s;  animation-delay: 0.25s; }
.legal-banner__bar:nth-of-type(7) { animation-duration: 0.85s; animation-delay: 0.3s; }

.legal-banner__star { animation: legal-twinkle 2s ease-in-out infinite; }
.legal-banner__star:nth-of-type(2) { animation-delay: 0.7s; }
.legal-banner__star:nth-of-type(3) { animation-delay: 1.3s; }

.legal-banner__shield { animation: legal-float-shield 4s ease-in-out infinite; }
.legal-banner__lock   { animation: legal-float-lock   3.5s ease-in-out infinite; animation-delay: 0.5s; }
.legal-banner__eye    { animation: legal-float-lock   4.5s ease-in-out infinite; animation-delay: 1s; }

@keyframes legal-ripple {
  0%   { opacity: 0.5; transform: scale(0.85); }
  100% { opacity: 0;   transform: scale(1.6); }
}
@keyframes legal-pulse-dot {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.7); }
}
@keyframes legal-voice-eq {
  0%   { transform: scaleY(0.2); }
  100% { transform: scaleY(1); }
}
@keyframes legal-twinkle {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50%      { opacity: 0.8; transform: scale(1.2); }
}
@keyframes legal-float-shield {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes legal-float-lock {
  0%, 100% { transform: translateY(0)    rotate(-5deg); }
  50%      { transform: translateY(-6px) rotate(5deg); }
}

@media (max-width: 600px) {
  .legal-banner { height: 260px; padding: 100px 1.5rem 0; }
  .legal-banner__title { font-size: 24px; }
}

/* TOC active state (scroll-spy) */
.legal-page__toc-item {
  list-style: none;
  position: relative;
  margin-bottom: 4px;
}
.legal-page__toc-item a {
  display: block;
  padding: 6px 12px;
  font-size: 13px;
  color: var(--whispr-text-muted);
  text-decoration: none;
  border-radius: var(--whispr-radius-sm);
  border-inline-start: 2px solid transparent;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  line-height: 1.4;
}
.legal-page__toc-item a:hover {
  color: var(--whispr-text);
  background: var(--whispr-gradient-soft);
}
.legal-page__toc-item.is-active a {
  color: var(--whispr-primary);
  border-inline-start-color: var(--whispr-primary);
  background: var(--whispr-gradient-soft);
  font-weight: 600;
}
[data-bs-theme="dark"] .legal-page__toc-item.is-active a {
  color: #a5a0ff;
  border-inline-start-color: #a5a0ff;
}

.legal-page__error {
  display: flex; gap: 12px; align-items: center;
  background: rgba(176,0,32,0.08);
  border: 1px solid rgba(176,0,32,0.2);
  border-radius: var(--whispr-radius);
  padding: 20px 24px;
  color: var(--whispr-text);
}
.legal-page__error i {
  font-size: 22px; color: var(--whispr-error);
  flex-shrink: 0;
}
.legal-page__error p { margin: 0; font-size: 15px; line-height: 1.5; }

.legal-page__layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) {
  .legal-page__layout { grid-template-columns: 1fr; gap: 24px; }
}

.legal-page__toc {
  position: sticky; top: 96px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  padding-right: 12px;
}
@media (max-width: 900px) {
  .legal-page__toc {
    position: static; max-height: none;
    padding: 16px 20px;
    background: var(--whispr-surface);
    border: 1px solid var(--whispr-border);
    border-radius: var(--whispr-radius);
  }
}
.legal-page__toc-label {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--whispr-text-muted);
  margin-bottom: 12px;
}
.legal-page__toc-list {
  list-style: none; padding: 0; margin: 0;
  font-size: 13.5px;
}
.legal-page__toc-list li { margin-bottom: 8px; }
.legal-page__toc-list a {
  color: var(--whispr-text-muted);
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.15s;
}
.legal-page__toc-list a:hover { color: var(--whispr-primary); }

.legal-page__body { min-width: 0; }
.legal-page__body--single { grid-column: 1 / -1; }

.legal-section {
  margin-bottom: 40px;
  scroll-margin-top: 96px;
}
.legal-section__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--whispr-text);
  margin: 0 0 16px;
  line-height: 1.25;
}
.legal-section__lead,
.legal-section__paragraph {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--whispr-text);
  margin: 0 0 16px;
}
.legal-section__paragraph--note {
  display: flex; gap: 10px; align-items: flex-start;
  background: rgba(245,124,0,0.08);
  border-left: 3px solid var(--whispr-warning);
  padding: 12px 16px;
  border-radius: 0 var(--whispr-radius-sm) var(--whispr-radius-sm) 0;
  margin-top: 8px;
}
[dir="rtl"] .legal-section__paragraph--note {
  border-left: none;
  border-right: 3px solid var(--whispr-warning);
  border-radius: var(--whispr-radius-sm) 0 0 var(--whispr-radius-sm);
}
.legal-section__paragraph--note i {
  color: var(--whispr-warning); font-size: 16px;
  flex-shrink: 0; margin-top: 3px;
}
.legal-section__sub-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--whispr-text);
  margin: 24px 0 10px;
}
.legal-section__list {
  margin: 0 0 16px;
  padding-inline-start: 24px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--whispr-text);
}
.legal-section__list li { margin-bottom: 6px; }
.legal-section__lead + .legal-section__list,
.legal-section__paragraph + .legal-section__list { margin-top: -6px; }
.legal-section a { color: var(--whispr-primary); text-decoration: underline; text-underline-offset: 2px; }
.legal-section a:hover { color: var(--whispr-secondary); }

/* ── Contact section ──────────────────────────────────────────────────────── */
.contact-section {
  background: var(--whispr-surface);
}
.contact-section__layout {
  max-width: 720px;
  margin: 56px auto 0;
}

.contact-form {
  background: var(--whispr-bg);
  border: 1px solid var(--whispr-border);
  border-radius: var(--whispr-radius-lg);
  padding: 32px;
  display: flex; flex-direction: column; gap: 20px;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) {
  .contact-form__row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 20px; }
}
.contact-form__field {
  display: flex; flex-direction: column; gap: 6px;
}
.contact-form__label {
  font-size: 13px; font-weight: 600;
  color: var(--whispr-text);
  letter-spacing: 0.01em;
}
.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--whispr-surface);
  border: 1.5px solid var(--whispr-border);
  border-radius: var(--whispr-radius);
  color: var(--whispr-text);
  font-size: 15px;
  font-family: var(--whispr-font-sans);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
  border-color: var(--whispr-primary);
  box-shadow: 0 0 0 3px rgba(var(--whispr-primary-rgb), 0.18);
}
.contact-form__input.is-invalid,
.contact-form__select.is-invalid,
.contact-form__textarea.is-invalid {
  border-color: var(--whispr-error);
}
.contact-form__textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.55;
}
.contact-form__select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%235C5C66' d='M6 8 0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-inline-end: 40px;
}
[dir="rtl"] .contact-form__select { background-position: left 14px center; }
.contact-form__turnstile {
  display: flex;
  justify-content: center;
  min-height: 65px;
}
.contact-form__actions {
  display: flex; align-items: center; flex-wrap: wrap; gap: 16px;
  justify-content: space-between;
}
.contact-form__submit {
  background: var(--whispr-gradient);
  color: #fff;
  border: none;
  border-radius: var(--whispr-radius);
  padding: 14px 28px;
  font-size: 15px; font-weight: 600;
  font-family: var(--whispr-font-sans);
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, opacity 0.2s;
  flex-shrink: 0;
}
.contact-form__submit:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(var(--whispr-primary-rgb), 0.45);
}
.contact-form__submit:disabled { opacity: 0.55; cursor: not-allowed; }
.contact-form__direct {
  font-size: 13.5px;
  color: var(--whispr-text-muted);
  margin: 0;
}
.contact-form__direct a {
  color: var(--whispr-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.contact-form__direct a:hover { color: var(--whispr-secondary); }
.contact-form__error {
  font-size: 13.5px;
  color: var(--whispr-error);
  margin: 0;
  padding: 10px 14px;
  background: rgba(176, 0, 32, 0.08);
  border: 1px solid rgba(176, 0, 32, 0.25);
  border-radius: var(--whispr-radius-sm);
}

.contact-success {
  background: rgba(6, 214, 160, 0.08);
  border: 1px solid rgba(6, 214, 160, 0.3);
  border-radius: var(--whispr-radius-lg);
  padding: 40px 32px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  gap: 12px;
}
.contact-success i {
  font-size: 40px;
  color: var(--whispr-accent);
}
.contact-success h3 {
  margin: 0;
  font-size: 1.25rem; font-weight: 700;
  color: var(--whispr-text);
}
.contact-success p {
  margin: 0;
  font-size: 15px;
  color: var(--whispr-text-muted);
  max-width: 480px;
  line-height: 1.6;
}

/* ── Scroll-to-top button ────────────────────────────────────────────────── */
.scroll-to-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 998;
  width: 44px; height: 44px;
  background: var(--whispr-gradient); color: #fff;
  border: none; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 16px rgba(63,55,201,0.35);
  opacity: 0; transform: translateY(12px); pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.scroll-to-top.is-visible {
  opacity: 1; transform: translateY(0); pointer-events: auto;
}
.scroll-to-top:hover { box-shadow: 0 6px 20px rgba(63,55,201,0.5); }
[dir="rtl"] .scroll-to-top { right: auto; left: 24px; }
@media (prefers-reduced-motion: reduce) { .scroll-to-top { transition: none; } }

/* ── Delete-account banner (red variant) ─────────────────────────────────── */
.legal-banner--delete,
[data-bs-theme="light"] .legal-banner--delete {
  background: linear-gradient(150deg, #3a0e20 0%, #5a1a10 40%, #2a0a35 100%);
}
[data-bs-theme="dark"] .legal-banner--delete {
  background: linear-gradient(150deg, #1a0a0a 0%, #2a1010 40%, #1a0d1a 100%);
}
.legal-banner__pill--delete {
  background: rgba(176,0,32,0.18);
  border-color: rgba(255,107,107,0.35);
  color: #ffb3b3;
}
.legal-banner__pill--delete .legal-banner__pill-dot { background: #ff6b6b; }

.legal-banner__data-line { animation: data-wipe 3.2s ease-in-out infinite; }
.legal-banner__data-line--1 { animation-delay: 0s; }
.legal-banner__data-line--2 { animation-delay: 0.4s; }
.legal-banner__data-line--3 { animation-delay: 0.8s; }
@keyframes data-wipe {
  0%   { stroke-dashoffset: 200; opacity: 0; }
  20%  { opacity: 1; }
  60%  { stroke-dashoffset: 0; opacity: 0.9; }
  100% { stroke-dashoffset: -200; opacity: 0; }
}

.legal-banner__del-ring { transform-origin: 720px 120px; animation: ring-expand 2.6s ease-out infinite; }
.legal-banner__del-ring--1 { animation-delay: 0s; }
.legal-banner__del-ring--2 { animation-delay: 0.85s; }
.legal-banner__del-ring--3 { animation-delay: 1.7s; }
@keyframes ring-expand {
  0%   { transform: scale(0.4); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}

.legal-banner__trash    { transform-origin: 720px 120px; animation: float-icon 4s ease-in-out infinite; }
.legal-banner__del-lock { transform-origin: 1100px 80px; animation: float-icon 3.6s ease-in-out infinite; animation-delay: 0.6s; }
.legal-banner__del-shield { transform-origin: 340px 90px; animation: shield-crack 4.2s ease-in-out infinite; animation-delay: 0.3s; }
@keyframes float-icon {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@keyframes shield-crack {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-4px) rotate(-2deg); }
}

.legal-banner__del-particle {
  animation: fade-drift 2.4s ease-out infinite;
  transform-origin: center;
}
.legal-banner__del-particle:nth-of-type(1) { animation-delay: 0s; }
.legal-banner__del-particle:nth-of-type(2) { animation-delay: 0.3s; }
.legal-banner__del-particle:nth-of-type(3) { animation-delay: 0.6s; }
.legal-banner__del-particle:nth-of-type(4) { animation-delay: 0.9s; }
.legal-banner__del-particle:nth-of-type(5) { animation-delay: 1.2s; }
.legal-banner__del-particle:nth-of-type(6) { animation-delay: 1.5s; }
@keyframes fade-drift {
  0%   { transform: translate(0,0)        scale(0.6); opacity: 0; }
  20%  { opacity: 1; }
  100% { transform: translate(var(--dx), var(--dy)) scale(1); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .legal-banner__data-line, .legal-banner__del-ring,
  .legal-banner__trash, .legal-banner__del-lock, .legal-banner__del-shield,
  .legal-banner__del-particle { animation: none; }
}

/* ── Delete-account page content ─────────────────────────────────────────── */
.deletion-page { max-width: 920px; margin: 0 auto; }

.deletion-intro {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--whispr-text);
  margin: 0 0 2.5rem;
}
.deletion-intro strong { color: var(--whispr-text); font-weight: 700; }

.deletion-block { margin: 3rem 0; }

.deletion-eyebrow {
  display: inline-block;
  margin: 0 0 0.5rem;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--whispr-secondary);
}
.deletion-title {
  margin: 0 0 1.5rem;
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--whispr-text);
}

/* — Step 1: option cards — */
.deletion-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 768px) { .deletion-options { grid-template-columns: 1fr; } }

.deletion-option {
  position: relative;
  padding: 1.5rem;
  background: var(--whispr-surface);
  border: 1px solid var(--whispr-border);
  border-radius: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.deletion-option:hover {
  transform: translateY(-2px);
  border-color: rgba(123,47,247,0.35);
  box-shadow: 0 10px 30px rgba(63,55,201,0.12);
}
.deletion-option--inapp { border-top: 3px solid var(--whispr-accent); }
.deletion-option--email { border-top: 3px solid var(--whispr-secondary); }

.deletion-option__header {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.deletion-option__num {
  flex: 0 0 auto;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--whispr-gradient);
  color: #fff; font-weight: 700; font-size: 14px;
  display: inline-flex; align-items: center; justify-content: center;
}
.deletion-option__title {
  flex: 1 1 auto;
  margin: 0; font-size: 1.125rem; font-weight: 700;
  color: var(--whispr-text);
}
.deletion-option__badge {
  flex: 0 0 auto;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(6,214,160,0.12);
  color: var(--whispr-accent);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.deletion-option__desc {
  margin: 0 0 1rem;
  font-size: 0.9375rem; line-height: 1.6;
  color: var(--whispr-text-muted);
}
.deletion-option__steps {
  list-style: none; padding: 0; margin: 0 0 1rem;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.deletion-option__step {
  display: flex; align-items: center; gap: 0.625rem;
  font-size: 0.9375rem; color: var(--whispr-text);
}
.deletion-option__step-icon {
  flex: 0 0 auto;
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(63,55,201,0.10);
  color: var(--whispr-primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.deletion-option__email-line {
  display: flex; align-items: center; gap: 0.5rem;
  margin: 0.75rem 0 0; padding-top: 0.75rem;
  border-top: 1px dashed var(--whispr-border);
  font-size: 0.9375rem;
}
.deletion-option__email-line i { color: var(--whispr-secondary); }
.deletion-option__email-link {
  color: var(--whispr-secondary);
  font-weight: 600;
  text-decoration: none;
  word-break: break-all;
}
.deletion-option__email-link:hover { text-decoration: underline; }

/* — Step 2: deleted items grid — */
.deleted-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.875rem;
}
.deleted-item {
  display: flex; align-items: flex-start; gap: 0.875rem;
  padding: 1rem 1.125rem;
  background: var(--whispr-surface);
  border: 1px solid var(--whispr-border);
  border-radius: 12px;
}
.deleted-icon {
  flex: 0 0 auto;
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(176,0,32,0.10);
  color: #d32f2f;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px;
}
[data-bs-theme="dark"] .deleted-icon { background: rgba(255,107,107,0.12); color: #ff6b6b; }
.deleted-item__body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.deleted-item__text { font-size: 0.9375rem; font-weight: 600; color: var(--whispr-text); }
.deleted-item__sub  { font-size: 0.8125rem; color: var(--whispr-text-muted); line-height: 1.5; }

/* — Step 3: timeline — */
.deletion-timeline {
  list-style: none; padding: 0; margin: 0;
  position: relative;
  display: flex; flex-direction: column; gap: 1.25rem;
}
.deletion-timeline::before {
  content: ""; position: absolute;
  inset-inline-start: 19px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--whispr-secondary), transparent);
  opacity: 0.35;
}
.deletion-timeline__item {
  position: relative;
  display: flex; align-items: flex-start; gap: 1rem;
  padding-inline-start: 0;
}
.deletion-timeline__dot {
  position: relative; z-index: 1;
  flex: 0 0 auto;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--whispr-surface);
  border: 2px solid var(--whispr-border);
  color: var(--whispr-text-muted);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.deletion-timeline__dot--active {
  background: var(--whispr-gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(123,47,247,0.35);
}
.deletion-timeline__body { padding-top: 4px; }
.deletion-timeline__time {
  margin: 0 0 2px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--whispr-secondary);
}
.deletion-timeline__title {
  margin: 0 0 4px;
  font-size: 1.0625rem; font-weight: 700;
  color: var(--whispr-text);
}
.deletion-timeline__desc {
  margin: 0;
  font-size: 0.9375rem; line-height: 1.6;
  color: var(--whispr-text-muted);
}

/* — Warning callout — */
.deletion-warning {
  display: flex; align-items: flex-start; gap: 0.875rem;
  margin: 2.5rem 0 0;
  padding: 1.125rem 1.25rem;
  background: rgba(245,124,0,0.08);
  border: 1px solid rgba(245,124,0,0.28);
  border-inline-start: 4px solid var(--whispr-warning, #F57C00);
  border-radius: 12px;
}
.deletion-warning__icon {
  flex: 0 0 auto;
  font-size: 22px;
  color: var(--whispr-warning, #F57C00);
  line-height: 1;
}
.deletion-warning__text {
  margin: 0;
  font-size: 0.9375rem; line-height: 1.6;
  color: var(--whispr-text);
}
.deletion-warning__text strong { color: var(--whispr-warning, #F57C00); font-weight: 700; }

/* ── Knowledge Base ──────────────────────────────────────────────────────
   Sidebar tree + article + ToC layout, copied from the Claude Design bundle
   and re-bound to the project's --whispr-* tokens for theme + RTL support.
   --------------------------------------------------------------------- */
.kb-page { --kb-sb-w: 280px; }

/* Banner */
.kb-banner {
  position: relative;
  background: linear-gradient(160deg, #08081A 0%, #0E0E24 55%, #0C0C1C 100%);
  padding: 56px 24px 52px;
}
.kb-banner__svg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; overflow: hidden;
}
.kb-banner__inner {
  position: relative; max-width: 1280px; margin: 0 auto;
  z-index: 1;
}
.kb-banner__breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(230,230,234,0.6); margin-bottom: 20px;
}
.kb-banner__breadcrumb a { color: rgba(230,230,234,0.6); transition: color .15s; text-decoration: none; }
.kb-banner__breadcrumb a:hover { color: #E6E6EA; }
.kb-banner__breadcrumb i { font-size: 10px; }
[dir="rtl"] .kb-banner__breadcrumb i { transform: scaleX(-1); }

.kb-banner__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(63,55,201,0.15); border: 1px solid rgba(63,55,201,0.3);
  border-radius: 100px; padding: 5px 14px; margin-bottom: 20px;
  font-size: 12px; font-weight: 600; color: #9A9AB8;
  letter-spacing: .07em; text-transform: uppercase;
}
.kb-banner__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 700;
  color: #fff; line-height: 1.1; margin: 0 0 14px; max-width: 640px;
}
.kb-banner__sub {
  font-size: clamp(.95rem, 1.5vw, 1.1rem); color: #9A9AA8;
  max-width: 520px; line-height: 1.65; margin: 0 0 28px;
}
.kb-banner__search {
  display: flex; align-items: center; gap: 0; max-width: 480px;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.14);
  border-radius: 14px; overflow: hidden;
  transition: border-color .2s; position: relative;
}
.kb-banner__search:focus-within { border-color: rgba(63,55,201,0.7); }
.kb-banner__search > i { padding: 0 14px; font-size: 16px; color: #9A9AA8; flex-shrink: 0; }
.kb-banner__search input {
  flex: 1; background: transparent; border: none; outline: none;
  color: #E6E6EA; font: inherit; font-size: 15px;
  padding: 13px 0 13px 4px;
}
.kb-banner__search input::placeholder { color: #5A5A70; }
.kb-banner__search kbd {
  flex-shrink: 0; margin: 8px 10px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px; padding: 2px 8px; font-size: 11px; color: #6A6A80;
  font-family: inherit;
}

/* Search results dropdown */
.kb-banner__results {
  position: absolute; left: 0; right: 0; top: 100%;
  max-width: 480px; margin-top: 8px;
  background: #14141C; border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px; padding: 6px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
  z-index: 950; max-height: 60vh; overflow-y: auto;
}
.kb-banner__results a {
  display: block; padding: 10px 14px; border-radius: 10px;
  color: #E6E6EA; text-decoration: none; font-size: 14px;
}
.kb-banner__results a:hover { background: rgba(63,55,201,0.18); }
.kb-banner__results a strong { display: block; font-weight: 600; margin-bottom: 2px; }
.kb-banner__results a span { color: #9A9AA8; font-size: 12.5px; }
.kb-banner__results .kb-banner__results-empty {
  padding: 14px; color: #9A9AA8; font-size: 13px; text-align: center;
}

/* Layout */
.kb-layout {
  display: grid;
  grid-template-columns: var(--kb-sb-w) 1fr;
  min-height: calc(100vh - 220px);
  max-width: 1280px; margin: 0 auto;
}
@media (max-width: 900px) {
  .kb-layout { grid-template-columns: 1fr; }
  .kb-sidebar { display: none; }
  .kb-sidebar.is-mobile-open {
    display: block; position: fixed; inset: 0; z-index: 800;
    padding-top: 80px; overflow-y: auto;
  }
}

/* Sidebar */
.kb-sidebar {
  border-right: 1px solid var(--whispr-border);
  padding: 24px 0;
  position: sticky; top: 0;
  height: 100vh; overflow-y: auto;
  background: var(--whispr-bg, var(--whispr-surface));
}
[dir="rtl"] .kb-sidebar { border-right: none; border-left: 1px solid var(--whispr-border); }
.kb-sidebar::-webkit-scrollbar { width: 3px; }
.kb-sidebar::-webkit-scrollbar-thumb { background: rgba(63,55,201,0.3); border-radius: 3px; }

.kb-sidebar__search {
  margin: 0 16px 20px;
  display: flex; align-items: center; gap: 8px;
  background: var(--whispr-surface); border: 1px solid var(--whispr-border);
  border-radius: 10px; padding: 8px 12px;
  transition: border-color .2s;
}
.kb-sidebar__search:focus-within { border-color: rgba(63,55,201,0.5); }
.kb-sidebar__search i { color: var(--whispr-text-muted); font-size: 14px; flex-shrink: 0; }
.kb-sidebar__search input {
  background: transparent; border: none; outline: none;
  color: var(--whispr-text); font: inherit; font-size: 13.5px; width: 100%;
}
.kb-sidebar__search input::placeholder { color: var(--whispr-text-muted); }

.kb-tree__group { margin-bottom: 6px; }
.kb-tree__group-header {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 7px 20px; cursor: pointer;
  background: transparent; border: none;
  font: inherit; font-size: 11px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--whispr-text-muted); transition: color .15s;
}
.kb-tree__group-header:hover { color: var(--whispr-text); }
.kb-tree__group-label { display: inline-flex; align-items: center; gap: 7px; }
.kb-tree__group-label i { font-size: 13px; }
.kb-tree__chevron { font-size: 10px; transition: transform .2s cubic-bezier(.2,.8,.2,1); }
.kb-tree__group-header.is-open .kb-tree__chevron { transform: rotate(90deg); }
[dir="rtl"] .kb-tree__chevron { transform: scaleX(-1); }
[dir="rtl"] .kb-tree__group-header.is-open .kb-tree__chevron { transform: rotate(-90deg) scaleX(-1); }

.kb-tree__items { list-style: none; padding: 0; margin: 0; overflow: hidden; }
.kb-tree__item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 20px 8px 28px;
  font-size: 13.5px; color: var(--whispr-text-muted); cursor: pointer;
  border-left: 2px solid transparent;
  transition: color .15s, border-color .15s, background .15s;
  text-decoration: none;
}
[dir="rtl"] .kb-tree__item {
  padding: 8px 28px 8px 20px;
  border-left: none; border-right: 2px solid transparent;
}
.kb-tree__item:hover { color: var(--whispr-text); background: rgba(63,55,201,0.05); text-decoration: none; }
.kb-tree__item.is-active {
  color: var(--whispr-primary); border-left-color: var(--whispr-primary);
  background: rgba(63,55,201,0.08); font-weight: 600;
}
[dir="rtl"] .kb-tree__item.is-active { border-left-color: transparent; border-right-color: var(--whispr-primary); }
.kb-tree__item-label { flex: 1; min-width: 0; }
.kb-tree__item-tag {
  margin-left: auto; background: rgba(63,55,201,0.12);
  color: var(--whispr-primary); border-radius: 100px;
  padding: 2px 7px; font-size: 10px; font-weight: 700;
  letter-spacing: .04em;
}
[dir="rtl"] .kb-tree__item-tag { margin-left: 0; margin-right: auto; }

/* Content */
.kb-content { padding: 40px 48px 80px; min-width: 0; }
@media (max-width: 900px) { .kb-content { padding: 32px 20px 60px; } }

.kb-content__inner {
  display: grid; grid-template-columns: 1fr 220px; gap: 48px; align-items: start;
}
@media (max-width: 1100px) {
  .kb-content__inner { grid-template-columns: 1fr; }
  .kb-toc { display: none; }
}

.kb-article__meta {
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap; margin-bottom: 28px;
}
.kb-article__tag {
  background: rgba(63,55,201,0.1); color: var(--whispr-primary);
  border-radius: 100px; padding: 4px 12px; font-size: 12px; font-weight: 600;
}
.kb-article__date, .kb-article__read {
  font-size: 12px; color: var(--whispr-text-muted);
  display: inline-flex; align-items: center; gap: 4px;
}

.kb-article__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 700;
  color: var(--whispr-text); line-height: 1.2; margin: 0 0 12px;
}
.kb-article__lead {
  font-size: 1.05rem; color: var(--whispr-text-muted); line-height: 1.7;
  margin: 0 0 32px; padding-bottom: 32px;
  border-bottom: 1px solid var(--whispr-border);
}

/* Share */
.kb-share { display: flex; align-items: center; gap: 8px; margin-bottom: 36px; flex-wrap: wrap; }
.kb-share__label {
  font-size: 12px; font-weight: 600; color: var(--whispr-text-muted);
  letter-spacing: .06em; text-transform: uppercase; margin-right: 4px;
}
[dir="rtl"] .kb-share__label { margin-right: 0; margin-left: 4px; }
.kb-share__btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 10px; border: 1px solid var(--whispr-border);
  font-size: 13px; font-weight: 500; color: var(--whispr-text-muted);
  background: var(--whispr-surface); transition: all .15s; white-space: nowrap;
  font: inherit; font-size: 13px; cursor: pointer; text-decoration: none;
}
.kb-share__btn:hover {
  border-color: var(--whispr-primary); color: var(--whispr-primary);
  background: rgba(63,55,201,0.06); text-decoration: none;
}
.kb-share__btn.is-copied {
  border-color: var(--whispr-accent); color: var(--whispr-accent);
  background: rgba(6,214,160,0.08);
}
.kb-share__btn i { font-size: 14px; }

/* Article body typography */
.kb-article__body { font-size: 15.5px; line-height: 1.75; color: var(--whispr-text); }
.kb-article__body h2 {
  font-size: 1.35rem; font-weight: 700; color: var(--whispr-text);
  margin: 40px 0 14px; padding-bottom: 10px;
  border-bottom: 1px solid var(--whispr-border);
}
.kb-article__body h3 {
  font-size: 1.1rem; font-weight: 600; color: var(--whispr-text);
  margin: 28px 0 10px;
}
.kb-article__body p { margin-bottom: 16px; }
.kb-article__body ul,
.kb-article__body ol { margin: 0 0 16px 20px; }
[dir="rtl"] .kb-article__body ul,
[dir="rtl"] .kb-article__body ol { margin: 0 20px 16px 0; }
.kb-article__body li { margin-bottom: 6px; }
.kb-article__body strong { font-weight: 600; color: var(--whispr-text); }
.kb-article__body a { color: var(--whispr-primary); }
.kb-article__body code {
  background: rgba(63,55,201,0.1); color: var(--whispr-primary);
  border-radius: 5px; padding: 2px 7px; font-size: 13.5px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.kb-article__body pre {
  background: var(--whispr-surface); border: 1px solid var(--whispr-border);
  border-radius: 12px; padding: 20px; overflow-x: auto;
  margin: 20px 0; font-size: 13.5px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.kb-article__body .callout {
  background: linear-gradient(135deg, rgba(63,55,201,0.08), rgba(123,47,247,0.06));
  border: 1px solid rgba(63,55,201,0.2); border-radius: 14px;
  padding: 18px 20px; margin: 24px 0;
  display: flex; gap: 14px; align-items: flex-start;
}
.kb-article__body .callout i { font-size: 18px; color: var(--whispr-primary); flex-shrink: 0; margin-top: 2px; }
.kb-article__body .callout p { margin: 0; font-size: 14.5px; color: var(--whispr-text-muted); }
.kb-article__body .callout strong { color: var(--whispr-text); }

.kb-article__body .tip {
  background: rgba(6,214,160,0.07); border: 1px solid rgba(6,214,160,0.25);
  border-radius: 14px; padding: 16px 20px; margin: 24px 0;
  display: flex; gap: 14px; align-items: flex-start;
}
.kb-article__body .tip i { font-size: 16px; color: var(--whispr-accent); flex-shrink: 0; margin-top: 2px; }
.kb-article__body .tip p { margin: 0; font-size: 14.5px; color: var(--whispr-text-muted); }

.kb-article__body .compare-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14px; }
.kb-article__body .compare-table th {
  background: var(--whispr-surface); border: 1px solid var(--whispr-border);
  padding: 10px 16px; font-weight: 600; color: var(--whispr-text); text-align: left;
}
[dir="rtl"] .kb-article__body .compare-table th { text-align: right; }
.kb-article__body .compare-table td {
  border: 1px solid var(--whispr-border); padding: 10px 16px; color: var(--whispr-text-muted);
}
.kb-article__body .compare-table tr:hover td { background: rgba(63,55,201,0.03); }
.kb-article__body .check { color: var(--whispr-accent); font-size: 15px; }
.kb-article__body .dash { color: var(--whispr-text-muted); opacity: .5; }

/* Article nav (prev/next) */
.kb-article__nav {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--whispr-border);
}
.kb-article__nav-link {
  display: flex; flex-direction: column; gap: 4px;
  background: var(--whispr-surface); border: 1px solid var(--whispr-border);
  border-radius: 14px; padding: 16px 20px;
  text-decoration: none; transition: border-color .15s, box-shadow .15s;
}
.kb-article__nav-link:hover {
  border-color: rgba(63,55,201,0.4); box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-decoration: none;
}
.kb-article__nav-dir {
  font-size: 11px; color: var(--whispr-text-muted); font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  display: flex; align-items: center; gap: 5px;
}
.kb-article__nav-title { font-size: 14px; font-weight: 600; color: var(--whispr-text); }
.kb-article__nav-link--next { text-align: right; }
.kb-article__nav-link--next .kb-article__nav-dir { justify-content: flex-end; }
[dir="rtl"] .kb-article__nav-link--next { text-align: left; }
[dir="rtl"] .kb-article__nav-link--next .kb-article__nav-dir { justify-content: flex-start; }
[dir="rtl"] .kb-article__nav-dir i { transform: scaleX(-1); }

/* ToC */
.kb-toc { position: sticky; top: 100px; }
.kb-toc__label {
  font-size: 11px; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: var(--whispr-text-muted); margin-bottom: 12px;
}
.kb-toc__item {
  display: block; font-size: 13px; color: var(--whispr-text-muted);
  padding: 5px 0 5px 12px; border-left: 2px solid var(--whispr-border);
  cursor: pointer; transition: color .15s, border-color .15s;
  text-decoration: none; line-height: 1.4;
}
[dir="rtl"] .kb-toc__item { padding: 5px 12px 5px 0; border-left: none; border-right: 2px solid var(--whispr-border); }
.kb-toc__item:hover,
.kb-toc__item.is-active {
  color: var(--whispr-primary); border-left-color: var(--whispr-primary);
}
[dir="rtl"] .kb-toc__item:hover,
[dir="rtl"] .kb-toc__item.is-active { border-left-color: transparent; border-right-color: var(--whispr-primary); }
.kb-toc__item--sub { padding-left: 22px; font-size: 12px; }
[dir="rtl"] .kb-toc__item--sub { padding-left: 0; padding-right: 22px; }

/* Helpful */
.kb-helpful {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  background: var(--whispr-surface); border: 1px solid var(--whispr-border);
  border-radius: 14px; padding: 18px 24px; margin-top: 48px;
}
.kb-helpful > span { font-size: 14px; color: var(--whispr-text-muted); flex: 1; min-width: 160px; }
.kb-helpful__btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px; border-radius: 10px; border: 1px solid var(--whispr-border);
  font: inherit; font-size: 13px; font-weight: 500;
  color: var(--whispr-text-muted); cursor: pointer;
  background: transparent; transition: all .15s;
}
.kb-helpful__btn:hover { border-color: var(--whispr-primary); color: var(--whispr-primary); }
.kb-helpful__btn--yes:hover { border-color: var(--whispr-accent); color: var(--whispr-accent); }

/* Mobile sidebar toggle FAB */
.kb-mobile-toggle {
  display: none; position: fixed; bottom: 24px; right: 24px; z-index: 850;
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--whispr-gradient); border: none; color: #fff; font-size: 20px;
  box-shadow: 0 4px 16px rgba(63,55,201,0.45); cursor: pointer;
  align-items: center; justify-content: center;
}
[dir="rtl"] .kb-mobile-toggle { right: auto; left: 24px; }
@media (max-width: 900px) { .kb-mobile-toggle { display: flex; } }

@media (prefers-reduced-motion: reduce) {
  .kb-banner__svg * { animation: none !important; }
}
