:root {
  --vista-bright-accent: #ff5e3a;
  --vista-deep-ocean: #0f172a;
  --vista-mint-glow: #10b981;
  --vista-sunny-shade: #f59e0b;
  --vista-soft-paper: #f8fafc;
  --vista-glass-accent: rgba(255, 94, 58, 0.15);
  --vista-glass-dark: rgba(15, 23, 42, 0.85);
  --vista-gradient-main: linear-gradient(135deg, #ff5e3a 0%, #f59e0b 100%);
  --vista-gradient-ocean: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --vista-radius-soft: 16px;
  --vista-radius-pill: 999px;
  --vista-shadow-raised: 0 10px 30px -10px rgba(15, 23, 42, 0.15);
  --vista-shadow-deep: 0 20px 40px -15px rgba(15, 23, 42, 0.3);
  --vista-spacing-compact: 6dvh;
  --vista-spacing-normal: 10dvh;
  --vista-spacing-spacious: 16dvh;
}

/* Reset & Box Model */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  color: var(--vista-deep-ocean);
  background-color: var(--vista-soft-paper);
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, .vista-brand-title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* Scroll Progress Bar */
.vista-scroll-indicator {
  height: 4px;
  width: 0;
  background-color: var(--vista-mint-glow);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10001;
  animation: vista-progress-bar linear;
  animation-timeline: scroll();
}

@keyframes vista-progress-bar {
  to { width: 100%; }
}

/* Scroll Reveal Animation */
.vista-reveal-element {
  animation: vista-fade-in-up linear both;
  animation-timeline: view();
  animation-range: entry 0% entry 30%;
}

@keyframes vista-fade-in-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header & Navigation */
.vista-top-masthead {
  background: var(--vista-bright-accent);
  background: var(--vista-gradient-main);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--vista-shadow-raised);
}

.vista-nav-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vista-logo-cluster {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #ffffff;
}

.vista-logo-icon {
  width: 40px;
  height: 40px;
  fill: #ffffff;
}

.vista-brand-title {
  font-size: 1.5rem;
  color: #ffffff;
}

.vista-nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.vista-nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
}

.vista-nav-link:hover,
.vista-nav-link.vista-active {
  color: #ffffff;
}

.vista-nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #ffffff;
  transition: width 0.3s ease;
}

.vista-nav-link:hover::after,
.vista-nav-link.vista-active::after {
  width: 100%;
}

/* Mobile Navigation Hamburger (CSS Only) */
.vista-menu-checkbox {
  display: none;
}

.vista-menu-trigger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1002;
}

.vista-menu-trigger span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 3px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* Hero Section (Preset C) */
.vista-hero-dome {
  position: relative;
  min-height: 100vh;
  background: var(--vista-gradient-ocean);
  display: flex;
  align-items: center;
  padding: var(--vista-spacing-normal) 2rem;
  overflow: hidden;
  color: #ffffff;
}

.vista-hero-giant-num {
  position: absolute;
  font-size: clamp(12rem, 25vw, 25rem);
  font-weight: 900;
  opacity: 0.04;
  color: var(--vista-bright-accent);
  right: -5%;
  bottom: -5%;
  user-select: none;
  pointer-events: none;
  line-height: 1;
}

.vista-abstract-shape-one {
  position: absolute;
  top: -10%;
  right: 15%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--vista-bright-accent) 0%, transparent 70%);
  opacity: 0.15;
  filter: blur(40px);
}

.vista-abstract-shape-two {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: var(--vista-sunny-shade);
  opacity: 0.1;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  filter: blur(20px);
}

.vista-hero-interior {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.vista-hero-text-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vista-hero-h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: #ffffff;
  text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.vista-highlight-word {
  color: var(--vista-sunny-shade);
  background: var(--vista-gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vista-hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
}

.vista-interactive-btn {
  display: inline-block;
  background: var(--vista-gradient-main);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-family: var(--font-display);
  text-transform: uppercase;
  padding: 1.2rem 2.8rem;
  border-radius: var(--vista-radius-pill);
  box-shadow: var(--vista-shadow-deep);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  align-self: flex-start;
  letter-spacing: 0.05em;
}

.vista-interactive-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px -10px rgba(255, 94, 58, 0.5);
}

.vista-hero-imagery-block {
  display: flex;
  justify-content: center;
  position: relative;
}

.vista-hero-image-frame {
  width: 100%;
  max-width: 450px;
  height: 480px;
  object-fit: cover;
  border-radius: var(--vista-radius-soft);
  box-shadow: var(--vista-shadow-deep);
  border: 4px solid rgba(255, 255, 255, 0.1);
}

/* Content Section (Preset C Diagonal Clip-path) */
.vista-clip-surface {
  position: relative;
  background: var(--vista-deep-ocean);
  margin: var(--vista-spacing-normal) 0;
  padding: var(--vista-spacing-spacious) 2rem;
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
  min-height: 70vh;
  display: flex;
  align-items: center;
  background-image: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), url('img/bg2.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.vista-clip-inner {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  padding: 3.5rem;
  border-radius: var(--vista-radius-soft);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  text-align: center;
  box-shadow: var(--vista-shadow-deep);
}

.vista-clip-h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  color: var(--vista-bright-accent);
}

