/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:          #f0f0f2;
  --ink-mid:      #d1d1d8;
  --accent:       #635BFF;
  --accent-dark:  #5046E5;
  --accent-light: rgba(99,91,255,0.12);
  --green:        #00D68F;
  --sand:         #0d0d14;
  --sand-dark:    #121220;
  --gray-700:     #d1d1d8;
  --gray-600:     #a0a0ab;
  --gray-500:     #70707a;
  --gray-400:     #505060;
  --gray-300:     #3a3a4a;
  --gray-200:     #26263a;
  --gray-100:     #1c1c2e;
  --white:        #17172a;
  --dark:         #18181B;
  --dark-mid:     #27272A;
  --radius:       10px;
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.3);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg:    0 12px 32px rgba(0,0,0,0.4);
  --transition:   0.18s ease;
  /* Nav and code block surfaces — overridden in light mode */
  --nav-bg:           rgba(13,13,20,0.96);
  --mobile-menu-bg:   #0d0d14;
  --code-block-bg:    #12122a;
  --code-header-bg:   #0d0d20;
  --code-text-color:  #c9c9d8;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
  font-size: 16px;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

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

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

code {
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 0.85em;
  background: var(--gray-100);
  padding: 2px 6px;
  border-radius: 3px;
  color: var(--accent-dark);
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  font-family: inherit;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); color: var(--white); }

.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-full { width: 100%; }

/* ===========================
   NAV
=========================== */
.nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,250,250,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.nav-wrapper.scrolled { box-shadow: 0 2px 12px rgba(99,91,255,0.08); }

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--gray-600);
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
.logo-white { color: var(--white); }
.nav-logo { height: 36px; width: auto; display: block; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  color: var(--gray-600);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--accent); }

.nav-cta {
  display: flex;
  gap: 8px;
  margin-left: 16px;
}

