:root {
  --ls-radius: 12px;
  --ls-radius-lg: 18px;
  --ls-shadow: 0 8px 30px rgba(0,0,0,0.10);
  --ls-gap: 12px;
  --ls-gap-lg: 18px;

  /* ── Performance Tier (written by fpsMonitor.js via JS) ────────────────────
   * Defaults target HIGH tier so first-paint feels full speed while RAF
   * loop warms up (typically <600ms before first tier evaluation).
   *
   *  --anim-speed   : duration multiplier  (1 = normal, 1.4 = medium, 2.5 = low)
   *  --anim-enabled : 1 (run) | 0 (skip non-essential effects)
   *  --anim-tier    : 'high' | 'medium' | 'low'  (informational)
   * ----------------------------------------------------------------------- */
  --anim-speed:   1;
  --anim-enabled: 1;
  --anim-tier:    'high';
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
  }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* ── Performance tier overrides: body.perf-medium / body.perf-low ──────────
 * Written by fpsMonitor.js when FPS drops. These selectors override the
 * specific durations that cost GPU time, without touching all transitions
 * (which would break MUI ripple / modal animations).
 * ----------------------------------------------------------------------- */

/* Medium tier: slow aurora + reduce blur costs */
body.perf-medium body::before {
  animation-duration: calc(20s * 1);
  animation-duration: calc(20s * var(--anim-speed, 1.4));
}
body.perf-medium .backdrop-blur,
body.perf-medium [style*="backdrop-filter"] {
  /* Reducing blur radius is cheaper than animating it */
  backdrop-filter: blur(4px) !important;
  -webkit-backdrop-filter: blur(4px) !important;
}

