:root {
  --bg-cream: #f5efe2;
  --bg-black: #0b0b0d;
  --ink: #111111;
  --pink: #ff2fb0;
  --lime: #cbf24a;
  --lavender: #b9a6ff;
  --mustard: #f0c23e;
  --white: #fdfbf6;
  --border: rgba(17, 17, 17, 0.12);
  --sidebar-w: 280px;

  --bg-content: var(--bg-cream);
  --bg-sidebar: var(--bg-black);
  --text-main: var(--ink);
  --text-sidebar: var(--white);
  --border-color: var(--border);
  --card-bg-mustard: var(--mustard);
  --card-bg-lime: var(--lime);
  --card-bg-pink: var(--pink);
  --card-bg-lav: var(--lavender);

  --font-display: "Lilita One", "Arial Rounded MT Bold", sans-serif;
  --font-accent: "Fraunces", serif;
  --font-mono: "Space Mono", monospace;
  --font-body: "Inter", sans-serif;
}

[data-theme="dark"] {
  --bg-content: #141210;
  --bg-sidebar: #0a0908;
  --text-main: #f0ebe0;
  --text-sidebar: #f0ebe0;
  --border-color: rgba(240, 235, 224, 0.1);
  --ink: #f0ebe0;
  --bg-cream: #141210;
  --bg-black: #0a0908;
  --white: #f0ebe0;
  --border: rgba(240, 235, 224, 0.1);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg-content: #141210;
    --bg-sidebar: #0a0908;
    --text-main: #f0ebe0;
    --text-sidebar: #f0ebe0;
    --border-color: rgba(240, 235, 224, 0.1);
    --ink: #f0ebe0;
    --bg-cream: #141210;
    --bg-black: #0a0908;
    --white: #f0ebe0;
    --border: rgba(240, 235, 224, 0.1);
  }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg-cream);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
}

.app { display: block; }

/* sidebar removed */
.brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: radial-gradient(circle at 30% 30%, var(--pink), #6a2ee0 80%);
  font-size: 16px;
}

.brand-word { color: var(--pink); }

.brand-icon-img {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  display: block;
  flex-shrink: 0;
}

/* ============ TAG PILLS / EYEBROWS ============ */
.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(17,17,17,0.5);
  margin-bottom: 18px;
  padding: 0;
  background: none;
  border-radius: 0;
}
.tag-pill::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--ink);
}

.pill-pink::before { background: var(--pink); }
.pill-lime::before { background: var(--lime); }
.pill-lav::before { background: var(--lavender); }
.pill-mustard::before { background: var(--mustard); }

/* ============ HYPOTHESIS ============ */
.hypothesis {
  border-left: 2px solid var(--pink);
  padding-left: 24px;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  max-width: 680px;
  margin: 28px 0;
}
.hypothesis-lime { border-left-color: var(--lime); }
.hypothesis-lav { border-left-color: var(--lavender); }
.hypothesis-mustard { border-left-color: var(--mustard); }

/* ============ SECTION EMOJI ============ */
.section-emoji {
  display: inline-block;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: middle;
  position: relative;
  top: -0.05em;
  margin-right: 10px;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}

.guide-nav-item:last-child {
  border-bottom: none;
}

/* ============ GROW-TEXT GRADIENT ============ */
.grow-text {
  background-image: linear-gradient(
    90deg,
    #5b14d4,
    #9b2af5,
    #ff2d8b,
    #d42ecc,
    #7b1ff0,
    #5b14d4
  );
  background-size: 400px 100%;
  background-repeat: repeat-x;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: grad-scroll 3s linear infinite;
}
@keyframes grad-scroll {
  from { background-position: 0 0; }
  to   { background-position: 400px 0; }
}
@media (prefers-reduced-motion: reduce) {
  .grow-text { animation: none; }
}

/* ============ TOP BAR ============ */
.top-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-cream);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 14px clamp(24px, 6vw, 96px);
}
.top-bar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-weight: 900;
  font-style: italic;
  font-size: 18px;
  text-decoration: none;
  flex-shrink: 0;
}
.top-bar-nav {
  display: flex;
  gap: 28px;
  flex: 1;
}
.top-bar-nav a {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.15s;
}
.top-bar-nav a:hover { opacity: 1; }
.theme-toggle {
  margin-left: auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity 0.15s;
}
.theme-toggle:hover { opacity: 0.7; }