.vista-clip-p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

/* Features Section (3-Column Grid without Icons) */
.vista-perks-segment {
  max-width: 1200px;
  margin: var(--vista-spacing-normal) auto;
  padding: 0 2rem;
}

.vista-section-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.vista-section-intro h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--vista-deep-ocean);
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.vista-section-intro h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--vista-gradient-main);
  border-radius: 2px;
}

.vista-perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.vista-perk-card {
  background: #ffffff;
  padding: 3rem 2rem;
  border-radius: var(--vista-radius-soft);
  box-shadow: var(--vista-shadow-raised);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.vista-perk-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--vista-gradient-main);
}

.vista-perk-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--vista-shadow-deep);
}

.vista-perk-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--vista-bright-accent);
  line-height: 1;
  font-family: var(--font-display);
}

.vista-perk-title {
  font-size: 1.3rem;
  color: var(--vista-deep-ocean);
}

.vista-perk-desc {
  font-size: 1rem;
  color: #64748b;
}

/* "How it Works" Section (Horizontal steps with solid connector line) */
.vista-steps-segment {
  background-color: #ffffff;
  padding: var(--vista-spacing-normal) 2rem;
}

.vista-steps-container {
  max-width: 1200px;
  margin: 0 auto;
}

.vista-steps-timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin-top: 4rem;
  gap: 2rem;
}

.vista-steps-timeline::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 4px;
  background: #e2e8f0;
  z-index: 1;
}

.vista-step-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  gap: 1.2rem;
}

.vista-step-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-display);
  transition: all 0.3s ease;
}

.vista-step-block:nth-child(odd) .vista-step-badge {
  background: var(--vista-bright-accent);
  color: #ffffff;
  box-shadow: 0 0 15px rgba(255, 94, 58, 0.4);
}

.vista-step-block:nth-child(even) .vista-step-badge {
  background: #ffffff;
  color: var(--vista-bright-accent);
  border: 3px solid var(--vista-bright-accent);
  box-shadow: var(--vista-shadow-raised);
}

.vista-step-info-title {
  font-size: 1.2rem;
  color: var(--vista-deep-ocean);
}

.vista-step-info-p {
  font-size: 0.95rem;
  color: #64748b;
  max-width: 280px;
}

/* CTA Strip Section (Dark background, flex justify-between) */
.vista-strip-banner {
  background: var(--vista-deep-ocean);
  padding: 4rem 2rem;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.vista-strip-banner::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background: var(--vista-gradient-main);
  opacity: 0.05;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.vista-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.vista-strip-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  max-width: 700px;
}

/* Expert Page Layout (Preset C) */
.vista-expert-hero {
  background: var(--vista-gradient-ocean);
  min-height: 40vh;
  display: flex;
  align-items: center;
  padding: 4rem 2rem;
  color: #ffffff;
  position: relative;
}

.vista-expert-cta-insert {
  background: #ffffff;
  max-width: 1200px;
  margin: -3rem auto var(--vista-spacing-normal);
  padding: 3rem;
  border-radius: var(--vista-radius-soft);
  box-shadow: var(--vista-shadow-deep);
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vista-expert-intro-row {
  max-width: 1200px;
  margin: var(--vista-spacing-normal) auto;
  padding: 0 2rem;
  display: flex;
  gap: 4rem;
  align-items: center;
}

.vista-expert-text-col {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vista-expert-img-col {
  flex: 0.8;
}

.vista-expert-photo {
  width: 100%;
  border-radius: var(--vista-radius-soft);
  box-shadow: var(--vista-shadow-deep);
}

.vista-expert-stats-deck {
  background: var(--vista-gradient-main);
  padding: 4rem 2rem;
  color: #ffffff;
}

.vista-stats-grid-row {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.vista-stat-unit h3 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.vista-stat-unit p {
  font-size: 1.1rem;
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vista-expert-final-panel {
  max-width: 1200px;
  margin: var(--vista-spacing-normal) auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

/* Reserve Page Layout (Preset C) */
.vista-reserve-matrix {
  max-width: 1200px;
  margin: var(--vista-spacing-normal) auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}

.vista-form-shell {
  background: #ffffff;
  padding: 3.5rem;
  border-radius: var(--vista-radius-soft);
  box-shadow: var(--vista-shadow-deep);
}

.vista-form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vista-form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--vista-deep-ocean);
}

.vista-form-input, .vista-form-select, .vista-form-textarea {
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.vista-form-input:focus, .vista-form-select:focus, .vista-form-textarea:focus {
  outline: none;
  border-color: var(--vista-bright-accent);
}

.vista-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.vista-checkbox-group input {
  margin-top: 0.3rem;
  width: 18px;
  height: 18px;
  accent-color: var(--vista-bright-accent);
}

.vista-checkbox-group label {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.4;
}

.vista-form-submit {
  width: 100%;
}

.vista-info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.vista-info-card-unit {
  background: #ffffff;
  padding: 2rem;
  border-radius: var(--vista-radius-soft);
  box-shadow: var(--vista-shadow-raised);
  border-left: 5px solid var(--vista-bright-accent);
}

.vista-info-card-unit h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--vista-deep-ocean);
}

.vista-info-sublist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vista-info-sublist li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
  color: #64748b;
}

.vista-info-sublist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--vista-bright-accent);
}

