/* ==========================================================================
   KEEPS — DESIGN SYSTEM & STYLESHEET
   Brand Colors: Maroon & Cream
   Grid System: 8px consistent spatial scale
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS VARIABLES & TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Brand Palette (Matched to app reference images) */
  --maroon: #876370;
  --maroon-deep: #2D2435;
  --cream: #F7F2EB;
  --paper: #FFFDF7;
  --paper-shadow: rgba(43, 35, 32, 0.08);
  --paper-border: rgba(135, 99, 112, 0.12);
  --ink: #2B2320;
  --ink-muted: #5C524E;
  --gold: #C4963A;

  /* 8px Spatial Grid System */
  --space-05: 4px;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --space-8: 64px;
  --space-10: 80px;
  --space-12: 96px;

  /* Typography System */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-handwriting: 'Caveat', cursive;

  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Layout Containers */
  --max-width-site: 1080px;
  --max-width-narrow: 720px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--cream);
  color: var(--ink);
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--cream);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Accessibility Focus Ring */
:focus-visible {
  outline: 2px solid var(--maroon);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

a {
  color: var(--maroon);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

a:hover {
  color: var(--maroon-deep);
  text-decoration-color: var(--maroon);
}

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

/* Typography Scale */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-optical-sizing: auto;
  line-height: 1.15;
  color: var(--maroon);
}

h1 {
  font-size: clamp(2.25rem, 6.5vw, 4.25rem);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-2);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-2);
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-bottom: var(--space-1);
}

p {
  margin-bottom: var(--space-2);
  color: var(--ink-muted);
}

p.lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--ink);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   3. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
  padding: var(--space-2) var(--space-3);
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(247, 242, 235, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(135, 99, 112, 0.08);
}

.header-container {
  max-width: var(--max-width-site);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  text-decoration: none;
  color: var(--maroon);
}

.brand-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand-wordmark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  background-color: var(--maroon);
  color: var(--paper);
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.header-cta:hover {
  background-color: var(--maroon-deep);
  color: var(--paper);
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   4. HERO SECTION WITH STICKY CARD SCROLL SEQUENCE
   -------------------------------------------------------------------------- */
.hero-scroll-wrapper {
  position: relative;
  height: 240vh;
  width: 100%;
}

.hero-sticky-container {
  position: sticky;
  top: 76px;
  max-width: var(--max-width-site);
  margin: 0 auto;
  padding: var(--space-2) var(--space-3) var(--space-4);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  align-items: center;
}

@media (min-width: 768px) {
  .hero-sticky-container {
    padding: var(--space-4) var(--space-4) var(--space-6);
  }
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-6);
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.app-store-badge-wrapper {
  margin-top: var(--space-2);
  margin-bottom: var(--space-2);
  display: inline-block;
}

.app-store-button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  background-color: var(--maroon);
  color: var(--paper);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(135, 99, 112, 0.25);
  transition: all 0.2s ease;
}

.app-store-button:hover {
  background-color: var(--maroon-deep);
  color: var(--paper);
  box-shadow: 0 6px 18px rgba(45, 36, 53, 0.35);
  transform: translateY(-2px);
}

.app-store-button svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* --------------------------------------------------------------------------
   5. SIGNATURE MEMORY CARD STACK (CYCLING ON SCROLL)
   -------------------------------------------------------------------------- */
.memory-card-stage {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  perspective: 1000px;
  padding: var(--space-2) 0;
}

.memory-cards-stack {
  position: relative;
  width: 100%;
  min-height: 280px;
}

/* Background card peeking behind */
.memory-card-peek {
  position: absolute;
  top: 8px;
  left: 12px;
  width: 100%;
  height: 100%;
  background-color: var(--paper);
  border-radius: var(--radius-md);
  border: 1px solid var(--paper-border);
  box-shadow: 0 4px 12px var(--paper-shadow);
  transform: rotate(2.5deg);
  z-index: 1;
  opacity: 0.7;
}