/* ============ CONTENT ============ */
.content {
  padding: 0 clamp(24px, 6vw, 96px) 100px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.block > p,
.block > .lead {
  max-width: 760px;
}

/* ============ HERO ============ */
.hero {
  display: flex;
  align-items: flex-start;
  gap: clamp(40px, 6vw, 100px);
  padding: clamp(60px, 8vw, 100px) 0 clamp(60px, 8vw, 80px);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.hero-icon-wrap {
  flex-shrink: 0;
  position: relative;
  align-self: flex-start;
  margin-top: 8px;
}
.hero-icon {
  width: clamp(120px, 14vw, 200px);
  height: clamp(120px, 14vw, 200px);
  border-radius: 28%;
  display: block;
  transform: rotate(-8deg);
  box-shadow: 0 24px 60px -10px rgba(0,0,0,0.28);
}

.hero-text {
  flex: 1;
  min-width: 0;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  margin: 0 0 16px;
}

.hero-title {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  margin: 0 0 28px;
  letter-spacing: -0.02em;
  text-transform: lowercase;
}

.hero-title-sub {
  display: block;
  font-family: var(--font-display);
  font-style: normal;
  font-size: clamp(27px, 3.44vw, 50px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  -webkit-text-fill-color: var(--ink);
  color: var(--ink);
  line-height: 1;
  margin-top: 4px;
}

.hero-subtitle {
  font-size: clamp(17px, 2.7vw, 33px);
  font-weight: 500;
  max-width: 560px;
  margin: 0 0 12px;
}

.hero-welcome {
  font-size: clamp(13px, 1.4vw, 22px);
  max-width: 560px;
  margin: 0 0 36px;
  color: var(--ink);
  opacity: 0.75;
}

.hl-fun {
  font-style: normal;
  background: var(--lime);
  padding: 0 5px;
  border-radius: 4px;
}
.hl-aesthetic {
  font-style: normal;
  background: var(--pink);
  color: #fff;
  padding: 0 5px;
  border-radius: 4px;
}

.hero-nav {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
  max-width: 560px;
}
.hero-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.7vw, 33px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.15s, padding-left 0.2s;
}
.hero-nav-item:hover { color: var(--pink); padding-left: 8px; }

.block {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 24px;
}
.block:last-of-type { border-bottom: none; }

.block h2 {
  font-family: var(--font-display);
  font-size: clamp(27px, 3.75vw, 48px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 20px;
  scroll-margin-top: 24px;
}

.block h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 34px);
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 48px 0 16px;
  scroll-margin-top: 24px;
}

.lead {
  font-size: 19px;
  font-weight: 500;
  max-width: 620px;
}

.lead em, p em {
  font-style: italic;
  color: #b8168a;
}

.caption {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(17,17,17,0.5);
}

code {
  background: rgba(17,17,17,0.06);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 12px;
}

/* ============ CARDS ============ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin: 20px 0;
}

.card {
  border-radius: 14px;
  padding: 18px;
  border: 1px solid rgba(17,17,17,0.08);
}

.card-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
  background: rgba(0,0,0,0.08);
  padding: 3px 8px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.card-title {
  font-weight: 800;
  font-size: 16px;
  margin: 0 0 6px;
}

.card-body {
  font-size: 13.5px;
  margin: 0;
  opacity: 0.85;
}

.card-pink { background: var(--pink); }
.card-lime { background: var(--lime); }
.card-lav { background: var(--lavender); }
.card-mustard { background: var(--mustard); }

/* ============ DIFF LIST ============ */
.diff-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 24px 0 0;
  border-top: 1px solid var(--border);
}
.diff-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  line-height: 1.5;
}
.diff-emoji {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============ SPLIT ============ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  background: var(--bg-black);
  color: var(--white);
  border-radius: 16px;
  padding: 28px;
  margin: 20px 0;
}
.split-col p:not(.eyebrow) { margin: 0; color: rgba(255,255,255,0.85); }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--lime);
  margin: 0 0 8px;
}
.split-col em { color: var(--pink); font-style: italic; }

