/* =====================================================
   Ashley Bandiki — Site Styles
   Built by Kapture Studio aesthetic — premium, cinematic
   ===================================================== */

:root {
  --bg: #ffffff;
  --fg: #0a0a0a;
  --muted: #6b6b6b;
  --border: #e5e5e5;
  --card: #f7f7f7;
  --card-hover: #efefef;
  --accent: #ff2d2d;
  --button-bg: #0a0a0a;
  --button-fg: #ffffff;
  --button-outline: #0a0a0a;
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.04);
  --radius: 12px;
  --radius-lg: 18px;
  --max: 1280px;
  --pad: clamp(20px, 4vw, 64px);
  --font-display: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

[data-theme="dark"] {
  --bg: #0a0a0a;
  --fg: #f5f5f5;
  --muted: #9a9a9a;
  --border: #1d1d1d;
  --card: #111111;
  --card-hover: #161616;
  --accent: #ff3030;
  --button-bg: #f5f5f5;
  --button-fg: #0a0a0a;
  --button-outline: #f5f5f5;
  --shadow: 0 1px 3px rgba(0,0,0,0.3), 0 8px 24px rgba(0,0,0,0.4);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

img, video, iframe { max-width: 100%; display: block; }

button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

input, textarea, select {
  font: inherit;
  color: inherit;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  width: 100%;
  transition: border-color 0.2s ease, background 0.2s ease;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--fg);
}

::selection { background: var(--fg); color: var(--bg); }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

h1 { font-size: clamp(2.4rem, 6vw, 5.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); letter-spacing: -0.01em; }
h4 { font-size: 1.05rem; letter-spacing: 0; }

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.eyebrow .dot {
  display: inline-block;
  margin: 0 12px;
  opacity: 0.6;
}

p.lede { font-size: 1.15rem; color: var(--muted); max-width: 60ch; }

/* ============ LAYOUT ============ */
.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

section { padding: clamp(60px, 10vw, 120px) 0; }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: clamp(20px, 3vw, 44px);
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.98rem;
  position: relative;
  padding: 6px 0;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.nav-links a:hover, .nav-links a.active { opacity: 1; }

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
}

.nav-actions { display: flex; align-items: center; gap: 12px; }

.theme-toggle {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.theme-toggle:hover { border-color: var(--fg); transform: rotate(15deg); }

.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.005em;
  white-space: nowrap;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  border: 1px solid transparent;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--button-bg);
  color: var(--button-fg);
}
.btn-primary:hover { background: var(--fg); color: var(--bg); }

.btn-outline {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--button-outline);
}
.btn-outline:hover { background: var(--button-bg); color: var(--button-fg); }

.btn-sm { padding: 10px 18px; font-size: 0.9rem; border-radius: 8px; }

.btn-ghost { color: var(--fg); padding: 10px 0; }
.btn-ghost:hover { opacity: 0.7; }

/* ============ MOBILE NAV ============ */
.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.menu-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--fg);
  margin: 4px auto;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

@media (max-width: 880px) {
  .nav-links {
    position: fixed;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    background: var(--bg);
    padding: 32px var(--pad);
    gap: 24px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    transition: transform 0.35s cubic-bezier(.2,.8,.2,1);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { font-size: 1.4rem; font-weight: 700; }
  .menu-toggle { display: block; }
  .nav .btn-outline { display: none; }
  .nav-inner { gap: 12px; }
}

/* ============ HERO (Home) — 100vh fit ============ */
.hero {
  text-align: center;
  min-height: calc(100svh - 76px);
  min-height: calc(100vh - 76px); /* fallback */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(16px, 3vh, 32px) 0;
  box-sizing: border-box;
}

.hero .wrap { width: 100%; }

.hero-video {
  position: relative;
  width: auto;
  height: clamp(160px, 40vh, 420px);
  aspect-ratio: 16 / 9;
  max-width: min(760px, 86vw);
  margin: 0 auto clamp(24px, 4.5vh, 48px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow);
}

.hero-video iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

.hero-eyebrow {
  margin-bottom: clamp(14px, 2.5vh, 24px);
}

.hero h1 {
  font-size: clamp(1.8rem, min(6.5vw, 7.5vh), 5.2rem);
  font-weight: 800;
  margin-bottom: clamp(20px, 4vh, 36px);
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.05;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Short-screen tweak — keep video visible on laptops with 600-720px height */
@media (max-height: 720px) {
  .hero-video { height: clamp(150px, 36vh, 340px); }
  .hero h1 { font-size: clamp(1.6rem, min(5.5vw, 6.5vh), 3.8rem); }
}

/* Wide-aspect tweak — ultrawide monitors */
@media (min-aspect-ratio: 21/9) {
  .hero-video { height: clamp(180px, 42vh, 360px); }
}

/* ============ SECTION HEADER ============ */
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.section-head .eyebrow { display: block; margin-bottom: 12px; }

/* ============ THREE-COLUMN ============ */
.tri-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 880px) { .tri-grid { grid-template-columns: 1fr; } }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  background: var(--card-hover);
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--fg) 25%, var(--border));
}

