/* ==========================================================================
   Wedding Planner — Production Stylesheet
   Design System: VenueMap Dark Glass Morphism
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. :root CSS Variables
   -------------------------------------------------------------------------- */
:root {
  --vm-text-primary: #f9fafb;
  --vm-text-secondary: rgba(249,250,251,.72);
  --vm-text-muted: rgba(148,163,184,.95);
  --vm-gradient-main: linear-gradient(90deg, #3b82f6, #8b5cf6 50%, #ec4899);
  --vm-radius-md: 1.25rem;
  --vm-radius-lg: 1.75rem;
  --vm-radius-pill: 999px;
  --vm-space-sm: 1rem;
  --vm-space-md: 1.5rem;
  --vm-space-lg: 2.25rem;
  --vm-space-xl: 3rem;
  --vm-font-sans: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  --vm-text-h1: clamp(2.4rem, 4.6vw, 3.5rem);
  --vm-text-h2: clamp(1.9rem, 3.6vw, 2.6rem);
  --vm-text-h3: clamp(1.4rem, 2.4vw, 1.9rem);
  --vm-ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --vm-duration-fast: 160ms;
  --vm-duration-normal: 240ms;
}

/* --------------------------------------------------------------------------
   2. Reset + Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  background: #080b14;
  color: var(--vm-text-primary);
  font-family: var(--vm-font-sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html { scroll-behavior: smooth; }

a { color: inherit; }

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

h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -.03em;
  margin: 0 0 var(--vm-space-sm);
}

h1 {
  font-size: var(--vm-text-h1);
  line-height: 1.02;
}

h2 {
  font-size: var(--vm-text-h2);
  line-height: 1.08;
}

.vm-section > h2 {
  text-align: center;
}

h3 {
  font-size: var(--vm-text-h3);
  line-height: 1.1;
}

.vm-section-h3 {
  text-align: center;
  margin-bottom: var(--vm-space-md);
}

p {
  margin: 0 0 1rem;
  color: var(--vm-text-secondary);
  line-height: 1.6;
}

.vm-section > p {
  text-align: center;
}

strong {
  color: var(--vm-text-primary);
  font-weight: 600;
}

mark {
  background: transparent;
  border-radius: 0;
  color: #10b981;
  font-weight: 700;
  padding: 0;
  text-shadow: 0 0 12px rgba(16,185,129,.3);
}

/* --------------------------------------------------------------------------
   3. Accessibility
   -------------------------------------------------------------------------- */
.sr-only, .vm-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   4. Skip Link
   -------------------------------------------------------------------------- */
.vm-skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--vm-gradient-main);
  color: #fff;
  padding: .5rem 1rem;
  text-decoration: none;
  z-index: 100;
  border-radius: 0 0 .5rem 0;
}
.vm-skip-link:focus { top: 0; }

/* --------------------------------------------------------------------------
   5. Layout Containers
   -------------------------------------------------------------------------- */
.vm-shell {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--vm-space-lg) var(--vm-space-md) var(--vm-space-xl);
}

.vm-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--vm-space-md);
}

/* --------------------------------------------------------------------------
   6. Site Header (Sticky Glass)
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: radial-gradient(ellipse at 30% 0, rgba(139,92,246,.15) 0, transparent 50%), rgba(15,15,25,.85);
  border-bottom: 1px solid rgba(139,92,246,.25);
  box-shadow: 0 4px 30px rgba(139,92,246,.15), inset 0 1px 0 hsla(0,0%,100%,.05);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: .75rem 1.5rem;
}

.header__logo img {
  height: 45px;
  width: auto;
  transition: transform .3s ease, filter .3s ease;
}

.header__logo:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* --------------------------------------------------------------------------
   7. Navigation
   -------------------------------------------------------------------------- */
.main-nav {
  display: flex;
  align-items: center;
  min-height: 44px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  min-height: 44px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .6rem 1rem;
  font-size: .9rem;
  font-weight: 500;
  color: hsla(0,0%,100%,.9);
  text-decoration: none;
  background: transparent;
  border: none;
  border-radius: .5rem;
  cursor: pointer;
  font-family: var(--vm-font-sans);
  transform: translateZ(0);
  transition: color .25s ease, background-color .25s ease, opacity .25s ease;
}

.nav-link:hover,
.nav-link:focus {
  color: #fff;
  background: rgba(139,92,246,.15);
}

.nav-link--award {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: radial-gradient(ellipse at 30% 0, rgba(251,191,36,.15) 0, transparent 50%), rgba(15,15,25,.85);
  border: 1px solid rgba(251,191,36,.4);
  box-shadow: 0 4px 15px rgba(0,0,0,.3), inset 0 1px 0 hsla(0,0%,100%,.05);
  color: #fbbf24 !important;
  font-weight: 600;
}

.nav-link--award:hover {
  background: rgba(251,191,36,.12);
  border-color: rgba(251,191,36,.6);
  box-shadow: 0 6px 20px rgba(0,0,0,.4), inset 0 1px 0 hsla(0,0%,100%,.08);
  color: #fcd34d !important;
}

.nav-cta {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: radial-gradient(ellipse at 30% 0, rgba(16,185,129,.15) 0, transparent 50%), rgba(15,15,25,.85);
  border: 1px solid rgba(16,185,129,.4);
  border-radius: .5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,.3), inset 0 1px 0 hsla(0,0%,100%,.05);
  color: #fff !important;
  font-weight: 600;
  min-height: 44px;
  transform: translateZ(0);
  transition: all .25s ease;
  will-change: transform;
}

