/* ============================================================
   ELITE DESIGN SYSTEM — Rashmi Suthar Art Accelerator
   Typography: Fluid clamp() scales, tight heading tracking
   Layout: Editorial whitespace, clean grids, mobile-first
   Aesthetic: Apple / Bottega Veneta / LVMH — Stealth Luxury
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:wght@400;500;700&display=swap');

/* === DESIGN TOKENS === */
:root {
  /* Backgrounds — pitch dark black */
  --bg-base:        #050505;
  --bg-surface:     #0a0a0a;
  --bg-raised:      #111111;
  --bg-overlay:     #1a1a1a;

  /* Text — refined hierarchy */
  --text-primary:   #F2F2F7;
  --text-secondary: #A1A1AA;
  --text-tertiary:  #52525B;
  --text-inverse:   #FFFFFF;

  /* Accent — Deep Blood Red */
  --accent:         #CC0000;
  --accent-bright:  #FF1A1A;
  --accent-dim:     rgba(204,0,0,0.12);
  --accent-border:  rgba(204,0,0,0.25);

  /* Teal replaced with blood red for checkmarks */
  --teal:           #CC0000;
  --teal-dim:       rgba(204,0,0,0.10);

  /* Silver — for secondary elements */
  --silver:         #71717A;
  --divider:        rgba(255,255,255,0.06);

  /* Typography — fluid scale using clamp() */
  --font-display:   'Playfair Display', Georgia, serif;
  --font-sans:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Font sizes — fluid, mobile-to-desktop */
  --text-xs:        clamp(0.7rem,  1.8vw, 0.8rem);
  --text-sm:        clamp(0.82rem, 2vw,   0.95rem);
  --text-base:      clamp(0.95rem, 2.2vw, 1.05rem);
  --text-lg:        clamp(1.05rem, 2.5vw, 1.2rem);
  --text-xl:        clamp(1.15rem, 3vw,   1.4rem);
  --text-2xl:       clamp(1.3rem,  3.5vw, 1.75rem);
  --text-3xl:       clamp(1.6rem,  4vw,   2.2rem);
  --text-4xl:       clamp(1.9rem,  5vw,   2.8rem);
  --text-5xl:       clamp(2.2rem,  6vw,   3.6rem);
  --text-display:   clamp(2.5rem,  7.5vw, 4.5rem);

  /* Spacing */
  --space-xs:   8px;
  --space-sm:   16px;
  --space-md:   24px;
  --space-lg:   40px;
  --space-xl:   64px;
  --space-2xl:  96px;
  --space-3xl:  128px;

  /* Radii */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  /* Transitions */
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --duration:    0.28s;

  /* Layout */
  --max-w:       1080px;
  --max-w-text:  720px;
}

/* === RESET & BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  font-size: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  background-color: var(--bg-base);
  /* Artistic subtle red aura */
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(204,0,0,0.06) 0%, transparent 50%),
    radial-gradient(circle at 85% 85%, rgba(153,0,0,0.04) 0%, transparent 50%);
  background-attachment: fixed;
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 80px;
  padding-top: 48px; /* JS will override with exact bar height */
  overflow-x: hidden;
}

/* Artistic Canvas / Film Grain Overlay */
body::after {
  content: "";
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.75" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
}

@media (min-width: 768px) {
  body { padding-bottom: 0; padding-top: 44px; }
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* === TYPOGRAPHY HIERARCHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

/* Display headings use Playfair for editorial richness */
.display-heading {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

p { line-height: 1.7; color: var(--text-secondary); }

/* Eyebrow label — Apple's "chip" style category labels */
.eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

/* === LAYOUT === */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: clamp(16px, 5vw, 40px);
  padding-right: clamp(16px, 5vw, 40px);
}

.container-narrow {
  max-width: var(--max-w-text);
  margin: 0 auto;
  padding-left: clamp(16px, 5vw, 40px);
  padding-right: clamp(16px, 5vw, 40px);
}

section {
  padding: clamp(60px, 10vw, 120px) clamp(16px, 5vw, 40px);
}

/* === UTILITY CLASSES === */
.text-center { text-align: center; }
.text-accent  { color: var(--accent); }
.text-gold    { color: var(--accent); }
.text-white   { color: var(--text-primary); }
.text-silver  { color: var(--text-secondary); }
.text-platinum{ color: #C8CAD4; }
.font-bold    { font-weight: 700; }
.bg-darker    { background-color: var(--bg-base); }

/* Margin / padding utilities */
.mb-10 { margin-bottom: 10px; } .mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; } .mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; } .mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }   .mt-50 { margin-top: 50px; }
.pt-30 { padding-top: 30px; }

