/* ==========================================================================
   PERSPECTIVA SANA - CUSTOM THEMATIC VARIABLES & BASE STYLES
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Montserrat:wght@700;800;900&display=swap');

:root {
  /* Thematic CSS Colors - Dark Immersive Theme */
  --opti-deep-void: #060814;
  --opti-nebula-surface: rgba(13, 17, 33, 0.75);
  --opti-glass-rim: rgba(255, 255, 255, 0.08);
  --opti-glass-rim-glow: rgba(0, 242, 254, 0.3);
  --opti-glow-cyan: #00f2fe;
  --opti-glow-indigo: #7f00ff;
  --opti-text-prime: #f1f5f9;
  --opti-text-muted: #94a3b8;
  --opti-glow-gradient: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  --opti-cosmic-wash: linear-gradient(180deg, #060814 0%, #0d1121 100%);
  
  /* Fonts */
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Layout Scales - Spacious/Normal */
  --opti-breath-room: 10dvh;
  
  /* Visual Settings */
  --opti-radius-pill: 999px;
  --opti-radius-soft: 16px;
  --opti-shadow-sink: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
  --opti-shadow-radial: 0 0 25px rgba(0, 242, 254, 0.2);
}

/* Base Reset & Typography */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  background: var(--opti-deep-void);
  background-image: var(--opti-cosmic-wash);
  color: var(--opti-text-prime);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, .vis-brand-title {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
}

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

/* ==========================================================================
   GLOBAL STRUCTURE ELEMENTS (REPLACING RESERVED CLASS NAMES)
   ========================================================================== */
.vis-outer-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ==========================================================================
   HEADER / NAVIGATION (PRESET D)
   ========================================================================== */
.vis-navigation-scaffold {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6, 8, 20, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--opti-glass-rim);
  transition: all 0.3s ease;
}

.vis-navigation-scaffold:hover {
  border-bottom-color: var(--opti-glass-rim-glow);
}

.vis-nav-flex-nexus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.vis-brand-capsule {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vis-brand-emblem-svg {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 0 8px var(--opti-glow-cyan));
}

.vis-brand-title {
  font-size: 1.25rem;
  background: linear-gradient(120deg, #fff, var(--opti-glow-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* CSS-Only Mobile Menu */
.vis-burger-trigger {
  display: none;
}

.vis-burger-visualizer {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.vis-burger-visualizer span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--opti-text-prime);
  transition: 0.3s;
}

.vis-nav-items-dock {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.vis-nav-hyperlink {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--opti-text-muted);
  transition: color 0.3s, text-shadow 0.3s;
  position: relative;
  padding: 8px 0;
}

.vis-nav-hyperlink::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--opti-glow-gradient);
  transition: width 0.3s;
}

.vis-nav-hyperlink:hover {
  color: #fff;
  text-shadow: 0 0 8px var(--opti-glow-cyan);
}

.vis-nav-hyperlink:hover::after {
  width: 100%;
}

.vis-nav-cta-pill {
  background: var(--opti-glow-gradient);
  color: #000;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: var(--opti-radius-pill);
  box-shadow: var(--opti-shadow-radial);
  transition: transform 0.2s, box-shadow 0.2s;
}

.vis-nav-cta-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.4);
  color: #000;
}

/* ==========================================================================
   HERO / INTRO UNIT (PRESET D)
   ========================================================================== */
.vis-stage-wrapper {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--opti-breath-room) 0;
}

.vis-stage-immersive-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.vis-stage-shroud {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(6, 8, 20, 0.6) 0%, rgba(6, 8, 20, 0.95) 100%);
  z-index: 2;
}

.vis-stage-glass-capsule {
  position: relative;
  z-index: 3;
  width: 100%;
}

.vis-glass-monolithic-base {
  background: var(--opti-nebula-surface);
  backdrop-filter: blur(16px);
  border: 1px solid var(--opti-glass-rim);
  border-radius: var(--opti-radius-soft);
  padding: 48px;
  max-width: 650px;
  box-shadow: var(--opti-shadow-sink), var(--opti-shadow-radial);
}

.vis-glass-monolithic-base h1 {
  font-size: 2.75rem;
  line-height: 1.15;
  margin-bottom: 20px;
}

