/* Brevitas Systems — brand tokens
   Editorial-technical dark theme.
   Single source of truth for color, type, motion. */

:root {
  /* Dark mode is default for the new Traverse-inspired aesthetic */
  --ink: #06070b;
  --ink-2: #0d1017;
  --ink-3: #151b28;
  --line: rgba(196, 206, 229, 0.2);
  --stone: #8891a4;
  --stone-2: #b6bfd3;
  --bone: #f5f7ff;
  --bone-dim: #d7ddec;
  --bronze: #8ea6ff;
  --bronze-deep: #6f84d6;
  --oxblood: #c98078;
  --signal: #8dd8c6;
  --signal-glow: rgba(141, 216, 198, 0.12);

  --fg: var(--bone);
  --fg-dim: var(--bone-dim);
  --bg: var(--ink);

  /* Theme toggle icon colors */
  --toggle-bg: rgba(245, 247, 255, 0.08);
  --toggle-hover: rgba(245, 247, 255, 0.15);
  --toggle-icon: var(--stone-2);

  /* Form / input backgrounds */
  --glass-bg: rgba(13, 17, 28, 0.92);
  --glass-border: rgba(142, 166, 255, 0.2);
  --glass-shadow: 0 18px 42px rgba(0, 0, 0, 0.45);
  --input-bg: rgba(11, 16, 25, 0.9);
  --input-border: rgba(111, 132, 214, 0.35);
  --input-focus-bg: rgba(142, 166, 255, 0.08);
  --input-focus-border: #8ea6ff;

  /* Navigation backgrounds */
  --nav-bg: rgba(6, 8, 14, 0.32);
  --nav-bg-scrolled: rgba(6, 8, 14, 0.84);

  /* Component backgrounds */
  --graphite: rgba(16, 21, 33, 0.86);
  --component-bg-dark: rgba(13, 18, 30, 0.9);
  --component-bg-dark-light: rgba(13, 18, 30, 0.48);

  /* Success state */
  --success-gradient: rgba(141, 216, 198, 0.1);
}

[data-theme="light"] {
  --ink: #f7f9ff;
  --ink-2: #eef2fb;
  --ink-3: #e3e8f5;
  --line: rgba(55, 72, 110, 0.18);
  --stone: #5f6a83;
  --stone-2: #3c4760;
  --bone: #131a2b;
  --bone-dim: #2a3551;
  --bronze: #4d66ce;
  --bronze-deep: #3a4ea7;
  --oxblood: #9a4c43;
  --signal: #3f8271;
  --signal-glow: rgba(63, 130, 113, 0.12);

  --fg: var(--bone);
  --fg-dim: var(--bone-dim);
  --bg: var(--ink);

  --toggle-bg: rgba(19, 26, 43, 0.08);
  --toggle-hover: rgba(19, 26, 43, 0.14);
  --toggle-icon: var(--stone-2);

  --glass-bg: rgba(247, 249, 255, 0.92);
  --glass-border: rgba(77, 102, 206, 0.18);
  --glass-shadow: 0 16px 32px rgba(34, 48, 79, 0.1);
  --input-bg: rgba(247, 249, 255, 0.93);
  --input-border: rgba(77, 102, 206, 0.26);
  --input-focus-bg: rgba(77, 102, 206, 0.06);
  --input-focus-border: #4d66ce;

  --nav-bg: rgba(247, 249, 255, 0.50);
  --nav-bg-scrolled: rgba(247, 249, 255, 0.92);

  --graphite: rgba(228, 234, 247, 0.9);
  --component-bg-dark: rgba(234, 239, 250, 0.85);
  --component-bg-dark-light: rgba(234, 239, 250, 0.5);

  --success-gradient: rgba(63, 130, 113, 0.09);
}

[data-theme="light"] .btn-primary {
  background: #4d66ce;
  color: #fff;
  border-color: rgba(77, 102, 206, 0.5);
  box-shadow: 0 4px 14px rgba(77, 102, 206, 0.2);
}
[data-theme="light"] .btn-primary:hover {
  background: #3a4ea7;
  border-color: rgba(77, 102, 206, 0.7);
  color: #fff;
  box-shadow: 0 8px 20px rgba(77, 102, 206, 0.28);
}