/* Low tier: stop all non-essential animations, strip heavy GPU effects */
body.perf-low *:not([role="dialog"]):not(.MuiModal-root):not(.MuiDrawer-root) {
  animation-play-state: paused !important;
  animation-duration:   0.001ms !important;
}
body.perf-low body::before {
  animation: none !important;
  /* Keep the gradient but freeze it — still looks good */
  transform: none !important;
}
body.perf-low [style*="backdrop-filter"],
body.perf-low .backdrop-blur {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
/* Snap transitions to instant on LOW — feels snappier than slow lags */
body.perf-low *,
body.perf-low *::before,
body.perf-low *::after {
  transition-duration: 0ms !important;
}
/* Re-allow MUI modal/dialog transitions so they don't feel broken */
body.perf-low .MuiModal-root *,
body.perf-low .MuiDialog-root *,
body.perf-low .MuiDrawer-root * {
  transition-duration: revert !important;
  animation-play-state: running !important;
  animation-duration: revert !important;
}

/* High-contrast tweaks for AA */
@media (prefers-color-scheme: dark) {
  :root {
    --ls-shadow: 0 8px 30px rgba(0,0,0,0.4);
  }
}

/**
 * Mobile Responsive Styles
 * 
 * This file contains mobile-only styles that apply via media queries.
 * Desktop UI remains completely untouched - changes only affect screens ≤768px.
 * 
 * Breakpoints:
 * - Mobile: max-width: 768px (phones and small tablets)
 * - Small mobile: max-width: 480px (small phones)
 */

/* ============================================
   MOBILE STYLES (tablets and phones ≤768px)
   ============================================ */
@media (max-width: 768px) {

    /* --- Typography Fixes --- */
    /* Prevent text overflow - keep words intact, never break mid-word */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    .MuiTypography-h1,
    .MuiTypography-h2,
    .MuiTypography-h3,
    .MuiTypography-h4,
    .MuiTypography-h5,
    .MuiTypography-h6 {
        word-break: keep-all;
        overflow-wrap: normal;
        hyphens: none;
        -webkit-hyphens: none;
        -ms-hyphens: none;
        white-space: normal;
        line-height: 1.3;
    }

    /* Body text - wrap at words only, never break mid-word */
    p,
    span,
    .MuiTypography-body1,
    .MuiTypography-body2,
    .MuiTypography-subtitle1,
    .MuiTypography-subtitle2 {
        word-break: keep-all;
        overflow-wrap: normal;
        hyphens: none;
        white-space: normal;
    }

    /* --- Container Adjustments --- */
    .MuiContainer-root {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    /* --- Button Fixes --- */
    /* Ensure buttons don't overflow their containers */
    .MuiButton-root {
        max-width: 100%;
        white-space: normal;
        text-align: center;
        min-height: 44px;
        /* Touch-friendly minimum */
    }

    /* Stack button groups vertically on mobile */
    .MuiStack-root[class*="direction-row"] {
        flex-wrap: wrap;
    }

    /* --- Card Adjustments --- */
    .MuiCard-root,
    .MuiPaper-root {
        margin-left: 0;
        margin-right: 0;
    }

    /* --- Table Mobile Handling --- */
    /* Allow horizontal scroll for tables */
    .MuiTableContainer-root {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Table cells - keep text intact, allow scroll */
    .MuiTableCell-root {
        min-width: 60px;
        word-break: keep-all;
        hyphens: none;
    }

    /* Feature column - allow word wrapping but never break words */
    .MuiTableCell-root[scope="row"] {
        white-space: normal;
        word-break: keep-all;
        min-width: 120px;
    }

    /* Value columns - never wrap */
    .MuiTableCell-root:not([scope="row"]) {
        white-space: nowrap;
    }

    /* --- Grid Adjustments --- */
    /* Ensure grid items don't overflow */
    .MuiGrid-item {
        max-width: 100%;
    }

    /* --- Form Elements --- */
    /* Full-width inputs on mobile */
    .MuiTextField-root,
    .MuiFormControl-root {
        width: 100%;
    }

    /* Touch-friendly input heights */
    .MuiInputBase-root {
        min-height: 44px;
    }

    /* --- Spacing Adjustments --- */
    /* Reduce section padding on mobile */
    section,
    [class*="Section"] {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    /* --- Accessibility: Touch Targets --- */
    /* Ensure all interactive elements are touch-friendly (44px minimum) */
    button,
    a,
    .MuiIconButton-root,
    .MuiListItemButton-root {
        min-height: 44px;
        min-width: 44px;
    }

    /* --- Image Handling --- */
    img {
        max-width: 100%;
        height: auto;
    }

    /* --- Accordion Mobile Improvements --- */
    .MuiAccordionSummary-root {
        padding-left: 16px;
        padding-right: 16px;
    }

    .MuiAccordionDetails-root {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* ============================================
   SMALL MOBILE STYLES (phones ≤480px)
   ============================================ */
@media (max-width: 480px) {

    /* Even smaller container padding */
    .MuiContainer-root {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    /* Smaller section padding */
    section,
    [class*="Section"] {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    /* Reduce heading sizes further */
    .MuiTypography-h1 {
        font-size: clamp(1.5rem, 6vw, 2rem) !important;
    }

    .MuiTypography-h2 {
        font-size: clamp(1.25rem, 5vw, 1.75rem) !important;
    }

    .MuiTypography-h3 {
        font-size: clamp(1.1rem, 4.5vw, 1.5rem) !important;
    }

    /* Stack any remaining horizontal layouts */
    .MuiStack-root {
        flex-wrap: wrap;
    }

    /* Full-width buttons on very small screens */
    .MuiButton-root {
        width: 100%;
    }
}

/* ============================================
   UTILITY CLASSES FOR MOBILE
   ============================================ */

/* Hide on mobile */
@media (max-width: 768px) {
    .hide-on-mobile {
        display: none !important;
    }
}

/* Show only on mobile */
.show-on-mobile {
    display: none !important;
}

@media (max-width: 768px) {
    .show-on-mobile {
        display: block !important;
    }
}

/* Mobile-only full width */
@media (max-width: 768px) {
    .mobile-full-width {
        width: 100% !important;
    }
}

/* Mobile text alignment */
@media (max-width: 768px) {
    .mobile-text-center {
        text-align: center !important;
    }
}

/* Mobile stack (force vertical layout) */
@media (max-width: 768px) {
    .mobile-stack {
        flex-direction: column !important;
    }
}
/* Base usage rules wired to tokens */

/* Import mobile-specific responsive styles */

/* Backgrounds and base text */
html,
body {
  background-color: var(--bg);
  color: var(--text);
  min-width: 320px;
  /* Prevent shrinking below minimum mobile width */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

/* Aurora Ambient Background */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(124, 58, 237, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.03) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
  animation: aurora-float calc(20s * 1) ease-in-out infinite alternate;
  animation: aurora-float calc(20s * var(--anim-speed, 1)) ease-in-out infinite alternate;
}

@keyframes aurora-float {
  0% {
    transform: scale(1) translate(0, 0);
  }

  50% {
    transform: scale(1.1) translate(20px, -20px);
  }

  100% {
    transform: scale(1) translate(-20px, 20px);
  }
}

/* Surfaces and cards */
.surface,
.card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
}

/* Text tiers */
.text-primary {
  color: var(--text);
}

.text-secondary,
.text-muted {
  color: var(--text-muted);
}

.text-inverse {
  color: var(--white);
}

/* Links */
a {
  color: var(--link);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

a:visited {
  color: var(--link-visited);
}

/* Focus ring (utility + sensible defaults) */
.focus-ring:focus-visible,
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

/* Buttons (utility classes; non-invasive to MUI) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, filter .2s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover {
  background: var(--gray-100);
}

.btn-danger {
  background: var(--danger);
  color: var(--white);
}

.btn-danger:hover {
  filter: brightness(0.95);
}

.btn-soft {
  background: var(--primary-soft);
  color: var(--primary);
}

/* Badges / chips */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  border-radius: 999px;
  padding: 0.25rem 0.5rem;
  font-weight: 600;
  font-size: 0.85rem;
}

.badge--primary {
  background: var(--primary-soft);
  color: var(--primary);
}

.badge--accent {
  background: var(--orange-100);
  color: var(--accent);
}

/* Alerts */
.alert {
  border-radius: 10px;
  padding: 0.75rem 1rem;
  border: 1px solid transparent;
}

.alert.info {
  background: var(--primary-soft);
  color: var(--primary);
}

.alert.warning {
  background: var(--accent-soft);
  color: var(--accent);
}

.alert.error {
  background: var(--bg);
  border-left: 4px solid var(--danger);
  color: var(--text);
}

/* Inputs */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
select,
textarea {
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}

input::placeholder,
textarea::placeholder {
  color: var(--gray-400);
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

/* Dividers */
.divider {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 1rem 0;
}

/* Icons */
.icon {
  color: var(--text-muted);
  fill: currentColor;
}

.icon--interactive:hover {
  color: var(--primary);
  fill: currentColor;
}

/* Tables and cards */
table {
  border-collapse: collapse;
  width: 100%;
}

table th,
table td {
  border: 1px solid var(--border);
  padding: 0.5rem 0.75rem;
}

table thead th {
  background: var(--purple-100);
  color: var(--primary);
  text-align: left;
}

table.zebra tbody tr:nth-child(even) {
  background: var(--gray-100);
}

/* Optional gradient helper (hero/CTA stripes) */
.gradient-cta {
  background: linear-gradient(90deg, #8452F8, #5055E8);
  color: var(--white);
}
/* Global text effect utilities for consistent styling */

/* Soft glow suitable for body copy and helper text */
.text-glow-soft {
  text-shadow: 0 0 12px rgba(11, 99, 246, 0.15);
}

/* Stronger primary glow for hero titles or highlighted labels */
.text-glow-primary {
  text-shadow: 0 0 16px rgba(11, 99, 246, 0.28), 0 0 28px rgba(124, 58, 237, 0.18);
}

/* Primary gradient text (uses the same stops as theme.palette.gradients.primary) */
.text-gradient-primary {
  background: linear-gradient(135deg, #0B63F6 0%, #7C3AED 60%, #EC4899 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Thin outline for dark backgrounds (paired with strong contrast text) */
.text-outline {
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.35),
    0 -1px 0 rgba(0, 0, 0, 0.35),
    1px 0 0 rgba(0, 0, 0, 0.35),
    -1px 0 0 rgba(0, 0, 0, 0.35);
}

/* Utility for headings to mimic subtle depth without overpowering */
.heading-depth {
  text-shadow: 0 2px 18px rgba(11, 99, 246, 0.18);
}

.MuiDrawer-root[aria-hidden="true"],
.MuiDrawer-root .MuiBackdrop-root[aria-hidden="true"] {
  pointer-events: none !important;
}

/* When Drawer is translated off-screen, ensure no layout thrash and better perf */
.MuiDrawer-paper {
  will-change: transform;
}

/* Global dot-grid positioning if used elsewhere */
.dot-grid {
  position: fixed;
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

main.app-content {
  position: relative;
  z-index: 1;
}


.pill-nav-container {
  position: absolute;
  top: 1em;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  width: min(calc(100vw - 32px), 1120px);
  display: flex;
  justify-content: center;
}

@media (max-width: 960px) {
  .pill-nav-container {
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
}

.pill-nav {
  --nav-h: 42px;
  --logo: 36px;
  --pill-pad-x: 16px;
  --pill-gap: 3px;
  width: max-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  gap: 10px;
}

@media (max-width: 1180px) {
  .pill-nav {
    --nav-h: 40px;
    --pill-pad-x: 13px;
  }

  .pill {
    font-size: 14px;
    letter-spacing: 0.12em;
  }
}

@media (max-width: 960px) {
  .pill-nav {
    width: 100%;
    justify-content: space-between;
    padding: 0 1rem;
    background: transparent;
  }
}

.pill-nav-items {
  position: relative;
  display: flex;
  align-items: center;
  height: var(--nav-h);
  max-width: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.22));
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 9999px;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

.pill-logo {
  min-width: var(--nav-h);
  height: var(--nav-h);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.26));
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
  color: #000;
  color: var(--pill-text, var(--base, #000));
  text-decoration: none;
}

.pill-logo.has-label {
  min-width: auto;
  padding: 0 16px;
  border-radius: 9999px;
}

.pill-logo-text {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pill-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.pill-list {
  list-style: none;
  display: flex;
  align-items: stretch;
  gap: var(--pill-gap);
  margin: 0;
  padding: 3px;
  height: 100%;
}

.pill-list>li {
  display: flex;
  height: 100%;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 var(--pill-pad-x);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #000;
  color: var(--pill-text, var(--base, #000));
  text-decoration: none;
  border-radius: 9999px;
  box-sizing: border-box;
  font-weight: 700;
  font-size: 16px;
  line-height: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.pill:hover {
  background: rgba(255, 255, 255, 0.26);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.32);
}

.pill .hover-circle {
  position: absolute;
  left: 50%;
  bottom: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1;
  display: block;
  pointer-events: none;
  will-change: transform;
}

.pill .label-stack {
  position: relative;
  display: inline-block;
  line-height: 1;
  z-index: 2;
}

.pill .pill-label {
  position: relative;
  z-index: 2;
  display: inline-block;
  line-height: 1;
  will-change: transform;
}

.pill .pill-label-hover {
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  color: var(--hover-text, #fff);
  z-index: 3;
  display: inline-block;
  will-change: transform, opacity;
}

.pill.is-active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: #000;
  background: var(--base, #000);
  border-radius: 50px;
  z-index: 4;
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

@media (max-width: 960px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }
}

.mobile-menu-button {
  width: var(--nav-h);
  height: var(--nav-h);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.22));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.42);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  padding: 0;
  position: relative;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
}

.mobile-menu-button:hover {
  background: rgba(255, 255, 255, 0.25);
}

@media (max-width: 960px) {
  .mobile-menu-button {
    display: flex;
  }
}

.hamburger-line {
  width: 16px;
  height: 2px;
  background: #000;
  background: var(--base, #000);
  border-radius: 1px;
  transition: all 0.01s ease;
  transform-origin: center;
}

.mobile-menu-popover {
  position: absolute;
  top: 3.5em;
  left: 0.75rem;
  right: 0.75rem;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.28));
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 27px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.15);
  z-index: 998;
  opacity: 0;
  transform-origin: top center;
  visibility: hidden;
  /* Safe area padding for notched devices */
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu-popover .mobile-menu-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  /* Touch-friendly minimum (WCAG 2.5.5) */
  padding: 14px 20px;
  color: #000;
  color: var(--base, #000);
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.2s ease;
}

.mobile-menu-popover .mobile-menu-link:hover,
.mobile-menu-popover .mobile-menu-link.is-active {
  cursor: pointer;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
}

/* Dark mode adjustments */
@media (prefers-color-scheme: dark) {
  .pill-nav-items {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.54));
    border: 1px solid rgba(148, 163, 184, 0.18);
  }

  .pill-logo {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.84), rgba(15, 23, 42, 0.58));
    border: 1px solid rgba(148, 163, 184, 0.22);
  }

  .pill {
    background: rgba(255, 255, 255, 0.08);
  }

  .pill:hover {
    background: rgba(255, 255, 255, 0.15);
  }

  .mobile-menu-button {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hamburger-line {
    background: #fff;
  }

  .mobile-menu-popover {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-menu-popover .mobile-menu-link {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
  }

  .mobile-menu-popover .mobile-menu-link:hover,
  .mobile-menu-popover .mobile-menu-link.is-active {
    background: rgba(255, 255, 255, 0.2);
  }
}


/*# sourceMappingURL=main.8fa4abd6.css.map*/