/* FAQ Accordion Block (All open, CSS-only simplicity) */
.vista-faq-deck {
  max-width: 1200px;
  margin: var(--vista-spacing-normal) auto;
  padding: 0 2rem;
}

.vista-faq-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
}

.vista-faq-item {
  background: #ffffff;
  padding: 2rem;
  border-radius: var(--vista-radius-soft);
  box-shadow: var(--vista-shadow-raised);
}

.vista-faq-q {
  font-size: 1.2rem;
  color: var(--vista-deep-ocean);
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
}

.vista-faq-a {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
}

/* Document layout pages (Privacy Policy, Terms) */
.vista-document-wrapper {
  max-width: 800px;
  margin: var(--vista-spacing-normal) auto;
  padding: 0 2rem;
}

.vista-document-wrapper h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--vista-deep-ocean);
  border-bottom: 4px solid var(--vista-bright-accent);
  padding-bottom: 0.5rem;
}

.vista-document-wrapper h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: var(--vista-deep-ocean);
}

.vista-document-wrapper p {
  margin-bottom: 1.5rem;
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Thank You Page Specifics */
.vista-thank-splash {
  background-image: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), url('img/bg3.webp');
  background-size: cover;
  background-position: center;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  color: #ffffff;
}

.vista-thank-panel {
  max-width: 600px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  padding: 4rem 3rem;
  border-radius: var(--vista-radius-soft);
  box-shadow: var(--vista-shadow-deep);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.vista-thank-panel h1 {
  font-size: 3rem;
  color: var(--vista-sunny-shade);
}

/* Cookie Consent Banner */
.vista-cookies-anchor {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--vista-deep-ocean);
  color: #ffffff;
  padding: 1.5rem 2rem;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.3);
  z-index: 9999;
  display: none;
}

.vista-cookies-flex {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.vista-cookies-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.vista-cookies-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.vista-cookies-btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--vista-radius-pill);
  font-weight: 700;
  font-family: var(--font-display);
  cursor: pointer;
  border: none;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.vista-cookies-accept {
  background: var(--vista-gradient-main);
  color: #ffffff;
}

.vista-cookies-decline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.vista-cookies-decline:hover {
  border-color: #ffffff;
}

/* Footer Section */
.vista-base-floor {
  background: var(--vista-deep-ocean);
  color: #ffffff;
  padding: 5rem 2rem 2rem;
  margin-top: auto;
}

.vista-floor-interior {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.vista-floor-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.vista-floor-links {
  display: flex;
  gap: 2rem;
}

.vista-floor-link {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.vista-floor-link:hover {
  color: #ffffff;
}

.vista-disclaimer-panel {
  border-top: 1.5px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.vista-disclaimer-p {
  color: #94a3b8;
  font-size: 0.85rem;
  max-width: 900px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.vista-copyright-p {
  color: #64748b;
  font-size: 0.8rem;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .vista-hero-interior {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
  }
}

@media (max-width: 991px) {
  .vista-perks-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .vista-steps-timeline {
    flex-direction: column;
    gap: 3rem;
    align-items: center;
  }
  .vista-steps-timeline::before {
    display: none;
  }
  .vista-step-block {
    width: 100%;
    align-items: center;
  }
  .vista-expert-intro-row, .vista-expert-final-panel, .vista-reserve-matrix {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .vista-expert-img-col {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }
  .vista-stats-grid-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .vista-menu-trigger {
    display: flex;
  }
  .vista-nav-links {
    position: fixed;
    top: 76px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 76px);
    background: var(--vista-gradient-ocean);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    transition: left 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
    z-index: 1001;
  }
  .vista-menu-checkbox:checked ~ .vista-nav-links {
    left: 0;
  }
  .vista-menu-checkbox:checked ~ .vista-menu-trigger span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .vista-menu-checkbox:checked ~ .vista-menu-trigger span:nth-child(2) {
    opacity: 0;
  }
  .vista-menu-checkbox:checked ~ .vista-menu-trigger span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
  }
  .vista-hero-interior {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .vista-hero-imagery-block {
    display: none;
  }
  .vista-interactive-btn {
    align-self: center;
  }
  .vista-clip-surface {
    clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
    padding: var(--vista-spacing-normal) 1.5rem;
  }
  .vista-clip-inner {
    padding: 2rem;
  }
  .vista-strip-inner {
    flex-direction: column;
    text-align: center;
  }
  .vista-stats-grid-row {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .vista-cookies-flex {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  .vista-cookies-actions {
    width: 100%;
    justify-content: center;
  }
  .vista-floor-top-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .vista-floor-links {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}