/* Visual Custom Properties - Light Depth Theme */
:root {
  --vis-theme-canvas: #f8faf9;
  --vis-theme-surface: #ffffff;
  --vis-theme-ink: #111827;
  --vis-theme-muted: #4b5563;
  --vis-theme-accent-teal: #0d9488;
  --vis-theme-accent-deep: #0f766e;
  --vis-theme-accent-soft: #ccfbf1;
  --vis-theme-amber: #d97706;
  --vis-theme-line: #e5e7eb;

  --vis-font-display: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --vis-font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --vis-shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --vis-shadow-elevated: 0 8px 24px rgba(0, 0, 0, 0.1);
  --vis-shadow-levitate: 0 20px 60px rgba(0, 0, 0, 0.15);
  --vis-shadow-deep: 0 30px 80px rgba(0, 0, 0, 0.25);

  --vis-gradient-hero: linear-gradient(135deg, rgba(15, 118, 110, 0.85) 0%, rgba(17, 24, 39, 0.92) 100%);
  --vis-gradient-accent: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);

  --vis-radius-soft: 16px;
  --vis-radius-pill: 999px;
}

/* Global Reset & Basic setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body.vis-page-body {
  background-color: var(--vis-theme-canvas);
  color: var(--vis-theme-ink);
  font-family: var(--vis-font-body);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.vis-main-wrap {
  flex: 1 0 auto;
}

/* Header & Scroll Progress (Preset K) */
.vis-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--vis-theme-amber);
  width: 100%;
  transform-origin: 0 50%;
  z-index: 10000;
  animation: vis-scroll-line linear;
  animation-timeline: scroll();
}

@keyframes vis-scroll-line {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

.vis-header-bar {
  position: sticky;
  top: 0;
  background-color: var(--vis-theme-surface);
  box-shadow: var(--vis-shadow-soft);
  z-index: 999;
  transition: all 0.3s ease;
}

.vis-header-frame {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vis-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--vis-theme-accent-deep);
  font-family: var(--vis-font-display);
  font-weight: 700;
  font-size: 1.25rem;
}

.vis-eye-svg {
  width: 28px;
  height: 28px;
  stroke: var(--vis-theme-accent-teal);
}

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