/* ============ FEATURES ============ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 20px 0;
}
.feature {
  padding: 16px 0;
  border-top: 2px solid var(--ink);
  display: flex;
  flex-direction: column;
}
.feature-title {
  font-weight: 800;
  margin: 0 0 6px;
}
.feature-body {
  margin: 0 0 14px;
  font-size: 14px;
  opacity: 0.75;
}
.feature-shot {
  aspect-ratio: 9/16;
  border-radius: 14px;
  border: 2px dashed rgba(17,17,17,0.25);
  background: repeating-linear-gradient(135deg, rgba(17,17,17,0.03) 0 10px, transparent 10px 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: rgba(17,17,17,0.5);
  text-align: center;
  padding: 12px;
  margin-top: auto;
}
.feature-shot span { font-weight: 700; font-size: 13px; }
.feature-shot small { font-family: var(--font-mono); font-size: 10.5px; }

/* ============ LIST ROWS (non-card format) ============ */
.list-rows {
  margin: 20px 0;
  border-top: 1px solid var(--border);
}
.list-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.list-row-tag {
  flex: none;
  width: 90px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(17,17,17,0.5);
  padding-top: 3px;
}
.list-row-title {
  font-weight: 800;
  font-size: 16px;
  margin: 0 0 4px;
}
.list-row-body {
  margin: 0;
  font-size: 14px;
  opacity: 0.75;
}

/* ============ GUIDE NAV BARS ============ */
.guide-nav {
  display: flex;
  flex-direction: column;
  margin: 24px 0 0;
  border-top: 1px solid var(--border);
}
.guide-nav-item {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(18px, 2.67vw, 35px);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.15s ease, padding-left 0.2s ease;
}
.guide-nav-item:hover {
  color: var(--pink);
  padding-left: 12px;
}
.guide-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin-right: 16px;
  flex-shrink: 0;
  vertical-align: middle;
  position: relative;
  top: -2px;
}

