/* Theme */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700;800&display=swap');

:root {
  /* Neutral grayscale palette */
  --color-charcoal-900: #0f0f11;
  --color-charcoal-800: #141416;
  --color-charcoal-700: #1a1a1d;
  --color-charcoal-600: #202023;
  --color-charcoal-500: #2a2a2e;
  --color-gray-400: #b3b3b8;
  --color-gray-300: #c7c7cc;
  --color-gray-200: #e0e0e3;
  --color-gray-100: #f2f2f4;
  --color-white: #ffffff;
  /* restrained accent hues for selective highlights */
  --color-accent-600: #3b82f6; /* blue-500/600 */
  --color-accent-500: #60a5fa;
  --color-accent-400: #93c5fd;

  /* Semantic tokens (neutral only) */
  --bg: var(--color-charcoal-900);
  --card: var(--color-charcoal-700);
  --elev: var(--color-charcoal-800);
  --text: var(--color-white);
  --muted: var(--color-gray-400);
  --accent: var(--color-accent-600); /* single accent for highlights */
  --ring: rgba(255,255,255,.18);

  /* Subtle gradients for selective use */
  --grad-primary: linear-gradient(90deg, var(--color-accent-600), var(--color-accent-400));
  --grad-alt: linear-gradient(90deg, var(--color-gray-200), var(--color-white));
  --grad-soft: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,0));

  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius: var(--radius-md);

  /* Shadows */
  --shadow-sm: 0 2px 6px rgba(0,0,0,.35);
  --shadow-md: 0 8px 24px rgba(0,0,0,.38);
  --shadow-lg: 0 15px 50px rgba(0,0,0,.45);
  --shadow-1: var(--shadow-md);
  --shadow-2: var(--shadow-lg);
}