.vis-highlighted-glow-term {
  color: transparent;
  background: var(--opti-glow-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 30px rgba(0, 242, 254, 0.3);
}

.vis-lead-prose {
  font-size: 1.1rem;
  color: var(--opti-text-muted);
  margin-bottom: 32px;
}

.vis-double-trigger-hub {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   BUTTONS / ACTIONS
   ========================================================================== */
.vis-trigger-glow-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--opti-glow-gradient);
  color: #000 !important;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: var(--opti-radius-soft);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  box-shadow: var(--opti-shadow-radial);
  border: none;
  cursor: pointer;
}

.vis-trigger-glow-solid:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(0, 242, 254, 0.6);
}

.vis-trigger-outline-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--opti-text-prime) !important;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: var(--opti-radius-soft);
  border: 2px solid var(--opti-glass-rim-glow);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  cursor: pointer;
}

.vis-trigger-outline-ghost:hover {
  background: rgba(0, 242, 254, 0.1);
  border-color: var(--opti-glow-cyan);
  box-shadow: var(--opti-shadow-radial);
  transform: translateY(-3px);
}

/* ==========================================================================
   CONTENT split section
   ========================================================================== */
.vis-split-panel-row {
  display: flex;
  align-items: stretch;
  min-height: 550px;
  border-radius: var(--opti-radius-soft);
  overflow: hidden;
  border: 1px solid var(--opti-glass-rim);
  box-shadow: var(--opti-shadow-sink);
  margin-bottom: var(--opti-breath-room);
}

.vis-split-graphic-column {
  flex: 1;
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 350px;
}

.vis-split-graphic-column::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 50%, var(--opti-deep-void) 100%);
}

.vis-split-literary-column {
  flex: 1;
  background: var(--opti-nebula-surface);
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  backdrop-filter: blur(16px);
}

.vis-literary-subheading {
  color: var(--opti-glow-cyan);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.vis-split-literary-column h2 {
  font-size: 2.25rem;
  margin-bottom: 24px;
  line-height: 1.2;
}

.vis-split-literary-column p {
  color: var(--opti-text-muted);
  margin-bottom: 24px;
}

.vis-custom-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vis-custom-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.vis-bullet-glow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--opti-glow-cyan);
  box-shadow: 0 0 10px var(--opti-glow-cyan);
  margin-top: 8px;
  flex-shrink: 0;
}

/* ==========================================================================
   FEATURES / GLASS DECK PANELS (PRESET D)
   ========================================================================== */
.vis-deck-grid-container {
  padding: var(--opti-breath-room) 0;
}

.vis-deck-intro-block {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.vis-deck-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.vis-deck-plate-card {
  background: var(--opti-nebula-surface);
  border: 1px solid var(--opti-glass-rim);
  border-top: 3px solid var(--opti-glass-rim-glow);
  border-radius: var(--opti-radius-soft);
  padding: 40px;
  backdrop-filter: blur(10px);
  box-shadow: var(--opti-shadow-sink);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vis-deck-plate-card:hover {
  transform: translateY(-8px);
  border-top-color: var(--opti-glow-cyan);
  box-shadow: 0 12px 40px rgba(0, 242, 254, 0.15);
}

.vis-deck-icon-wrapper {
  width: 64px;
  height: 64px;
  background: rgba(0, 242, 254, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid var(--opti-glass-rim-glow);
}

.vis-deck-icon-svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--opti-glow-cyan);
  stroke-width: 2;
  filter: drop-shadow(0 0 6px var(--opti-glow-cyan));
}

.vis-deck-plate-card h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.vis-deck-plate-card p {
  color: var(--opti-text-muted);
  font-size: 0.95rem;
}

/* ==========================================================================
   TIMELINE / "HOW HOW IT WORKS" (PRESET D)
   ========================================================================== */
.vis-timeline-assembly {
  padding: var(--opti-breath-room) 0;
}

.vis-timeline-backbone-wrapper {
  position: relative;
  max-width: 800px;
  margin: 48px auto 0;
  padding-left: 48px;
}

.vis-timeline-backbone-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 16px;
  width: 3px;
  background: linear-gradient(180deg, var(--opti-glow-cyan) 0%, var(--opti-glow-indigo) 100%);
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.4);
}

.vis-timeline-station {
  position: relative;
  margin-bottom: 48px;
}

.vis-timeline-station:last-child {
  margin-bottom: 0;
}