.nav-cta .btn-outline {
  color: var(--accent);
  background: transparent;
  border-color: var(--accent);
}
.nav-cta .btn-outline:hover {
  background: var(--accent-light);
  border-color: var(--accent);
  color: var(--accent-dark);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: all var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--gray-200);
  background: var(--sand);
}
.mobile-menu a {
  color: var(--ink-mid);
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-200);
}
.mobile-menu .btn { margin-top: 8px; }
.mobile-menu.open { display: flex; }

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
  background: linear-gradient(160deg, #3D3580 0%, #2D2A4A 100%);
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(99,91,255,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(99,91,255,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 48px;
  align-items: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-image-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
  aspect-ratio: 4/3;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 820px;
  letter-spacing: -0.02em;
}

/* Accent word — no gradient, just the brand color */
.gradient-text {
  color: var(--accent);
}

.hero-sub {
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* ===========================
   SECTIONS
=========================== */
.section { padding: 96px 0; }

.section-header {
  max-width: 560px;
  margin: 0 auto 64px;
}

/* Left-aligned section headers feel more editorial */
.section-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.section-header p {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.7;
}

/* ===========================
   FEATURES
=========================== */
.features { background: var(--white); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}

.feature-card {
  background: var(--white);
  padding: 36px 32px;
  transition: background var(--transition);
  position: relative;
}
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 32px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}
.feature-card:hover { background: var(--sand); }
.feature-card:hover::after { width: calc(100% - 64px); }

/* All icons are the same color — no rainbow pill backgrounds */
.feature-icon {
  margin-bottom: 20px;
  color: var(--ink);
}
.feature-icon svg { display: block; }

/* Neutralize the old colored icon classes */
.icon-blue, .icon-green, .icon-purple,
.icon-orange, .icon-red, .icon-teal { background: none; }
.icon-blue svg, .icon-green svg, .icon-purple svg,
.icon-orange svg, .icon-red svg, .icon-teal svg { color: var(--ink); }

.feature-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-card p {
  color: var(--gray-600);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ===========================
   HOW IT WORKS
=========================== */
.how-it-works { background: linear-gradient(160deg, #3D3580 0%, #2D2A4A 100%); }

.how-it-works .section-header h2 { color: var(--white); }
.how-it-works .section-header p  { color: rgba(255,255,255,0.65); }
.how-it-works .step-content h3   { color: var(--white); }
.how-it-works .step-content p    { color: rgba(255,255,255,0.65); }
.how-it-works .step-connector    { background: rgba(255,255,255,0.15); }

.steps {
  display: flex;
  align-items: flex-start;
  margin-bottom: 56px;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding-top: 8px;
}

/* Large typographic number — no circle, no shadow */
.step-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
  opacity: 0.9;
}

.step-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.step-content p {
  color: var(--gray-600);
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 220px;
  margin: 0 auto;
}

/* Simple thin rule instead of gradient glow */
.step-connector {
  height: 1px;
  background: var(--gray-300);
  flex: 0.25;
  margin-top: 36px;
}

/* Code block */
.code-block {
  background: #EEF0FF;
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 720px;
  margin: 0 auto;
  border: 1px solid rgba(99,91,255,0.15);
}

.code-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: #E4E6FF;
  border-bottom: 1px solid rgba(99,91,255,0.15);
}

.code-title { color: var(--gray-500); font-size: 0.78rem; font-family: 'DM Mono', monospace; }

.copy-btn {
  background: rgba(99,91,255,0.1);
  color: var(--accent);
  border: 1px solid rgba(99,91,255,0.2);
  padding: 4px 12px;
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}
.copy-btn:hover { background: rgba(99,91,255,0.18); }
.copy-btn.copied { background: var(--green); border-color: var(--green); color: var(--white); }

pre {
  padding: 24px;
  overflow-x: auto;
  font-size: 0.85rem;
  line-height: 1.7;
}
pre code { background: transparent; padding: 0; color: var(--gray-700); font-size: inherit; }

.c-comment { color: #7C6FAD; }
.c-tag     { color: #5046E5; }
.c-attr    { color: #635BFF; }
.c-str     { color: #8B5CF6; }

/* ===========================
   PRICING
=========================== */
.pricing { background: var(--white); }

.pricing-card-wrapper {
  display: flex;
  justify-content: center;
}

.pricing-card-single {
  background: var(--sand);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
  padding: 48px 52px;
  max-width: 560px;
  width: 100%;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.pricing-plan-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 16px;
}

.pricing-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.04em;
}
.pricing-currency {
  font-size: 2rem;
  vertical-align: top;
  margin-top: 10px;
  display: inline-block;
}
.pricing-period {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--gray-500);
}

.pricing-tagline {
  color: var(--gray-600);
  font-size: 0.92rem;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gray-200);
}

.pricing-benefits {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 36px;
}

.pricing-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ink-mid);
}

.pricing-benefits li svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}

.pricing-cta {
  width: 100%;
  justify-content: center;
  margin-bottom: 16px;
}

.pricing-note {
  font-size: 0.8rem;
  color: var(--gray-500);
}
.pricing-note a {
  color: var(--accent);
  text-decoration: underline;
}

/* ===========================
   CONTACT
=========================== */
.contact { background: var(--sand); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.contact-info > p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.contact-details { display: flex; flex-direction: column; gap: 16px; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-700);
  font-size: 0.9rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-mid);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group textarea {
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--ink);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--sand);
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
  background: var(--white);
}

.form-success {
  text-align: center;
  color: var(--green);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 12px;
  background: rgba(26,102,69,0.08);
  border-radius: var(--radius);
  border: 1px solid rgba(26,102,69,0.15);
}
.hidden { display: none; }

/* ===========================
   FOOTER
=========================== */
.footer {
  background: #2D2A4A;
  padding: 64px 0 48px;
  border-top: 3px solid var(--accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .logo { margin-bottom: 12px; }
.footer-brand > p {
  color: var(--gray-500);
  font-size: 0.85rem;
  line-height: 1.65;
  max-width: 260px;
  margin-bottom: 12px;
}
.footer-copy { color: var(--gray-600); font-size: 0.76rem; }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links h4 {
  color: var(--gray-400);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.footer-links a {
  color: var(--gray-500);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .features-grid { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid   { grid-template-columns: 1fr; gap: 32px; }
  .form-row      { grid-template-columns: 1fr; }
  .contact-form  { padding: 24px; }

  .steps {
    flex-direction: column;
    align-items: center;
  }
  .step-connector {
    width: 1px;
    height: 28px;
    flex: none;
    margin-top: 0;
  }

  .hero { padding: 56px 0 48px; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-text { align-items: center; text-align: center; }
  .hero-actions { justify-content: center; flex-direction: column; align-items: center; }
  .hero-image-wrap { max-width: 560px; width: 100%; margin: 0 auto; }

  .section { padding: 64px 0; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.6rem; }
  .pricing-card-single { padding: 36px 28px; }
}

/* ===========================
   LEGAL PAGES
=========================== */
.legal-hero {
  background: #2D2A4A;
  padding: 64px 0 48px;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--accent);
}

.legal-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 10% 110%, rgba(37,99,235,0.15) 0%, transparent 65%);
  pointer-events: none;
}

.legal-hero-content {
  position: relative;
  z-index: 1;
}

.legal-hero-content .legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gray-500);
  font-size: 0.83rem;
  margin-bottom: 20px;
  transition: color var(--transition);
}
.legal-hero-content .legal-back:hover { color: var(--white); }