/* Section titles */
.section-title {
  font-size: var(--text-4xl);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.section-heading-large {
  font-size: var(--text-3xl);
  letter-spacing: -0.025em;
  color: var(--text-primary);
  line-height: 1.2;
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* === PANELS & CARDS === */
.box-panel {
  background-color: var(--bg-surface);
  padding: clamp(24px, 5vw, 48px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--divider);
}

.mockup-banner {
  background: linear-gradient(135deg, var(--bg-raised), var(--bg-overlay));
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 6vw, 72px) clamp(20px, 4vw, 48px);
}

.mockup-sub  { font-size: var(--text-xl);  color: var(--text-primary); }
.mockup-main {
  font-size: var(--text-display);
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 1.0;
  margin-top: 12px;
}

/* === URGENT TOP BAR === */
.urgent-bar {
  padding: 9px clamp(12px, 3vw, 32px);
  background: linear-gradient(90deg, #0a0000, #1a0000 50%, #0a0000);
  color: var(--accent-bright);
  font-size: clamp(0.62rem, 1.8vw, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: fixed;
  top: 0; left: 0; width: 100%; z-index: 1000;
  border-bottom: 1px solid var(--accent-border);
  text-align: center;
  word-break: break-word;
  line-height: 1.4;
}

/* === QUOTE === */
.quote-text {
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--text-secondary);
  border-left: 3px solid var(--accent);
  padding-left: var(--space-md);
  line-height: 1.8;
}

.thunder-text {
  font-size: var(--text-base);
  letter-spacing: 0.03em;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: var(--text-sm);
  padding: 14px clamp(18px, 4vw, 40px);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  cursor: pointer;
  border-radius: 100px;
  transition: all var(--duration) var(--ease);
  box-shadow: 0 4px 24px rgba(204,0,0,0.3), 0 1px 4px rgba(0,0,0,0.5);
  white-space: normal;
  word-break: break-word;
  line-height: 1.3;
  text-align: center;
  animation: ctaPulse 2s ease-in-out infinite;
}

.btn:hover {
  background: var(--accent-bright);
  background: #ff4500;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 48px rgba(178,34,34,0.5), 0 2px 8px rgba(0,0,0,0.5);
  animation: none;
}

/* Combo CTA (large block button) */
.btn-combo {
  background: #b22222;
  color: #FFFFFF;
  width: 100%;
  padding: clamp(16px, 3vw, 24px) clamp(12px, 4vw, 32px);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 30px rgba(178,34,34,0.35), 0 1px 4px rgba(0,0,0,0.5);
  text-decoration: none;
  display: block;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(0.78rem, 2.4vw, 0.95rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--duration) var(--ease);
  line-height: 1.4;
  text-align: center;
  white-space: normal;
  word-break: break-word;
  box-sizing: border-box;
  animation: ctaPulse 2s ease-in-out infinite;
  border: 1px solid rgba(255,26,26,0.3);
}
@media (min-width: 480px) {
  .btn-combo {
    display: inline-block;
    max-width: 460px;
  }
}

.btn-combo:hover {
  background: var(--accent-bright);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 60px rgba(204,0,0,0.5), 0 0 20px rgba(204,0,0,0.3);
  animation: none;
}

.btn-arrow {
  display: inline-block;
  margin-left: 8px;
  transition: transform var(--duration) var(--ease);
}
.btn-combo:hover .btn-arrow { transform: translateX(4px); }

.btn-subtext {
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.02em;
  opacity: 0.85;
  display: block;
  margin-top: 5px;
}

/* CTA Pulse Glow Animation */
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(204,0,0,0.3), 0 1px 4px rgba(0,0,0,0.5); }
  50% { box-shadow: 0 4px 40px rgba(204,0,0,0.55), 0 0 16px rgba(255,26,26,0.25); }
}