.card-thumb {
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  margin-bottom: 20px;
  position: relative;
}

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

.card-thumb iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.card .tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.card h3 { margin-bottom: 12px; }

.card p { color: var(--muted); font-size: 0.95rem; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-weight: 600;
  font-size: 0.92rem;
}

.card-link::after { content: "→"; transition: transform 0.2s ease; }
.card:hover .card-link::after { transform: translateX(4px); }

/* ============ NEWSLETTER STRIP ============ */
.newsletter-strip {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
}

.newsletter-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 760px) { .newsletter-grid { grid-template-columns: 1fr; } }

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input { flex: 1; }

/* ============ CAMPAIGN BLOCK ============ */
.campaign {
  background: var(--fg);
  color: var(--bg);
  padding: clamp(60px, 10vw, 110px) 0;
  position: relative;
  overflow: hidden;
}

.campaign-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 880px) { .campaign-grid { grid-template-columns: 1fr; gap: 30px; } }

.campaign h2 { font-size: clamp(2.4rem, 6vw, 4.4rem); margin-bottom: 18px; }
.campaign p { font-size: 1.1rem; opacity: 0.75; max-width: 50ch; margin-bottom: 28px; }

.campaign .btn-primary {
  background: var(--bg);
  color: var(--fg);
}
.campaign .btn-primary:hover { background: transparent; color: var(--bg); border-color: var(--bg); }

.campaign-meta {
  list-style: none;
  display: grid;
  gap: 18px;
}
.campaign-meta li {
  display: flex;
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid color-mix(in srgb, var(--bg) 18%, transparent);
}
.campaign-meta li:last-child { border-bottom: 1px solid color-mix(in srgb, var(--bg) 18%, transparent); }
.campaign-meta strong { display: block; margin-bottom: 4px; }
.campaign-meta span { opacity: 0.7; font-size: 0.95rem; }

/* ============ SOCIAL ROW ============ */
.socials {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.9rem;
  font-weight: 600;
  transition: border-color 0.2s, background 0.2s;
}

.social-pill:hover { border-color: var(--fg); background: var(--card); }

.social-pill svg { width: 16px; height: 16px; }

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
  background: var(--bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 56px;
}

@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

.footer h4 {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
  font-weight: 600;
}

.footer ul { list-style: none; display: grid; gap: 12px; }

.footer a { font-size: 0.95rem; opacity: 0.8; transition: opacity 0.2s; }
.footer a:hover { opacity: 1; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom .credit a { text-decoration: underline; }

.footer-newsletter {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.footer-newsletter input { padding: 11px 14px; font-size: 0.9rem; }
.footer-newsletter button { padding: 11px 16px; font-size: 0.9rem; border-radius: 8px; }

/* ============ EPISODE GRID (Verdict) ============ */
.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  align-items: center;
}

.filters .search {
  flex: 1 1 240px;
  max-width: 360px;
  position: relative;
}
.filters .search input { padding-left: 42px; }
.filters .search svg {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  opacity: 0.5;
  pointer-events: none;
}

.filter-chip {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.88rem;
  font-weight: 600;
  background: transparent;
  transition: all 0.2s;
}

.filter-chip:hover { border-color: var(--fg); }
.filter-chip.active {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}

.episodes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.episode { display: block; }

.episode .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 14px;
}

