/* ============================================
   Lumis Proposal Viewer — Demo Styles
   ============================================ */

/* --- Fonts --- */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('assets/cormorant-garamond.woff2') format('woff2');
  font-weight: 400 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('assets/inter.woff2') format('woff2');
  font-weight: 400 500;
  font-style: normal;
  font-display: swap;
}

/* --- Custom Properties --- */
:root {
  --cream: #F7F3EC;
  --cream-light: #FBF8F3;
  --taupe-deep: #3A332B;
  --taupe-mid: #6B5F52;
  --taupe-light: #A89A89;
  --gold: #B8924C;
  --gold-light: #E8D9B8;
  --white: #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

/* --- Base --- */
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--taupe-deep);
  background: var(--cream);
  overflow: hidden;
}

/* ============================================
   Demo Viewport (browser chrome mock)
   ============================================ */
.demo-viewport {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(58, 51, 43, 0.12), 0 4px 16px rgba(58, 51, 43, 0.06);
}

/* --- Browser Chrome --- */
.browser-chrome {
  background: #E8E4DE;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 10;
}

.browser-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.browser-dots span:nth-child(1) { background: #ED6A5E; }
.browser-dots span:nth-child(2) { background: #F5BF4F; }
.browser-dots span:nth-child(3) { background: #62C554; }

.browser-url-bar {
  flex: 1;
  background: var(--white);
  border-radius: 6px;
  padding: 6px 14px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--taupe-mid);
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.browser-url-bar .lock-icon {
  width: 10px;
  height: 10px;
  opacity: 0.5;
}

/* --- Proposal Viewport --- */
.proposal-viewport {
  background: var(--cream);
  height: 600px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .proposal-viewport {
    height: 500px;
  }
}

@media (max-width: 480px) {
  .proposal-viewport {
    height: 420px;
  }
}

/* ============================================
   Custom Cursor
   ============================================ */
.custom-cursor {
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 100;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  will-change: transform;
}

.custom-cursor.visible {
  opacity: 1;
}

/* ============================================
   Scene System
   ============================================ */
.scene {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s var(--ease-out);
}

.scene.active {
  opacity: 1;
  pointer-events: auto;
}

/* --- Scene 0: Cold Open --- */
.scene-0 {
  background: var(--cream);
}

/* --- Scene 1: Hero --- */
.scene-1 {
  display: flex;
  flex-direction: column;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 60%;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s var(--ease-out), transform 1.8s var(--ease-out);
}

.scene-1.active .hero-image {
  opacity: 1;
  transform: scale(1);
}

.vendor-logo {
  position: absolute;
  top: 20px;
  left: 24px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.8s var(--ease-out) 0.6s, transform 0.8s var(--ease-out) 0.6s;
}

.scene-1.active .vendor-logo {
  opacity: 1;
  transform: translateY(0);
}

.vendor-logo img {
  height: 20px;
  width: auto;
}

.vendor-logo-text {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2.5px;
  color: var(--white);
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.hero-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 32px 28px;
  background: linear-gradient(to top, rgba(58, 51, 43, 0.7) 0%, transparent 100%);
}

.couple-name {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s var(--ease-out) 0.4s, transform 0.8s var(--ease-out) 0.4s;
}

.scene-1.active .couple-name {
  opacity: 1;
  transform: translateY(0);
}

.wedding-details {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.3px;
  margin-top: 8px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s var(--ease-out) 0.8s, transform 0.6s var(--ease-out) 0.8s;
}

.scene-1.active .wedding-details {
  opacity: 1;
  transform: translateY(0);
}

.hero-below {
  flex: 1;
  background: var(--cream);
}

@media (max-width: 480px) {
  .couple-name {
    font-size: 32px;
  }

  .wedding-details {
    font-size: 12px;
  }

  .hero-text {
    padding: 32px 20px 20px;
  }

  .vendor-logo {
    top: 14px;
    left: 16px;
  }
}

/* --- Scene 2: Personal Letter --- */
.scene-2 {
  background: var(--cream-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.letter-content {
  max-width: 580px;
  width: 100%;
}

.letter-greeting {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--taupe-deep);
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s var(--ease-out) 0.2s, transform 0.6s var(--ease-out) 0.2s;
}

.scene-2.active .letter-greeting {
  opacity: 1;
  transform: translateY(0);
}

.letter-body {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--taupe-deep);
  line-height: 1.6;
  opacity: 0;
  transition: opacity 0.8s var(--ease-out) 0.6s;
}

.scene-2.active .letter-body {
  opacity: 1;
}

.letter-body p {
  margin-bottom: 16px;
}

.letter-body p:last-child {
  margin-bottom: 0;
}

.letter-signature {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--taupe-deep);
  margin-top: 28px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s var(--ease-out) 1.2s, transform 0.5s var(--ease-out) 1.2s;
}

.scene-2.active .letter-signature {
  opacity: 1;
  transform: translateY(0);
}

.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 22px;
  background: var(--gold);
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: blink 0.8s ease-in-out infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.scene-2:not(.active) .typing-cursor {
  display: none;
}

/* --- Scene 3: Benefits Grid --- */
.scene-3 {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 840px;
  width: 100%;
}

.benefit-card {
  background: var(--white);
  border: 1px solid rgba(168, 154, 137, 0.2);
  border-radius: 12px;
  padding: 28px 24px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.scene-3.active .benefit-card:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}

.scene-3.active .benefit-card:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.scene-3.active .benefit-card:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.45s;
}

.benefit-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 16px;
}

