/* style.css - Robust Adaptive Stylesheet for Claridad Visual */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&family=Poppins:wght@300;400;500;600&display=swap');

:root {
  /* Brand Theme Colors (Preset C: Bold Accent / Vibrant) */
  --vista-brand-accent: #0ea5e9;       /* Vibrant ocean blue */
  --vista-brand-vivid: #f97316;        /* Bright energy orange */
  --vista-brand-dark: #0f172a;         /* Deep slate */
  --vista-brand-light: #f8fafc;        /* Soft cool white */
  --vista-brand-surface: #ffffff;      /* Pure white */
  --vista-brand-text-dark: #1e293b;    /* Charcoal */
  --vista-brand-text-light: #f1f5f9;   /* Off white */
  --vista-brand-border: #e2e8f0;       /* Soft divider */
  
  /* Gradients */
  --vista-gradient-vibrant: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
  --vista-gradient-accent: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  --vista-gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  
  /* Typography */
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
  
  /* Structural Variables based on Random Settings (Normal / Soft / Raised) */
  --vista-padding: 8vh;
  --vista-radius: 16px;
  --vista-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.08);
  --vista-shadow-glow: 0 0 20px rgba(14, 165, 233, 0.3);
  --vista-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Resets & Global Rules */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  color: var(--vista-brand-text-dark);
  background-color: var(--vista-brand-light);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--vista-brand-dark);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--vista-transition);
}

button, input, textarea {
  font-family: inherit;
}

/* Scroll Progress Bar */
.vista-scroll-tracker {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--vista-gradient-accent);
  width: 0%;
  z-index: 10000;
  animation: vista-grow-bar linear;
  animation-timeline: scroll();
}

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

/* Header Styles (Preset C: Accent Background) */
.vista-corp-header {
  background: var(--vista-gradient-vibrant);
  color: var(--vista-brand-light);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: var(--vista-shadow);
  padding: 1rem 2rem;
}

.vista-header-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vista-brand-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.vista-brand-logo-svg {
  width: 40px;
  height: 40px;
  fill: currentColor;
}

.vista-brand-title {
  font-size: 1.25rem;
  letter-spacing: 1px;
  color: #fff;
}

/* Navigation & Hamburger Trigger */
.vista-menu-checkbox {
  display: none;
}

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

.vista-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: var(--vista-transition);
}

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

.vista-nav-anchor {
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  padding: 0.5rem 0.25rem;
  position: relative;
}

.vista-nav-anchor::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--vista-brand-vivid);
  transition: var(--vista-transition);
}

.vista-nav-anchor:hover::after {
  width: 100%;
}

/* Hamburger Interaction */
@media (max-width: 768px) {
  .vista-menu-btn {
    display: flex;
  }
  
  .vista-nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--vista-brand-dark);
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    box-shadow: -10px 0 30px rgba(0,0,0,0.25);
    transition: var(--vista-transition);
  }
  
  .vista-menu-checkbox:checked ~ .vista-nav-list {
    right: 0;
  }
  
  .vista-menu-checkbox:checked ~ .vista-menu-btn span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .vista-menu-checkbox:checked ~ .vista-menu-btn span:nth-child(2) {
    opacity: 0;
  }
  
  .vista-menu-checkbox:checked ~ .vista-menu-btn span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

/* Button UI Elements */
.vista-solid-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--vista-gradient-accent);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: var(--vista-shadow);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.vista-solid-pill::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-100%);
  transition: var(--vista-transition);
  z-index: -1;
}

.vista-solid-pill:hover::before {
  transform: translateX(0);
}

.vista-solid-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 20px rgba(249, 115, 22, 0.4);
}

/* HERO SECTION (Preset C: Fullscreen Gradient + Decorative Shapes + Huge Numbers) */
.vista-hero-outer {
  min-height: 90vh;
  background: var(--vista-gradient-dark);
  color: var(--vista-brand-text-light);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: var(--vista-padding) 2rem;
}

/* Huge decorative numeric background */
.vista-hero-outer::before {
  content: '20/20';
  position: absolute;
  right: -5%;
  bottom: -5%;
  font-size: 24rem;
  font-family: var(--font-display);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* Abstract CSS shapes in background */
.vista-hero-decorative-shape-1 {
  position: absolute;
  right: 15%;
  top: 10%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: var(--vista-gradient-vibrant);
  opacity: 0.15;
  filter: blur(40px);
  pointer-events: none;
}

.vista-hero-decorative-shape-2 {
  position: absolute;
  right: 5%;
  bottom: 20%;
  width: 150px;
  height: 350px;
  background: var(--vista-brand-vivid);
  opacity: 0.1;
  transform: rotate(35deg);
  border-radius: var(--vista-radius);
  filter: blur(30px);
  pointer-events: none;
}

.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;
}

