/* ─── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bird-green:   #22c55e;
  --bird-green-d: #16a34a;
  --bird-green-l: #dcfce7;
  --bird-teal:    #0d9488;
  --accent:       #f59e0b;
  --dark:         #0f172a;
  --dark-2:       #1e293b;
  --mid:          #475569;
  --light-text:   #64748b;
  --border:       #e2e8f0;
  --bg:           #ffffff;
  --bg-soft:      #f8fafc;
  --bg-card:      #ffffff;
  --radius:       14px;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:    0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:    0 20px 60px rgba(0,0,0,.1);
  --transition:   .22s ease;
  --max-w:        1160px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--dark);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ─── Layout helpers ────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section--soft { background: var(--bg-soft); }
.flex  { display: flex; }
.grid  { display: grid; }

/* ─── Typography ────────────────────────────────────────────────── */
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; line-height: 1.15; letter-spacing: -.03em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 800; letter-spacing: -.025em; line-height: 1.2; }
h3 { font-size: 1.15rem; font-weight: 700; line-height: 1.3; }
p  { color: var(--mid); }

.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .75rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--bird-teal); background: #ccfbf1; border-radius: 999px; padding: 4px 12px;
  margin-bottom: 16px;
}

/* ─── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 10px; font-weight: 600; font-size: .95rem;
  cursor: pointer; transition: var(--transition); border: none; white-space: nowrap;
}
.btn-primary {
  background: var(--bird-green); color: #fff;
  box-shadow: 0 4px 14px rgba(34,197,94,.35);
}
.btn-primary:hover { background: var(--bird-green-d); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(34,197,94,.4); }
.btn-outline {
  background: transparent; color: var(--dark); border: 2px solid var(--border);
}
.btn-outline:hover { border-color: var(--bird-green); color: var(--bird-green); }
.btn-white {
  background: #fff; color: var(--bird-green-d); font-weight: 700;
  box-shadow: 0 4px 14px rgba(0,0,0,.1);
}
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,.15); }
.btn-lg { padding: 16px 34px; font-size: 1.05rem; border-radius: 12px; }

/* ─── Navbar ────────────────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.88); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px; height: 68px;
  display: flex; align-items: center;
}
.navbar__inner {
  max-width: var(--max-w); width: 100%; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.navbar__logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.2rem; font-weight: 800; color: var(--dark);
}
.navbar__logo svg { flex-shrink: 0; }
.navbar__nav { display: flex; align-items: center; gap: 32px; }
.navbar__nav a { font-size: .9rem; font-weight: 500; color: var(--mid); transition: var(--transition); }
.navbar__nav a:hover { color: var(--bird-green); }
.navbar__nav a.active { color: var(--dark); font-weight: 600; }
.navbar__actions { display: flex; align-items: center; gap: 12px; }
.navbar__burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.navbar__burger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--transition); }

/* ─── Hero ──────────────────────────────────────────────────────── */
.hero {
  padding: 100px 0 80px;
  background: linear-gradient(160deg, #f0fdf4 0%, #ecfdf5 40%, #f0fdfa 100%);
  overflow: hidden; position: relative;
}
.hero::after {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(34,197,94,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero__eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .78rem; font-weight: 600; color: var(--bird-green-d);
  background: var(--bird-green-l); border-radius: 999px; padding: 5px 14px;
}
.hero__badge::before { content: '●'; font-size: .5rem; color: var(--bird-green); }
.hero h1 { margin-bottom: 20px; }
.hero h1 span { color: var(--bird-green); }
.hero p { font-size: 1.1rem; color: var(--mid); margin-bottom: 36px; max-width: 500px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }
.hero__stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero__stat-num { font-size: 1.6rem; font-weight: 800; color: var(--dark); line-height: 1; }
.hero__stat-label { font-size: .82rem; color: var(--light-text); margin-top: 3px; }
.hero__visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero__card-stack { position: relative; width: 380px; height: 340px; }

/* floating cards */
.hero-card {
  position: absolute; background: var(--bg-card); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 20px 24px; border: 1px solid var(--border);
  animation: float 4s ease-in-out infinite;
}
.hero-card--main { top: 0; left: 0; width: 340px; z-index: 2; }
.hero-card--sm   { bottom: 10px; right: 0; width: 200px; z-index: 3; animation-delay: -.8s; }
.hero-card--tag  { top: 60px; right: -10px; width: 160px; z-index: 4; animation-delay: -1.6s; padding: 12px 16px; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.5; transform:scale(.85); } }

.card-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--bird-green), var(--bird-teal));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: .9rem; margin-bottom: 12px;
}
.card-label { font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--light-text); margin-bottom: 4px; }
.card-value { font-size: .9rem; font-weight: 600; color: var(--dark); }
.card-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.card-badge {
  display: inline-flex; align-items: center; gap: 4px; font-size: .72rem; font-weight: 600;
  padding: 3px 10px; border-radius: 999px;
}
.card-badge--green { background: var(--bird-green-l); color: var(--bird-green-d); }
.card-badge--blue  { background: #dbeafe; color: #1e40af; }
.card-badge--amber { background: #fef3c7; color: #92400e; }
.check-icon { color: var(--bird-green); font-size: 1rem; }

/* ─── Features grid ─────────────────────────────────────────────── */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px;
}
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  transition: var(--transition); cursor: default;
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--bird-green); }
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 16px;
  background: var(--bird-green-l);
}
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { font-size: .9rem; }