.benefit-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--taupe-deep);
  margin-bottom: 8px;
  line-height: 1.3;
}

.benefit-description {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--taupe-mid);
  line-height: 1.55;
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 400px;
  }

  .benefit-card {
    padding: 20px;
  }
}

/* --- Scene 4: Pricing --- */
.scene-4 {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 32px 80px;
  overflow: hidden;
}

.pricing-header {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--taupe-deep);
  letter-spacing: -0.3px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.scene-4.active .pricing-header {
  opacity: 1;
  transform: translateY(0);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 780px;
  width: 100%;
}

.pricing-card {
  background: var(--white);
  border: 1.5px solid rgba(168, 154, 137, 0.2);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out),
              border-color 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease;
}

.scene-4.active .pricing-card:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.scene-4.active .pricing-card:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.55s;
}

.scene-4.active .pricing-card:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.pricing-card.selected {
  border-color: var(--gold);
  background: var(--gold-light);
  box-shadow: 0 8px 32px rgba(184, 146, 76, 0.15);
  transform: translateY(0) scale(1.04);
}

.pricing-card-name {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--taupe-mid);
  margin-bottom: 12px;
}

.pricing-card-price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--taupe-deep);
  margin-bottom: 10px;
  line-height: 1.1;
}

.pricing-card-description {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 400;
  color: var(--taupe-mid);
  line-height: 1.5;
}

.selected-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(184, 146, 76, 0.12);
  border-radius: 4px;
  padding: 4px 10px;
  margin-top: 14px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.pricing-card.selected .selected-badge {
  opacity: 1;
  transform: translateY(0);
}

/* CTA Bar */
.cta-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--taupe-deep);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out);
  z-index: 20;
}

.cta-bar.visible {
  transform: translateY(0);
}

.cta-bar-left {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.cta-bar-right {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.2px;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 320px;
  }

  .pricing-card {
    padding: 22px 20px;
  }

  .pricing-card-price {
    font-size: 28px;
  }

  .pricing-header {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .cta-bar {
    padding: 12px 20px;
  }

  .cta-bar-left, .cta-bar-right {
    font-size: 11px;
  }
}

/* --- Scene 5: Full Proposal (money shot) --- */
.scene-5 {
  background: var(--cream);
  overflow: hidden;
}

.proposal-full {
  width: 100%;
  padding: 24px 48px 0;
  will-change: transform;
}

/* ---- Cover Page ---- */
.pf-cover {
  background: var(--white);
  width: 100%;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 48px;
  margin-bottom: 20px;
  box-shadow: 0 1px 4px rgba(58, 51, 43, 0.06), 0 8px 24px rgba(58, 51, 43, 0.04);
  border-radius: 2px;
}

/* Cover ornament — two short gold lines with a dot between */
.pf-cover-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}

.pf-ornament-line {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.pf-ornament-dot {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.pf-cover-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--taupe-deep);
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin-bottom: 14px;
  max-width: 380px;
}

.pf-cover-subtitle {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--taupe-light);
  margin-bottom: 24px;
}

.pf-cover-rule {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 28px;
}

/* Cover meta rows */
.pf-cover-meta {
  margin-bottom: 40px;
}

.pf-meta-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 5px 0;
}

.pf-meta-label {
  font-family: var(--font-body);
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--taupe-light);
  min-width: 90px;
  text-align: right;
}

.pf-meta-value {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 400;
  color: var(--taupe-deep);
  min-width: 140px;
  text-align: left;
}

/* Cover branding */
.pf-cover-branding {
  margin-top: auto;
  padding-top: 20px;
}

.pf-cover-brand-name {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--taupe-mid);
  margin-bottom: 3px;
}

.pf-cover-brand-email {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 400;
  color: var(--taupe-light);
  letter-spacing: 0.3px;
}

/* ---- Interior Pages ---- */
.pf-page {
  background: var(--white);
  width: 100%;
  padding: 32px 40px 36px;
  margin-bottom: 20px;
  box-shadow: 0 1px 4px rgba(58, 51, 43, 0.06), 0 8px 24px rgba(58, 51, 43, 0.04);
  border-radius: 2px;
  position: relative;
}

/* Page header */
.pf-page-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}

.pf-header-brand {
  font-family: var(--font-body);
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--taupe-light);
}

.pf-header-id {
  font-family: var(--font-body);
  font-size: 7px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--taupe-light);
}

.pf-header-rule {
  width: 100%;
  height: 1px;
  background: rgba(168, 154, 137, 0.25);
  margin-bottom: 20px;
}