.episode .meta .duration {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ============ CLIPS / TIKTOK ============ */
.clips-rail {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 18px;
  margin: 0 calc(var(--pad) * -1);
  padding-left: var(--pad);
  padding-right: var(--pad);
  scrollbar-width: thin;
}

.clips-rail::-webkit-scrollbar { height: 6px; }
.clips-rail::-webkit-scrollbar-thumb { background: var(--border); border-radius: 999px; }

.clip {
  flex: 0 0 240px;
  aspect-ratio: 9/16;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  scroll-snap-align: start;
  position: relative;
  border: 1px solid var(--border);
}

.clip iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ============ ABOUT PAGE ============ */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 880px) { .about-hero { grid-template-columns: 1fr; } }

.about-photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card);
}

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

.story-prose {
  max-width: 65ch;
  margin: 0 auto;
}

.story-prose p {
  font-size: 1.05rem;
  margin-bottom: 1.4em;
  line-height: 1.7;
}

.story-prose p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  float: left;
  line-height: 1;
  margin: 6px 12px 0 0;
}

.quote-block {
  text-align: center;
  padding: 80px 0;
  max-width: 800px;
  margin: 0 auto;
}

.quote-block blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.quote-block cite {
  display: block;
  margin-top: 24px;
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.credentials {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.cred {
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.cred .year {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 8px;
}

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.service-card {
  padding: 36px 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, background 0.2s ease;
}

.service-card:hover { transform: translateY(-4px); background: var(--card-hover); }

.service-num {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 24px;
}

.service-card h3 { margin-bottom: 14px; font-size: 1.5rem; }

.service-card p { color: var(--muted); flex: 1; margin-bottom: 28px; }

.media-kit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
}

.media-kit p { color: var(--muted); margin-top: 6px; }

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info h3 { margin-bottom: 14px; }
.contact-info p { color: var(--muted); margin-bottom: 28px; }

.contact-list { list-style: none; display: grid; gap: 22px; }
.contact-list strong { display: block; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; font-weight: 600; }
.contact-list a { font-weight: 600; }

.form-grid {
  display: grid;
  gap: 16px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-grid textarea { min-height: 160px; resize: vertical; }

/* ============ READLIST ============ */
.reading-now {
  padding: 36px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 56px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
}
@media (max-width: 600px) { .reading-now { grid-template-columns: 1fr; } }

.reading-now .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 10px;
}

.reading-now .badge::before {
  content: "";
  width: 8px; height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.reading-now h3 { font-size: 1.6rem; }
.reading-now .author { color: var(--muted); margin: 4px 0 12px; }

.read-list { display: grid; gap: 4px; }

.read-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px 4px;
  border-bottom: 1px solid var(--border);
  transition: padding 0.2s ease;
}

.read-item:hover { padding-left: 12px; }

.read-item h3 { font-size: 1.15rem; margin-bottom: 4px; }
.read-item .by { color: var(--muted); font-size: 0.95rem; margin-bottom: 8px; }
.read-item .note { font-size: 0.95rem; max-width: 60ch; }

.read-item .theme {
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  white-space: nowrap;
}

@media (max-width: 600px) { .read-item { grid-template-columns: 1fr; } }

/* ============ TIKTOK FEED PLACEHOLDER ============ */
.tiktok-section {
  background: var(--card);
  padding: clamp(60px, 8vw, 100px) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.tiktok-feed {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}

.tiktok-tile {
  aspect-ratio: 9/16;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  position: relative;
  border: 1px solid var(--border);
  transition: transform 0.2s ease;
}
.tiktok-tile:hover { transform: translateY(-4px); }

.tiktok-tile iframe { width: 100%; height: 100%; border: 0; }

.tiktok-tile .play-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7));
  display: flex;
  align-items: end;
  padding: 16px;
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  pointer-events: none;
}

/* ============ UTILITIES ============ */
.center { text-align: center; }
.divider { height: 1px; background: var(--border); margin: 60px 0; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 600;
}

.fade-in { animation: fadeIn 0.6s ease both; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.success-msg { color: #1a8a3e; font-size: 0.92rem; margin-top: 12px; display: none; }
.success-msg.show { display: block; }
[data-theme="dark"] .success-msg { color: #4cd47e; }