:root {
  /* Motion */
  --dur-xs: 120ms;
  --dur-sm: 240ms;
  --dur-md: 420ms;
  --dur-lg: 720ms;
  --dur-xl: 1200ms;

  --ease-out-standard: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out-data: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-step: steps(24);

  /* Layout */
  --max-w: 1240px;
  --narrow-w: 640px;
  --mid-w: 880px;
  --gutter: 80px;
  --gutter-m: 16px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--ink);
  color: var(--fg);
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-feature-settings: "ss01", "cv11";
  font-size: 16.5px;
  line-height: 1.66;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  transition: background-color 300ms ease, color 300ms ease;
}

body { overflow-x: hidden; }

::selection { background: rgba(142, 166, 255, 0.32); color: var(--bone); }

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

/* Typography scale */
.t-display-xl {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 300;
  font-size: clamp(56px, 9vw, 120px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 36;
  text-wrap: balance;
}
.t-display {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 300;
  font-size: clamp(52px, 7vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 36;
  text-wrap: balance;
}
.t-h1 {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 30;
  text-wrap: balance;
}
.t-h2 {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 400;
  font-size: clamp(32px, 3.8vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.012em;
  font-variation-settings: "opsz" 24;
  text-wrap: balance;
}
.t-h3 {
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.18;
  letter-spacing: -0.01em;
}
.t-body-lg {
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  color: var(--bone-dim);
}
.t-body {
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.62;
  color: var(--bone-dim);
}
.t-small {
  font-size: 14px;
  color: var(--stone-2);
}
.t-mono-lg {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-weight: 400;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.5;
}
.t-mono {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
}
.t-overline {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone-2);
}

.serif { font-family: 'Newsreader', Georgia, serif; font-variation-settings: "opsz" 30; }
.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }

.tabular { font-variant-numeric: tabular-nums; }

.signal { color: var(--signal); }
.bronze { color: var(--bronze); }
.oxblood { color: var(--oxblood); }
.stone-2 { color: var(--stone-2); }
.bone-dim { color: var(--bone-dim); }

/* Layout helpers */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 36px;
}
@media (max-width: 720px) {
  .container { padding: 0 22px; }
}

.rule {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0;
}

.section {
  padding: clamp(88px, 11vh, 180px) 0;
  position: relative;
}
.section--tight {
  padding: clamp(56px, 7vh, 104px) 0;
}

/* Grid */
.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
}
@media (max-width: 900px) {
  .grid-12 { grid-template-columns: 1fr; gap: 32px; }
}

/* Focus */
:focus { outline: none; }
:focus-visible {
  outline: 3px solid var(--bronze);
  outline-offset: 3px;
  border-radius: 4px;
}
button:focus-visible, .btn:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  box-shadow: 0 0 0 4px rgba(142,166,255,0.12);
}
.btn-primary:focus-visible { outline-color: var(--bronze); box-shadow: 0 0 0 4px rgba(142,166,255,0.18); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce), :root[data-reduce-motion='true'] {
  *, *::before, *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }
  /* reduce aggressive transforms */
  [style*="scale("] { transform: none !important; }
}

/* Links with underline-on-hover */
.link {
  display: inline-block;
  position: relative;
  color: var(--fg);
}
.link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--dur-sm) var(--ease-out-standard);
}
.link:hover::after { transform: scaleX(1); }
.link:not(:hover)::after { transform-origin: right center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  transition: background var(--dur-sm) var(--ease-out-standard), color var(--dur-sm) var(--ease-out-standard), border-color var(--dur-sm) var(--ease-out-standard), transform var(--dur-sm) var(--ease-out-standard), box-shadow var(--dur-sm) var(--ease-out-standard);
  white-space: nowrap;
}
.btn .arrow {
  display: inline-block;
  transition: transform var(--dur-sm) var(--ease-out-standard);
}
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: #8ea6ff;
  color: #07101f;
  border-color: rgba(142, 166, 255, 0.46);
  box-shadow: 0 4px 14px rgba(142, 166, 255, 0.2);
}
.btn-primary:hover {
  background: #9eb4ff;
  border-color: rgba(142, 166, 255, 0.7);
  color: #06101f;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(142, 166, 255, 0.28);
}