.vis-timeline-orbital-node {
  position: absolute;
  left: -48px;
  top: 4px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--opti-deep-void);
  border: 3px solid var(--opti-glow-cyan);
  box-shadow: 0 0 15px var(--opti-glow-cyan);
  color: var(--opti-glow-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  z-index: 10;
}

.vis-timeline-card {
  background: var(--opti-nebula-surface);
  border: 1px solid var(--opti-glass-rim);
  border-radius: var(--opti-radius-soft);
  padding: 32px;
  backdrop-filter: blur(10px);
}

.vis-timeline-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.vis-timeline-card p {
  color: var(--opti-text-muted);
}

/* ==========================================================================
   CALL TO ACTION STRIP
   ========================================================================== */
.vis-strip-wrapper {
  padding: var(--opti-breath-room) 0;
}

.vis-strip-impact-panel {
  background: var(--opti-nebula-surface);
  border: 1px solid var(--opti-glass-rim-glow);
  border-radius: var(--opti-radius-soft);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--opti-shadow-sink), var(--opti-shadow-radial);
}

.vis-strip-impact-panel::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.vis-strip-impact-panel h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.vis-strip-impact-panel p {
  color: var(--opti-text-muted);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 32px;
}

/* ==========================================================================
   EXPERT BIOGRAPHY SPECIFICS
   ========================================================================== */
.vis-expert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: var(--opti-breath-room);
}

.vis-expert-portrait-frame {
  position: relative;
  border-radius: var(--opti-radius-soft);
  overflow: hidden;
  border: 1px solid var(--opti-glass-rim-glow);
  box-shadow: var(--opti-shadow-sink), var(--opti-shadow-radial);
}

.vis-expert-portrait-frame img {
  width: 100%;
  display: block;
}

.vis-expert-caption-scutcheon {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(6, 8, 20, 0.85);
  backdrop-filter: blur(10px);
  padding: 24px;
  border-top: 1px solid var(--opti-glass-rim);
}

/* CSS Accordion */
.vis-accordion-roster {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: var(--opti-breath-room);
}

.vis-accordion-unit {
  background: var(--opti-nebula-surface);
  border: 1px solid var(--opti-glass-rim);
  border-radius: var(--opti-radius-soft);
  overflow: hidden;
}

.vis-accordion-unit summary {
  padding: 24px;
  font-family: var(--font-display);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: none;
}

.vis-accordion-unit summary::-webkit-details-marker {
  display: none;
}

.vis-accordion-unit summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--opti-glow-cyan);
}

.vis-accordion-unit[open] summary::after {
  content: '−';
}

.vis-accordion-body {
  padding: 0 24px 24px;
  color: var(--opti-text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 16px;
}

/* Stat strip */
.vis-stats-grid-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: var(--opti-breath-room);
}

.vis-stat-pinnacle {
  background: var(--opti-nebula-surface);
  border: 1px solid var(--opti-glass-rim);
  border-radius: var(--opti-radius-soft);
  padding: 32px;
  text-align: center;
}

.vis-stat-quantum {
  font-size: 2.5rem;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--opti-glow-cyan);
  text-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
  line-height: 1;
  margin-bottom: 8px;
}

.vis-stat-label {
  color: var(--opti-text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   RESERVATION FORM & SCHEDULING
   ========================================================================== */
.vis-booking-monolith {
  max-width: 650px;
  margin: 0 auto;
  background: var(--opti-nebula-surface);
  border: 1px solid var(--opti-glass-rim-glow);
  border-radius: var(--opti-radius-soft);
  padding: 48px;
  box-shadow: var(--opti-shadow-sink), var(--opti-shadow-radial);
}

.vis-form-input-housing {
  margin-bottom: 24px;
}

.vis-form-input-housing label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  color: var(--opti-text-prime);
}

.vis-form-input-field {
  width: 100%;
  background: #090c1a;
  border: 1px solid var(--opti-glass-rim);
  border-radius: var(--opti-radius-soft);
  padding: 16px;
  color: #fff;
  font-family: var(--font-body);
  outline: none;
  transition: all 0.3s;
}

.vis-form-input-field:focus {
  border-color: var(--opti-glow-cyan);
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.2);
}

.vis-control-agreement-block {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 32px;
  cursor: pointer;
}

.vis-control-agreement-block input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--opti-glow-cyan);
  margin-top: 3px;
}

.vis-control-agreement-block span {
  font-size: 0.85rem;
  color: var(--opti-text-muted);
}