.legal-hero-content h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.legal-hero-content .legal-date {
  color: var(--gray-500);
  font-size: 0.83rem;
}

.legal-body {
  padding: 64px 0 96px;
  background: var(--sand);
}

.legal-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 56px 64px;
  box-shadow: var(--shadow-sm);
}

.legal-nav-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
}

.legal-nav-link {
  padding: 7px 16px;
  border-radius: 2px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--gray-500);
  transition: all var(--transition);
  border: 1px solid transparent;
}
.legal-nav-link:hover {
  color: var(--ink);
  background: var(--sand);
}
.legal-nav-link.active {
  background: var(--accent-light);
  color: var(--accent-dark);
  border-color: rgba(37,99,235,0.2);
}

.legal-section {
  margin-bottom: 40px;
}
.legal-section:last-child { margin-bottom: 0; }

.legal-section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-100);
  letter-spacing: -0.01em;
}

.legal-section p {
  color: var(--gray-600);
  font-size: 0.92rem;
  line-height: 1.78;
  margin-bottom: 10px;
}
.legal-section p:last-child { margin-bottom: 0; }

.legal-section ul {
  list-style: none;
  margin: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legal-section ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--gray-600);
  font-size: 0.92rem;
  line-height: 1.65;
}

.legal-section ul li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 1px;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 9px;
}

.legal-section a {
  color: var(--accent);
  text-decoration: underline;
}
.legal-section a:hover { color: var(--accent-dark); }

.legal-third-party-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.legal-third-party-item {
  background: var(--sand);
  border: 1px solid var(--gray-200);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 14px 16px;
}

.legal-third-party-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--ink);
  margin-bottom: 4px;
}

.legal-section .legal-third-party-item p {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin: 0;
}

@media (max-width: 768px) {
  .legal-card { padding: 32px 24px; }
  .legal-third-party-grid { grid-template-columns: 1fr; }
  .legal-nav-bar { flex-wrap: wrap; }
}

.nav-wrapper { background: var(--nav-bg); }
.mobile-menu { background: var(--mobile-menu-bg); }

/* code block surfaces */
.code-block  { background: var(--code-block-bg); border-color: rgba(99,91,255,0.2); }
.code-header { background: var(--code-header-bg); border-color: rgba(99,91,255,0.15); }
pre          { background: var(--code-block-bg); }
pre code     { color: var(--code-text-color); }

/* legal pages */
.legal-card             { border-color: var(--gray-200); }
.legal-third-party-item { background: var(--sand-dark); border-color: var(--gray-200); }

/* ===========================
   LIGHT MODE
   Applied when the user's device prefers a light color scheme.
   Hero, How It Works, Footer, and legal hero keep their dark purple
   gradient backgrounds as intentional brand accents.
=========================== */
@media (prefers-color-scheme: light) {
  :root {
    --ink:              #18181b;
    --ink-mid:          #3f3f46;
    --sand:             #f9f9fb;
    --sand-dark:        #f0f0f8;
    --gray-700:         #3f3f46;
    --gray-600:         #52525b;
    --gray-500:         #71717a;
    --gray-400:         #a1a1aa;
    --gray-300:         #d4d4d8;
    --gray-200:         #e4e4e7;
    --gray-100:         #f4f4f5;
    --white:            #ffffff;
    --shadow-sm:        0 1px 3px rgba(0,0,0,0.07);
    --shadow-md:        0 4px 16px rgba(0,0,0,0.10);
    --shadow-lg:        0 12px 32px rgba(0,0,0,0.12);
    --nav-bg:           rgba(250,250,250,0.96);
    --mobile-menu-bg:   #f9f9fb;
    --code-block-bg:    #EEF0FF;
    --code-header-bg:   #E4E6FF;
    --code-text-color:  #3a3a4a;
  }

  /* Hamburger lines are dark text on light nav */
  .hamburger span { background: var(--ink); }
}