.btn-secondary {
  background: rgba(11, 16, 25, 0.52);
  color: var(--fg);
  border-color: rgba(196, 206, 229, 0.35);
}
.btn-secondary:hover {
  background: rgba(142, 166, 255, 0.16);
  color: var(--bone);
  border-color: rgba(142, 166, 255, 0.54);
  transform: translateY(-1px);
}
[data-theme="light"] .btn-secondary {
  background: #ffffff;
  color: var(--fg);
  border-color: rgba(55, 72, 110, 0.22);
}
[data-theme="light"] .btn-secondary:hover {
  background: rgba(77, 102, 206, 0.08);
  border-color: rgba(77, 102, 206, 0.40);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--stone-2);
  /* inherits padding: 12px 22px from .btn — gives the pill proper breathing room */
}
.btn-ghost:hover { color: var(--fg); }
/* Text-link variants (underline class) strip horizontal padding so they read as links */
.btn-ghost.underline { padding: 8px 16px; text-decoration: underline; text-decoration-color: var(--line); text-underline-offset: 4px; }
.btn-ghost.underline:hover { color: var(--fg); transform: translateX(2px); text-decoration-color: var(--bronze); }

/* Inputs */
.input {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--fg);
  padding: 12px 16px;
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-size: 15px;
  border-radius: 2px;
  width: 100%;
  transition: border-color var(--dur-xs) var(--ease-out-standard), background var(--dur-xs) var(--ease-out-standard);
}
.input::placeholder { color: var(--stone); }
.input:focus { border-color: var(--fg); background: rgba(255,255,255,0.01); }

/* Overline */
.overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
/* Hide decorative overline/kicker dots site-wide (keeps layout intact) */
.overline-dot,
.kicker::before,
.bv-field-packet {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* Cards */
.card {
  background: rgba(13, 17, 28, 0.9);
  border: 1px solid rgba(196, 206, 229, 0.26);
  border-radius: 14px;
  /* backdrop-filter removed: bg is 90% opaque so blur was ~invisible but cost a
     GPU re-blur per card on every scroll frame (cards are the most common element) */
  padding: 28px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  transition: border-color var(--dur-sm) var(--ease-out-standard), transform var(--dur-sm) var(--ease-out-standard), box-shadow var(--dur-sm) var(--ease-out-standard);
}
.card:hover {
  border-color: rgba(142, 166, 255, 0.48);
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.36);
}

[data-theme="light"] .card {
  background: #fff;
  border-color: rgba(55, 72, 110, 0.14);
  box-shadow: 0 2px 12px rgba(55, 72, 110, 0.08);
}
[data-theme="light"] .card:hover {
  border-color: rgba(77, 102, 206, 0.35);
  box-shadow: 0 6px 20px rgba(55, 72, 110, 0.12);
}

/* Fade-up on scroll */
.fade-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--dur-lg) var(--ease-out-soft), transform var(--dur-lg) var(--ease-out-soft);
}
.fade-up.in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.delay-1 { transition-delay: 60ms; }
.delay-2 { transition-delay: 120ms; }
.delay-3 { transition-delay: 180ms; }
.delay-4 { transition-delay: 240ms; }
.delay-5 { transition-delay: 320ms; }

/* Scrollbar subtle */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--ink-3); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--line); }

/* Noise overlay (very subtle) */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.018;
  z-index: 100;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  /* mix-blend-mode removed: full-viewport fixed blend forced a recomposite on every scroll frame */
}

/* Logo mark */
.logo-mark {
  width: 28px;
  height: 28px;
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}
.logo-mark::before, .logo-mark::after {
  content: '';
  position: absolute;
  background: currentColor;
}
.logo-mark::before {
  /* outer square as border */
  inset: 0;
  background: transparent;
  border: 1.5px solid currentColor;
}
.logo-mark-inner {
  position: absolute;
  inset: 0;
}
.logo-mark-inner::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 3px;
  bottom: 3px;
  width: 1.5px;
  background: currentColor;
  transform: translateX(-50%);
}
.logo-mark-inner::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 3px;
  right: 3px;
  height: 1.5px;
  background: currentColor;
  transform: translateY(-50%);
}

/* Inline waitlist row */
.waitlist-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
  max-width: 520px;
}
.waitlist-row .input { flex: 1; }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0;
  transition: padding 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav.scrolled {
  padding: 10px clamp(12px, 2.5vw, 32px);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--nav-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid transparent;
  border-bottom-color: rgba(196, 206, 229, 0.07);
  border-radius: 0;
  transition: border-radius 0.38s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.38s ease,
              border-color 0.38s ease,
              box-shadow 0.38s ease;
}
.nav.scrolled .nav-inner {
  border-radius: 999px;
  background: var(--nav-bg-scrolled);
  border-color: rgba(196, 206, 229, 0.16);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.22);
}
[data-theme="light"] .nav.scrolled .nav-inner {
  border-color: rgba(55, 72, 110, 0.18);
  box-shadow: 0 4px 28px rgba(55, 72, 110, 0.10);
}
@media (max-width: 720px) { .nav-inner { padding: 14px 22px; } }
.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav-link {
  font-size: 12px;
  color: var(--stone);
  transition: color var(--dur-xs), border-color var(--dur-xs), background var(--dur-xs);
  position: relative;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}