.vis-burger-icon {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.vis-burger-icon span {
  width: 25px;
  height: 3px;
  background-color: var(--vis-theme-ink);
  border-radius: 2px;
  transition: 0.3s;
}

.vis-nav-holder {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.vis-nav-item {
  text-decoration: none;
  color: var(--vis-theme-ink);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.vis-nav-item:hover,
.vis-active-link {
  color: var(--vis-theme-accent-teal);
}

.vis-nav-btn {
  background-color: var(--vis-theme-accent-soft);
  color: var(--vis-theme-accent-deep);
  padding: 0.5rem 1.25rem;
  border-radius: var(--vis-radius-pill);
}

.vis-nav-btn:hover {
  background-color: var(--vis-theme-accent-teal);
  color: #ffffff;
}

/* Hero Section Stacked Panels (Preset K) */
.vis-hero-deck {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  overflow: hidden;
}

.vis-hero-bg-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.vis-hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--vis-gradient-hero);
  z-index: 2;
}

.vis-stack-container {
  position: relative;
  z-index: 3;
  max-width: 800px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.vis-stack-card {
  border-radius: var(--vis-radius-soft);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.vis-stack-back {
  position: absolute;
  width: 90%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  top: -20px;
  z-index: 1;
  transform: scale(0.92);
}

.vis-stack-middle {
  position: absolute;
  width: 95%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
  top: -10px;
  z-index: 2;
  transform: scale(0.96);
}

.vis-stack-front {
  position: relative;
  z-index: 3;
  background-color: var(--vis-theme-surface);
  padding: 3.5rem 2.5rem;
  box-shadow: var(--vis-shadow-deep);
  text-align: center;
  width: 100%;
}

.vis-tag-pill {
  display: inline-block;
  background-color: var(--vis-theme-accent-soft);
  color: var(--vis-theme-accent-deep);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.35rem 1rem;
  border-radius: var(--vis-radius-pill);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  letter-spacing: 0.5px;
}

.vis-hero-headline {
  font-family: var(--vis-font-display);
  font-size: 2.25rem;
  line-height: 1.25;
  color: var(--vis-theme-ink);
  margin-bottom: 1.25rem;
}

.vis-hero-lead {
  font-size: 1.1rem;
  color: var(--vis-theme-muted);
  margin-bottom: 2rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.vis-hero-action-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.vis-pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  border-radius: var(--vis-radius-pill);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.vis-primary-pill {
  background: var(--vis-gradient-accent);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(13, 148, 136, 0.4);
}

.vis-primary-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(13, 148, 136, 0.5);
}

.vis-secondary-pill {
  background-color: var(--vis-theme-canvas);
  color: var(--vis-theme-ink);
  border: 1px solid var(--vis-theme-line);
}

.vis-secondary-pill:hover {
  background-color: var(--vis-theme-line);
}

.vis-highlight-pill {
  background-color: var(--vis-theme-amber);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.4);
}

.vis-highlight-pill:hover {
  transform: translateY(-2px);
  background-color: #b45309;
}

/* Levitating Features Deck */
.vis-feature-deck {
  max-width: 1200px;
  margin: -50px auto 4rem auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
}

.vis-floating-card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.vis-levitate-card {
  background-color: var(--vis-theme-surface);
  border-radius: var(--vis-radius-soft);
  padding: 2.5rem 1.75rem;
  box-shadow: var(--vis-shadow-levitate);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: vis-fade-up linear both;
  animation-timeline: view();
  animation-range: entry 10% cover 30%;
}

.vis-levitate-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.vis-card-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background-color: var(--vis-theme-accent-soft);
  color: var(--vis-theme-accent-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.vis-card-heading {
  font-family: var(--vis-font-display);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--vis-theme-ink);
}

.vis-card-text {
  font-size: 0.95rem;
  color: var(--vis-theme-muted);
}

/* Content Section (Split Screen with Floating Frame) */
.vis-split-section {
  max-width: 1200px;
  margin: 5rem auto;
  padding: 0 1.5rem;
}

.vis-content-frame {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.vis-floating-frame-img {
  position: relative;
  border-radius: var(--vis-radius-soft);
  box-shadow: var(--vis-shadow-levitate);
  overflow: hidden;
}

.vis-frame-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vis-raised-panel {
  background-color: var(--vis-theme-surface);
  box-shadow: var(--vis-shadow-elevated);
  padding: 2.5rem;
  border-radius: 12px;
  animation: vis-fade-up linear both;
  animation-timeline: view();
  animation-range: entry 10% cover 30%;
}

.vis-sub-badge {
  color: var(--vis-theme-accent-teal);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.vis-panel-title {
  font-family: var(--vis-font-display);
  font-size: 1.85rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.vis-panel-desc {
  color: var(--vis-theme-muted);
  margin-bottom: 1.25rem;
}

.vis-point-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vis-point-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
}

.vis-point-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--vis-theme-accent-teal);
  font-weight: bold;
}

/* Steps Section (Pills) */
.vis-steps-strip {
  background-color: #ffffff;
  padding: 5rem 1.5rem;
  border-top: 1px solid var(--vis-theme-line);
  border-bottom: 1px solid var(--vis-theme-line);
}

.vis-strip-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem auto;
}

.vis-strip-title {
  font-family: var(--vis-font-display);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.vis-strip-subtitle {
  color: var(--vis-theme-muted);
}

.vis-pills-row {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.vis-step-pill-card {
  border-radius: var(--vis-radius-pill);
  padding: 1.5rem 2.25rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  background-color: var(--vis-theme-canvas);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: transform 0.3s ease;
}

.vis-step-pill-card:hover {
  transform: translateY(-5px);
}

.vis-pill-number {
  font-family: var(--vis-font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--vis-theme-accent-teal);
  background-color: var(--vis-theme-accent-soft);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vis-pill-content h4 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.vis-pill-content p {
  font-size: 0.85rem;
  color: var(--vis-theme-muted);
}

/* Floating CTA Strip */
.vis-action-strip {
  position: relative;
  padding: 6rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.vis-action-bg-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
}

.vis-action-card-center {
  position: relative;
  z-index: 2;
  width: 65%;
  background-color: rgba(17, 24, 39, 0.9);
  color: #ffffff;
  padding: 3.5rem 2.5rem;
  border-radius: var(--vis-radius-soft);
  box-shadow: var(--vis-shadow-deep);
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
}

.vis-action-heading {
  font-family: var(--vis-font-display);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.vis-action-sub {
  color: #d1d5db;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* Expert Page Specifics */
.vis-expert-hero-wrap {
  padding: 5rem 1.5rem 3rem 1.5rem;
  display: flex;
  justify-content: center;
}

.vis-expert-hero-card {
  max-width: 800px;
  text-align: center;
  background-color: var(--vis-theme-surface);
  padding: 3rem;
  border-radius: var(--vis-radius-soft);
  box-shadow: var(--vis-shadow-elevated);
}

.vis-expert-profile-deck {
  max-width: 1200px;
  margin: 2rem auto 4rem auto;
  padding: 0 1.5rem;
}

.vis-stats-strip {
  background-color: var(--vis-theme-surface);
  padding: 4rem 1.5rem;
  box-shadow: var(--vis-shadow-soft);
  margin: 3rem 0;
}

.vis-stats-pill-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.vis-stat-pill {
  background-color: var(--vis-theme-canvas);
  border-radius: var(--vis-radius-pill);
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: var(--vis-shadow-soft);
}

.vis-stat-number {
  display: block;
  font-family: var(--vis-font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--vis-theme-accent-teal);
}

.vis-stat-label {
  font-size: 0.85rem;
  color: var(--vis-theme-muted);
}

.vis-expert-extra-section {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 1.5rem;
}

/* Reserve Page Specifics */
.vis-reserve-hero {
  padding: 4rem 1.5rem 2rem 1.5rem;
  text-align: center;
}

.vis-reserve-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.vis-info-cards-section {
  max-width: 1000px;
  margin: 2rem auto 4rem auto;
  padding: 0 1.5rem;
}

.vis-info-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.vis-info-detail-card {
  background-color: var(--vis-theme-surface);
  border-radius: var(--vis-radius-soft);
  padding: 2.5rem;
  box-shadow: var(--vis-shadow-elevated);
}

.vis-info-icon {
  color: var(--vis-theme-accent-teal);
  margin-bottom: 1rem;
}

.vis-info-card-title {
  font-family: var(--vis-font-display);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.vis-info-card-desc {
  font-size: 0.9rem;
  color: var(--vis-theme-muted);
  margin-bottom: 1.5rem;
}

.vis-numbered-badge-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vis-numbered-badge-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.vis-num-badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: var(--vis-theme-amber);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vis-form-floating-section {
  max-width: 700px;
  margin: 0 auto 5rem auto;
  padding: 0 1.5rem;
}

.vis-reserve-card-box {
  background-color: var(--vis-theme-surface);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  box-shadow: var(--vis-shadow-deep);
}

.vis-form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.vis-form-header h2 {
  font-family: var(--vis-font-display);
  font-size: 1.85rem;
  margin-bottom: 0.5rem;
}

.vis-form-header p {
  color: var(--vis-theme-muted);
  font-size: 0.95rem;
}

.vis-main-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.vis-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.vis-input-label {
  font-weight: 600;
  font-size: 0.9rem;
}

.vis-form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--vis-theme-line);
  font-family: inherit;
  font-size: 0.95rem;
  background-color: var(--vis-theme-canvas);
  transition: border-color 0.2s ease;
}

.vis-form-control:focus {
  outline: none;
  border-color: var(--vis-theme-accent-teal);
  background-color: #ffffff;
}

.vis-textarea {
  resize: vertical;
}

.vis-checkbox-group {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-top: 0.5rem;
}

.vis-check-input {
  margin-top: 0.25rem;
  accent-color: var(--vis-theme-accent-teal);
}

.vis-check-label {
  font-size: 0.85rem;
  color: var(--vis-theme-muted);
}

.vis-check-label a {
  color: var(--vis-theme-accent-deep);
  text-decoration: underline;
}

.vis-submit-btn {
  width: 100%;
  margin-top: 1rem;
}

.vis-contact-direct {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--vis-theme-muted);
  padding-top: 1.5rem;
  border-top: 1px solid var(--vis-theme-line);
}

.vis-contact-direct a {
  color: var(--vis-theme-accent-teal);
  text-decoration: none;
  font-weight: 600;
}

/* FAQ Section */
.vis-faq-section {
  max-width: 800px;
  margin: 4rem auto 6rem auto;
  padding: 0 1.5rem;
}

.vis-faq-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.vis-faq-header h2 {
  font-family: var(--vis-font-display);
  font-size: 1.85rem;
}

.vis-faq-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vis-faq-card {
  background-color: var(--vis-theme-surface);
  border-radius: 12px;
  box-shadow: var(--vis-shadow-elevated);
  padding: 1.25rem 1.75rem;
  transition: transform 0.2s ease;
}

.vis-faq-card[open] {
  transform: translateY(-2px);
}

.vis-faq-question {
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  color: var(--vis-theme-ink);
}

.vis-faq-answer {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: var(--vis-theme-muted);
  line-height: 1.5;
}

/* Thank You Page */
.vis-thank-card-section {
  max-width: 700px;
  margin: 4rem auto;
  padding: 0 1.5rem;
}

.vis-thank-panel {
  background-color: var(--vis-theme-surface);
  border-radius: var(--vis-radius-soft);
  padding: 3.5rem 2.5rem;
  box-shadow: var(--vis-shadow-deep);
  text-align: center;
}

.vis-thank-badge-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--vis-theme-accent-soft);
  color: var(--vis-theme-accent-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
}

.vis-thank-title {
  font-family: var(--vis-font-display);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.vis-thank-desc {
  color: var(--vis-theme-muted);
  margin-bottom: 2rem;
}

.vis-thank-media-frame {
  border-radius: 12px;
  overflow: hidden;
  max-height: 250px;
  margin-bottom: 2rem;
  box-shadow: var(--vis-shadow-soft);
}

/* Legal Pages (Privacy Policy & Terms) */
.vis-legal-section {
  max-width: 900px;
  margin: 4rem auto;
  padding: 0 1.5rem;
}

.vis-legal-panel {
  background-color: var(--vis-theme-surface);
  border-radius: var(--vis-radius-soft);
  padding: 3.5rem 3rem;
  box-shadow: var(--vis-shadow-elevated);
}

.vis-legal-heading {
  font-family: var(--vis-font-display);
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

.vis-legal-date {
  font-size: 0.85rem;
  color: var(--vis-theme-muted);
  margin-bottom: 2rem;
}

.vis-legal-text-block p {
  margin-bottom: 1.25rem;
  color: #374151;
  font-size: 0.98rem;
  line-height: 1.7;
}

.vis-legal-divider {
  border: 0;
  height: 1px;
  background-color: var(--vis-theme-line);
  margin: 3rem 0;
}

.vis-legal-subheading {
  font-family: var(--vis-font-display);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--vis-theme-ink);
}

/* Footer Area */
.vis-footer-area {
  background-color: #0f172a;
  color: #f8fafc;
  padding: 4rem 1.5rem 2rem 1.5rem;
  margin-top: auto;
}

.vis-footer-frame {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.vis-footer-logo {
  color: #ffffff;
  margin-bottom: 1rem;
}

.vis-footer-tagline {
  color: #94a3b8;
  font-size: 0.9rem;
  max-width: 320px;
}

.vis-footer-title {
  font-family: var(--vis-font-display);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: #ffffff;
}

.vis-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.vis-footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.vis-footer-links a:hover {
  color: var(--vis-theme-accent-soft);
}

.vis-disclaimer-box {
  max-width: 1200px;
  margin: 0 auto 2rem auto;
  padding: 1.25rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-left: 3px solid var(--vis-theme-amber);
  font-size: 0.82rem;
  color: #cbd5e1;
  line-height: 1.5;
}

.vis-copyright-bar {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: #64748b;
}

/* Cookie Floating Banner */
.vis-cookie-floating-panel {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  left: 1.5rem;
  max-width: 500px;
  margin-left: auto;
  background-color: #1e293b;
  color: #ffffff;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  box-shadow: var(--vis-shadow-deep);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
}

.vis-cookie-text {
  font-size: 0.88rem;
  color: #e2e8f0;
}

.vis-cookie-btn-group {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}

.vis-cookie-btn {
  padding: 0.45rem 1.25rem;
  border-radius: var(--vis-radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.vis-cookie-decl {
  background-color: transparent;
  color: #94a3b8;
  border: 1px solid #475569;
}

.vis-cookie-decl:hover {
  background-color: #334155;
  color: #ffffff;
}

.vis-cookie-acc {
  background-color: var(--vis-theme-accent-teal);
  color: #ffffff;
}

.vis-cookie-acc:hover {
  background-color: var(--vis-theme-accent-deep);
}

/* Scroll-driven Viewport Animations */
@keyframes vis-fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .vis-floating-card-row,
  .vis-pills-row,
  .vis-stats-pill-grid {
    grid-template-columns: 1fr;
  }

  .vis-feature-deck {
    margin-top: 2rem;
  }

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

  .vis-action-card-center {
    width: 90%;
    padding: 2.5rem 1.5rem;
  }

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

  .vis-footer-frame {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .vis-burger-icon {
    display: flex;
  }

  .vis-nav-holder {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--vis-theme-surface);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
    box-shadow: var(--vis-shadow-elevated);
    display: none;
  }

  .vis-nav-toggle:checked ~ .vis-nav-holder {
    display: flex;
  }

  .vis-hero-headline {
    font-size: 1.75rem;
  }

  .vis-stack-front {
    padding: 2rem 1.25rem;
  }

  .vis-cookie-floating-panel {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
}