/* === LISTS === */
.cross-list { list-style: none; }
.cross-list li {
  margin-bottom: 14px;
  font-size: var(--text-base);
  position: relative;
  padding-left: 28px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.cross-list li::before {
  content: '—';
  color: var(--silver);
  position: absolute;
  left: 0;
  font-weight: 400;
}

.check-list { list-style: none; }
.check-list li {
  margin-bottom: 16px;
  font-size: var(--text-base);
  position: relative;
  padding-left: 36px;
  color: var(--text-secondary);
  line-height: 1.65;
}
.check-list li::before {
  content: '✓';
  color: var(--teal);
  position: absolute;
  left: 0;
  font-weight: 600;
  font-size: 1.1rem;
  background: var(--teal-dim);
  border-radius: 50%;
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
}

.check-list.color-gold-theme li::before {
  color: var(--accent);
  background: var(--accent-dim);
}

.check-list-small { list-style: none; }
.check-list-small li {
  margin-bottom: 12px;
  font-size: var(--text-sm);
  position: relative;
  padding-left: 28px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.check-list-small li::before {
  content: '✓';
  color: var(--teal);
  position: absolute;
  left: 0;
  font-weight: 600;
}

/* === HERO === */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(to bottom, rgba(5,5,5,0.7) 0%, rgba(5,5,5,0.96) 100%),
    url('hero-bg.png') center / cover no-repeat;
  text-align: center;
  padding: clamp(48px, 8vw, 96px) clamp(16px, 5vw, 40px) clamp(40px, 6vw, 72px);
}

.hero-content { max-width: 840px; z-index: 2; width: 100%; }

.hero h1.main-headline {
  font-size: var(--text-display);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.hero p.main-subheadline {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.65;
  margin-bottom: var(--space-lg);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero-video-wrapper {
  background: #000;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  border: 1px solid var(--divider);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.9), 0 0 0 1px rgba(255,255,255,0.04);
}
.hero-video-wrapper iframe { width: 100%; height: 100%; border: 0; display: block; }

/* === LOGISTICS BAR === */
.logistics-bar {
  background-color: var(--bg-raised);
  color: var(--text-secondary);
  padding: clamp(12px, 2vw, 18px) clamp(16px, 4vw, 40px);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

/* === AS SEEN / MENTORS === */
.as-seen-section { background-color: var(--bg-base); }
.media-logos { max-width: 100%; height: auto; opacity: 0.85; filter: brightness(0) invert(1); }
.mentor-logos img {
  width: 80px; height: 80px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--divider);
  filter: grayscale(30%);
  transition: filter var(--duration) var(--ease);
}
.mentor-logos img:hover { filter: grayscale(0%); }
@media (min-width: 768px) { .mentor-logos img { width: 96px; height: 96px; } }

/* === DAY CARDS (Itinerary) === */
.day-cards-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 40px);
  max-width: 960px;
  margin: 0 auto;
}
@media (min-width: 680px) { .day-cards-wrapper { grid-template-columns: 1fr 1fr; } }

.day-card {
  background: var(--bg-surface);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.day-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.5);
}

.day-title {
  padding: clamp(16px, 3vw, 24px) clamp(20px, 4vw, 28px);
  margin: 0;
  font-size: var(--text-xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent);
  background: var(--bg-raised);
  border-bottom: 1px solid var(--divider);
}

.day-image { overflow: hidden; }
.day-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.day-card:hover .day-image img { transform: scale(1.03); }

.day-content { padding: clamp(20px, 4vw, 28px); flex-grow: 1; }

.day-outcome {
  background: var(--accent-dim);
  border-top: 1px solid var(--accent-border);
  color: var(--accent-bright);
  font-weight: 600;
  padding: clamp(12px, 2vw, 16px) clamp(20px, 4vw, 28px);
  font-size: var(--text-sm);
  line-height: 1.5;
}

/* === BORDER DASHED === */
.border-dashed-gold {
  border: 1px dashed var(--accent-border);
  border-radius: var(--radius-lg);
}

/* === ACCORDION (FAQ) === */
.accordion { max-width: 720px; margin: 0 auto; }
.accordion-item {
  background-color: var(--bg-surface);
  margin-bottom: 2px;
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--duration) var(--ease);
}
.accordion-item.active { border-color: var(--accent-border); }