@media (max-width: 992px) {
  .vista-hero-interior {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.vista-hero-caption h1 {
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
}

.vista-hero-caption p {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--vista-brand-border);
  margin-bottom: 2.5rem;
  max-width: 700px;
}

/* DIAGONAL CONTENT SECTON (Preset C: bg2.webp full width + clipped edges) */
.vista-diagonal-box {
  background: var(--vista-brand-dark) url('img/bg2.webp') no-repeat center center/cover;
  background-blend-mode: multiply;
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
  padding: 12vh 2rem;
  position: relative;
  margin: 4vh 0;
}

.vista-diagonal-glass {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(12px);
  border-radius: var(--vista-radius);
  padding: 3.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--vista-shadow-glow);
  text-align: center;
  color: #fff;
}

.vista-diagonal-glass h2 {
  color: var(--vista-brand-accent);
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
}

/* FEATURES SECTION (Preset C: 3/4 grid, big numbers, bold headings, no borders) */
.vista-features-grid-outer {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--vista-padding) 2rem;
}

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

.vista-section-header h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.vista-section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--vista-brand-vivid);
}

.vista-feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
}

.vista-feat-card {
  background: var(--vista-brand-surface);
  padding: 2.5rem 2rem;
  border-radius: var(--vista-radius);
  transition: var(--vista-transition);
  box-shadow: var(--vista-shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vista-feat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.1);
}

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

.vista-feat-card h3 {
  font-size: 1.35rem;
  color: var(--vista-brand-dark);
}

.vista-feat-card p {
  color: var(--vista-brand-text-dark);
  font-size: 0.95rem;
}

/* HOW IT WORKS (Preset C: Horizontal path, solid connector, alternating circles) */
.vista-process-section {
  background-color: var(--vista-brand-light);
  padding: var(--vista-padding) 2rem;
}

.vista-process-container {
  max-width: 1100px;
  margin: 0 auto;
}

.vista-process-track {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  gap: 2rem;
}

/* Solid connector line */
.vista-process-track::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 4px;
  background: var(--vista-brand-accent);
  z-index: 1;
}

@media (max-width: 768px) {
  .vista-process-track {
    flex-direction: column;
    align-items: center;
  }
  .vista-process-track::before {
    display: none;
  }
}

.vista-process-step {
  flex: 1;
  text-align: center;
  z-index: 2;
  position: relative;
  background: var(--vista-brand-light);
  padding: 0 1rem;
}

.vista-process-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1.5rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.75rem;
  transition: var(--vista-transition);
}

/* Alternating circle styles (filled vs outline) */
.vista-process-circle.filled-step {
  background: var(--vista-gradient-accent);
  color: #fff;
  border: 4px solid var(--vista-brand-light);
  box-shadow: var(--vista-shadow);
}

.vista-process-circle.outline-step {
  background: var(--vista-brand-surface);
  color: var(--vista-brand-vivid);
  border: 4px solid var(--vista-brand-vivid);
  box-shadow: var(--vista-shadow);
}

.vista-process-step h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.vista-process-step p {
  font-size: 0.9rem;
  color: var(--vista-brand-text-dark);
}

/* CTA STRIP (Preset C: Dark background, headline left, button right) */
.vista-cta-strip {
  background: var(--vista-gradient-dark);
  color: #fff;
  padding: 5rem 2rem;
}

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

.vista-cta-strip-inner h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  flex: 1.2;
}

@media (max-width: 768px) {
  .vista-cta-strip-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* EXPERT PAGE STYLES */
.vista-expert-cta-banner {
  background: var(--vista-gradient-vibrant);
  color: #fff;
  padding: 3rem 2rem;
  text-align: center;
}

.vista-expert-cta-inner {
  max-width: 800px;
  margin: 0 auto;
}

.vista-split-columns {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--vista-padding) 2rem;
  display: flex;
  gap: 4rem;
  align-items: center;
}

.vista-split-half {
  flex: 1;
}

.vista-split-half img {
  width: 100%;
  border-radius: var(--vista-radius);
  box-shadow: var(--vista-shadow);
  display: block;
  object-fit: cover;
}

@media (max-width: 992px) {
  .vista-split-columns {
    flex-direction: column;
  }
}

/* Horizontal Stats Bar (4 in a row) */
.vista-stats-grid {
  background: var(--vista-gradient-dark);
  color: #fff;
  padding: 4rem 2rem;
}

.vista-stats-interior {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  text-align: center;
}

.vista-stat-core {
  font-size: 3.5rem;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--vista-brand-accent);
}

.vista-stat-label {
  font-size: 1rem;
  color: var(--vista-brand-border);
}

/* RESERVE PAGE STYLES */
.vista-reserve-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--vista-padding) 2rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
}

@media (max-width: 992px) {
  .vista-reserve-grid {
    grid-template-columns: 1fr;
  }
}

/* Form Styles */
.vista-reserve-box {
  background: var(--vista-brand-surface);
  padding: 3rem;
  border-radius: var(--vista-radius);
  box-shadow: var(--vista-shadow);
}

.vista-form-group {
  margin-bottom: 2rem;
}

.vista-form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.vista-form-control {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--vista-brand-border);
  border-radius: 8px;
  font-family: var(--font-body);
  transition: var(--vista-transition);
}