/* Contact cards */
.pf-contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}

.pf-contact-card {
  background: var(--cream-light);
  border-radius: 4px;
  padding: 14px 16px;
  border-left: 2px solid transparent;
}

.pf-contact-card-alt {
  border-left-color: var(--gold);
}

.pf-contact-label {
  font-family: var(--font-body);
  font-size: 6px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--taupe-light);
  margin-bottom: 6px;
}

.pf-contact-name {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  color: var(--taupe-deep);
  margin-bottom: 3px;
  line-height: 1.3;
}

.pf-contact-detail {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 400;
  color: var(--taupe-mid);
  line-height: 1.6;
}

/* Section headings */
.pf-section-heading {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--taupe-deep);
  margin: 18px 0 6px;
  line-height: 1.3;
  letter-spacing: -0.1px;
}

/* Body text */
.pf-body-text {
  margin-bottom: 4px;
}

.pf-body-text p {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  color: var(--taupe-mid);
  line-height: 1.65;
  margin-bottom: 8px;
}

.pf-body-text p:last-child {
  margin-bottom: 0;
}

.pf-body-text p strong {
  font-weight: 500;
  color: var(--taupe-deep);
}

/* ---- Investment Page (Page 4) ---- */
.pf-investment-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--taupe-deep);
  letter-spacing: -0.2px;
  margin-bottom: 6px;
  line-height: 1.3;
}

.pf-investment-rule {
  width: 28px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 20px;
}

/* Investment table */
.pf-investment-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.pf-investment-table th {
  font-family: var(--font-body);
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--taupe-light);
  padding: 8px 0;
  border-bottom: 1px solid rgba(168, 154, 137, 0.2);
}

.pf-table-label {
  text-align: left;
}

.pf-table-amount {
  text-align: right;
}

.pf-investment-table tbody td {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  color: var(--taupe-mid);
  padding: 9px 0;
  border-bottom: 1px solid rgba(168, 154, 137, 0.1);
}

.pf-investment-table tbody td:first-child {
  text-align: left;
  padding-right: 16px;
}

.pf-investment-table tbody td:last-child {
  text-align: right;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  color: var(--taupe-deep);
  white-space: nowrap;
}

/* Total row */
.pf-total-row {
  border-top: 2px solid var(--gold) !important;
}

.pf-total-row td {
  border-bottom: none !important;
  padding-top: 12px !important;
}

.pf-total-row td:first-child {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--taupe-deep);
}

.pf-total-amount {
  font-family: var(--font-display) !important;
  font-size: 20px !important;
  font-weight: 400 !important;
  color: var(--gold) !important;
  letter-spacing: -0.3px;
}

/* Validity note */
.pf-validity {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 400;
  font-style: italic;
  color: var(--taupe-light);
  line-height: 1.6;
  border-left: 2px solid var(--gold-light);
  padding: 6px 0 6px 12px;
  margin: 16px 0 28px;
}

/* Page footer */
.pf-page-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid rgba(168, 154, 137, 0.15);
  font-family: var(--font-body);
  font-size: 7px;
  font-weight: 400;
  color: var(--taupe-light);
  letter-spacing: 0.5px;
}

/* ---- Auto-scroll animation ---- */
.scene-5.active .proposal-full {
  animation: proposal-scroll 12s var(--ease-in-out) 0.5s forwards;
}

@keyframes proposal-scroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(-2400px); }
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .proposal-full {
    padding: 16px 24px 0;
  }

  .pf-cover {
    min-height: 500px;
    padding: 40px 32px;
  }

  .pf-cover-title {
    font-size: 24px;
  }

  .pf-page {
    padding: 24px 28px 28px;
  }

  .pf-contact-cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .proposal-full {
    padding: 12px 16px 0;
  }

  .pf-cover {
    min-height: 420px;
    padding: 32px 20px;
    margin-bottom: 14px;
  }

  .pf-cover-title {
    font-size: 20px;
  }

  .pf-cover-subtitle {
    font-size: 7px;
    letter-spacing: 2.5px;
  }

  .pf-page {
    padding: 20px 20px 24px;
    margin-bottom: 14px;
  }

  .pf-section-heading {
    font-size: 12px;
  }

  .pf-body-text p {
    font-size: 9px;
  }

  .pf-investment-title {
    font-size: 18px;
  }
}

/* --- Scene 6: Fade --- */
.scene-6 {
  background: var(--cream);
}

/* ============================================
   Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .scene,
  .hero-image,
  .vendor-logo,
  .couple-name,
  .wedding-details,
  .letter-greeting,
  .letter-body,
  .letter-signature,
  .benefit-card,
  .pricing-header,
  .pricing-card,
  .cta-bar,
  .proposal-full,
  .custom-cursor {
    transition: none !important;
    animation: none !important;
  }

  .scene {
    opacity: 0;
  }

  /* Show scene-5 as static state, scrolled to the investment page */
  .scene-5 {
    opacity: 1;
  }

  .scene-5 .proposal-full {
    transform: translateY(-2400px);
  }
}