/* Light theme */
:root.light {
  --bg: var(--color-white);
  --card: var(--color-white);
  --elev: var(--color-gray-100);
  --text: #0f0f11;
  --muted: #5c5c62;
  --accent: #0f0f11;
  --ring: rgba(0,0,0,.12);
  --shadow-sm: 0 2px 6px rgba(0,0,0,.06);
  --shadow-md: 0 6px 20px rgba(0,0,0,.08);
  --shadow-lg: 0 10px 28px rgba(0,0,0,.12);
  --shadow-1: var(--shadow-md);
  --shadow-2: var(--shadow-lg);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* Light mode clarity: remove dark overlays and use solid background */
/* Eyebrow (kept simple) */
.eyebrow { color: var(--muted); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: 12px; }
img { max-width: 100%; display: block; }
  .field input:focus, .field textarea:focus { border-color: var(--accent); box-shadow: var(--shadow-focus); }
a { color: inherit; text-decoration: none; }
  .icon-tile { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 12px; display: grid; place-items: center; position: relative; overflow: hidden; }
  .icon-tile::after { content:""; position:absolute; inset:0; background: var(--grad-violet-teal); opacity:0; transition:.3s; }
  .icon-tile:hover::after { opacity:.12; }

.container { width: min(1120px, 92%); margin: 0 auto; }
.section { padding: 72px 0; position: relative; }
/* Section separation */
.section + .section { border-top: 1px solid rgba(255,255,255,.06); }
main section:nth-of-type(odd) { background: none; }
/* Remove section top glow entirely for a clean, uniform background */
.section::before { content: none; }
/* Light mode variant (so it stays subtle and not muddy) */
:root.light .section + .section { border-top: 1px solid rgba(0,0,0,.08); }
:root.light main section:nth-of-type(odd) { background: none; }
:root.light .section::before { content: none; }
.light .section + .section { border-top: 1px solid rgba(0,0,0,.04); }
.light .stats { background: var(--color-gray-100); }
.light .pricing { background: var(--color-gray-100); }
.light .results { background: var(--color-gray-100); }
.section .sub { margin-top: 6px; }
.grid-2 { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .grid-2 { grid-template-columns: 1fr; } }

/* Header */
  .light .site-header { background: #ffffff; border-bottom-color: rgba(0,0,0,.08); backdrop-filter: none; }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.brand .logo { width: 28px; height: 28px; }
.main-nav { display: flex; gap: 22px; align-items: center; }
.main-nav a { color: var(--muted); font-weight: 500; }
  .light .site-header { background: rgba(255,255,255,.7); border-bottom-color: rgba(0,0,0,.06); }
.main-nav a:hover { color: var(--text); }
.nav-toggle { display: none; background: transparent; border: 0; width: 40px; height: 40px; position: relative; }
.nav-toggle span { position: absolute; left: 8px; right: 8px; height: 2px; background: var(--text); transition: .2s; }
.nav-toggle span:nth-child(1){ top: 12px; }
.nav-toggle span:nth-child(2){ top: 19px; }
.nav-toggle span:nth-child(3){ top: 26px; }
@media (max-width: 900px){
  .main-nav { position: fixed; inset: 72px 0 auto 0; background: rgba(11,15,26,.95); padding: 16px 4%; border-bottom: 1px solid rgba(255,255,255,.06); transform: translateY(-120%); transition: .25s; gap: 14px; flex-direction: column; align-items: flex-start; }
  .main-nav.open { transform: translateY(0); }
  .nav-toggle { display: inline-block; }
}
@media (max-width: 900px){
  .light .main-nav { background: rgba(255,255,255,.98); border-bottom-color: rgba(0,0,0,.08); }
}

/* Hero */
.hero { padding-top: 56px; }
.eyebrow { color: var(--muted); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: 12px; }
.hero h1 { font-size: clamp(32px, 4.2vw, 56px); line-height: 1.1; margin: 12px 0 16px; }
.lead { color: var(--muted); font-size: clamp(16px, 1.25vw, 18px); max-width: 58ch; }
.light .lead { color: #3b4660; }
.gradient-text { background: var(--grad-primary); -webkit-background-clip: text; background-clip: text; color: transparent; }
.typewriter { position: relative; white-space: normal; display: inline; }
.typewriter::after { content: ""; display: inline-block; width: 2px; height: 1em; background: var(--text); margin-left: 2px; vertical-align: -0.15em; animation: caret-blink 1s steps(1, end) infinite; }
@keyframes caret-blink { 50% { opacity: 0; } }
@media (prefers-reduced-motion: reduce){ .typewriter::after { animation: none; } }
.cta-row { display: flex; gap: 12px; margin: 24px 0 10px; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 18px; color: var(--muted); font-size: 14px; flex-wrap: wrap; }
.meta-item strong { color: var(--text); }

.hero-visual { position: relative; min-height: 280px; display: grid; align-items: center; }
.stat-card { background: var(--card); border: 1px solid rgba(255,255,255,.08); border-radius: 20px; box-shadow: var(--shadow-2); padding: 18px; width: min(420px, 100%); margin-left: auto; display: grid; gap: 12px; }
.light .stat-card { border-color: rgba(0,0,0,.08); }
.stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.kpi { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; padding: 12px; }
.kpi span { color: var(--muted); font-size: 12px; }
.kpi strong { font-size: 28px; }
.badge--guarantee { position: absolute; right: 4%; bottom: -14px; background: var(--card); border: 1px solid rgba(255,255,255,.12); color: var(--text); padding: 12px 16px; border-radius: 12px; box-shadow: var(--shadow-1); }
.light .badge--guarantee { background: var(--color-charcoal-600); color: var(--color-white); border-color: rgba(0,0,0,.12); box-shadow: 0 8px 20px rgba(0,0,0,.12); }
.light .kpi { background: rgba(0,0,0,.04); border: 1px solid rgba(0,0,0,.08); }

/* Trustbar */
.trustbar { margin-top: 30px; }
.marquee { display: grid; grid-auto-flow: column; gap: 28px; color: var(--muted); opacity: .8; white-space: nowrap; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee span { padding: 8px 14px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; background: rgba(255,255,255,.04); animation: scroll 18s linear infinite; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-100%); } }

/* Services */
.services .cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 18px; }
.services .card { background: var(--card); border: 1px solid rgba(255,255,255,.08); padding: 18px; border-radius: var(--radius); box-shadow: var(--shadow-1); }
.light .services .card { border-color: rgba(0,0,0,.08); }
.services .card h3 { margin-top: 0; }
.services .card ul { margin: 12px 0 0; padding-left: 18px; color: var(--muted); }
@media (max-width: 900px){ .services .cards { grid-template-columns: 1fr; } }

/* Process */
.process-hero { text-align: center; max-width: 820px; margin: 0 auto 22px; }
.process-hero h2 { font-size: clamp(28px, 3.2vw, 40px); }
.process-hero .lead { margin-top: 8px; }
.process-icons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 18px; align-items: center; }
.process-icon { display: grid; grid-auto-flow: column; align-items: center; justify-content: center; gap: 10px; padding: 16px; border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); background: var(--card); box-shadow: var(--shadow-1); }
.process-icon .icon { width: 22px; height: 22px; }
.process-icon span { font-weight: 600; letter-spacing: .2px; }
:root.light .process-icon { background: #ffffff; border-color: rgba(0,0,0,.08); box-shadow: var(--shadow-1); }
@media (max-width: 900px){ .process-icons { grid-template-columns: 1fr; } }

/* Results slider */
.results .slider { position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); background: var(--elev); box-shadow: var(--shadow-1); }
.light .results .slider { border-color: rgba(0,0,0,.08); box-shadow: 0 8px 24px rgba(0,0,0,.08); background: #fff; }
/* Track uses flex so each slide sits horizontally */
.results [data-slider] { display: flex; will-change: transform; transition: transform .55s cubic-bezier(.25,.8,.25,1); }
.results .slide { flex: 0 0 100%; width: 100%; box-sizing: border-box; padding: 26px; display: grid; gap: 6px; background: var(--card); border:1px solid rgba(255,255,255,.08); border-radius: var(--radius); box-shadow: var(--shadow-1); }
.light .results .slide { border-color: rgba(0,0,0,.08); }
@media (max-width: 600px){ .results .slide { padding: 20px; } }
.results .quote { font-size: clamp(18px, 2.4vw, 22px); line-height: 1.4; }
.results .who { color: var(--muted); }
.slider-controls { display: flex; gap: 8px; }
.ctrl { width: 36px; height: 36px; border-radius: 8px; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.04); color: var(--text); }
.ctrl:hover { border-color: rgba(255,255,255,.3); }

