/* --- Footer Grid Styles (Global Footer Consistency) --- */
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2em;
  padding: 1.5em 2em 0.5em 2em;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-logo {
  margin-bottom: 0.5em;
}
@media (max-width: 900px) {
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2em;
    padding: 1.2em 1em 0.5em 1em;
  }
  .footer-logo {
    margin-bottom: 0.7em;
  }
  .site-footer nav ul {
    flex-direction: column;
    gap: 0.7em;
    align-items: flex-start;
  }
}
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}
main {
  flex: 1 0 auto;
  width: 100%;
  margin: 0;
  padding: 0;
}
.site-footer {
  flex-shrink: 0;
  width: 100%;
  margin: 0;
  padding: 0;
}
/* Responsive: card-list and bubble-inner column stacking for mobile */
@media (max-width: 900px) {
  .card-list .bubble-inner,
  .bubble-card .bubble-inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.2em !important;
  }
  .card-list,
  .bubble-card {
    min-width: 0 !important;
    width: 98vw !important;
    max-width: 100vw !important;
    padding-left: 0.5em !important;
    padding-right: 0.5em !important;
  }
}
/* --- Burger Menu Styles --- */
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 120;
}
.burger-bar {
  width: 28px;
  height: 4px;
  background: #1565c0;
  margin: 3px 0;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(.7,-0.4,.3,1.4);
}

@media (max-width: 900px) {
  .burger-menu { display: flex; }
  nav.main-nav ul {
    position: fixed;
    top: 60px;
    right: 0;
    left: 0;
    background: #fff;
    box-shadow: 0 8px 32px 0 #42a5f544;
    border-radius: 0 0 18px 18px;
    flex-direction: column;
    gap: 0.5em;
    min-width: 180px;
    padding: 1.2em 0.5em 1.5em 0.5em;
    display: none;
    z-index: 99999;
    width: 100vw;
    max-width: 100vw;
    text-align: right;
  }
  nav.main-nav ul.open { display: flex; z-index: 99999; }
  nav.main-nav ul li { text-align: right; }
}

/* Tone down 3D effects for mobile */
@media (max-width: 640px) {
  .card, .bubble-card, .about-cards > div {
    box-shadow: 0 2px 8px rgba(21,101,192,0.10);
    background: #fff;
    border-radius: 16px;
    background-image: none !important;
  }
  .jazz-border {
    filter: none !important;
    opacity: 0.7;
  }
}

