@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Open+Sans:wght@400;600;700&display=swap');

/* CSS VARIABLES - CUSTOM PALETTE (DARK IMMERSIVE THEME) */
:root {
  --vis-deep-bg: #080b11;
  --vis-surface-bg: #111625;
  --vis-surface-trans: rgba(17, 22, 37, 0.82);
  --vis-glass-bg: rgba(255, 255, 255, 0.05);
  --vis-glass-border: rgba(255, 255, 255, 0.12);
  --vis-glow-tint: #00f2fe;
  --vis-soft-tint: #4facfe;
  --vis-grad-primary: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  --vis-snow-ink: #f1f5f9;
  --vis-mist-ink: #94a3b8;
  
  --vis-header-h: 74px;
  --vis-font-display: 'Montserrat', sans-serif;
  --vis-font-body: 'Open Sans', sans-serif;
  
  --vis-radius-soft: 16px;
  --vis-radius-pill: 9999px;
  --vis-shadow-deep: 0 16px 40px rgba(0, 0, 0, 0.6);
  --vis-shadow-glow: 0 0 25px rgba(0, 242, 254, 0.25);
  
  --vis-pad-scale: 10dvh;
}

/* BASE RESET */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--vis-deep-bg);
  color: var(--vis-snow-ink);
  font-family: var(--vis-font-body);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
  background-color: var(--vis-deep-bg);
}

/* SCROLL PROGRESS BAR (CSS ONLY) */
@keyframes vis-grow-prog {
  from { width: 0%; }
  to { width: 100%; }
}

.vis-progress-track {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--vis-grad-primary);
  z-index: 10001;
  width: 100%;
  transform-origin: left;
  animation: vis-grow-prog auto linear;
  animation-timeline: scroll();
}

/* SCROLL REVEAL EFFECT */
@keyframes vis-fade-up {
  from {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.vis-scroll-reveal {
  animation: vis-fade-up linear both;
  animation-timeline: view();
  animation-range: entry 10% cover 30%;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--vis-font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--vis-snow-ink);
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

/* COMMON LAYOUT RULES */
.vis-outer-frame {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.vis-segment-space {
  padding-top: var(--vis-pad-scale);
  padding-bottom: var(--vis-pad-scale);
}

/* GLOW BUTTON */
.vis-interactive-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--vis-font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 14px 32px;
  border-radius: var(--vis-radius-soft);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
}

.vis-interactive-trigger--primary {
  background: var(--vis-grad-primary);
  color: var(--vis-deep-bg);
  box-shadow: var(--vis-shadow-glow);
}

.vis-interactive-trigger--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(0, 242, 254, 0.45);
}

.vis-interactive-trigger--ghost {
  background: transparent;
  color: var(--vis-glow-tint);
  border: 2px solid var(--vis-glow-tint);
}

.vis-interactive-trigger--ghost:hover {
  background: rgba(0, 242, 254, 0.1);
  box-shadow: var(--vis-shadow-glow);
  transform: translateY(-2px);
}

/* HEADER STYLE (PRESET D - DARK IMMERSIVE) */
.vis-topspace {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--vis-header-h);
  background: var(--vis-surface-trans);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--vis-glass-border);
}

.vis-topspace-deck {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.vis-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--vis-font-display);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--vis-snow-ink);
  font-size: 1.2rem;
}

.vis-brand-logo svg {
  fill: none;
  stroke: url(#vis-svg-grad);
  stroke-width: 2;
  filter: drop-shadow(0 0 4px var(--vis-glow-tint));
}

.vis-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  cursor: pointer;
  z-index: 1002;
}

.vis-hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--vis-snow-ink);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.vis-menu-toggle {
  display: none;
}

.vis-deck-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.vis-deck-menu a {
  font-family: var(--vis-font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--vis-mist-ink);
  position: relative;
}

.vis-deck-menu a:hover,
.vis-deck-menu a.vis-active-link {
  color: var(--vis-glow-tint);
}

.vis-deck-menu a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--vis-grad-primary);
  transition: width 0.3s ease;
}

.vis-deck-menu a:hover::after,
.vis-deck-menu a.vis-active-link::after {
  width: 100%;
}

/* FOOTER STYLE */
.vis-footplate {
  background: var(--vis-surface-bg);
  border-top: 1px solid var(--vis-glass-border);
  padding-top: 60px;
  padding-bottom: 40px;
}

.vis-footplate-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.vis-foot-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vis-foot-brand p {
  color: var(--vis-mist-ink);
  font-size: 0.95rem;
  max-width: 400px;
}