/* Pricing */
.pricing .plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 18px; }
.plan { background: var(--card); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow-1); position: relative; }
.light .plan { border-color: rgba(0,0,0,.08); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.plan .price { font-size: 40px; font-weight: 800; margin: 10px 0; }
.plan .price span { font-size: 20px; color: var(--muted); margin-right: 4px; }
.plan--featured { background: var(--card); border-color: rgba(255,255,255,.12); box-shadow: var(--shadow-2); }
.plan .flag { position: absolute; top: -12px; right: 16px; background: var(--color-charcoal-600); color: var(--color-white); font-weight: 800; padding: 6px 10px; border-radius: 999px; border: 1px solid rgba(255,255,255,.2); }
.guarantee { margin-top: 16px; display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: center; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.15); color: var(--text); padding: 16px; border-radius: var(--radius); }
.guarantee .shield { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 8px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); color: var(--text); font-weight: 900; }
@media (max-width: 900px){ .pricing .plans { grid-template-columns: 1fr; } }

/* CTA */
.cta { text-align: center; }

/* Stats section */
.stats { background: none; border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); }
.stats .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat { background: var(--card); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 18px; text-align: center; box-shadow: var(--shadow-1); }
.light .stat { border-color: rgba(0,0,0,.08); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.stat h3 { font-size: 32px; margin: 0; }
.stat p { color: var(--muted); margin: 6px 0 0; }
@media (max-width: 900px){ .stats .grid { grid-template-columns: 1fr 1fr; } }

/* Icons grid */
.icons { margin-top: 10px; }
.icons .grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; align-items: center; }
.icon-tile { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 12px; display: grid; place-items: center; }
.icon-tile svg { width: 28px; height: 28px; stroke: #cbd5e1; }
.icon-tile:hover { border-color: rgba(255,255,255,.22); transform: translateY(-2px); }
@media (max-width: 900px){ .icons .grid { grid-template-columns: repeat(3, 1fr); } }

/* Social icons row */
  .light .icon-tile { background: rgba(0,0,0,.02); border-color: rgba(0,0,0,.08); }
.socials { margin-top: 16px; }
  .light .icon-tile svg { stroke: #42526e; }
.socials .row { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
  .light .icon-tile:hover { border-color: rgba(0,0,0,.16); }
.socials a { display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: 999px; border: 1px solid rgba(255,255,255,.08); background: var(--card); color: var(--muted); }
.socials a svg { width: 18px; height: 18px; }
.socials a:hover { border-color: rgba(255,255,255,.18); transform: translateY(-1px); color: var(--text); background: rgba(255,255,255,.08); }

/* Heading scale refinements */
h2 { font-size: clamp(28px, 2.6vw, 34px); margin: 0 0 6px; }
  .light .socials a { border-color: rgba(0,0,0,.08); background: #fff; color: #5b6b84; }
h3 { margin: 0 0 6px; font-weight: 700; }
h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', 'Inter', sans-serif; font-weight: 700; letter-spacing: .3px; }

/* UI KIT */
/* Button variants */
.btn-primary { background: var(--grad-primary); color: #041018; border: 0; font-weight: 700; box-shadow: none; }
.btn-primary:hover { filter: brightness(1.05); }
.btn-secondary { background: transparent; color: var(--accent); border: 1px solid var(--accent); }
.btn-secondary:hover { background: rgba(255,255,255,.06); color: var(--text); }
.btn-outline { background: transparent; border: 1px solid var(--muted); color: var(--muted); }
.btn-outline:hover { border-color: var(--accent); color: var(--text); }

/* Input fields */
.input { width: 100%; padding: 12px 14px; border-radius: var(--radius-sm); background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12); color: var(--text); font-family: 'Inter', sans-serif; }
.input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--ring); }
:root.light .input { background: #ffffff; border-color: rgba(0,0,0,.12); }

/* Card component */
.card { background: var(--card); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: var(--space-4); box-shadow: var(--shadow-1); }
:root.light .card { border-color: rgba(0,0,0,.08); box-shadow: var(--shadow-md); }

/* Utility shadows */
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

/* Utility radii */
.radius-sm { border-radius: var(--radius-sm); }
.radius-md { border-radius: var(--radius-md); }
.radius-lg { border-radius: var(--radius-lg); }

/* Spacing utilities (margin) */
.m-0 { margin: 0 !important; }
.mt-1 { margin-top: var(--space-1) !important; }
.mt-2 { margin-top: var(--space-2) !important; }
.mt-3 { margin-top: var(--space-3) !important; }
.mt-4 { margin-top: var(--space-4) !important; }
.mt-5 { margin-top: var(--space-5) !important; }
.mt-6 { margin-top: var(--space-6) !important; }

/* Icon style */
.icon { width: 24px; height: 24px; display: inline-block; stroke: currentColor; fill: none; stroke-width: 2; }
.icon-muted { color: var(--muted); }
.icon-accent { color: var(--accent); }

/* Adapt existing button primary to new gradient token */
.btn--primary { background: var(--grad-primary); }
  .light .socials a:hover { border-color: rgba(0,0,0,.16); color: #0b1220; filter: brightness(1.03); }

/* Icons grid responsive tweak */
@media (max-width: 900px){ .icons .grid { grid-template-columns: repeat(3, 1fr); } }


  /* Theme toggle */
  .theme-toggle { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.04); color: var(--text); }
  .theme-toggle:hover { border-color: rgba(255,255,255,.26); transform: translateY(-1px); }
  .light .theme-toggle { border-color: rgba(0,0,0,.08); background: rgba(0,0,0,.02); }
  .theme-toggle { position: relative; padding: 0 12px; width: auto; min-width: 104px; display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight:600; letter-spacing:.5px; }
  .theme-toggle-inner { display: inline-flex; align-items: center; gap: 10px; }
  .theme-toggle .icon-wrapper { position: relative; width: 24px; height: 24px; }
  .theme-toggle .icon-wrapper svg { position: absolute; inset:0; transition: opacity .35s ease, transform .35s ease; }
  .icon-sun { opacity: 0; transform: scale(.65) rotate(-20deg); }
  .icon-moon { opacity: 1; transform: scale(.95); }
  .light .icon-sun { opacity: 1; transform: scale(.95); }
  .light .icon-moon { opacity: 0; transform: scale(.65) rotate(20deg); }
  .theme-label { color: var(--muted); transition: color .3s ease; }
  .theme-toggle:hover .theme-label { color: var(--text); }
  .light .theme-label { color: #4b566e; }
  .light .theme-toggle:hover .theme-label { color: #0b1220; }
/* Contact */
.form { background: var(--card); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-1); }
.light .form { border-color: rgba(0,0,0,.08); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.field { display: grid; gap: 8px; margin-bottom: 14px; }
.field input, .field textarea { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12); color: var(--text); padding: 12px 14px; border-radius: 10px; outline: none; }
.light .field input, .light .field textarea { background: #ffffff; border-color: rgba(0,0,0,.12); color: #0b1220; }
.field input:focus, .field textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 6px var(--ring); }
.form-note { color: var(--muted); font-size: 13px; }
.contact-points a { color: var(--accent); }

/* Footer */
.site-footer { padding: 40px 0; border-top: 1px solid rgba(255,255,255,.06); background: rgba(11,15,26,.5); backdrop-filter: blur(8px); }
.site-footer { padding: 40px 0; border-top: 1px solid rgba(255,255,255,.06); background: rgba(11,15,26,.5); backdrop-filter: blur(8px); }
.light .site-footer { background: #f2f5fb; border-top-color: rgba(0,0,0,.06); backdrop-filter: none; }
.light .footer { border-top: 1px solid rgba(0,0,0,.04); padding-top: 16px; }
.footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer .brand.small .logo { width: 22px; height: 22px; }
.footer .muted { color: var(--muted); }
.footer .right { display: flex; gap: 16px; flex-wrap: wrap; }

/* Buttons */
.btn { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid rgba(255,255,255,.12); color: var(--text); padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,.04); transition: .15s ease; box-shadow: 0 1px 0 rgba(255,255,255,.06) inset; overflow: hidden; background-clip: padding-box; }
.btn:hover { transform: translateY(-1px); border-color: rgba(255,255,255,.3); }
.btn--sm { padding: 8px 12px; font-size: 14px; }
.btn--lg { padding: 14px 18px; font-weight: 700; }
.btn--ghost { background: transparent; }
.btn--primary { background: var(--grad-primary); color: #0f0f11; border: 0; font-weight: 800; box-shadow: none; }
/* Remove any focus ring effects on buttons */
.btn:focus, .btn:focus-visible { outline: none; box-shadow: none; }
.btn--primary:focus, .btn--primary:focus-visible { outline: none; box-shadow: none; }
.btn--primary:hover { filter: brightness(1.03); }

/* Utilities */
.sub { color: var(--muted); margin-top: -10px; }
.center { justify-content: center; }
.small { font-size: 14px; }
.muted { color: var(--muted); }
.float-up { animation: floatUp 6s ease-in-out infinite; }
@keyframes floatUp { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(16px); transition: .5s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Cleaner background: blobs removed for a sleeker look */

/* Headings */
h2 { font-size: clamp(26px, 3vw, 36px); margin: 0 0 4px; }
h3 { margin: 0 0 4px; }

/* Layout helpers */
.header-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }

/* Blog typography */
.prose { max-width: 72ch; margin: 0 auto; font-size: 18px; line-height: 1.75; }
.prose h1 { font-size: clamp(30px, 4.2vw, 44px); line-height: 1.2; margin: 0 0 14px; }
.prose h2 { font-size: clamp(24px, 3.2vw, 32px); margin: 28px 0 10px; }
.prose h3 { font-size: clamp(20px, 2.6vw, 24px); margin: 22px 0 8px; }
.prose p { margin: 12px 0; }
.prose ul, .prose ol { margin: 12px 0 12px 22px; }
.prose li { margin: 6px 0; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.prose blockquote { margin: 18px 0; padding: 12px 16px; border-left: 3px solid var(--accent); background: rgba(255,255,255,.04); border-radius: 8px; }
:root.light .prose blockquote { background: rgba(0,0,0,.03); }
.prose img { border-radius: 12px; border: 1px solid rgba(255,255,255,.08); max-width: 100%; height: auto; }
:root.light .prose img { border-color: rgba(0,0,0,.08); }
.prose code { background: rgba(255,255,255,.06); padding: 2px 6px; border-radius: 6px; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; font-size: 0.95em; }
:root.light .prose code { background: rgba(0,0,0,.06); }
.prose pre { background: rgba(255,255,255,.06); padding: 14px; border-radius: 10px; overflow: auto; }
:root.light .prose pre { background: rgba(0,0,0,.06); }