.accordion-header {
  padding: clamp(16px, 3vw, 22px) clamp(20px, 4vw, 28px);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: var(--text-base);
  letter-spacing: -0.01em;
  color: var(--text-primary);
  transition: background-color var(--duration) var(--ease);
  gap: 16px;
}
.accordion-header:hover { background-color: var(--bg-raised); }

.accordion-icon {
  flex-shrink: 0;
  font-size: 1.3rem;
  color: var(--accent);
  transition: transform var(--duration) var(--ease-spring);
  line-height: 1;
}
.accordion-item.active .accordion-icon { transform: rotate(45deg); }

.accordion-content {
  padding: 0 clamp(20px, 4vw, 28px);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease), padding var(--duration) var(--ease);
}
.accordion-item.active .accordion-content {
  padding: 0 clamp(20px, 4vw, 28px) clamp(16px, 3vw, 24px);
  max-height: 600px;
}
.accordion-content p {
  color: var(--text-secondary);
  font-size: var(--text-base);
  line-height: 1.75;
}

/* === QUALIFICATION GRID === */
.qual-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 4vw, 32px);
}
@media (min-width: 680px) { .qual-grid { grid-template-columns: 1fr 1fr; } }

.qual-box {
  padding: clamp(24px, 4vw, 40px);
  border-radius: var(--radius-lg);
}

.qual-for {
  background-color: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-left: 3px solid var(--accent);
}

.qual-not {
  background-color: rgba(255,255,255,0.02);
  border: 1px solid var(--divider);
  border-left: 3px solid rgba(255,255,255,0.12);
}

.qual-list { list-style: none; }
.qual-list li {
  margin-bottom: clamp(14px, 2.5vw, 20px);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--text-secondary);
}

/* === VIDEOS & PROOF GRID === */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 3vw, 28px);
}
@media (min-width: 560px) { .proof-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .proof-grid { grid-template-columns: 1fr 1fr 1fr; } }
.proof-grid iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  border: 0;
  display: block;
}

.masonry-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(12px, 2vw, 20px);
}
@media (min-width: 560px) { .masonry-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .masonry-grid { grid-template-columns: 1fr 1fr 1fr; } }
.masonry-grid img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--divider);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: transform var(--duration) var(--ease);
  display: block;
}
.masonry-grid img:hover { transform: scale(1.02); }

.large-video {
  max-width: 760px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--divider);
}
.large-video iframe { width: 100%; height: 100%; border: 0; display: block; }

/* === AUTHORITY BIO === */
.auth-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 6vw, 64px);
  align-items: start;
}
@media (min-width: 768px) { .auth-grid { grid-template-columns: 2fr 3fr; align-items: center; } }

.auth-image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--divider);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  display: block;
}

.auth-content p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

/* === PHOTO COLLAGE === */
.photo-collage {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.photo-collage img {
  width: 45%;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}
.photo-collage img:nth-child(even) { margin-top: 20px; }

/* === STICKY MOBILE FOOTER === */
.sticky-footer {
  position: fixed;
  bottom: 0; left: 0;
  width: 100%;
  background-color: rgba(5,5,5,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px clamp(16px, 4vw, 24px);
  text-align: center;
  box-shadow: 0 -1px 0 var(--accent-border), 0 -8px 24px rgba(204,0,0,0.15);
  z-index: 90;
  display: block;
}
@media (min-width: 768px) { .sticky-footer { display: none; } }

/* === FOOTER === */
footer {
  background-color: var(--bg-surface);
  padding: clamp(32px, 6vw, 56px) clamp(16px, 5vw, 40px);
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  border-top: 1px solid var(--divider);
}

/* === SEAT COUNTER ANIMATION === */
.seat-counter-wrapper {
  display: inline-flex;
  overflow: hidden;
  height: 1.1em;
  vertical-align: middle;
  align-items: center;
  position: relative;
  min-width: 1.4em;
  justify-content: center;
}
.slide-num { display: inline-block; line-height: 1; }
.slide-out-up { animation: slideOutUp 0.28s forwards ease-in; }
.slide-in-up  { animation: slideInUp  0.28s forwards var(--ease-spring); }

@keyframes slideOutUp {
  from { transform: translateY(0);    opacity: 1; }
  to   { transform: translateY(-110%); opacity: 0; }
}
@keyframes slideInUp {
  from { transform: translateY(110%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