.vis-foot-links-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vis-foot-links-stack h4 {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: var(--vis-glow-tint);
}

.vis-foot-links-stack a {
  color: var(--vis-mist-ink);
  font-size: 0.9rem;
}

.vis-foot-links-stack a:hover {
  color: var(--vis-snow-ink);
  transform: translateX(4px);
}

.vis-foot-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 30px;
  text-align: center;
}

.vis-foot-disclaimer p {
  font-size: 0.8rem;
  color: var(--vis-mist-ink);
  margin-bottom: 12px;
  line-height: 1.5;
}

.vis-foot-copyright {
  font-size: 0.85rem;
  color: var(--vis-mist-ink);
}

/* COOKIE BANNER STYLE */
.vis-cookie-shield {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 500px;
  background: var(--vis-surface-bg);
  border: 1px solid var(--vis-glass-border);
  border-radius: var(--vis-radius-soft);
  padding: 24px;
  z-index: 9999;
  box-shadow: var(--vis-shadow-deep);
  display: none;
  animation: vis-fade-up 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.vis-cookie-text {
  font-size: 0.9rem;
  color: var(--vis-snow-ink);
  margin-bottom: 16px;
}

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

.vis-cookie-btn {
  flex: 1;
  padding: 10px 16px;
  font-size: 0.8rem;
  border-radius: 8px;
}

/* INDEX HERO (PRESET D) */
.vis-masthead {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.vis-masthead-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(8, 11, 17, 0.4) 0%, rgba(8, 11, 17, 0.95) 100%);
  z-index: 1;
}

.vis-masthead-box {
  position: relative;
  z-index: 2;
  width: 100%;
}

.vis-glass-pod {
  background: var(--vis-glass-bg);
  border: 1px solid var(--vis-glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--vis-radius-soft);
  padding: 48px;
  max-width: 620px;
  box-shadow: var(--vis-shadow-deep);
}

.vis-glass-pod h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  line-height: 1.15;
  background: var(--vis-grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vis-glass-pod p {
  font-size: 1.1rem;
  color: var(--vis-mist-ink);
  margin-bottom: 32px;
}

/* INDEX CONTENT SECTION (Split bg2.webp on Left, Text on Right) */
.vis-split-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--vis-surface-bg);
  border-radius: var(--vis-radius-soft);
  overflow: hidden;
  box-shadow: var(--vis-shadow-deep);
}

.vis-split-media {
  background-size: cover;
  background-position: center;
  min-height: 450px;
}

.vis-split-content {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vis-split-content h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}

.vis-split-content p {
  color: var(--vis-mist-ink);
  margin-bottom: 30px;
}

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

.vis-bullet-node {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--vis-snow-ink);
}

.vis-bullet-marker {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vis-glow-tint);
  box-shadow: 0 0 8px var(--vis-glow-tint);
  margin-top: 9px;
  flex-shrink: 0;
}

/* INDEX FEATURES (3-column Glassmorphism) */
.vis-grid-promo {
  text-align: center;
  margin-bottom: 60px;
}

.vis-grid-promo h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.vis-grid-promo p {
  color: var(--vis-mist-ink);
  max-width: 600px;
  margin: 0 auto;
}

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

.vis-panel-glass {
  background: var(--vis-glass-bg);
  border: 1px solid var(--vis-glass-border);
  border-top: 3px solid var(--vis-glow-tint);
  border-radius: var(--vis-radius-soft);
  padding: 40px 30px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: var(--vis-shadow-deep);
}

.vis-panel-glass:hover {
  border-top-color: var(--vis-soft-tint);
  transform: translateY(-6px);
  box-shadow: var(--vis-shadow-glow);
}

.vis-icon-envelope {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border: 1px solid var(--vis-glass-border);
}

.vis-icon-envelope svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--vis-glow-tint);
  stroke-width: 2;
}

.vis-panel-glass h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.vis-panel-glass p {
  font-size: 0.95rem;
  color: var(--vis-mist-ink);
}

/* INDEX HOW IT WORKS (Vertical Left Progress Bar Timeline) */
.vis-timeline-wrap {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 60px;
}

.vis-timeline-line {
  position: absolute;
  left: 20px;
  top: 10px;
  bottom: 10px;
  width: 3px;
  background: var(--vis-grad-primary);
  box-shadow: 0 0 10px var(--vis-glow-tint);
}

.vis-timeline-node {
  position: relative;
  margin-bottom: 50px;
}

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