.vista-form-control:focus {
  outline: none;
  border-color: var(--vista-brand-accent);
  box-shadow: 0 0 10px rgba(14, 165, 233, 0.15);
}

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

.vista-checkbox-group input {
  margin-top: 0.3rem;
}

.vista-checkbox-label {
  font-size: 0.85rem;
  color: var(--vista-brand-text-dark);
}

/* Info Cards Right Side */
.vista-info-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.vista-info-card {
  background: var(--vista-brand-surface);
  padding: 2rem;
  border-radius: var(--vista-radius);
  box-shadow: var(--vista-shadow);
  border-top: 4px solid var(--vista-brand-vivid);
}

.vista-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.vista-card-header-icon {
  width: 24px;
  height: 24px;
  fill: var(--vista-brand-vivid);
}

.vista-card-header h3 {
  font-size: 1.15rem;
}

.vista-card-list {
  list-style: none;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vista-card-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.vista-bullet-indicator {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--vista-brand-accent);
  color: #fff;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* FAQ Accordion Section (CSS Only) */
.vista-faq-section {
  max-width: 900px;
  margin: 0 auto var(--vista-padding) auto;
  padding: 0 2rem;
}

.vista-faq-item {
  margin-bottom: 1rem;
  background: var(--vista-brand-surface);
  border-radius: var(--vista-radius);
  box-shadow: var(--vista-shadow);
  overflow: hidden;
}

.vista-faq-input {
  display: none;
}

.vista-faq-label {
  display: block;
  padding: 1.5rem 2rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
  transition: var(--vista-transition);
}

.vista-faq-label::after {
  content: '+';
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  transition: var(--vista-transition);
}

.vista-faq-content {
  max-height: 0;
  overflow: hidden;
  transition: var(--vista-transition);
  padding: 0 2rem;
}

.vista-faq-content p {
  padding-bottom: 1.5rem;
  font-size: 0.95rem;
  color: var(--vista-brand-text-dark);
}

.vista-faq-input:checked ~ .vista-faq-label {
  background-color: var(--vista-brand-accent);
  color: #fff;
}

.vista-faq-input:checked ~ .vista-faq-label::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.vista-faq-input:checked ~ .vista-faq-content {
  max-height: 300px;
}

/* POLICY PAGES */
.vista-policy-body {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--vista-padding) 2rem;
}

.vista-policy-body h1 {
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.vista-policy-body h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.vista-policy-body p {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  color: var(--vista-brand-text-dark);
}

/* THANK YOU PAGE */
.vista-thank-hero {
  min-height: 60vh;
  background: var(--vista-gradient-dark) url('img/bg3.webp') no-repeat center center/cover;
  background-blend-mode: multiply;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}

.vista-thank-glass {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(10px);
  padding: 4rem;
  border-radius: var(--vista-radius);
  max-width: 600px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--vista-shadow-glow);
}

.vista-thank-glass h1 {
  font-size: 3rem;
  color: var(--vista-brand-vivid);
  margin-bottom: 1.5rem;
}

.vista-thank-glass p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
}

/* FOOTER AREA */
.vista-footer-area {
  background-color: var(--vista-brand-dark);
  color: var(--vista-brand-text-light);
  padding: 4rem 2rem 2rem 2rem;
  margin-top: auto;
}

.vista-footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 2.5rem;
}

.vista-footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.vista-footer-brand-logo {
  width: 32px;
  height: 32px;
  fill: var(--vista-brand-accent);
}

.vista-footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.vista-footer-links a:hover {
  color: var(--vista-brand-accent);
}

.vista-disclaimer-text {
  max-width: 1200px;
  margin: 2rem auto 0 auto;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  text-align: center;
}

.vista-copyright-row {
  max-width: 1200px;
  margin: 1.5rem auto 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .vista-footer-top {
    flex-direction: column;
    text-align: center;
  }
  .vista-footer-links {
    flex-direction: column;
    gap: 1rem;
  }
  .vista-copyright-row {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

/* COOKIE BANNER */
.vista-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--vista-brand-dark);
  color: #fff;
  z-index: 99999;
  padding: 1.5rem 2rem;
  box-shadow: 0 -10px 25px rgba(0,0,0,0.3);
  display: none;
}

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

.vista-cookie-text {
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--vista-brand-border);
}

.vista-cookie-buttons {
  display: flex;
  gap: 1rem;
}

.vista-cookie-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--vista-transition);
}

.vista-cookie-btn-accept {
  background: var(--vista-brand-accent);
  color: #fff;
}

.vista-cookie-btn-accept:hover {
  background: #0284c7;
}

.vista-cookie-btn-decline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
}

.vista-cookie-btn-decline:hover {
  background: rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
  .vista-cookie-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .vista-cookie-buttons {
    width: 100%;
    justify-content: flex-end;
  }
}

/* CSS Scroll-Driven Animation Classes */
@keyframes vista-slide-up-view {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vista-scroll-revealer {
  animation: vista-slide-up-view linear both;
  animation-timeline: view();
  animation-range: entry 0% entry 30%;
}