.memory-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--paper);
  border-radius: var(--radius-md);
  border: 1px solid var(--paper-border);
  padding: var(--space-3) var(--space-3);
  box-shadow: 
    0 12px 32px var(--paper-shadow),
    0 2px 6px rgba(43, 35, 32, 0.04);
  transform: translateY(28px) rotate(3deg) scale(0.96);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, box-shadow 0.4s ease;
}

.memory-card.active {
  transform: translateY(0) rotate(-1.5deg) scale(1);
  opacity: 1;
  pointer-events: auto;
  z-index: 10;
}

.memory-card.passed {
  transform: translateY(-24px) rotate(-6deg) scale(0.95);
  opacity: 0;
  pointer-events: none;
  z-index: 3;
}

.memory-card:hover {
  transform: rotate(-0.5deg) translateY(-3px);
  box-shadow: 
    0 18px 40px rgba(43, 35, 32, 0.12),
    0 4px 10px rgba(43, 35, 32, 0.06);
}

/* Card Step Indicators */
.card-step-indicators {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  margin-top: var(--space-3);
  position: relative;
  z-index: 15;
}

.step-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background-color: rgba(135, 99, 112, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.step-dot.active {
  width: 24px;
  background-color: var(--maroon);
}

.memory-card:hover {
  transform: rotate(-0.5deg) translateY(-3px);
  box-shadow: 
    0 18px 40px rgba(43, 35, 32, 0.12),
    0 4px 10px rgba(43, 35, 32, 0.06);
}

.memory-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(135, 99, 112, 0.2);
  padding-bottom: var(--space-1);
  margin-bottom: var(--space-2);
}

.memory-card-name {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--maroon);
}

.memory-card-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  background: rgba(185, 138, 62, 0.1);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}

.memory-card-details {
  list-style: none;
  margin-bottom: var(--space-2);
}

.memory-card-details li {
  font-size: 0.9375rem;
  color: var(--ink);
  margin-bottom: var(--space-1);
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.memory-card-details li::before {
  content: "•";
  color: var(--gold);
  font-weight: bold;
}

.memory-card-quote {
  font-family: var(--font-handwriting);
  font-size: 1.35rem;
  line-height: 1.3;
  color: var(--maroon-deep);
  background: rgba(247, 242, 235, 0.6);
  padding: var(--space-1) var(--space-2);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* Entrance Animation */
@keyframes cardSettle {
  from {
    opacity: 0;
    transform: translateY(20px) rotate(-4deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(-1.5deg);
  }
}

.memory-card {
  animation: cardSettle 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* --------------------------------------------------------------------------
   6. EMPATHY BEAT (SECTION 2)
   -------------------------------------------------------------------------- */
.empathy-section {
  padding: var(--space-6) var(--space-3);
  background-color: var(--paper);
  border-top: 1px solid rgba(135, 99, 112, 0.08);
  border-bottom: 1px solid rgba(135, 99, 112, 0.08);
  text-align: center;
}

.empathy-container {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

.empathy-text {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  line-height: 1.4;
  color: var(--maroon-deep);
  font-weight: 500;
}

.empathy-highlight {
  color: var(--maroon);
  font-weight: 600;
  border-bottom: 2px solid var(--gold);
}

/* --------------------------------------------------------------------------
   7. HOW IT WORKS (SECTION 3)
   -------------------------------------------------------------------------- */
.steps-section {
  padding: var(--space-8) var(--space-3);
  max-width: var(--max-width-site);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: var(--max-width-narrow);
  margin: 0 auto var(--space-6);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
  }
}

.step-card {
  background-color: var(--paper);
  border: 1px solid var(--paper-border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 4px 16px var(--paper-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--paper-shadow);
}

.step-number {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--maroon);
  background-color: rgba(135, 99, 112, 0.08);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-2);
}

.step-icon {
  margin-bottom: var(--space-2);
  color: var(--maroon);
}

.step-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--maroon);
}

.step-title {
  font-size: 1.35rem;
  margin-bottom: var(--space-1);
}

.step-desc {
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.55;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   8. SCREENSHOT SHOWCASE (SECTION 4)
   -------------------------------------------------------------------------- */
.showcase-section {
  padding: var(--space-8) var(--space-3);
  background-color: rgba(135, 99, 112, 0.03);
  border-top: 1px solid rgba(135, 99, 112, 0.06);
  border-bottom: 1px solid rgba(135, 99, 112, 0.06);
}

.showcase-container {
  max-width: var(--max-width-site);
  margin: 0 auto;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  justify-items: center;
}

@media (min-width: 640px) {
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }
}

@media (min-width: 1024px) {
  .showcase-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-3);
  }
}