/* ============ STAT CARDS ============ */
.stat-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin: 32px 0;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.stat-card-value {
  font-family: var(--font-display);
  font-size: clamp(36px, 3.8vw, 60px);
  line-height: 1;
  margin: 0 0 8px;
  width: max-content;
  background-image: linear-gradient(90deg, #5b14d4, #9b2af5, #ff2d8b, #d42ecc, #7b1ff0, #5b14d4);
  background-size: 400px 100%;
  background-repeat: repeat-x;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: grad-scroll 3s linear infinite;
}
.stat-card-label {
  margin: 0 0 auto;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
}
.stat-card-emoji {
  font-size: 38px;
  margin-top: 20px;
  line-height: 1;
}
.text-pink { color: var(--pink); }
.text-lime { color: #7ea312; }
.text-lav { color: #6a4fd6; }
.text-mustard { color: #8a6a10; }

/* ============ SCREENS ============ */
.screens-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin: 20px 0 8px;
}
.screen-placeholder {
  aspect-ratio: 9/16;
  border-radius: 18px;
  border: 2px dashed rgba(17,17,17,0.25);
  background: repeating-linear-gradient(135deg, rgba(17,17,17,0.03) 0 10px, transparent 10px 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: rgba(17,17,17,0.5);
  text-align: center;
  padding: 12px;
}
.screen-placeholder span { font-weight: 700; font-size: 13px; }
.screen-placeholder small { font-family: var(--font-mono); font-size: 10.5px; }

/* ============ PHONE VIDEO ROW ============ */
.video-group-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(17,17,17,0.45);
  margin: 28px 0 16px;
}
.phone-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  position: relative;
  padding: 8px 0;
}
.phone-row::before {
  content: '';
  position: absolute;
  inset: 0 0;
  top: 50%;
  height: 1px;
  background: var(--ink);
  opacity: 0.08;
  pointer-events: none;
}
.phone-row--two .phone-card { width: calc(50% - 14px); max-width: 280px; }
.phone-row--large .phone-card { max-width: 336px; }
.phone-card {
  width: calc(33.33% - 20px);
  max-width: 240px;
  flex-shrink: 0;
}
.phone-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-align: center;
  color: var(--pink);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.phone-shell {
  aspect-ratio: 9/19.5;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(17,17,17,0.1);
  background: var(--ink);
  box-shadow: 0 32px 70px -30px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}
.phone-shell:hover { transform: translateY(-8px); }
.phone-shell video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 640px) {
  .phone-card { width: calc(50% - 14px); }
  .phone-row--two .phone-card { width: calc(50% - 14px); }
}

/* ============ FEATURE PHONES (Using the App) ============ */
.feature-phones {
  display: flex;
  gap: 28px;
  margin: 28px 0 0;
  justify-content: center;
}
.feature-phone-item {
  flex: 1;
  max-width: 336px;
  display: flex;
  flex-direction: column;
}
.feature-phone-item .phone-card {
  width: 100%;
  max-width: none;
}
.feature-phone-label {
  margin: 0 0 4px;
  font-size: 15px;
  text-align: center;
}
.feature-phone-body {
  margin: 0 0 14px;
  font-size: 14px;
  opacity: 0.7;
  text-align: center;
}

.using-app-footer {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(30px, 3.8vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 48px 0 120px;
  text-transform: lowercase;
  white-space: nowrap;
}
.hl-looks {
  font-style: inherit;
  background: var(--pink);
  color: #fff;
  padding: 0 8px;
  border-radius: 6px;
}

/* ============ LISTS ============ */
.check-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: rgba(255, 47, 176, 0.12);
  color: var(--pink);
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.step-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.step-num {
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
}
.step-title {
  font-weight: 800;
  font-size: clamp(17px, 1.6vw, 22px);
  margin: 4px 0 4px;
}
.step-body {
  margin: 0;
  font-size: 14px;
  opacity: 0.75;
}
.step-price {
  font-family: var(--font-body);
  font-size: 0.82em;
  color: var(--pink);
  font-weight: 700;
  font-style: italic;
}

/* ============ CALLOUT ============ */
.callout {
  border-radius: 14px;
  padding: 18px 20px;
  margin: 24px 0;
  font-size: 14.5px;
  border: 1px solid rgba(17,17,17,0.08);
}
.callout-pink { background: #ffe3f5; }
.callout-lime { background: #f2fbd9; }
.callout-lav { background: #ece5ff; }

/* ============ EMBEDS ROW ============ */
.embeds-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 24px 0;
  align-items: flex-start;
}
.embeds-row .tiktok-embed {
  flex: 0 0 325px;
  margin: 0 !important;
}

/* ============ FAQ ============ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}
.faq-item {
  border: 1px solid rgba(17,17,17,0.12);
  border-radius: 12px;
  padding: 14px 18px;
  background: var(--white);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 15.5px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 20px;
  color: var(--pink);
  transition: transform 0.15s ease;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  margin: 12px 0 2px;
  font-size: 14.5px;
  opacity: 0.85;
}

/* ============ FOOTER ============ */
.footer {
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer p {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(17,17,17,0.5);
  margin: 0;
}

/* ============ MOBILE ============ */
@media (max-width: 720px) {
  .top-bar-nav { display: none; }
  .hero { flex-direction: column; gap: 28px; }
  .hero-icon { width: 80px; height: 80px; }
  .phone-row { gap: 14px; }
  .phone-card { width: calc(50% - 7px); }

  .using-app-footer { white-space: normal; }

  .feature-phones {
    flex-direction: column;
    align-items: center;
  }
  .feature-phone-item {
    width: 100%;
    max-width: 336px;
  }

  .stat-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-card:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 8px);
    justify-self: center;
  }
}


/* ============ DARK MODE CARD OVERRIDES ============ */
[data-theme="dark"] .card,
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .card }

[data-theme="dark"] .card { filter: brightness(0.82) saturate(0.9); }
[data-theme="dark"] .stat-card { background: #1e1c18; border-color: rgba(240,235,224,0.1); }
[data-theme="dark"] .split { background: #1e1c18; }
[data-theme="dark"] .callout-lime { background: rgba(203,242,74,0.1); border-color: rgba(203,242,74,0.25); color: var(--text-main); }
[data-theme="dark"] .callout-pink { background: rgba(255,47,176,0.12); border-color: rgba(255,47,176,0.3); color: var(--text-main); }
[data-theme="dark"] .callout-pink a { color: var(--pink); }
[data-theme="dark"] .faq-item { background: #1e1c18; border-color: rgba(240,235,224,0.1); }
[data-theme="dark"] .faq-item summary { color: var(--text-main); }

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .card { filter: brightness(0.82) saturate(0.9); }
  :root:not([data-theme="light"]) .stat-card { background: #1e1c18; border-color: rgba(240,235,224,0.1); }
  :root:not([data-theme="light"]) .split { background: #1e1c18; }
  :root:not([data-theme="light"]) .callout-lime { background: rgba(203,242,74,0.1); border-color: rgba(203,242,74,0.25); color: var(--text-main); }
  :root:not([data-theme="light"]) .callout-pink { background: rgba(255,47,176,0.12); border-color: rgba(255,47,176,0.3); color: var(--text-main); }
  :root:not([data-theme="light"]) .callout-pink a { color: var(--pink); }
  :root:not([data-theme="light"]) .faq-item { background: #1e1c18; border-color: rgba(240,235,224,0.1); }
  :root:not([data-theme="light"]) .faq-item summary { color: var(--text-main); }
}