.nav-cta:hover {
  background: rgba(16,185,129,.12);
  border-color: rgba(16,185,129,.6);
  box-shadow: 0 6px 20px rgba(0,0,0,.4), inset 0 1px 0 hsla(0,0%,100%,.08);
  transform: translateY(-2px) translateZ(0);
}

.dropdown-arrow {
  font-size: .7rem;
  opacity: .7;
  transition: transform .25s ease;
}

.dropdown-toggle[aria-expanded="true"] .dropdown-arrow {
  transform: rotate(180deg);
}

.award-badge {
  font-size: 1rem;
}

/* --------------------------------------------------------------------------
   8. Dropdown Menu
   -------------------------------------------------------------------------- */
.dropdown-menu {
  position: absolute;
  top: calc(100% + .5rem);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  min-width: 220px;
  padding: .5rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: linear-gradient(135deg, rgba(20,15,45,.98), rgba(35,25,70,.98));
  border: 1px solid rgba(139,92,246,.25);
  border-radius: .75rem;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  box-shadow: 0 10px 40px rgba(0,0,0,.4), 0 0 30px rgba(139,92,246,.15), inset 0 1px 0 hsla(0,0%,100%,.05);
  will-change: opacity, transform;
  z-index: 1001;
}

.nav-item.has-dropdown:hover .dropdown-menu,
.nav-item.has-dropdown:focus-within .dropdown-menu,
.has-dropdown.is-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: .65rem 1rem;
  color: hsla(0,0%,100%,.85);
  text-decoration: none;
  border-radius: .5rem;
  font-size: .875rem;
  font-weight: 400;
  transition: all .2s ease;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus {
  background: linear-gradient(135deg, rgba(139,92,246,.25), rgba(59,130,246,.25));
  color: #fff;
  padding-left: 1.25rem;
}

.dropdown-menu a[aria-current="page"] {
  background: rgba(139,92,246,.1);
  color: #a78bfa;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   9. Mobile Toggle
   -------------------------------------------------------------------------- */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: 1px solid rgba(139,92,246,.3);
  border-radius: .5rem;
  cursor: pointer;
  transition: all .25s ease;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,.9);
  border-radius: 2px;
  transition: all .25s ease;
}

.mobile-toggle[aria-expanded="true"] span:nth-child(1),
.mobile-toggle.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle[aria-expanded="true"] span:nth-child(2),
.mobile-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle[aria-expanded="true"] span:nth-child(3),
.mobile-toggle.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --------------------------------------------------------------------------
   10. Breadcrumb
   -------------------------------------------------------------------------- */
.vm-glass-box {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: radial-gradient(ellipse at 30% 0, rgba(139,92,246,.15) 0, transparent 50%), rgba(15,15,25,.85);
  border: 1px solid rgba(139,92,246,.25);
  border-radius: var(--vm-radius-lg);
  box-shadow: 0 0 30px rgba(139,92,246,.2), 0 4px 20px rgba(0,0,0,.3), inset 0 1px 0 hsla(0,0%,100%,.05);
  margin-bottom: var(--vm-space-xl);
  padding: var(--vm-space-lg);
  position: relative;
}

.breadcrumb {
  background: transparent;
  border-bottom: none;
  font-size: clamp(.75rem, 1.1vw, .85rem);
  padding: .75rem 1.5rem;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  list-style: none;
  margin: 0 auto;
  max-width: 1400px;
  padding: 0;
  font-size: .85rem;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
}

.breadcrumb__item:not(:last-child)::after {
  content: "›";
  margin-left: .5rem;
  color: rgba(139,92,246,.5);
}

.breadcrumb__link {
  color: hsla(0,0%,100%,.7);
  text-decoration: none;
  transition: color .2s ease;
}

.breadcrumb__link:hover {
  color: #a78bfa;
}