.nav-link:hover, .nav-link.active {
  color: var(--bone);
  border-color: rgba(142, 166, 255, 0.35);
  background: rgba(142, 166, 255, 0.1);
}
.nav-link.active::after {
  display: none;
}

@media (max-width: 820px) {
  .nav-links.desktop { display: none; }
}
.nav-hamburger {
  display: none;
  background: transparent;
  border: 0;
  color: var(--fg);
  cursor: pointer;
  padding: 8px;
}
@media (max-width: 820px) {
  .nav-hamburger { display: inline-flex; flex-direction: column; gap: 5px; }
  .nav-hamburger span { display: block; width: 20px; height: 1.5px; background: currentColor; }
  .nav .btn-primary.nav-cta { display: none; }
}

/* Mobile sheet */
.nav-sheet {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 200;
  padding: 24px 20px;
  display: none;
  flex-direction: column;
  gap: 24px;
}
.nav-sheet.open { display: flex; }
.nav-sheet-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 32px;
}
.nav-sheet-links a {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 300;
  font-size: 44px;
  line-height: 1.1;
  color: var(--fg);
}
.nav-sheet-links a:hover { color: var(--bronze); }
.nav-sheet-close {
  align-self: flex-end;
  background: transparent;
  border: 0;
  color: var(--fg);
  font-size: 28px;
  cursor: pointer;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(196, 206, 229, 0.2);
  background: transparent;
  padding: 86px 0 36px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer h4 {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone-2);
  font-weight: 500;
  margin: 0 0 20px 0;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer li a { color: var(--stone-2); font-size: 14px; transition: color var(--dur-xs); }
.footer li a:hover { color: var(--fg); }

.footer-bottom {
  margin-top: 72px;
  padding-top: 24px;
  border-top: 1px solid rgba(196, 206, 229, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  color: var(--stone);
}
.footer-bottom .legal {
  display: flex;
  gap: 20px;
}
.footer-bottom .legal a:hover { color: var(--fg); }

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.status-dot::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--signal);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--signal-glow);
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Theme-aware logo variants */
.logo-for-dark  { display: block; }
.logo-for-light { display: none; }
[data-theme="light"] .logo-for-dark  { display: none; }
[data-theme="light"] .logo-for-light { display: block; }

/* Why now list: stack roman numeral + text on very small screens */
@media (max-width: 560px) {
  .why-now-item {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    padding: 28px 0 !important;
  }
}

/* Benchmarks two-column split */
.benchmarks-split {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(48px, 8vw, 96px);
  align-items: center;
}
@media (max-width: 820px) {
  .benchmarks-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Waitlist split layout */
.waitlist-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 820px) {
  .waitlist-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Theme-aware hero/section backgrounds */
.hero-bg-dark  { display: block; }
.hero-bg-light { display: none; }
[data-theme="light"] .hero-bg-dark  { display: none; }
[data-theme="light"] .hero-bg-light { display: block; }

/* Flowers section scrim — dark over dark image, light over light image */
.flowers-scrim {
  background: linear-gradient(to bottom, rgba(6,7,11,0.52) 0%, rgba(6,7,11,0.78) 100%);
}
[data-theme="light"] .flowers-scrim {
  background: linear-gradient(to bottom, rgba(247,249,255,0.58) 0%, rgba(247,249,255,0.84) 100%);
}

/* Text shadow for dark-image sections; suppressed in light mode */
.on-image-text { text-shadow: 0 1px 8px rgba(0,0,0,0.5); }
[data-theme="light"] .on-image-text { text-shadow: none; }

/* Footer scrim */
.footer-scrim {
  background: linear-gradient(to bottom, rgba(6,7,11,0.38) 0%, rgba(6,7,11,0.55) 100%);
}
[data-theme="light"] .footer-scrim {
  background: linear-gradient(to bottom, rgba(247,249,255,0.38) 0%, rgba(247,249,255,0.55) 100%);
}