.vis-timeline-badge {
  position: absolute;
  left: -60px;
  top: 0;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background: var(--vis-surface-bg);
  border: 2px solid var(--vis-glow-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--vis-font-display);
  font-weight: 700;
  color: var(--vis-glow-tint);
  box-shadow: var(--vis-shadow-glow);
  z-index: 2;
}

.vis-timeline-text {
  background: var(--vis-surface-bg);
  border-radius: var(--vis-radius-soft);
  padding: 30px;
  border: 1px solid var(--vis-glass-border);
}

.vis-timeline-text h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--vis-snow-ink);
}

.vis-timeline-text p {
  color: var(--vis-mist-ink);
  font-size: 0.95rem;
}

/* CTA STRIP (Ghost Button, H2, No photo) */
.vis-strip-accent {
  background: var(--vis-surface-bg);
  border-radius: var(--vis-radius-soft);
  padding: 60px;
  text-align: center;
  border: 1px solid var(--vis-glass-border);
  box-shadow: var(--vis-shadow-deep);
}

.vis-strip-accent h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  background: var(--vis-grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vis-strip-accent p {
  color: var(--vis-mist-ink);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 32px;
}

/* EXPERT PAGE (PRESET D) */
.vis-expert-intro {
  padding-top: 140px;
  padding-bottom: 60px;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(0, 242, 254, 0.08) 0%, transparent 70%);
}

.vis-expert-intro h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 20px;
}

.vis-expert-intro p {
  font-size: 1.2rem;
  color: var(--vis-mist-ink);
  max-width: 700px;
  margin: 0 auto;
}

/* Accordion (CSS only, all open layout but accordion structured) */
.vis-accordion-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.vis-accordion-pane {
  background: var(--vis-surface-bg);
  border: 1px solid var(--vis-glass-border);
  border-radius: var(--vis-radius-soft);
  padding: 32px;
  position: relative;
  display: flex;
  gap: 24px;
}

.vis-accordion-pane::before {
  content: attr(data-index);
  font-family: var(--vis-font-display);
  font-weight: 800;
  font-size: 2.2rem;
  color: rgba(0, 242, 254, 0.2);
  line-height: 1;
}

.vis-accordion-text h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--vis-glow-tint);
}

.vis-accordion-text p {
  color: var(--vis-mist-ink);
  font-size: 0.95rem;
}

/* Hero bg3.webp Full Width with Text Overlay */
.vis-banner-immersive {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  border-radius: var(--vis-radius-soft);
  overflow: hidden;
  box-shadow: var(--vis-shadow-deep);
}

.vis-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 11, 17, 0.95) 0%, rgba(8, 11, 17, 0.4) 100%);
  z-index: 1;
}

.vis-banner-content {
  position: relative;
  z-index: 2;
  padding: 60px;
  max-width: 600px;
}

.vis-banner-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.vis-banner-content p {
  color: var(--vis-mist-ink);
  font-size: 1.15rem;
  margin-bottom: 30px;
}

/* STAT BLOCKS */
.vis-stats-deck {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.vis-stat-cell {
  background: var(--vis-surface-bg);
  border: 1px solid var(--vis-glass-border);
  border-radius: var(--vis-radius-soft);
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--vis-shadow-deep);
}

.vis-stat-number {
  font-family: var(--vis-font-display);
  font-weight: 800;
  font-size: 2.8rem;
  color: var(--vis-glow-tint);
  margin-bottom: 8px;
  line-height: 1;
}

.vis-stat-label {
  font-size: 0.9rem;
  color: var(--vis-mist-ink);
}

/* RESERVE PAGE (PRESET D) */
.vis-reserve-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Dark Hero with integrated form inside hero-like section */
.vis-reserve-hero {
  padding-top: 140px;
  padding-bottom: 80px;
  background: radial-gradient(circle at 10% 10%, rgba(79, 172, 254, 0.08) 0%, transparent 60%);
}

.vis-card-shell-form {
  background: var(--vis-glass-bg);
  border: 1px solid var(--vis-glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--vis-radius-soft);
  padding: 40px;
  box-shadow: var(--vis-shadow-deep);
}

.vis-card-shell-form h2 {
  font-size: 1.8rem;
  margin-bottom: 24px;
  color: var(--vis-snow-ink);
}

.vis-field-node {
  margin-bottom: 20px;
}