.breadcrumb__link--active {
  color: #a78bfa;
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   11. Section (Glass Morphism Base)
   -------------------------------------------------------------------------- */
.vm-section {
  position: relative;
  border-radius: var(--vm-radius-lg);
  padding: var(--vm-space-lg);
  background: radial-gradient(ellipse at 30% 0, rgba(139,92,246,.15) 0, transparent 50%), rgba(15,15,25,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(139,92,246,.25);
  box-shadow: 0 0 30px rgba(139,92,246,.2), 0 4px 20px rgba(0,0,0,.3), inset 0 1px 0 hsla(0,0%,100%,.05);
  margin-bottom: var(--vm-space-xl);
  content-visibility: auto;
  contain-intrinsic-size: 0 500px;
}

/* --------------------------------------------------------------------------
   12. Hero Section
   -------------------------------------------------------------------------- */
.vm-hero {
  text-align: center;
  padding: var(--vm-space-xl);
  content-visibility: visible;
  contain-intrinsic-size: none;
}

/* --------------------------------------------------------------------------
   13. Kicker + Secondary Title
   -------------------------------------------------------------------------- */
.vm-kicker-inline {
  display: block;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 1rem;
  color: #a78bfa;
  font-weight: 600;
  margin-bottom: 1rem;
}

.vm-h1-secondary {
  display: block;
  color: var(--vm-text-secondary);
  font-size: 1rem;
  font-weight: 500;
  margin-top: .75rem;
}

/* --------------------------------------------------------------------------
   14. Hero Intro
   -------------------------------------------------------------------------- */
.vm-hero-intro {
  margin-top: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
  line-height: 1.7;
}

.vm-lead {
  max-width: 900px;
  margin: 1.5rem auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--vm-text-secondary);
}

/* --------------------------------------------------------------------------
   15. Hero Badge (Gold variant)
   -------------------------------------------------------------------------- */
.vm-hero-badge {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: radial-gradient(ellipse at 50% 0, rgba(251,191,36,.15) 0, transparent 60%), rgba(15,15,25,.92);
  border: none;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  color: var(--vm-text-secondary);
  display: inline-block;
  font-size: .95rem;
  font-weight: 500;
  margin: 1.5rem auto;
  padding: 1.25rem 1.5rem 1rem;
  position: relative;
  text-align: center;
}

.vm-hero-badge::before {
  background: linear-gradient(90deg, transparent, #f59e0b 20%, #fbbf24 50%, #fcd34d 80%, transparent);
  border-radius: 2px;
  content: "";
  height: 2px;
  left: 10%;
  position: absolute;
  right: 10%;
  top: 0;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   16. Hero Intro Card (Purple variant + ::before)
   -------------------------------------------------------------------------- */
.vm-hero-intro-card {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: radial-gradient(ellipse at 50% 0, rgba(139,92,246,.15) 0, transparent 60%), rgba(15,15,25,.92);
  border: none;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  color: var(--vm-text-secondary);
  font-size: .95rem;
  line-height: 1.7;
  padding: 1.5rem 1rem 1.25rem;
  position: relative;
  text-align: center;
}

.vm-hero-intro-card p {
  margin: 0;
}

.vm-hero-intro-card::before {
  background: linear-gradient(90deg, transparent, #3b82f6 20%, #8b5cf6 50%, #ec4899 80%, transparent);
  border-radius: 2px;
  content: "";
  height: 2px;
  left: 10%;
  position: absolute;
  right: 10%;
  top: 0;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   17. Hero Intro Card — Green Variant
   -------------------------------------------------------------------------- */
.vm-hero-intro-card--green {
  background: radial-gradient(ellipse at 50% 0, rgba(16,185,129,.15) 0, transparent 60%), rgba(15,15,25,.92);
}

.vm-hero-intro-card--green::before {
  background: linear-gradient(90deg, transparent, #059669 20%, #10b981 50%, #34d399 80%, transparent);
}

/* --------------------------------------------------------------------------
   18. Hero Intro Card — Gold Variant
   -------------------------------------------------------------------------- */
.vm-hero-intro-card--gold {
  background: radial-gradient(ellipse at 50% 0, rgba(251,191,36,.15) 0, transparent 60%), rgba(15,15,25,.92);
}

.vm-hero-intro-card--gold::before {
  background: linear-gradient(90deg, transparent, #f59e0b 20%, #fbbf24 50%, #fcd34d 80%, transparent);
}

/* --------------------------------------------------------------------------
   19. Hero Intro Grid
   -------------------------------------------------------------------------- */
.vm-hero-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2rem auto;
  max-width: 1000px;
}

.vm-hero-intro-card__title {
  align-items: center;
  display: flex;
  font-size: 1.1rem;
  font-weight: 700;
  gap: .5rem;
  justify-content: center;
  margin-bottom: .75rem;
}

.vm-hero-intro-card__title .vm-card-emoji {
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  font-style: normal;
  -webkit-text-fill-color: unset !important;
  color: inherit !important;
}

.vm-hero-intro-card__title .vm-card-label {
  background: linear-gradient(90deg, #3b82f6, #8b5cf6 50%, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.vm-hero-intro-card--gold .vm-hero-intro-card__title .vm-card-label {
  background: linear-gradient(90deg, #f59e0b, #fbbf24 50%, #fcd34d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.vm-hero-intro-card--green .vm-hero-intro-card__title .vm-card-label {
  background: linear-gradient(90deg, #059669, #10b981 50%, #34d399);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* --------------------------------------------------------------------------
   20. Gradient Text (CRITICAL: display: inline-block!)
   -------------------------------------------------------------------------- */
.vm-gradient-text {
  background: var(--vm-gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block; /* CRITICAL - without this, gradient spans full width */
}

/* --------------------------------------------------------------------------
   21. Color Highlights
   -------------------------------------------------------------------------- */
.vm-hl-gold { color: #fbbf24; }
.vm-hl-purple { color: #a78bfa; }
.vm-hl-green { color: #10b981; }
.vm-hl-blue { color: #60a5fa; }

.vm-free {
  color: #10b981;
  font-weight: 700;
  text-shadow: 0 0 15px rgba(16,185,129,.3);
}

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

/* --------------------------------------------------------------------------
   22. Answer Capsule
   -------------------------------------------------------------------------- */
.vm-answer-capsule {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: radial-gradient(ellipse at 30% 0, rgba(16,185,129,.15) 0, transparent 50%), rgba(15,15,25,.9);
  border: none;
  border-radius: var(--vm-radius-md);
  box-shadow: 0 8px 32px rgba(0,0,0,.4), inset 0 1px 0 hsla(0,0%,100%,.05);
  color: var(--vm-text-secondary);
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 500;
  margin: 1.5rem 0;
  padding: 1.75rem 1.5rem 1.5rem;
  position: relative;
  transition: all .3s ease;
}

.vm-answer-capsule::before {
  background: linear-gradient(90deg, transparent, #059669 20%, #10b981 50%, #34d399 80%, transparent);
  border-radius: 2px;
  content: "";
  height: 2px;
  left: 10%;
  position: absolute;
  right: 10%;
  top: 0;
  z-index: 1;
}

.vm-answer-capsule:hover {
  background: radial-gradient(ellipse at 30% 0, rgba(16,185,129,.22) 0, transparent 50%), rgba(15,15,25,.95);
  box-shadow: 0 12px 40px rgba(0,0,0,.5), inset 0 1px 0 hsla(0,0%,100%,.08);
}

.vm-answer-capsule p {
  margin: 0;
  color: var(--vm-text-secondary);
}

.vm-answer-capsule strong {
  background: linear-gradient(90deg, #10b981, #34d399);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* --------------------------------------------------------------------------
   23. Summary (TL;DR) with Conic Gradient Border
   -------------------------------------------------------------------------- */
.vm-summary {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: radial-gradient(ellipse at 30% 0, rgba(139,92,246,.15) 0, transparent 50%), rgba(15,15,25,.9);
  border: none;
  border-radius: var(--vm-radius-md);
  box-shadow: 0 8px 32px rgba(0,0,0,.4), inset 0 1px 0 hsla(0,0%,100%,.05);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 2rem auto;
  max-width: 800px;
  padding: 1.75rem 2rem 1.5rem;
  position: relative;
  text-align: center;
  transition: all .3s ease;
}

.vm-summary::before {
  background: linear-gradient(90deg, transparent, #3b82f6 20%, #8b5cf6 50%, #ec4899 80%, transparent);
  border-radius: 2px;
  content: "";
  height: 2px;
  left: 10%;
  position: absolute;
  right: 10%;
  top: 0;
  z-index: 1;
}

.vm-summary::after {
  content: none;
}

.vm-summary:hover {
  background: radial-gradient(ellipse at 30% 0, rgba(139,92,246,.2) 0, transparent 50%), rgba(15,15,25,.95);
  box-shadow: 0 12px 40px rgba(0,0,0,.5), inset 0 1px 0 hsla(0,0%,100%,.08);
}

.vm-summary p {
  color: var(--vm-text-secondary);
  margin: 0;
}

.vm-summary strong {
  color: var(--vm-text-primary);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   24. Key Insight
   -------------------------------------------------------------------------- */
.key-insight {
  display: flex;
  gap: 1rem;
  background: radial-gradient(ellipse at 30% 0, rgba(139,92,246,.12) 0, transparent 50%), rgba(15,15,25,.9);
  border: none;
  border-radius: var(--vm-radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,.4), inset 0 1px 0 hsla(0,0%,100%,.05);
  padding: 1.75rem 1.5rem 1.5rem;
  margin: 2rem 0;
  position: relative;
  transition: all .3s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.key-insight::before {
  background: linear-gradient(90deg, transparent, #3b82f6 20%, #8b5cf6 50%, #ec4899 80%, transparent);
  border-radius: 2px;
  content: "";
  height: 2px;
  left: 10%;
  position: absolute;
  right: 10%;
  top: 0;
  z-index: 1;
}

.key-insight:hover {
  background: radial-gradient(ellipse at 30% 0, rgba(139,92,246,.18) 0, transparent 50%), rgba(15,15,25,.95);
  box-shadow: 0 12px 40px rgba(0,0,0,.5), inset 0 1px 0 hsla(0,0%,100%,.08);
}

.key-insight--success {
  background: radial-gradient(ellipse at 30% 0, rgba(16,185,129,.15) 0, transparent 50%), rgba(15,15,25,.9);
}

.key-insight--success::before {
  background: linear-gradient(90deg, transparent, #059669 20%, #10b981 50%, #34d399 80%, transparent);
}

.key-insight--success:hover {
  background: radial-gradient(ellipse at 30% 0, rgba(16,185,129,.22) 0, transparent 50%), rgba(15,15,25,.95);
}

.key-insight__icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
}

.key-insight__content {
  flex: 1;
  min-width: 0;
}

.key-insight__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 .75rem;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.key-insight--success .key-insight__title {
  background: linear-gradient(135deg, #10b981, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.key-insight__text {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.8;
  font-size: .95rem;
}

.key-insight__text strong {
  color: #f1f5f9;
}

/* --------------------------------------------------------------------------
   25. FAQ
   -------------------------------------------------------------------------- */
.vm-faq-list {
  margin: 2rem auto;
  max-width: 900px;
}

.vm-faq-item {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: radial-gradient(ellipse at 30% 0, rgba(139,92,246,.12) 0, transparent 50%), rgba(15,15,25,.9);
  border: none;
  border-radius: var(--vm-radius-md);
  box-shadow: 0 8px 32px rgba(0,0,0,.4), inset 0 1px 0 hsla(0,0%,100%,.05);
  margin-bottom: 1rem;
  overflow: hidden;
  position: relative;
  transition: all .3s ease;
}

.vm-faq-item::before {
  background: linear-gradient(90deg, transparent, #f59e0b 20%, #fbbf24 50%, #fcd34d 80%, transparent);
  border-radius: 2px;
  content: "";
  height: 2px;
  left: 10%;
  position: absolute;
  right: 10%;
  top: 0;
  z-index: 1;
}

.vm-faq-item:hover {
  background: radial-gradient(ellipse at 30% 0, rgba(236,72,153,.15) 0, transparent 50%), rgba(15,15,25,.95);
  box-shadow: 0 12px 40px rgba(0,0,0,.5), inset 0 1px 0 hsla(0,0%,100%,.08);
}

.vm-faq-item summary {
  color: var(--vm-text-primary);
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  list-style: none;
  padding: 1.5rem 3rem 1.25rem 1.5rem;
  position: relative;
  transition: all .3s ease;
}

.vm-faq-item summary::-webkit-details-marker {
  display: none;
}

.vm-faq-item summary::after {
  color: #fbbf24;
  content: "+";
  font-size: 1.5rem;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  transition: transform .3s ease, color .3s ease;
}

.vm-faq-item[open] summary::after {
  color: #ec4899;
  transform: translateY(-50%) rotate(45deg);
}

.vm-faq-item:hover summary {
  background: linear-gradient(90deg, #3b82f6, #8b5cf6 50%, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.vm-faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--vm-text-secondary);
  line-height: 1.7;
}

.vm-faq-answer p {
  margin: 0;
}

/* --------------------------------------------------------------------------
   26. Buttons
   -------------------------------------------------------------------------- */
.vm-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 1.6rem;
  border-radius: var(--vm-radius-pill);
  border: 1px solid rgba(16,185,129,.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: radial-gradient(ellipse at 30% 0, rgba(16,185,129,.2) 0, transparent 50%), rgba(15,15,25,.85);
  color: #10b981;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .02em;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,.3), inset 0 1px 0 hsla(0,0%,100%,.05);
  position: relative;
  transition: all var(--vm-duration-fast) var(--vm-ease-standard);
  transform: translateZ(0);
  will-change: transform;
}

.vm-button:hover {
  background: radial-gradient(ellipse at 30% 0, rgba(16,185,129,.3) 0, transparent 50%), rgba(15,15,25,.9);
  border-color: rgba(16,185,129,.6);
  box-shadow: 0 6px 20px rgba(0,0,0,.4), inset 0 1px 0 hsla(0,0%,100%,.08);
  color: #34d399;
  transform: translateY(-2px) translateZ(0);
}

.vm-button-secondary {
  background: radial-gradient(ellipse at 30% 0, rgba(139,92,246,.15) 0, transparent 50%), rgba(15,15,25,.85);
  border: 1px solid rgba(139,92,246,.3);
  color: rgba(249,250,251,.9);
}

.vm-button-secondary:hover {
  background: radial-gradient(ellipse at 30% 0, rgba(139,92,246,.25) 0, transparent 50%), rgba(15,15,25,.9);
  border-color: rgba(139,92,246,.5);
  color: #fff;
}

.vm-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vm-space-sm);
  justify-content: center;
  margin-top: var(--vm-space-md);
}

/* --------------------------------------------------------------------------
   27. See Also Grid (18 cards)
   -------------------------------------------------------------------------- */
.vm-see-also-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vm-space-md);
  justify-content: center;
  margin-top: var(--vm-space-md);
}

.vm-see-also-card {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: radial-gradient(ellipse at 30% 0, rgba(139,92,246,.12) 0, transparent 50%), rgba(15,15,25,.9);
  border: none;
  border-radius: var(--vm-radius-md);
  box-shadow: 0 8px 32px rgba(0,0,0,.4), inset 0 1px 0 hsla(0,0%,100%,.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  flex: 0 1 240px;
  max-width: 280px;
  padding: 1.75rem 1.5rem 1.5rem;
  position: relative;
  text-decoration: none;
  transition: all .3s ease;
  transform: translateZ(0);
  will-change: transform;
}

.vm-see-also-card::before {
  background: linear-gradient(90deg, transparent, #3b82f6 20%, #8b5cf6 50%, #ec4899 80%, transparent);
  border-radius: 2px;
  content: "";
  height: 2px;
  left: 15%;
  position: absolute;
  right: 15%;
  top: 0;
  z-index: 1;
}

.vm-see-also-card:hover {
  background: radial-gradient(ellipse at 30% 0, rgba(139,92,246,.18) 0, transparent 50%), rgba(15,15,25,.95);
  box-shadow: 0 12px 40px rgba(0,0,0,.5), inset 0 1px 0 hsla(0,0%,100%,.08);
  transform: translateY(-4px) translateZ(0);
}

.vm-see-also-icon {
  font-size: 2rem;
}

.vm-see-also-title {
  color: var(--vm-text-primary);
  font-size: 1rem;
  font-weight: 600;
}

.vm-see-also-desc {
  color: var(--vm-text-muted);
  font-size: .85rem;
}

/* --------------------------------------------------------------------------
   28. Footer
   -------------------------------------------------------------------------- */
.vm-footer {
  background: #080b14;
  border-top: 1px solid rgba(139,92,246,.2);
  margin-top: var(--vm-space-xl);
  padding: var(--vm-space-xl) 0 var(--vm-space-lg);
  position: relative;
}

.vm-footer-shell {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--vm-space-sm);
  text-align: center;
}

.vm-footer-brand {
  border-bottom: 1px solid rgba(148,163,184,.15);
  margin-bottom: var(--vm-space-lg);
  padding-bottom: var(--vm-space-lg);
}

.vm-footer-brand h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: .75rem;
}

.vm-footer-tagline {
  color: rgba(249,250,251,.85);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 700px;
}

.vm-footer h2.vm-gradient-text,
.vm-footer h3.vm-gradient-text {
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #3b82f6, #8b5cf6 50%, #ec4899);
  color: transparent;
  display: inline-block;
  -webkit-text-fill-color: transparent;
}

.vm-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  justify-content: center;
  border-bottom: 1px solid rgba(148,163,184,.15);
  margin-bottom: var(--vm-space-lg);
  padding-bottom: var(--vm-space-lg);
}

.vm-footer-nav a {
  color: #94a3b8;
  font-size: .95rem;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--vm-duration-fast) var(--vm-ease-standard);
}

.vm-footer-nav a:hover {
  color: #f9fafb;
}

.vm-footer-nav a[aria-current="page"] {
  color: #a78bfa;
  font-weight: 600;
}

.vm-footer-nav a.vm-footer-link--award {
  color: #fbbf24;
  font-weight: 600;
  text-shadow: 0 0 12px rgba(251,191,36,.3);
}

.vm-footer-nav a.vm-footer-link--award:hover {
  color: #fcd34d;
  text-shadow: 0 0 16px rgba(251,191,36,.5);
}

.vm-footer-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--vm-space-xl);
  border-bottom: 1px solid rgba(148,163,184,.15);
  margin-bottom: var(--vm-space-lg);
  padding-bottom: var(--vm-space-lg);
  text-align: left;
}

.vm-footer-contact-info h3,
.vm-footer-social h3 {
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.vm-footer-social {
  text-align: center;
}

.vm-footer-contact-info p {
  color: rgba(249,250,251,.8);
  font-size: .95rem;
  line-height: 1.7;
  margin: .65rem 0;
}

.vm-footer-contact-info strong {
  color: #94a3b8;
  font-weight: 600;
}

.vm-footer-contact-info a {
  color: #60a5fa;
  text-decoration: none;
}

.vm-footer-contact-info a:hover {
  color: #93c5fd;
  text-decoration: underline;
}

.vm-footer-social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.vm-footer-social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  min-height: 90px;
  padding: 1rem .75rem;
  border-radius: var(--vm-radius-md);
  text-decoration: none;
  transform: translateZ(0);
  transition: background-color var(--vm-duration-normal) var(--vm-ease-standard);
}

.vm-footer-social-link:hover {
  background-color: rgba(59,130,246,.12);
}

.vm-footer-social-icon {
  font-size: 2rem;
}

.vm-footer-social-label {
  font-size: .75rem;
  color: #94a3b8;
  text-align: center;
}

.vm-footer-maps {
  text-align: center;
  border-bottom: 1px solid rgba(148,163,184,.15);
  margin-bottom: var(--vm-space-lg);
  padding-bottom: var(--vm-space-lg);
}

.vm-footer-maps h3 {
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.vm-footer-maps-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
}

.vm-footer-map-link {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .75rem 1.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: radial-gradient(ellipse at 30% 0, rgba(59,130,246,.15) 0, transparent 50%), rgba(15,15,25,.85);
  border: 1px solid rgba(59,130,246,.3);
  border-radius: var(--vm-radius-pill);
  box-shadow: 0 4px 15px rgba(0,0,0,.3), inset 0 1px 0 hsla(0,0%,100%,.05);
  color: rgba(249,250,251,.9);
  text-decoration: none;
  font-size: .95rem;
  font-weight: 600;
  position: relative;
  transition: all var(--vm-duration-fast) var(--vm-ease-standard);
}

.vm-footer-map-link:hover {
  background: radial-gradient(ellipse at 30% 0, rgba(59,130,246,.25) 0, transparent 50%), rgba(15,15,25,.9);
  border-color: rgba(59,130,246,.5);
  box-shadow: 0 6px 20px rgba(0,0,0,.4), inset 0 1px 0 hsla(0,0%,100%,.08);
  color: #fff;
}

/* --------------------------------------------------------------------------
   29. Manager Card (Founder — Gold Border)
   -------------------------------------------------------------------------- */
.vm-footer-manager {
  border-top: 1px solid rgba(139,92,246,.2);
  margin-top: var(--vm-space-xl);
  padding-top: var(--vm-space-lg);
}

.vm-manager-card {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: radial-gradient(ellipse at 30% 0, rgba(251,191,36,.12) 0, transparent 50%), rgba(15,15,25,.9);
  border: 1px solid rgba(251,191,36,.25);
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.4), inset 0 1px 0 hsla(0,0%,100%,.05);
  margin: 0 auto;
  max-width: 800px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  position: relative;
  text-align: center;
}

.vm-manager-card::before {
  background: linear-gradient(90deg, transparent, #f59e0b 20%, #fbbf24 50%, #fcd34d 80%, transparent);
  border-radius: 2px;
  content: "";
  height: 2px;
  left: 10%;
  position: absolute;
  right: 10%;
  top: 0;
  z-index: 1;
}

.vm-manager-card__title {
  background: linear-gradient(135deg, #f59e0b, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 700;
  margin: 0 0 .5rem;
}

.vm-manager-card__role {
  background: linear-gradient(135deg, #a855f7, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  border-bottom: 1px solid rgba(139,92,246,.2);
  margin: 0 0 1.5rem;
  padding-bottom: 1rem;
}

.vm-manager-card__desc {
  color: var(--vm-text-secondary);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  text-align: left;
}

.vm-manager-card__desc cite {
  font-style: italic;
  color: var(--vm-text-primary);
}

.vm-manager-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.vm-manager-card__links a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: radial-gradient(ellipse at 30% 0, rgba(139,92,246,.15) 0, transparent 50%), rgba(15,15,25,.85);
  border: 1px solid rgba(139,92,246,.3);
  border-radius: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,.3), inset 0 1px 0 hsla(0,0%,100%,.05);
  color: rgba(249,250,251,.9);
  font-size: .9rem;
  font-weight: 500;
  padding: .6rem 1.2rem;
  text-decoration: none;
  transition: all .2s ease;
}

.vm-manager-card__links a:hover {
  background: radial-gradient(ellipse at 30% 0, rgba(139,92,246,.25) 0, transparent 50%), rgba(15,15,25,.9);
  border-color: rgba(139,92,246,.5);
  box-shadow: 0 6px 20px rgba(0,0,0,.4), inset 0 1px 0 hsla(0,0%,100%,.08);
  color: #fff;
}

.vm-manager-card__desc a,
.vm-manager-card__doi {
  color: #60a5fa;
  text-decoration: none;
}

.vm-manager-card__desc a:hover {
  text-decoration: underline;
}

.vm-manager-card__linkedin,
.vm-manager-card__orcid,
.vm-manager-card__wikidata {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

/* --------------------------------------------------------------------------
   30. Footer Legal
   -------------------------------------------------------------------------- */
.vm-footer-legal {
  text-align: center;
  padding-top: var(--vm-space-sm);
}

.vm-footer-copyright {
  color: #94a3b8;
  font-size: .9rem;
  margin-bottom: .75rem;
}

.vm-footer-copyright a {
  color: #94a3b8;
  text-decoration: none;
}

.vm-footer-copyright a:hover {
  color: #f9fafb;
  text-decoration: underline;
}

.vm-footer-keywords {
  color: var(--vm-text-muted);
  font-size: .8rem;
  line-height: 1.8;
  margin: 0 auto;
  max-width: 900px;
}

/* --------------------------------------------------------------------------
   30b. Footer/Manager Text Decoration
   -------------------------------------------------------------------------- */
.vm-footer-legal a,
.vm-manager-card a,
.vm-manager-card__doi {
  text-decoration: underline;
  text-decoration-color: rgba(139,92,246,.5);
  text-underline-offset: 2px;
}

.vm-manager-card a:hover,
.vm-manager-card__doi:hover {
  text-decoration-color: #8b5cf6;
}

/* --------------------------------------------------------------------------
   30c. Utility Classes
   -------------------------------------------------------------------------- */
.vm-heading-center {
  margin-bottom: var(--vm-space-md);
  text-align: center;
}

.vm-paragraph-center {
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
  text-align: center;
}

.vm-paragraph-center--lg {
  font-size: 1.1rem;
  line-height: 1.7;
}

.vm-see-also {
  padding: var(--vm-space-lg);
  text-align: center;
}

.vm-faq-section {
  padding: var(--vm-space-lg);
}

.vm-entity-definitions {
  padding: var(--vm-space-lg);
}

.vm-final-cta {
  padding: var(--vm-space-xl);
  text-align: center;
}

.vm-final-cta-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: var(--vm-space-md);
}

.vm-cta-contact {
  margin: 2rem 0;
}

.vm-cta-contact p {
  font-size: 1.05rem;
  margin: .5rem 0;
}

.vm-cta-contact a {
  color: #60a5fa;
  text-decoration: none;
}

.vm-cta-contact a:hover {
  text-decoration: underline;
}

.vm-button--large {
  font-size: 1.05rem;
  padding: 1rem 2rem;
}

/* --------------------------------------------------------------------------
   30d. (Removed) — box-shadow is set per-component, not globally.
   -------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------
   31. RESPONSIVE: @media (max-width: 900px) — Mobile Menu
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .mobile-toggle {
    display: flex !important;
    position: fixed;
    right: 1.5rem;
    top: .5rem;
    z-index: 1001;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(10,15,26,.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    overflow-y: auto;
    padding: 2rem;
    visibility: hidden;
    z-index: 999;
    transition: opacity .3s ease, visibility .3s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    width: 100%;
    max-width: 320px;
  }

  .nav-item {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
  }

  .nav-link {
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
    border-radius: .75rem;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    background: rgba(139,92,246,.08);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: .75rem;
    box-shadow: none;
    max-height: 0;
    max-width: 320px;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transition: max-height .3s ease, padding .3s ease;
    padding: 0;
    margin: .5rem auto 0;
    width: 100%;
  }

  .has-dropdown.is-open .dropdown-menu {
    max-height: 500px;
    padding: .5rem;
  }

  .dropdown-menu a {
    display: block;
    border-radius: .5rem;
    padding: .75rem 1rem;
    text-align: center;
  }

  .nav-item--cta {
    margin-top: 1rem;
  }

  .nav-cta {
    font-size: 1.1rem;
    justify-content: center;
    padding: 1rem;
  }

  .nav-item .dropdown-menu,
  .nav-item.has-dropdown .dropdown-menu {
    left: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
    position: static !important;
    transform: none !important;
  }
}

/* --------------------------------------------------------------------------
   32. RESPONSIVE: @media (max-width: 640px) — Mobile Content
   -------------------------------------------------------------------------- */
@media (max-width: 640px) {
  body, html {
    overflow-x: hidden;
  }

  body {
    max-width: 100vw;
  }

  * {
    max-width: 100%;
  }

  .breadcrumb {
    display: none;
  }

  .vm-section,
  .vm-section.vm-entity-definitions,
  .vm-section.vm-faq-section,
  .vm-section.vm-see-also,
  aside.vm-section {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    margin-bottom: var(--vm-space-lg) !important;
    padding: var(--vm-space-md) 0 !important;
  }

  .vm-section .vm-container,
  .vm-section > .vm-container {
    max-width: 100% !important;
    padding: 0 var(--vm-space-sm) !important;
  }

  .vm-hero {
    contain: layout style;
    min-height: auto;
    padding: var(--vm-space-md);
  }

  .vm-hero-badge {
    border-radius: .75rem !important;
    display: block !important;
    font-size: .9rem !important;
    line-height: 1.6 !important;
    margin: 1.5rem 0 !important;
    padding: 1.25rem .75rem 1rem !important;
  }

  .vm-hero-intro-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
    margin: 1.5rem 0 !important;
    max-width: 100% !important;
  }

  .vm-hero-intro-card {
    border-radius: .75rem !important;
    padding: 1.5rem 1rem 1.25rem !important;
    width: 100% !important;
  }

  .vm-hero-intro-card__title {
    font-size: 1rem !important;
  }

  .vm-summary {
    margin: 1.5rem 1rem;
    padding: 1.75rem 1.25rem;
    padding-top: 2rem;
    font-size: .95rem;
  }

  .vm-container {
    max-width: 100%;
    overflow-x: hidden;
    padding: 0 1rem;
  }

  .vm-section .vm-container {
    padding: 0 .75rem;
  }

  .vm-heading-center {
    padding: 0 .5rem;
    text-align: center;
    word-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .vm-heading-center .vm-gradient-text {
    display: inline;
    word-wrap: break-word;
    word-break: break-word;
  }

  .vm-paragraph-center,
  .vm-paragraph-center--lg {
    padding: 0 .5rem;
    text-align: center;
    word-wrap: break-word;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .key-insight {
    align-items: center;
    flex-direction: column;
    gap: .75rem;
    padding: 1.25rem;
    text-align: center;
  }

  .key-insight__icon {
    font-size: 2rem;
    text-align: center;
  }

  .key-insight__content {
    text-align: center;
    width: 100%;
  }

  .key-insight__title {
    justify-content: center;
    text-align: center;
  }

  .key-insight__text {
    text-align: center;
  }

  .vm-cta-group {
    flex-direction: column;
  }

  .vm-button {
    width: 100%;
  }

  .vm-feature-list {
    margin: 1.5rem 0;
    max-width: 100%;
    padding: 0 .25rem;
  }

  .vm-feature-list li {
    align-items: center;
    flex-direction: column;
    gap: .5rem;
    padding: 1rem .5rem;
    text-align: center;
  }

  h2, h3 {
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
  }

  h2 .vm-gradient-text,
  h3 .vm-gradient-text {
    display: inline;
  }

  .vm-footer-contact-grid {
    grid-template-columns: 1fr;
    gap: var(--vm-space-lg);
    text-align: center;
  }

  .vm-footer-contact-info {
    text-align: center;
  }

  .vm-footer-contact-info h3 {
    justify-content: center;
    text-align: center;
  }

  .vm-footer-contact-info p {
    text-align: center;
  }

  .vm-footer-social-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .vm-footer-social-link {
    min-height: 80px;
    padding: .75rem .5rem;
  }

  .vm-footer-social-icon {
    font-size: 1.6rem;
  }

  .vm-manager-card {
    padding: 1.5rem 1rem;
  }

  .vm-manager-card,
  .vm-manager-card__desc {
    text-align: center;
  }

  .vm-manager-card__links {
    align-items: center;
    flex-direction: column;
  }

  .vm-manager-card__links a {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .vm-section .vm-see-also-grid,
  .vm-see-also-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
    margin-left: calc(var(--vm-space-md) * -1) !important;
    margin-right: calc(var(--vm-space-md) * -1) !important;
    max-width: none !important;
    padding: 0 .25rem !important;
    width: calc(100% + var(--vm-space-md) * 2) !important;
  }

  .vm-section .vm-see-also-card,
  .vm-see-also-card {
    border-radius: .75rem !important;
    flex: none !important;
    margin: 0 !important;
    max-width: none !important;
    padding: 1.5rem 1rem 1.25rem !important;
    width: 100% !important;
  }

  .vm-faq-item summary {
    padding: 1.25rem 2.5rem 1rem 1.25rem;
    font-size: .95rem;
  }

  .vm-faq-answer {
    padding: 0 1.25rem 1.25rem;
  }

  .vm-geo-grid {
    gap: 1.5rem;
    grid-template-columns: 1fr;
  }

  .vm-capacity-grid {
    grid-template-columns: 1fr;
  }

  /* Disable transitions on mobile for performance */
  .breadcrumb__link,
  .dropdown-menu a,
  .entity-definition,
  .header__logo img,
  .key-insight,
  .nav-cta,
  .nav-link,
  .vm-button,
  .vm-capacity-card,
  .vm-comparison-table tbody tr,
  .vm-footer-contact-info a,
  .vm-footer-map-link,
  .vm-footer-nav a,
  .vm-footer-social-link,
  .vm-manager-card__links a,
  .vm-see-also-card {
    transition: none !important;
  }

  .nav-cta,
  .nav-link,
  .vm-button,
  .vm-capacity-card,
  .vm-footer-social-link,
  .vm-see-also-card {
    transform: none !important;
    will-change: auto !important;
  }
}

/* --------------------------------------------------------------------------
   32b. RESPONSIVE: Tablet (641px - 1023px)
   -------------------------------------------------------------------------- */
@media (min-width: 641px) and (max-width: 1023px) {
  .vm-comparison-table td,
  .vm-comparison-table th {
    font-size: .9rem;
    padding: 1rem;
  }

  .vm-footer-social-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --------------------------------------------------------------------------
   32c. RESPONSIVE: Desktop Sticky Header (1024px+)
   -------------------------------------------------------------------------- */
@media (min-width: 1024px) {
  .vm-comparison-table thead {
    background: rgba(15,23,42,.98);
    position: sticky;
    top: 0;
    z-index: 10;
  }
}

/* --------------------------------------------------------------------------
   33. @supports Fallbacks
   -------------------------------------------------------------------------- */
@supports not (backdrop-filter: blur(12px)) {
  .vm-section,
  .vm-hero-intro-card,
  .vm-hero-badge,
  .vm-summary,
  .key-insight,
  .vm-faq-item,
  .vm-see-also-card,
  .vm-manager-card {
    background: rgba(15,15,25,.95);
  }
}

/* --------------------------------------------------------------------------
   34. Print Styles
   -------------------------------------------------------------------------- */
@media print {
  body {
    background: #fff;
    color: #000;
  }

  .vm-cta-group,
  .vm-footer-maps,
  .vm-footer-social,
  .vm-skip-link,
  .site-header {
    display: none;
  }

  .vm-section {
    background: #fff;
    border: 1px solid #ccc;
    box-shadow: none;
  }

  .vm-gradient-text {
    background: none;
    color: #000;
    -webkit-text-fill-color: #000;
  }

  a {
    color: #000;
    text-decoration: underline;
  }
}