.vis-booking-sidebar-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed var(--opti-glass-rim-glow);
  border-radius: var(--opti-radius-soft);
  padding: 24px;
  text-align: center;
  margin-top: 48px;
}

.vis-booking-sidebar-card a {
  color: var(--opti-glow-cyan);
  font-weight: 600;
  text-decoration: underline;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.vis-anchor-terminal {
  background: #03050c;
  border-top: 1px solid var(--opti-glass-rim);
  padding: 64px 0 32px;
}

.vis-footer-structural-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 48px;
}

.vis-footer-links-depot {
  display: flex;
  gap: 24px;
}

.vis-footer-hyperlink {
  font-size: 0.85rem;
  color: var(--opti-text-muted);
  transition: color 0.3s;
}

.vis-footer-hyperlink:hover {
  color: var(--opti-glow-cyan);
}

.vis-disclaimer-manifesto {
  border-top: 1px solid var(--opti-glass-rim);
  padding-top: 32px;
  text-align: center;
  color: var(--opti-text-muted);
  font-size: 0.8rem;
  max-width: 800px;
  margin: 0 auto;
}

/* ==========================================================================
   COOKIE CONSENT DISPLAY
   ========================================================================== */
.vis-cookie-sanctuary {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(13, 17, 33, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--opti-glass-rim-glow);
  border-radius: var(--opti-radius-soft);
  padding: 24px;
  z-index: 9999;
  display: none;
  box-shadow: var(--opti-shadow-sink), 0 0 30px rgba(0, 0, 0, 0.8);
}

.vis-cookie-scaffold {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.vis-cookie-scaffold p {
  color: var(--opti-text-prime);
  font-size: 0.95rem;
  max-width: 800px;
}

.vis-cookie-action-cluster {
  display: flex;
  gap: 12px;
}

.vis-cookie-btn-ok {
  background: var(--opti-glow-gradient);
  color: #000;
  border: none;
  padding: 10px 24px;
  border-radius: var(--opti-radius-pill);
  font-weight: 700;
  cursor: pointer;
}

.vis-cookie-btn-no {
  background: transparent;
  color: #fff;
  border: 1px solid var(--opti-glass-rim);
  padding: 10px 24px;
  border-radius: var(--opti-radius-pill);
  cursor: pointer;
}

/* ==========================================================================
   POLICIES PAGES COMMON
   ========================================================================== */
.vis-policy-scroll {
  padding: var(--opti-breath-room) 0;
}

.vis-policy-scroll h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  text-align: center;
}

.vis-policy-content-casing {
  background: var(--opti-nebula-surface);
  border: 1px solid var(--opti-glass-rim);
  border-radius: var(--opti-radius-soft);
  padding: 48px;
  max-width: 850px;
  margin: 0 auto;
}

.vis-policy-content-casing p {
  margin-bottom: 20px;
  color: var(--opti-text-muted);
}

.vis-policy-content-casing h2 {
  font-size: 1.5rem;
  margin: 32px 0 16px;
}

/* ==========================================================================
   RESPONSIVENESS DESIGNS
   ========================================================================== */
@media (max-width: 1024px) {
  .vis-deck-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vis-stats-grid-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Navigation */
  .vis-burger-visualizer {
    display: flex;
  }
  
  .vis-nav-items-dock {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #060814;
    border-bottom: 1px solid var(--opti-glass-rim);
    padding: 32px 24px;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  
  .vis-burger-trigger:checked ~ .vis-nav-items-dock {
    display: flex;
  }

  .vis-burger-trigger:checked ~ .vis-burger-visualizer span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }

  .vis-burger-trigger:checked ~ .vis-burger-visualizer span:nth-child(2) {
    opacity: 0;
  }

  .vis-burger-trigger:checked ~ .vis-burger-visualizer span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }

  /* Responsive Layout structures */
  .vis-split-panel-row {
    flex-direction: column;
  }
  
  .vis-split-graphic-column::after {
    background: linear-gradient(180deg, transparent 50%, var(--opti-deep-void) 100%);
  }

  .vis-glass-monolithic-base {
    padding: 32px;
  }

  .vis-glass-monolithic-base h1 {
    font-size: 2rem;
  }

  .vis-expert-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .vis-deck-grid {
    grid-template-columns: 1fr;
  }

  .vis-stats-grid-row {
    grid-template-columns: 1fr;
  }
}