/* Ensure .jazz-border is always visible */
.jazz-border {
  border: 2.5px solid #42a5f5;
  border-radius: 18px;
  box-shadow: 0 0 12px 2px #b3dafe88, 0 0 2px #42a5f5;
  animation: jazz-border-anim 2.2s linear infinite alternate;
  pointer-events: none;
  z-index: 2;
}
@keyframes jazz-border-anim {
  0% { box-shadow: 0 0 8px 1px #b3dafe88, 0 0 2px #42a5f5; }
  100% { box-shadow: 0 0 18px 4px #42a5f5cc, 0 0 4px #b3dafe; }
}
/* --- All41 Modern Minimal Redesign --- */
:root {
  --color-blue: #1565c0;
  --color-blue-light: #e3f0fc;
  --color-blue-dark: #0d47a1;
  --color-white: #fff;
  --color-grey: #f7fafd;
  --color-grey-dark: #e3e8ee;
  --color-text: #23262b;
  --color-text-muted: #6b7a90;
  --radius: 18px;
  --shadow: 0 8px 32px rgba(21,101,192,0.13), 0 1.5px 8px rgba(13,71,161,0.10);
  --shadow-3d: 0 12px 36px 0 rgba(21,101,192,0.18), 0 2px 16px 0 rgba(13,71,161,0.13);
  --shadow-glow: 0 0 32px 8px #42a5f5cc;
  --max-width: 1100px;
  --font-base: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Exo 2', var(--font-base);
  --transition-snappy: cubic-bezier(.7,-0.4,.3,1.4) 0.7s;
  --transition-hero: cubic-bezier(.8,-0.2,.2,1.2) 1.2s;
}

html { box-sizing: border-box; scroll-behavior: smooth; }
*, *::before, *::after { box-sizing: inherit; }

body {
  margin: 0;
  font-family: var(--font-base);
  font-size: 1.05rem;
  line-height: 1.7;
  background: url('/assets/images/background.png') repeat, var(--color-grey);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: var(--color-blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--color-blue-dark); }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

header.site-header {
  background: var(--color-white);
  box-shadow: var(--shadow);
  padding: 1.2rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo img {
  height: 38px;

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}

nav.main-nav a {
  color: var(--color-blue-dark);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.4em 0.9em;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
}
nav.main-nav a[aria-current="page"], nav.main-nav a.active {
  background: var(--color-blue-light);
  color: var(--color-blue);
}
nav.main-nav a:hover {
  background: var(--color-blue-light);
  color: var(--color-blue-dark);
}

main {
  min-height: 60vh;
}

.hero {
  background: url('/assets/images/hero.png') no-repeat center/cover, linear-gradient(120deg, #1565c0 0%, #42a5f5 100%);
  padding: 4rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  left: 0; top: 0; width: 100%; height: 100%;
  background: linear-gradient(100deg, transparent 60%, #42a5f5 100%);
  opacity: 0.18;
  pointer-events: none;
  z-index: 1;
}
.hero .hermes-streak {
  position: absolute;
  top: 30%; left: -10%;
  width: 120%; height: 120px;
  background: linear-gradient(90deg, #fff0 0%, #42a5f5cc 40%, #fff0 100%);
  filter: blur(12px) brightness(1.2);
  opacity: 0.7;
  border-radius: 80px;
  transform: skewY(-12deg);
  animation: hermes-streak-move 3.5s var(--transition-hero) infinite alternate;
  z-index: 2;
}
@keyframes hermes-streak-move {
  0% { left: -10%; opacity: 0.5; }
  60% { left: 10%; opacity: 0.9; }
  100% { left: 30%; opacity: 0.3; }
}
.hero .container {
  background: rgba(255,255,255,0.98);
  border-radius: var(--radius);
  box-shadow: var(--shadow-3d);
  padding: 2.5rem 2rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  position: relative;
  z-index: 10;
  transition: box-shadow var(--transition-snappy), transform var(--transition-snappy);
}
.hero .container:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-6px) scale(1.025) rotateX(2deg);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 2.7rem;
  color: var(--color-blue-dark);
  margin-bottom: 0.5em;
  letter-spacing: 0.5px;
  text-shadow: 0 4px 24px #42a5f5cc, 0 1.5px 0 #fff;
  animation: hero-title-fade 1.2s var(--transition-hero) both;
}
@keyframes hero-title-fade {
  0% { opacity: 0; transform: translateY(40px) scale(0.95); }
  100% { opacity: 1; transform: none; }
}
.hero .lead {
  font-size: 1.22rem;
  color: #1976d2;
  margin-bottom: 1.5em;
  text-shadow: 0 2px 12px #42a5f5cc;
  animation: hero-lead-fade 1.5s 0.2s var(--transition-hero) both;
}
@keyframes hero-lead-fade {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: none; }
}
.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.7em 2em;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  background: var(--color-blue);
  color: #fff;
  box-shadow: 0 2px 8px rgba(21,101,192,0.08);
  transition: background 0.2s, box-shadow 0.2s;
}
.btn.secondary {
  background: var(--color-blue-light);
  color: var(--color-blue-dark);
  border: 1px solid var(--color-blue);
}
.btn:hover {
  background: var(--color-blue-dark);
  color: #fff;
}
.btn.secondary:hover {
  background: var(--color-blue);
  color: #fff;
}

section.cards, section.pillars, section.about-cards {
  background: transparent;
  padding: 3rem 0;
}
.card-list, .about-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.card, .about-cards > div {
  background: linear-gradient(120deg, #fafdff 0%, #e3f0fc 40%, #b3dafe 80%, #fff 100%);
  border-radius: 22px;
  box-shadow:
    0 4px 32px 0 rgba(33,150,243,0.16),
    0 0.5px 0 #fff,
    0 0 0 2.5px #b3dafe55 inset,
    0 0 24px 4px #42a5f5cc inset;
  padding: 2.4rem 2rem 2.4rem 2rem;
  flex: 1 1 340px;
  min-width: 260px;
  max-width: 420px;
  position: relative;
  overflow: hidden;
  border: 2.5px solid transparent;
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  transition: box-shadow 0.33s cubic-bezier(.4,2,.6,1), transform 0.33s cubic-bezier(.4,2,.6,1), background 0.33s cubic-bezier(.4,2,.6,1);
  font-family: var(--font-display);
  letter-spacing: 0.01em;
}
.card::before, .about-cards > div::before {
  content: '';
  position: absolute;
  top: -30px; left: -30px; width: 120%; height: 120%;
  background: linear-gradient(120deg, #fff 10%, #b3dafe 40%, #42a5f5 70%, #e3f0fc 100%);
  opacity: 0.13;
  filter: blur(22px) saturate(2.2);
  z-index: 0;
  pointer-events: none;
  border-radius: 30px;
  animation: shimmer 3.2s linear infinite;
.card::after, .about-cards > div::after {
  content: '';
  position: absolute;
  bottom: 18px; right: 24px; width: 110px; height: 18px;
  background: linear-gradient(90deg, #fff 0%, #b3dafe 60%, #42a5f5 100%);
  opacity: 0.22;
  filter: blur(8px);
  border-radius: 12px;
  z-index: 1;
  pointer-events: none;
  animation: shimmer 2.8s linear infinite reverse;
}
@keyframes shimmer {
  0% { opacity: 0.13; filter: blur(22px) saturate(2.2); }
  50% { opacity: 0.22; filter: blur(16px) saturate(2.8); }
  100% { opacity: 0.13; filter: blur(22px) saturate(2.2); }
}
}
.card:hover, .about-cards > div:hover {
  box-shadow:
    0 12px 48px 0 rgba(33,150,243,0.22),
    0 2.5px 0 #fff,
    0 0 0 3px #42a5f5cc inset,
    0 0 32px 6px #42a5f5cc inset;
  background: linear-gradient(120deg, #fff 0%, #b3dafe 40%, #42a5f5 100%);
  transform: translateY(-10px) scale(1.045) perspective(800px) rotateX(4deg) rotateY(-3deg);
.card::after, .about-cards > div::after {
  content: '';
  position: absolute;
  bottom: 12px; right: 18px; width: 80px; height: 18px;
  background: linear-gradient(90deg, #fff 0%, #b3dafe 60%, #42a5f5 100%);
  opacity: 0.33;
  filter: blur(6px);
  border-radius: 12px;
  z-index: 1;
  pointer-events: none;
}
.card .chrome-shine, .about-cards > div .chrome-shine {
  position: absolute;
  top: -60px; left: -60px; width: 180px; height: 180px;
  background: linear-gradient(120deg, rgba(255,255,255,0.8) 0%, rgba(179,218,254,0.7) 60%, rgba(66,165,245,0.4) 100%);
  opacity: 0.8;
  filter: blur(10px) saturate(2.2);
  border-radius: 50%;
  pointer-events: none;
  animation: chromeShine 2.2s cubic-bezier(.4,2,.6,1) infinite alternate;
  z-index: 2;
}
@keyframes chromeShine {
  0% { transform: translateX(0) translateY(0) scale(1); opacity: 0.7; }
  100% { transform: translateX(120px) translateY(60px) scale(1.2); opacity: 0.3; }
}
}
.card h2, .about-cards h2 {
  color: #1565c0;
  text-shadow: 0 2px 12px #b3dafe, 0 1.5px 0 #fff;
  font-weight: 800;
  letter-spacing: 0.7px;
  font-size: 1.45rem;
  margin-top: 0;
  margin-bottom: 0.7em;
  font-family: var(--font-display);
.explosive-accent {
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #fff 0%, #42a5f5 40%, #ffb300 60%, #1565c0 100%);
  box-shadow: 0 0 18px 4px #42a5f5cc, 0 0 8px 2px #ffb30099;
  border-radius: 8px;
  margin: 0.7em 0 1.2em 0;
  animation: accentExplode 2.2s cubic-bezier(.4,2,.6,1) infinite alternate;
}
@keyframes accentExplode {
  0% { filter: brightness(1) blur(0px); }
  60% { filter: brightness(1.25) blur(2px); }
  100% { filter: brightness(1) blur(0px); }
}
.card p, .about-cards p {
  color: #23262b;
  font-size: 1.08rem;
  text-shadow: 0 1px 0 #fff;
}
}
.card ul, .about-cards ul {
  padding-left: 1.2em;
}
.cta {
  background: var(--color-grey-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem 2rem;
  text-align: center;
  margin-top: 2rem;
}
.site-footer {
  background: var(--color-white);
  padding: 2.5rem 0 1.2rem;
  margin-top: 3rem;
  box-shadow: 0 -2px 12px rgba(21,101,192,0.06);
  font-size: 0.97rem;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.footer-logo {
  height: 28px;
  width: auto;
  display: inline-block;
  margin-bottom: 0.7em;
}
.legal-line {
  text-align: center;
  padding-top: 1.2rem;
  color: var(--color-text-muted);
  font-size: 0.92rem;
}
@media (max-width: 900px) {
  .card-list, .about-cards, .footer-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .hero .container {
    padding: 1.5rem 1rem;
  }
}
  width: auto;
  display: block;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: var(--space-sm);
  .btn {
    display: inline-block;
    font-weight: 700;
    font-size: 1.08rem;
    padding: 0.7em 2em;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    background: linear-gradient(100deg, #1976d2 0%, #42a5f5 100%);
    color: #fff;
    box-shadow: 0 2px 12px #42a5f5cc;
    transition: background 0.3s var(--transition-snappy), box-shadow 0.3s var(--transition-snappy), transform 0.3s var(--transition-snappy);
    position: relative;
    overflow: hidden;
  }
  .btn::after {
    content: '';
    position: absolute;
    left: 50%; top: 50%;
    width: 0; height: 0;
    background: radial-gradient(circle, #42a5f5cc 0%, transparent 80%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
    z-index: 0;
  }
  .btn:active::after {
    width: 300px;
    height: 300px;
  }
  .btn.secondary {
    background: linear-gradient(100deg, #e3f0fc 0%, #b3dafe 100%);
    color: var(--color-blue-dark);
    border: 1px solid var(--color-blue);
  }
  .btn:hover {
    background: linear-gradient(100deg, #42a5f5 0%, #1976d2 100%);
    color: #fff;
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px) scale(1.04);
  }
  .btn.secondary:hover {
    background: linear-gradient(100deg, #42a5f5 0%, #e3f0fc 100%);
    color: var(--color-blue-dark);
  }
.hero {
  padding: var(--space-2xl) 0 var(--space-xl);
  /* Hero image: non-repeating, cover */
  background: url('/assets/images/hero.png') no-repeat center / cover;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(66,165,245,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  text-align: right;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 var(--space-md);
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero p {
  font-size: 1rem;
  max-width: 600px;
  margin-bottom: var(--space-lg);
  color: var(--color-offwhite);
}

@media (max-width: 640px) {
  .hero .container {
    justify-content: center;
    text-align: center;
  }
  .logo img {
    height: 32px;
  }
}

.lead {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Sections with spacing */
section {
  padding: var(--space-xl) 0;
}

section h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0 0 var(--space-lg);
  color: var(--color-white);
}

/* Cards with 3D depth */
.pillars {
  background: rgba(255,255,255,0.97);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  color: #1a1d21;
}

.pillars-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.pillars-list li {
  background: #fff;
  color: #1a1d21;
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(0,0,0,0.10);
  border: 1px solid rgba(13,71,161,0.13);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.pillars-list li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 44px !important;
  max-width: 180px;
  width: auto;
  filter: drop-shadow(0 2px 12px #42a5f5cc) drop-shadow(0 0 2px #fff) !important;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
}

.pillars-list li:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  border-color: rgba(66,165,245,0.35);
}

.pillars-list li:hover::before {
  transform: scaleX(1);
}

.pillars-list li strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-blue-primary);
  font-size: 0.95rem;
}

/* CTA section */
.cta {
  background: var(--color-anthracite-card);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255,255,255,0.06);
}

/* Buttons with elevation */
.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 0.9rem;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn.primary {
  background: linear-gradient(135deg, var(--color-blue-secondary), var(--color-blue-primary));
  color: #fff;
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn.secondary {
  background: var(--color-anthracite-card);
  color: var(--color-blue-light);
  border: 1px solid var(--color-blue-secondary);
}

.btn.secondary:hover {
  background: var(--color-blue-secondary);
  color: #fff;
  transform: translateY(-2px);
}

/* Footer depth */
.site-footer {
  background: var(--color-anthracite-surface);
  padding: var(--space-xl) 0 var(--space-md);
  margin-top: var(--space-2xl);
  box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
  font-size: 0.875rem;
}

.footer-logo {
  height: 28px;
  width: auto;
  display: inline-block;
}

.footer-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: var(--space-lg);
}

.footer-grid nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid nav a {
  display: inline-block;
  margin-bottom: var(--space-xs);
  font-size: 0.875rem;
}

.legal-line {
  text-align: center;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* Forms with depth */
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--space-lg);
}

.form-group label {
  margin-bottom: var(--space-xs);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-offwhite);
}

input, textarea {
  background: var(--color-anthracite-card);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--color-text);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 0.9rem;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-inset);
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--color-blue-secondary);
  box-shadow: 0 0 0 3px rgba(25,118,210,0.15), var(--shadow-inset);
}

.form-note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: var(--space-sm);
}

.cred-list {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0;
}

.cred-list li {
  padding: var(--space-xs) 0 var(--space-xs) var(--space-md);
  border-left: 2px solid var(--color-blue-secondary);
  margin-bottom: var(--space-sm);
  color: var(--color-offwhite);
}

.db-note {
  font-size: 0.8rem;
  padding: var(--space-sm);
  background: var(--color-anthracite-card);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--color-blue-secondary);
}

.db-note code {
  color: var(--color-blue-light);
  font-weight: 600;
}

/* Mobile nav */
.nav-toggle { display: none; }


/* Accessibility */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}