.showcase-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.device-frame {
  background: var(--paper);
  border-radius: 36px;
  padding: 12px;
  box-shadow: 
    0 20px 40px rgba(43, 35, 32, 0.12),
    0 0 0 1px rgba(135, 99, 112, 0.1);
  margin-bottom: var(--space-2);
  width: 100%;
  max-width: 280px;
  transition: transform 0.3s ease;
}

.device-frame:hover {
  transform: translateY(-4px);
}

.device-frame img {
  border-radius: 26px;
  width: 100%;
  object-fit: cover;
}

.showcase-caption {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--maroon);
  margin-top: var(--space-1);
}

/* --------------------------------------------------------------------------
   9. PRIVACY & TRUST (SECTION 5)
   -------------------------------------------------------------------------- */
.privacy-trust-section {
  padding: var(--space-8) var(--space-3);
  max-width: var(--max-width-site);
  margin: 0 auto;
}

.privacy-card-box {
  background-color: var(--paper);
  border: 1px solid var(--paper-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-3);
  box-shadow: 0 6px 24px var(--paper-shadow);
}

@media (min-width: 768px) {
  .privacy-card-box {
    padding: var(--space-6) var(--space-6);
  }
}

.commitments-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-top: var(--space-4);
  margin-bottom: var(--space-4);
}