.vis-field-node label {
  display: block;
  font-family: var(--vis-font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  color: var(--vis-mist-ink);
}

.vis-field-node input,
.vis-field-node textarea {
  width: 100%;
  background: rgba(8, 11, 17, 0.6);
  border: 1px solid var(--vis-glass-border);
  border-radius: 8px;
  padding: 14px 18px;
  color: var(--vis-snow-ink);
  font-family: var(--vis-font-body);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.vis-field-node input:focus,
.vis-field-node textarea:focus {
  outline: none;
  border-color: var(--vis-glow-tint);
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.15);
}

.vis-field-node textarea {
  resize: vertical;
  min-height: 100px;
}

.vis-policy-cb {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 30px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--vis-mist-ink);
}

.vis-policy-cb input {
  margin-top: 3px;
  flex-shrink: 0;
}

.vis-policy-cb a {
  color: var(--vis-glow-tint);
  text-decoration: underline;
}

/* Informational Info Cards */
.vis-info-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.vis-info-block {
  background: var(--vis-surface-bg);
  border: 1px solid var(--vis-glass-border);
  border-radius: var(--vis-radius-soft);
  padding: 30px;
}

.vis-info-block h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: var(--vis-glow-tint);
  display: flex;
  align-items: center;
  gap: 12px;
}

.vis-info-block p {
  font-size: 0.95rem;
  color: var(--vis-mist-ink);
  margin-bottom: 16px;
}

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

.vis-bullet-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--vis-snow-ink);
}

.vis-bullet-circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--vis-grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-family: var(--vis-font-display);
  font-weight: 700;
  color: var(--vis-deep-bg);
}

/* FAQ Accordion Section (Under form) */
.vis-faq-deck {
  margin-top: 80px;
}

.vis-faq-deck h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  text-align: center;
}

.vis-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.vis-faq-card {
  background: var(--vis-surface-bg);
  border: 1px solid var(--vis-glass-border);
  border-radius: var(--vis-radius-soft);
  padding: 30px;
}

.vis-faq-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--vis-glow-tint);
}

.vis-faq-card p {
  color: var(--vis-mist-ink);
  font-size: 0.95rem;
}

/* PRIVACY / TERMS STATIC PAGE */
.vis-doc-spine {
  padding-top: 140px;
  padding-bottom: 80px;
  max-width: 800px;
  margin: 0 auto;
}

.vis-doc-spine h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.vis-doc-status {
  color: var(--vis-glow-tint);
  font-size: 0.9rem;
  margin-bottom: 40px;
}

.vis-doc-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.vis-doc-content section h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 8px;
}

.vis-doc-content p {
  color: var(--vis-mist-ink);
  font-size: 1rem;
  line-height: 1.7;
}

/* THANK PAGE */
.vis-thank-core {
  min-height: calc(100vh - var(--vis-header-h));
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.vis-thank-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(8, 11, 17, 0.8) 0%, rgba(8, 11, 17, 0.98) 100%);
  z-index: 1;
}

.vis-thank-shell {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 24px;
}

.vis-thank-shell h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 20px;
  background: var(--vis-grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vis-thank-shell p {
  font-size: 1.2rem;
  color: var(--vis-mist-ink);
  margin-bottom: 40px;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
  .vis-deck-features {
    grid-template-columns: repeat(2, 1fr);
  }
  .vis-stats-deck {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --vis-pad-scale: 6dvh;
  }
  
  .vis-hamburger {
    display: flex;
  }
  
  .vis-deck-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--vis-surface-bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px;
    gap: 24px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1001;
  }
  
  .vis-menu-toggle:checked ~ .vis-deck-menu {
    right: 0;
  }
  
  .vis-menu-toggle:checked ~ .vis-hamburger span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .vis-menu-toggle:checked ~ .vis-hamburger span:nth-child(2) {
    opacity: 0;
  }
  .vis-menu-toggle:checked ~ .vis-hamburger span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .vis-split-panel {
    grid-template-columns: 1fr;
  }
  .vis-split-media {
    min-height: 250px;
  }
  .vis-split-content {
    padding: 30px;
  }
  
  .vis-deck-features {
    grid-template-columns: 1fr;
  }
  
  .vis-timeline-wrap {
    padding-left: 45px;
  }
  .vis-timeline-line {
    left: 15px;
  }
  .vis-timeline-badge {
    left: -45px;
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }
  .vis-timeline-text {
    padding: 20px;
  }
  
  .vis-banner-immersive {
    height: auto;
  }
  .vis-banner-content {
    padding: 40px 24px;
  }
  
  .vis-reserve-grid {
    grid-template-columns: 1fr;
  }
  
  .vis-faq-grid {
    grid-template-columns: 1fr;
  }
  
  .vis-footplate-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .vis-glass-pod {
    padding: 24px;
  }
  
  .vis-accordion-pane {
    flex-direction: column;
    gap: 12px;
  }
}