/* ─── Coverage section ──────────────────────────────────────────── */
.coverage {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: #fff; padding: 96px 0;
}
.coverage p, .coverage .light-text { color: #94a3b8; }
.coverage__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.coverage__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.coverage-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 24px;
  transition: var(--transition);
}
.coverage-card:hover { background: rgba(255,255,255,.1); }
.coverage-card .feature-icon { background: rgba(34,197,94,.15); }
.coverage-card h3 { color: #f1f5f9; margin-bottom: 8px; }
.coverage-card p  { color: #94a3b8; font-size: .9rem; }
.coverage__text .tag { background: rgba(34,197,94,.15); color: #86efac; }
.coverage__text h2 { color: #f1f5f9; margin-bottom: 16px; }
.coverage__text p  { font-size: 1.05rem; margin-bottom: 32px; }
.coverage__stats { display: flex; gap: 40px; margin-top: 32px; flex-wrap: wrap; }
.coverage__stat-num { font-size: 2rem; font-weight: 800; color: #f1f5f9; line-height: 1; }
.coverage__stat-label { font-size: .82rem; color: #94a3b8; margin-top: 4px; }

/* ─── How it works ──────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; margin-top: 56px; }
.step { text-align: center; }
.step__num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--bird-green-l); color: var(--bird-green-d);
  font-size: 1.1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step h3 { margin-bottom: 8px; }
.step p { font-size: .9rem; }

/* ─── Integrations strip ─────────────────────────────────────────── */
.integrations { padding: 56px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.integrations__label { text-align: center; font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--light-text); margin-bottom: 28px; }
.integrations__logos { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 40px; }
.integrations__logo { font-size: .9rem; font-weight: 700; color: #cbd5e1; letter-spacing: -.01em; }

/* ─── CTA Banner ─────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--bird-green) 0%, var(--bird-teal) 100%);
  border-radius: 24px; padding: 64px 48px; text-align: center; color: #fff;
  margin: 0 24px;
}
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p  { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 32px; }
.cta-banner__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ─── Pricing ────────────────────────────────────────────────────── */
.pricing-header { text-align: center; margin-bottom: 56px; }
.pricing-header h2 { margin-bottom: 12px; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 24px;
  max-width: 960px; margin: 0 auto;
}
.pricing-card {
  background: var(--bg-card); border: 2px solid var(--border);
  border-radius: 20px; padding: 40px 36px;
  display: flex; flex-direction: column;
  transition: var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pricing-card--featured { border-color: var(--bird-green); position: relative; }
.pricing-card__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--bird-green); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 999px;
}
.pricing-card__name  { font-size: .82rem; font-weight: 600; color: var(--light-text); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.pricing-card__price { font-size: 2.8rem; font-weight: 900; color: var(--dark); line-height: 1; margin-bottom: 4px; }
.pricing-card__price span { font-size: 1rem; font-weight: 500; color: var(--light-text); }
.pricing-card__from  { font-size: .82rem; color: var(--light-text); margin-bottom: 8px; }
.pricing-card__desc  { font-size: .9rem; color: var(--mid); margin-bottom: 28px; }
.pricing-card__divider { height: 1px; background: var(--border); margin: 24px 0; }
.pricing-card__features { flex: 1; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem; color: var(--mid);
}
.pricing-feature .check { color: var(--bird-green); font-size: 1rem; flex-shrink: 0; }
.pricing-card .btn { width: 100%; justify-content: center; }

/* ─── FAQ ────────────────────────────────────────────────────────── */
.faq { max-width: 760px; margin: 56px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; cursor: pointer; gap: 16px;
  font-weight: 600; font-size: .97rem; color: var(--dark);
}
.faq-question .icon { font-size: 1.2rem; color: var(--light-text); transition: var(--transition); flex-shrink: 0; }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height .35s ease, padding .35s ease; }
.faq-answer p { font-size: .9rem; padding-bottom: 20px; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-item.open .icon { transform: rotate(45deg); color: var(--bird-green); }

/* ─── Footer ─────────────────────────────────────────────────────── */
.footer {
  background: var(--dark); color: #94a3b8;
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08);
}

/* ── Navbar Product dropdown ─────────────────────────────────────── */
.navbar__nav .dropdown { position: relative; }
.navbar__nav .dropdown > .dropdown__trigger {
  display: inline-flex; align-items: center; gap: 5px; cursor: pointer;
  font-size: .9rem; font-weight: 500; color: var(--mid); transition: var(--transition);
}
.navbar__nav .dropdown:hover > .dropdown__trigger { color: var(--bird-green); }
.navbar__nav .dropdown > .dropdown__trigger svg { transition: var(--transition); }
.navbar__nav .dropdown:hover > .dropdown__trigger svg { transform: rotate(180deg); }
.navbar__nav .dropdown::after { content: ''; position: absolute; top: 100%; left: -20px; right: -20px; height: 18px; }
.dropdown__menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(6px);
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  box-shadow: var(--shadow-md); padding: 8px; min-width: 250px;
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; transition: var(--transition); z-index: 60;
}
.navbar__nav .dropdown:hover .dropdown__menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown__menu a { display: flex; align-items: center; gap: 11px; padding: 10px 12px; border-radius: 9px; font-size: .88rem; color: var(--dark); font-weight: 500; }
.dropdown__menu a:hover { background: var(--bg-soft); color: var(--bird-green); }
.dropdown__menu a .ic { font-size: 1.05rem; width: 22px; text-align: center; flex-shrink: 0; }
.dropdown__menu a small { display: block; font-size: .76rem; color: var(--light-text); font-weight: 400; }

/* mobile nav product group */
.mobile-nav .mnav-label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--light-text); margin-top: 6px; }
.mobile-nav .mnav-sub { padding-left: 12px !important; }
.footer__logo { display: flex; align-items: center; gap: 10px; color: #fff; font-size: 1.1rem; font-weight: 800; margin-bottom: 14px; }
.footer__tagline { font-size: .88rem; line-height: 1.6; max-width: 280px; }
.footer__col-title { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #e2e8f0; margin-bottom: 16px; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul a { font-size: .88rem; transition: var(--transition); }
.footer__col ul a:hover { color: var(--bird-green); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding-top: 28px; }
.footer__copy { font-size: .82rem; }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: .82rem; transition: var(--transition); }
.footer__legal a:hover { color: var(--bird-green); }

/* ─── Page header ────────────────────────────────────────────────── */
.page-hero {
  padding: 80px 0 64px;
  background: linear-gradient(160deg, #f0fdf4 0%, #f0fdfa 100%);
  text-align: center;
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { font-size: 1.1rem; max-width: 560px; margin: 0 auto; }

/* ─── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero__inner       { grid-template-columns: 1fr; }
  .hero__visual      { display: none; }
  .coverage__grid    { grid-template-columns: 1fr; gap: 48px; }
  .footer__grid      { grid-template-columns: 1fr 1fr; }
  .navbar__nav       { display: none; }
  .navbar__burger    { display: flex; }
  .page-hero [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
  .page-hero [style*="grid-template-columns:1fr 1fr"] > div:last-child { display: none; }
}
@media (max-width: 900px) {
  .features-grid[style*="repeat(3"] { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 600px) {
  .features-grid[style*="repeat(3"] { grid-template-columns: 1fr !important; }
  .section           { padding: 64px 0; }
  .hero              { padding: 72px 0 56px; }
  .coverage__cards   { grid-template-columns: 1fr; }
  .footer__grid      { grid-template-columns: 1fr; }
  .cta-banner        { padding: 48px 28px; margin: 0; border-radius: 0; }
  .pricing-card      { padding: 32px 24px; }
}

/* ─── Mobile nav ──────────────────────────────────────────────────── */
.mobile-nav {
  display: none; position: fixed; inset: 68px 0 0; z-index: 99;
  background: #fff; padding: 24px; flex-direction: column; gap: 8px;
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 1rem; font-weight: 500; color: var(--dark); padding: 12px 0; border-bottom: 1px solid var(--border); }

/* ─── Cookie banner ──────────────────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 9999; width: calc(100% - 48px); max-width: 820px;
  background: var(--dark); color: #e2e8f0;
  border-radius: 16px; padding: 20px 24px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  box-shadow: 0 8px 40px rgba(0,0,0,.25);
  animation: slideUp .4s ease;
}
@keyframes slideUp { from { opacity:0; transform:translate(-50%, 20px); } to { opacity:1; transform:translate(-50%, 0); } }
.cookie-banner.hidden { display: none; }
.cookie-banner__text { flex: 1; min-width: 240px; }
.cookie-banner__text p { font-size: .85rem; color: #94a3b8; margin-top: 4px; }
.cookie-banner__text strong { color: #f1f5f9; font-size: .92rem; }
.cookie-banner__text a { color: var(--bird-green); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btn {
  padding: 9px 20px; border-radius: 8px; font-size: .85rem; font-weight: 600;
  cursor: pointer; border: none; transition: var(--transition); white-space: nowrap;
}
.cookie-btn--accept { background: var(--bird-green); color: #fff; }
.cookie-btn--accept:hover { background: var(--bird-green-d); }
.cookie-btn--decline { background: rgba(255,255,255,.08); color: #e2e8f0; }
.cookie-btn--decline:hover { background: rgba(255,255,255,.15); }
.cookie-btn--settings { background: transparent; color: #94a3b8; text-decoration: underline; padding: 9px 8px; }

/* Cookie settings modal */
.cookie-modal-backdrop {
  display: none; position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,.5); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 24px;
}
.cookie-modal-backdrop.open { display: flex; }
.cookie-modal {
  background: #fff; border-radius: 20px; padding: 40px;
  max-width: 540px; width: 100%; max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.cookie-modal h3 { font-size: 1.2rem; margin-bottom: 8px; }
.cookie-modal > p { font-size: .88rem; color: var(--mid); margin-bottom: 28px; }
.cookie-toggle-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.cookie-toggle-row:last-of-type { border-bottom: none; }
.cookie-toggle-row__info h4 { font-size: .9rem; font-weight: 600; margin-bottom: 3px; }
.cookie-toggle-row__info p  { font-size: .82rem; color: var(--mid); max-width: 340px; }
/* reuse toggle-slider styles already defined */
.cookie-toggle-label { position: relative; display: inline-block; width: 44px; height: 24px; flex-shrink: 0; }
.cookie-toggle-label input { opacity:0; width:0; height:0; }
.cookie-toggle-label .toggle-slider { border-radius: 999px; }
.cookie-modal__actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.cookie-modal__actions .btn { flex: 1; justify-content: center; min-width: 140px; }

/* ─── Code block ─────────────────────────────────────────────────── */
.code-block {
  background: var(--dark); border-radius: var(--radius); padding: 24px 28px;
  font-family: 'JetBrains Mono', 'Fira Code', monospace; font-size: .82rem; line-height: 1.7;
  color: #e2e8f0; overflow-x: auto; margin-top: 16px;
}
.code-block .c-green  { color: #86efac; }
.code-block .c-blue   { color: #93c5fd; }
.code-block .c-yellow { color: #fde68a; }
.code-block .c-pink   { color: #f9a8d4; }
.code-block .c-gray   { color: #64748b; }