@media (min-width: 768px) {
  .commitments-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.commitment-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.commitment-icon {
  color: var(--maroon);
  margin-bottom: var(--space-1);
}

.commitment-icon svg {
  width: 28px;
  height: 28px;
}

.commitment-item h4 {
  font-size: 1.15rem;
  color: var(--maroon-deep);
}

.commitment-item p {
  font-size: 0.9375rem;
  margin-bottom: 0;
}

.privacy-link-wrapper {
  text-align: center;
  margin-top: var(--space-3);
  padding-top: var(--space-2);
  border-top: 1px dashed rgba(135, 99, 112, 0.15);
}

/* --------------------------------------------------------------------------
   10. EMAIL CAPTURE (SECTION 6)
   -------------------------------------------------------------------------- */
.email-capture-section {
  padding: var(--space-8) var(--space-3);
  background-color: var(--paper);
  border-top: 1px solid rgba(135, 99, 112, 0.08);
  border-bottom: 1px solid rgba(135, 99, 112, 0.08);
  text-align: center;
}

.email-container {
  max-width: 540px;
  margin: 0 auto;
}

.email-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

@media (min-width: 480px) {
  .email-form {
    flex-direction: row;
  }
}

.email-input {
  flex: 1;
  padding: 14px 20px;
  border-radius: var(--radius-full);
  border: 1px solid var(--paper-border);
  background-color: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.email-input:focus {
  outline: none;
  border-color: var(--maroon);
  box-shadow: 0 0 0 3px rgba(135, 99, 112, 0.15);
}

.email-submit-btn {
  padding: 14px 24px;
  border-radius: var(--radius-full);
  border: none;
  background-color: var(--maroon);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.email-submit-btn:hover {
  background-color: var(--maroon-deep);
  transform: translateY(-1px);
}

.waitlist-btn {
  display: inline-block;
  margin-top: var(--space-3);
  text-decoration: none;
  text-align: center;
}

.form-feedback {
  margin-top: var(--space-2);
  font-size: 0.9375rem;
  display: none;
}

.form-feedback.success {
  display: block;
  color: #1E6E38;
  font-weight: 600;
}

.form-feedback.error {
  display: block;
  color: #991B1B;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   11. FAQ ACCORDION (SECTION 7)
   -------------------------------------------------------------------------- */
.faq-section {
  padding: var(--space-8) var(--space-3);
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.faq-item {
  background-color: var(--paper);
  border: 1px solid var(--paper-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 8px var(--paper-shadow);
}

.faq-trigger {
  width: 100%;
  padding: var(--space-3) var(--space-3);
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--maroon);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  transition: color 0.2s ease, background-color 0.2s ease;
}

.faq-trigger:hover {
  background-color: rgba(135, 99, 112, 0.02);
}

.faq-chevron {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  color: var(--gold);
}

.faq-trigger[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

.faq-panel {
  padding: 0 var(--space-3) var(--space-3);
  display: none;
}

.faq-panel[aria-hidden="false"] {
  display: block;
}

.faq-panel p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
  color: var(--ink-muted);
}

/* --------------------------------------------------------------------------
   12. FOOTER (SECTION 8)
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--maroon-deep);
  color: var(--cream);
  padding: var(--space-8) var(--space-3) var(--space-6);
  margin-top: auto;
}

.footer-container {
  max-width: var(--max-width-site);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-4);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
}

.footer-wordmark {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--paper);
}

.footer-tagline {
  font-size: 0.9375rem;
  color: rgba(247, 242, 235, 0.75);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  list-style: none;
}

.footer-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--paper);
  text-decoration: underline;
}

.footer-legal-copy {
  font-size: 0.8125rem;
  color: rgba(247, 242, 235, 0.5);
  margin-top: var(--space-2);
}

/* --------------------------------------------------------------------------
   13. STANDALONE PROSE LAYOUT PAGE (/privacy, /terms, /support)
   -------------------------------------------------------------------------- */
.prose-page-main {
  padding: var(--space-6) var(--space-3) var(--space-10);
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  width: 100%;
}

.draft-notice-banner {
  background-color: rgba(185, 138, 62, 0.15);
  border: 1px solid var(--gold);
  color: var(--maroon-deep);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-4);
}

.prose-content {
  background-color: var(--paper);
  border: 1px solid var(--paper-border);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-3);
  box-shadow: 0 4px 20px var(--paper-shadow);
}

@media (min-width: 640px) {
  .prose-content {
    padding: var(--space-6) var(--space-6);
  }
}

.prose-content h1 {
  font-size: 2.25rem;
  margin-bottom: var(--space-3);
}

.prose-content h2 {
  font-size: 1.5rem;
  margin-top: var(--space-4);
  margin-bottom: var(--space-2);
}

.prose-content p, .prose-content ul {
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.65;
  margin-bottom: var(--space-2);
}

.prose-content ul {
  padding-left: var(--space-3);
}

.prose-content li {
  margin-bottom: var(--space-1);
}

.prose-content .table-wrapper {
  overflow-x: auto;
  margin-bottom: var(--space-2);
}

.prose-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--ink);
}

.prose-content th,
.prose-content td {
  text-align: left;
  vertical-align: top;
  padding: var(--space-1) var(--space-2);
  border-bottom: 1px solid var(--paper-border);
}

.prose-content th {
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   14. REDUCED MOTION ACCESSIBILITY (RULE Compliance)
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-scroll-wrapper {
    height: auto !important;
  }
  .hero-sticky-container {
    position: relative !important;
    top: 0 !important;
  }
  .memory-card {
    position: relative !important;
    opacity: 1 !important;
    transform: rotate(-1.5deg) !important;
    margin-bottom: var(--space-2) !important;
    pointer-events: auto !important;
  }
}
