<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  /* Color Palette */
  --primary-color: #7C5FD6; /* MappX Purple */
  --secondary-color: #FF5A5F; /* Accent Pink/Red */
  --accent-color: #00C49A;   /* Vibrant Teal */
  --text-dark: #222222;
  --text-light: #FFFFFF;
  --text-muted: #555555;
  --background-light: #F8FAFC;
  --background-gradient-start: #f8fafc;
  --background-gradient-end: #e2c0f9;
  --neutral-light: #EAEAEA;
  --neutral-medium: #CCCCCC;
  --neutral-dark: #A0A0A0;
  --card-background: rgba(255, 255, 255, 0.15);
  --card-shadow: rgba(0, 0, 0, 0.1);
  --button-shadow: rgba(90, 63, 160, 0.18);

  /* Typography */
  --font-family-headings: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  --font-family-body: 'Montserrat', 'Segoe UI', Arial, sans-serif; /* Consider a different body font later for readability if needed */
  
  --font-size-base: 16px;
  --font-size-sm: 0.875rem; /* 14px */
  --font-size-md: 1rem;    /* 16px */
  --font-size-lg: 1.25rem; /* 20px */
  --font-size-xl: 1.5rem;  /* 24px */
  --font-size-xxl: 2rem;   /* 32px */
  --font-size-hero-title: clamp(2.8rem, 5vw, 5.5rem);
  --font-size-section-title: 2rem;

  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;

  --line-height-base: 1.6;
  --line-height-heading: 1.3;

  /* Spacing (example, can be expanded) */
  --spacing-xs: 0.25rem; /* 4px */
  --spacing-sm: 0.5rem;  /* 8px */
  --spacing-md: 1rem;    /* 16px */
  --spacing-lg: 1.5rem;  /* 24px */
  --spacing-xl: 2rem;    /* 32px */
  --spacing-xxl: 3rem;   /* 48px */

  /* Borders */
  --border-radius-sm: 0.25rem; /* 4px */
  --border-radius-md: 0.5rem;  /* 8px */
  --border-radius-lg: 1rem;    /* 16px */
  --border-radius-xl: 1.5rem;  /* 24px */
  --border-radius-pill: 50rem;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 8px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 16px rgba(0,0,0,0.1);
}

/* Ensure consistent sizing */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

/* filepath: /Users/leandrodibella/Dev/flutter_projects/TripCo/software/website/styles.css */
body {
  font-family: var(--font-family-body);
  margin: 0;
  background: linear-gradient(135deg, var(--background-gradient-start) 0%, var(--background-gradient-end) 100%) fixed;
  color: var(--text-dark);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
header {
  text-align: center;
  padding: var(--spacing-xxl) var(--spacing-md) var(--spacing-xl) var(--spacing-md);
  position: relative;
}
header h1 { /* This might be a general h1, specific hero title is styled later */
  font-size: var(--font-size-xxl); /* Adjust if this is not the hero title */
  margin-bottom: var(--spacing-md);
  color: var(--primary-color);
  letter-spacing: 2px;
  font-weight: var(--font-weight-bold);
  font-family: var(--font-family-headings);
}
.promo {
  font-size: 1.35rem; /* Consider var(--font-size-lg) or similar */
  color: var(--text-muted);
  margin: 0 auto var(--spacing-xl) auto;
  max-width: 600px;
  font-weight: var(--font-weight-medium);
}
.cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: var(--text-light);
  padding: var(--spacing-md) var(--spacing-xl); /* Adjusted padding */
  border-radius: var(--border-radius-pill); /* Updated for pill shape */
  text-decoration: none;
  font-size: var(--font-size-md); /* Adjusted font size */
  font-weight: var(--font-weight-bold);
  box-shadow: 0 8px 32px var(--button-shadow);
  transition: background var(--transition-medium), transform var(--transition-medium), box-shadow var(--transition-medium);
  margin-top: var(--spacing-md);
  animation: popin 1.2s cubic-bezier(.68,-0.55,.27,1.55);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none; /* Ensure no default border */
}

.cta-btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,90,95,0.3) 0%, rgba(124,95,214,0.3) 100%); /* Consider using color variables with alpha */
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-slow) cubic-bezier(.68,-0.55,.27,1.55);
}

.cta-btn:hover {
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(124,95,214,0.3); /* Consider var(--button-shadow) with adjusted values */
}

.cta-btn:hover:before {
  transform: scaleX(1);
  transform-origin: left;
}

.cta-btn.pulse {
  animation: popin 1.2s cubic-bezier(.68,-0.55,.27,1.55), pulse-glow 2s infinite alternate;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 8px 32px rgba(90,63,160,0.15); }
  100% { box-shadow: 0 15px 60px rgba(124,95,214,0.3); }
}
.cta-btn.large {
  font-size: 1.3rem;
  padding: 1.2rem 3rem;
  margin-top: 1.5rem;
}
@keyframes popin {
  0% { opacity: 0; transform: scale(0.7); }
  80% { opacity: 1; transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1); }
}
.hero {
  position: relative;
  background: linear-gradient(120deg, #f8fafc 0%, #e2c0f9 60%, #f7e6ff 100%) !important;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/map_bg.svg');
  background-size: cover;
  background-position: center;
  opacity: 0.6;
  animation: pulse 15s ease-in-out infinite alternate;
  z-index: 1;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.05); opacity: 0.6; }
  100% { transform: scale(1); opacity: 0.4; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem 1rem 2rem 1rem;
  backdrop-filter: blur(5px);
  border-radius: 2rem;
}
.hero-content.wide {
  width: 100%;
  max-width: 2200px;
  margin: 2rem auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 10vw, 12rem);
  padding-left: clamp(2rem, 8vw, 10rem);
  padding-right: clamp(2rem, 8vw, 10rem);
  min-height: 75vh;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 30px;
  box-shadow: 0 20px 80px rgba(90, 63, 160, 0.1);
}

.hero-left, .hero-right {
  flex: 1 1 0;
  min-width: 420px; /* Or based on content */
  max-width: 800px; /* Or based on content */
  display: flex;
  flex-direction: column;
  align-items: center; /* Default, can be overridden to align-items: flex-start for text */
  justify-content: center;
  text-align: center; /* Center text elements within hero-left */
}

.hero-icon.huge {
  width: clamp(60px, 7vw, 120px);
  height: clamp(60px, 7vw, 120px);
  margin-bottom: var(--spacing-lg); /* Added spacing below icon */
  transition: transform var(--transition-medium), box-shadow var(--transition-medium); /* Added for hover effect */
}

.hero-icon.huge:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg); /* Use a larger shadow on hover */
}

.hero-icon.huge.elegant-icon {
  border-radius: 22px !important;
  box-shadow: 0 4px 24px rgba(124,95,214,0.13), 0 2px 12px rgba(90,63,160,0.10);
  border: 2.5px solid #ece6fa;
  background: #fff;
  padding: 6px;
  transition: box-shadow 0.3s, border 0.3s;
}

.hero-icon.huge.elegant-icon.no-border {
  border-radius: 32px !important; /* Ensure this is not overridden by a generic .hero-icon style if that exists */
  box-shadow: 0 4px 24px rgba(124,95,214,0.13), 0 2px 12px rgba(90,63,160,0.10); /* From original styles */
  border: none !important;
  background: var(--text-light);
  padding: 0;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium); /* Ensure transition is here too */
}

.hero-icon.huge.elegant-icon.no-border:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg); /* Use a larger shadow on hover */
}

.hero-title {
  font-size: var(--font-size-hero-title);
  line-height: var(--line-height-heading);
  margin-bottom: var(--spacing-md); /* Adjusted from lg, tagline will provide more space */
  background: linear-gradient(90deg, var(--secondary-color) 15%, var(--primary-color) 85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent; /* Fallback for browsers that don't support background-clip: text */
  font-weight: var(--font-weight-extrabold);
  font-family: var(--font-family-headings);
  letter-spacing: -0.02em;
}

.hero-tagline, .hero-subtitle {
  width: 100%;
  font-size: clamp(1.2rem, 2vw, 2.2rem); /* Consider var(--font-size-xl) or similar */
  color: var(--text-muted);
  line-height: var(--line-height-base);
  margin-bottom: var(--spacing-xl); /* Increased space before main CTA */
  font-weight: var(--font-weight-medium);
  max-width: 650px; /* Constrain line length for readability */
  margin-left: auto; /* Center if max-width is applied */
  margin-right: auto; /* Center if max-width is applied */
}

.cta-btn.big {
  margin-left: auto;
  margin-right: auto;
  display: block;
  font-size: 1.25rem; /* Consider var(--font-size-lg) */
  padding: var(--spacing-lg) var(--spacing-xxl); /* Larger padding for main CTA */
  border-radius: var(--border-radius-pill);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0; /* Removed top margin as tagline provides it */
  margin-bottom: var(--spacing-xl); /* Added space after main CTA */
}
.store-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg); /* Adjusted space after badges */
  flex-wrap: wrap;
  margin-top: 0; /* Removed top margin, CTA provides it */
}
.store-badge {
  height: 40px;
  width: auto;
  max-width: 160px;
  min-width: 110px;
  transition: transform 0.2s;
  box-shadow: 0 2px 12px rgba(80,60,160,0.08);
  border-radius: 10px;
  background: #fff;
}
@media (max-width: 900px) {
  .store-badge {
    height: 32px;
    min-width: 80px;
    max-width: 110px;
  }
}
@media (max-width: 600px) {
  .store-badge {
    height: 28px;
    min-width: 60px;
    max-width: 90px;
  }
}
.fancy-mockup-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

.mockup-glow {
  position: absolute;
  width: 300px;
  height: 600px;
  background: radial-gradient(circle, rgba(124,95,214,0.3) 0%, rgba(255,90,95,0.2) 50%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  animation: glow-pulse 4s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
  0% { opacity: 0.5; transform: scale(0.9); }
  100% { opacity: 0.8; transform: scale(1.1); }
}

.glass-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 16px;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.1),
    0 1px 1px rgba(255, 255, 255, 0.2) inset,
    0 -1px 1px rgba(0, 0, 0, 0.05) inset;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  z-index: 2;
}

.glass-card:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.15),
    0 1px 1px rgba(255, 255, 255, 0.3) inset,
    0 -1px 1px rgba(0, 0, 0, 0.1) inset;
}

.app-mockup img.mockup-main {
  width: 260px;
  max-width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 4px 24px rgba(124,95,214,0.13), 0 2px 12px rgba(90,63,160,0.10);
  transition: transform 0.5s;
  display: block;
}

.glass-card:hover .mockup-main {
  transform: scale(0.98);
}

/* Floating elements that appear on scroll */
.floating-element {
  position: absolute;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  padding: 15px;
  display: flex;
  align-items: center;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s;
}

.element-pin {
  flex: 0 0 30px;
  height: 30px;
  margin-right: 10px;
  background: linear-gradient(45deg, #ff5a5f, #7c5fd6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.element-text {
  font-size: 0.9rem;
  color: #333;
}

.show-element {
  opacity: 1;
  transform: translateY(0);
}
.tagline {
  font-size: 1.5rem;
  color: #7c5fd6;
  margin-bottom: 1.2rem;
  font-weight: 600;
  letter-spacing: 1px;
  animation: fadeInUp 1.2s cubic-bezier(.68,-0.55,.27,1.55);
}
.journey-section {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(90,63,160,0.08);
  max-width: 900px;
  margin: 3rem auto 2rem auto;
  padding: 2.5rem 2rem 2rem 2rem;
  text-align: center;
}
.journey-title {
  color: #5a3fa0;
  font-size: 2rem;
  margin-bottom: 2.5rem;
  font-weight: 700;
}
.journey-timeline {
  position: relative;
  margin: 0 auto;
  padding: 0 0 2rem 0;
  max-width: 700px;
}
.journey-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3.5rem;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1.2s cubic-bezier(.68,-0.55,.27,1.55) forwards;
  flex-direction: row;
  justify-content: flex-start;
}
.journey-step .step-marker {
  flex: 0 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 1.2rem 0 0;
}
.journey-step .step-content {
  background: #f8fafc;
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px rgba(90,63,160,0.08);
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  max-width: 420px;
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
}
.journey-step .step-content img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(90,63,160,0.07);
  background: #f3f3f3;
  transition: transform 0.18s;
  cursor: pointer;
  object-fit: contain;
  display: block;
}
.journey-step .step-caption h3 {
  color: #ff5a5f;
  margin-bottom: 0.5rem;
  font-size: 1.18rem;
  font-weight: 700;
}
.journey-step .step-caption p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 0;
}
.journey-timeline:before {
  content: '';
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #e2c0f9 0%, #b2d8f7 100%);
  border-radius: 2px;
  z-index: 0;
}
.journey-step {
  z-index: 1;
}
.features-journey-section {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(90,63,160,0.08);
  max-width: 1100px;
  margin: 3rem auto 2rem auto;
  padding: 2.5rem 2rem 2rem 2rem;
}
.features-journey-timeline {
  position: relative;
  margin: 0 auto;
  max-width: 900px;
  padding: 2rem 0 2rem 0;
}
.features-journey-timeline:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #e2c0f9 0%, #b2d8f7 100%);
  border-radius: 2px;
  transform: translateX(-50%);
  z-index: 0;
}
.journey-feature-step {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 4.5rem;
  position: relative;
  z-index: 1;
  min-height: 220px;
}
.journey-feature-step.left {
  flex-direction: row;
}
.journey-feature-step.right {
  flex-direction: row-reverse;
}
.feature-img-wrap {
  flex: 0 0 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.feature-img {
  width: 260px;
  max-width: 90vw;
  height: auto;
  border-radius: 1.2rem;
  margin: 0 2.5rem;
  box-shadow: 0 2px 12px rgba(90,63,160,0.10);
  background: #f3f3f3;
  object-fit: contain;
  transition: transform 0.18s;
  cursor: pointer;
}
.feature-step-content {
  background: #f8fafc;
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px rgba(90,63,160,0.08);
  padding: 2rem 2rem 1.5rem 2rem;
  max-width: 380px;
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 1rem;
}
.journey-feature-step.left .feature-step-content {
  margin-left: 0;
  margin-right: 1rem;
}
.journey-feature-step.right .feature-step-content {
  margin-right: 0;
  margin-left: 1rem;
}
@media (max-width: 900px) {
  .journey-section { padding: 1rem; border-radius: 1rem; }
  .journey-step .step-content { max-width: 95vw; }
  .journey-step .step-content img { max-width: 90vw; }
  .app-mockup img.mockup-main,
  .features-visuals .feature-img.large {
    width: 160px;
    max-width: 50vw;
  }
  .app-mockup img.mockup-float,
  .features-visuals .feature-img.overlay {
    width: 70px;
    max-width: 30vw;
    left: 10px;
    top: 30px;
  }
  .features-visuals {
    max-width: 180px;
  }
  .hero-content.wide { flex-direction: column; gap: 1.5rem; }
  .features-section { padding: 1rem; border-radius: 1rem; }
  .features-grid { grid-template-columns: 1fr; }
  .features-journey-timeline:before { left: 24px; width: 2px; transform: none; }
  .journey-feature-step, .journey-feature-step.left, .journey-feature-step.right {
    flex-direction: column !important;
    align-items: flex-start;
    min-height: unset;
  }
  .feature-img-wrap { margin: 0 0 1.2rem 0; }
  .feature-img { margin: 0 0 1.2rem 0; width: 90vw; }
  .feature-step-content { max-width: 95vw; margin: 0; }
}
@media (max-width: 700px) {
  .hero-content h1 { font-size: 2.1rem; }
  .journey-title { font-size: 1.3rem; }
  .journey-step { flex-direction: column; align-items: flex-start; }
  .journey-step .step-content { align-items: flex-start; text-align: left; }
  .journey-timeline:before { left: 24px; width: 2px; }
}
@media (max-width: 600px) {
  .app-mockup img.mockup-main,
  .features-visuals .feature-img.large {
    width: 110px;
    max-width: 70vw;
  }
  .app-mockup img.mockup-float,
  .features-visuals .feature-img.overlay {
    width: 48px;
    max-width: 40vw;
    left: 0;
    top: 10px;
  }
  .features-visuals {
    max-width: 100px;
  }
  .hero-content.wide { padding: 1rem; }
  .feature-img { max-width: 90vw; }
  .footer-signature { max-width: 120px; }
}

/* --- Large screens: 1400px and up (17"+ laptops, desktops) --- */
@media (min-width: 1400px) {
  .hero-content.wide {
    max-width: 1600px;
    padding-left: 4vw;
    padding-right: 4vw;
  }
  .features-journey-section,
  .features-section {
    max-width: 1500px;
    padding-left: 4vw;
    padding-right: 4vw;
  }
  .features-journey-timeline {
    max-width: 1200px;
  }
}

/* --- Extra large screens: 1800px and up --- */
@media (min-width: 1800px) {
  .hero-content.wide {
    max-width: 2000px;
    padding-left: 8vw;
    padding-right: 8vw;
  }
  .features-journey-section,
  .features-section {
    max-width: 1800px;
    padding-left: 8vw;
    padding-right: 8vw;
  }
  .features-journey-timeline {
    max-width: 1500px;
  }
}

/* --- Medium-large screens: 1100pxâ€“1399px (15"â€“16" laptops) --- */
@media (min-width: 1100px) and (max-width: 1399px) {
  .hero-content.wide {
    max-width: 1200px;
    gap: 2.5rem;
    padding: 3rem 1.5rem 2rem 1.5rem;
  }
  .features-journey-section,
  .features-section {
    max-width: 1100px;
    padding: 2.5rem 1.5rem 2rem 1.5rem;
  }
  .hero-title {
    font-size: 3.2rem;
  }
  .hero-tagline {
    font-size: 1.7rem;
  }
}
@media (min-width: 700px) and (max-width: 1099px) {
  .hero-content.wide {
    max-width: 98vw;
    gap: 2rem;
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
  }
  .features-journey-section,
  .features-section {
    max-width: 98vw;
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
  }
}

/* --- Small laptops: 700pxâ€“1099px (13"â€“14" laptops) --- */
@media (min-width: 700px) and (max-width: 1099px) {
  .hero-content.wide {
    max-width: 98vw;
    gap: 2rem;
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
  }
  .features-journey-section,
  .features-section {
    max-width: 98vw;
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
  }
}
@media (max-width: 600px) {
  .hero-title {
    font-size: 1.5rem;
  }
  .hero-tagline, .hero-subtitle {
    font-size: 1rem;
  }
}
footer {
  text-align: center;
  padding: 2rem 1rem 1rem 1rem;
  color: #888;
  font-size: 0.98rem;
}
.lightbox {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(90,63,160,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeIn 0.3s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.lightbox-content {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(90,63,160,0.18);
  padding: 2rem 2rem 1.5rem 2rem;
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
  position: relative;
  animation: popin 0.6s cubic-bezier(.68,-0.55,.27,1.55);
}
.lightbox-img {
  max-width: 70vw;
  max-height: 60vh;
  border-radius: 1rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 12px rgba(90,63,160,0.10);
}
.lightbox-caption {
  color: #5a3fa0;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2.2rem;
  color: #ff5a5f;
  cursor: pointer;
  font-weight: bold;
  transition: color 0.2s;
}
.lightbox-close:hover {
  color: #7c5fd6;
}
.floating-emoji {
  position: absolute;
  bottom: -40px;
  font-size: 2.2rem;
  pointer-events: none;
  opacity: 0.85;
  animation: floatUp 3.5s cubic-bezier(.68,-0.55,.27,1.55) forwards;
  z-index: 1;
}
@keyframes floatUp {
  0% { transform: translateY(0) scale(1); opacity: 0.7; }
  60% { opacity: 1; }
  100% { transform: translateY(-90vh) scale(1.3); opacity: 0; }
}
/* Modern image sizing for hero and features visuals */
.hero-icon.huge {
  width: clamp(60px, 7vw, 120px);
  height: clamp(60px, 7vw, 120px);
}

.hero-icon.huge.elegant-icon {
  border-radius: 22px !important;
  box-shadow: 0 4px 24px rgba(124,95,214,0.13), 0 2px 12px rgba(90,63,160,0.10);
  border: 2.5px solid #ece6fa;
  background: #fff;
  padding: 6px;
  transition: box-shadow 0.3s, border 0.3s;
}

.hero-icon.huge.elegant-icon.no-border {
  border-radius: 32px !important; /* Ensure this is not overridden by a generic .hero-icon style if that exists */
  box-shadow: 0 4px 24px rgba(124,95,214,0.13), 0 2px 12px rgba(90,63,160,0.10); /* From original styles */
  border: none !important;
  background: var(--text-light);
  padding: 0;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium); /* Ensure transition is here too */
}

.hero-icon.huge.elegant-icon.no-border:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg); /* Use a larger shadow on hover */
}

.app-mockup img.mockup-main {
  width: clamp(220px, 28vw, 520px);
  max-width: 100%;
  height: auto;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(90,63,160,0.13);
  background: transparent;
}
.app-mockup img.mockup-float {
  width: 120px;
  max-width: 18vw;
  height: auto;
  border-radius: 1rem;
  position: absolute;
  right: -30px;
  top: 40px;
  box-shadow: 0 2px 12px rgba(90,63,160,0.10);
}
.features-visuals .feature-img.large {
  width: 220px;
  max-width: 30vw;
  height: auto;
  border-radius: 1.2rem;
  margin-bottom: 1.2rem;
}
.features-visuals .feature-img.overlay {
  width: 120px;
  max-width: 18vw;
  height: auto;
  border-radius: 1rem;
  position: absolute;
  left: 60px;
  top: 80px;
  box-shadow: 0 2px 12px rgba(90,63,160,0.10);
}
.features-visuals {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 180px;
  max-width: 320px;
}
.features-section {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(90,63,160,0.08);
  max-width: 1100px;
  margin: 3rem auto 2rem auto;
  padding: 2.5rem 2rem 2rem 2rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  align-items: stretch;
}
.feature-card {
  background: #f8fafc;
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px rgba(90,63,160,0.08);
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
}
.feature-card:hover {
  box-shadow: 0 6px 24px rgba(90,63,160,0.16);
  transform: translateY(-4px) scale(1.03);
}
.feature-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 1rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 8px rgba(90,63,160,0.07);
  background: #f3f3f3;
  object-fit: contain;
  transition: transform 0.18s;
}
.cta-section {
  text-align: center;
  margin: 3rem auto 2rem auto;
}
.cta-btn.huge {
  font-size: 1.5rem;
  padding: 1.3rem 3.5rem;
  margin-top: 2rem;
  border-radius: 2.5rem;
}
.floating-cta {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 100;
  display: none;
}
.footer-signature {
  display: block;
  margin: 0 auto 1rem auto;
  max-width: 180px;
  opacity: 0.85;
}
.cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg); /* Increased gap for better separation */
  justify-content: center;
  margin-top: 0; /* Removed top margin, badges provide it */
  width: 100%;
}

.cta-link {
  /* Overriding .cta-btn styles for a more subtle link appearance */
  background: none;
  color: var(--text-muted);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--border-radius-md);
  text-decoration: none;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  box-shadow: none;
  transition: color var(--transition-medium), background-color var(--transition-medium);
  margin-top: 0; /* Reset margin from .cta-btn */
  text-transform: none; /* Reset text-transform from .cta-btn.big */
  letter-spacing: normal; /* Reset letter-spacing from .cta-btn.big */
}

.cta-link:hover, .cta-link:focus {
  background: rgba(0,0,0,0.05); /* Subtle hover background */
  color: var(--primary-color);
  box-shadow: none;
  transform: none; /* Reset transform from .cta-btn */
  outline: none;
}

.cta-link:before {
  display: none; /* Remove the ::before element from .cta-btn */
}

@media (max-width: 600px) {
  .cta-links {
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md); /* Add some space on mobile if stacked */
  }
  .cta-link {
    width: auto; /* Allow natural width */
    min-width: 0;
    max-width: 100%;
    font-size: var(--font-size-sm);
    text-align: center;
  }
}

/* --- Fix notification popup on mobile --- */
@media (max-width: 600px) {
  .notification-popup {
    max-width: 90vw !important;
    left: 50% !important;
    right: auto !important;
    top: 10px !important;
    bottom: auto !important;
    padding: 12px 8px !important;
    font-size: 0.98rem !important;
    border-radius: 12px !important;
  }
}

/* --- Fix support/terms nav links on mobile --- */
@media (max-width: 600px) {
  header nav .support-link {
    font-size: 1rem !important;
    padding: 0.4em 0.7em !important;
    margin: 0 0.4em !important;
    border-radius: 0.7em !important;
    font-weight: 600 !important;
    display: inline-block;
  }
  header h1 {
    font-size: 1.3rem !important;
  }
}
@media (min-width: 1200px) {
  .hero-content.wide {
    max-width: 1800px;
    gap: 7vw;
    padding-left: 6vw;
    padding-right: 6vw;
  }
  .hero-left, .hero-right {
    flex: 1 1 600px;
    min-width: 420px;
    max-width: 700px;
    font-size: 1.18rem;
  }
  .hero-title {
    font-size: 3.8rem;
  }
  .hero-tagline {
    font-size: 1.7rem;
  }
  .hero-icon.huge {
    width: 110px;
    height: 110px;
  }
  .app-mockup img.mockup-main {
    width: 370px;
    max-width: 100%;
  }
  .hero-center-visual svg {
    width: 240px !important;
    height: 420px !important;
  }
}

/* --- Apple-inspired hero redesign --- */
.fancy-mockup-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}
.mockup-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at 60% 40%, #bca7f7 0%, #e2c0f9 60%, transparent 100%);
  filter: blur(60px) brightness(1.2);
  opacity: 0.7;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}
.glass-card {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.20);
  border-radius: 2.2rem;
  box-shadow: 0 8px 40px 0 rgba(124,95,214,0.18), 0 1.5px 16px 0 rgba(90,63,160,0.10);
  backdrop-filter: blur(12px) saturate(1.2);
  padding: 2.5rem 2.5rem 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 340px;
  min-height: 480px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.glass-card:hover {
  box-shadow: 0 16px 64px 0 rgba(124,95,214,0.22), 0 2px 24px 0 rgba(90,63,160,0.13);
  transform: scale(1.03) translateY(-6px);
}
.mockup-main {
  width: 320px;
  max-width: 100%;
  border-radius: 2rem;
  box-shadow: 0 4px 32px rgba(90,63,160,0.13);
  background: #fff;
  transition: box-shadow 0.3s, transform 0.3s;
}
@media (min-width: 1400px) {
  .mockup-glow {
    width: 540px;
    height: 540px;
  }
  .glass-card {
    min-width: 420px;
    min-height: 600px;
    padding: 3.5rem 3.5rem 2.5rem 3.5rem;
  }
  .mockup-main {
    width: 420px;
  }
}
/* Subtle fade-in animation for hero */
.hero-content.wide &gt; * {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1.2s cubic-bezier(.68,-0.55,.27,1.55) forwards;
}
.hero-content.wide &gt; .hero-left { animation-delay: 0.1s; }
.hero-content.wide &gt; .hero-right { animation-delay: 0.3s; }
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  80% { opacity: 1; transform: translateY(-6px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Hero Section Text Animations */
@keyframes fadeInSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title,
.hero-tagline,
.hero-left .cta-btn.big, /* Targeting the main CTA in hero-left */
.store-badges {
  opacity: 0; /* Start hidden */
  animation-name: fadeInSlideUp;
  animation-duration: 0.8s; /* Adjust duration as needed */
  animation-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1); /* Smooth easing */
  animation-fill-mode: forwards; /* Stay in the final state */
}

.hero-title {
  animation-delay: 0.2s; /* Start after a brief pause */
}

.hero-tagline {
  animation-delay: 0.4s; /* Stagger after the title */
}

.hero-left .cta-btn.big {
  animation-delay: 0.6s; /* Stagger after the tagline */
}

.store-badges {
  animation-delay: 0.8s; /* Stagger after the CTA */
}

/* Ensure other elements in hero-left also have a subtle entrance if desired,
   or adjust if they should appear instantly. For now, only animating the key text and CTAs. */

/* --- Sticky navigation bar styles */
.main-nav {
  position: sticky;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(124,95,214,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-sm) var(--spacing-xl); /* Adjusted padding */
}
.main-nav .nav-logo img { height: 32px; }
.main-nav .nav-links {
  display: flex;
  gap: var(--spacing-xl);
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.main-nav .nav-links li a {
  color: #7c5fd6;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-medium);
  font-size: var(--font-size-md);
}
.main-nav .nav-links li a:hover,
.main-nav .nav-links li a:focus { /* Added focus state for accessibility */
  color: var(--primary-color);
  outline: none; /* Or a custom focus style */
}
.main-nav .nav-cta {
  background: linear-gradient(90deg, #ff5a5f, #7c5fd6);
  color: #fff;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--border-radius-pill);
  font-weight: 700;
  margin-left: 2rem;
  text-decoration: none;
  transition: background var(--transition-medium);
}
.main-nav .nav-cta:hover { background: #7c5fd6; }
.main-nav .nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #7c5fd6;
  margin-left: 1rem;
  cursor: pointer;
}
@media (max-width: 900px) {
  .main-nav { flex-wrap: wrap; padding: var(--spacing-sm) var(--spacing-md); }
  .main-nav .nav-links {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    width: 100%;
    box-shadow: 0 2px 12px rgba(124,95,214,0.07);
    padding: var(--spacing-md) 0;
  }
  .main-nav .nav-links.open { display: flex; }
  .main-nav .nav-toggle { display: block; }
}

/* Sticky CTA button */
.sticky-cta {
  position: fixed !important;
  bottom: 32px;
  right: 32px;
  z-index: 200;
  background: linear-gradient(90deg, #ff5a5f, #7c5fd6);
  color: #fff !important;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 2rem;
  box-shadow: 0 4px 24px rgba(124,95,214,0.13);
  padding: 1rem 2.2rem;
  display: none;
  transition: background 0.2s;
}
.sticky-cta:hover { background: #7c5fd6; }
@media (max-width: 600px) {
  .sticky-cta { right: 12px; bottom: 12px; font-size: 1rem; padding: 0.7rem 1.5rem; }
}

/* Testimonial styles */
.testimonial {
  margin: 2rem auto 1rem auto;
  max-width: 480px;
  background: #f7f5ff;
  border-left: 4px solid #7c5fd6;
  border-radius: 12px;
  padding: 1.2rem 2rem;
  font-style: italic;
  color: #2d225a;
  box-shadow: 0 2px 12px rgba(124,95,214,0.07);
}
.testimonial span { display: block; margin-top: 0.5rem; font-style: normal; font-weight: 700; color: #7c5fd6; }

/* Newsletter signup */
.newsletter-signup {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.newsletter-signup input[type="email"] {
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  border: 1px solid #ccc;
  font-size: 1rem;
}
.newsletter-signup button {
  background: linear-gradient(90deg, #ff5a5f, #7c5fd6);
  color: #fff;
  border: none;
  border-radius: 2rem;
  padding: 0.5rem 1.2rem;
  font-weight: 700;
  cursor: pointer;
}
.newsletter-signup button:hover { background: #7c5fd6; }

/* FAQ section */
#faq-section {
  margin: 3rem auto 2rem auto;
  max-width: 700px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(124,95,214,0.07);
  padding: 2rem 2.5rem;
}
#faq-section h2 { color: #7c5fd6; margin-bottom: 1.5rem; }
#faq-section details { margin-bottom: 1rem; }
#faq-section summary { font-weight: 700; color: #2d225a; cursor: pointer; }
#faq-section details[open] summary { color: #ff5a5f; }

/* Dynamically Injected FAQ Section (by main.js) */
#faq-section {
  background-color: var(--background-light); /* Or transparent, or another color */
  padding: var(--spacing-xl) var(--spacing-md);
  margin: var(--spacing-xxl) auto;
  max-width: 800px; /* Adjust as needed */
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  text-align: left; /* Overall section alignment */
}

#faq-section h2 {
  font-family: var(--font-family-headings);
  font-size: var(--font-size-section-title);
  color: var(--primary-color);
  text-align: center; /* Center the main FAQ title */
  margin-bottom: var(--spacing-xl);
}

#faq-section details {
  background-color: var(--text-light); /* White background for each item */
  border-radius: var(--border-radius-md);
  margin-bottom: var(--spacing-md);
  border: 1px solid var(--neutral-light);
  box-shadow: var(--shadow-sm);
}

#faq-section summary {
  font-weight: var(--font-weight-semibold);
  color: var(--text-dark);
  padding: var(--spacing-md);
  cursor: pointer;
  outline: none;
  list-style-position: inside; /* Better alignment for the marker */
  text-align: center; /* Center the question text */
  transition: background-color var(--transition-fast);
}

#faq-section summary:hover {
  background-color: var(--neutral-light);
}

#faq-section details[open] summary {
  background-color: var(--neutral-light);
  border-bottom: 1px solid var(--neutral-medium);
}

#faq-section details div { /* This is the content of the &lt;details&gt; tag */
  padding: var(--spacing-md);
  color: var(--text-muted);
  text-align: left; /* Keep answer text left-aligned for readability */
  border-top: 1px solid var(--neutral-light); /* Separator if summary doesn\'t have bottom border */
}

/* Navbar styles previously inline */
/* REPLACING the following block of navbar styles for an improved look and feel. */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md) var(--spacing-xl); /* Adjusted padding */
  background-color: rgba(248, 250, 252, 0.85); /* var(--background-light) with transparency */
  backdrop-filter: blur(10px); /* Subtle glassmorphism */
  border-bottom: 1px solid var(--neutral-light); /* Cleaner separation than shadow */
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  box-sizing: border-box; /* Ensures padding doesn't add to width */
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.nav-logo img {
  height: 36px; /* Refined logo size */
  width: 36px;  /* Assuming square icon, adjust if not */
  object-fit: cover;
  border-radius: var(--border-radius-sm); /* Consistent rounding */
}

.nav-logo span {
  font-size: var(--font-size-lg); /* Adjusted for balance with new logo size */
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  line-height: 1; /* Aids in vertical alignment with the icon */
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: var(--spacing-xl); /* More generous spacing between links */
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: var(--font-weight-semibold); /* Slightly bolder for clarity */
  font-size: var(--font-size-sm); /* Refined font size */
  padding: var(--spacing-xs) 0; /* Minimal vertical padding, adjust if needed */
  position: relative;
  transition: color var(--transition-fast);
}

.nav-links li a::after { /* Subtle underline hover/focus effect */
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px; /* Adjust position as needed */
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-color);
  transition: width var(--transition-medium);
}

.nav-links li a:hover,
.nav-links li a:focus {
  color: var(--primary-color);
}

.nav-links li a:hover::after,
.nav-links li a:focus::after {
  width: 100%; /* Animate underline width on hover/focus */
}

#darkModeToggle, .mobile-nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: var(--font-size-lg); /* Current size is good */
  color: var(--text-muted); /* Muted for less emphasis than links */
  padding: var(--spacing-sm); /* Adequate touch target */
  border-radius: var(--border-radius-md);
  transition: color var(--transition-fast), background-color var(--transition-fast);
}

#darkModeToggle:hover, 
#darkModeToggle:focus,
.mobile-nav-toggle:hover,
.mobile-nav-toggle:focus {
  color: var(--primary-color);
  background-color: rgba(0,0,0,0.05); /* Subtle background on hover/focus */
}

/* Mobile Navigation Specifics */
.mobile-nav-toggle {
  display: none; /* Hidden on desktop; JS and media query handle mobile display */
}

@media (max-width: 900px) {
  .navbar {
    padding: var(--spacing-sm) var(--spacing-md); /* Slightly reduced padding for mobile */
  }

  .nav-links {
    /* These styles apply when JS sets display:flex for mobile dropdown */
    flex-direction: column;
    align-items: center; /* Center links in the dropdown */
    position: absolute;
    top: 100%; /* Position directly below the navbar */
    left: 0;
    right: 0;
    background-color: rgba(248, 250, 252, 0.98); /* More opaque for dropdown readability */
    backdrop-filter: blur(10px);
    padding: var(--spacing-md) 0; /* Vertical padding for the dropdown */
    box-shadow: var(--shadow-md); /* Shadow to lift it off the page content */
    border-top: 1px solid var(--neutral-light);
    gap: var(--spacing-md); /* Spacing between links in column */
    /* display: none; is handled by JS initially and on toggle */
  }

  .mobile-nav-toggle {
    display: block; /* Show the toggle button on mobile */
  }
}
/* End of improved navbar styles. */

/* Accessibility Helper */
.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap; /* Prevent line breaks from affecting layout */
}

/* Footer Styles */

/* Waitlist Form Styling */
.waitlist-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.waitlist-form input[type="email"] {
  padding: 1rem 1.5rem;
  border-radius: 50px;
  border: 2px solid var(--neutral-medium);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  width: 93%;
}

.waitlist-form input[type="email"]:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(124, 95, 214, 0.2);
}

.form-message {
  text-align: center;
  font-weight: var(--font-weight-medium);
  min-height: 1.5rem;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}

/* Success/Error message animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-message:not(:empty) {
  animation: fadeIn 0.5s ease forwards;
}

/* Cover art section styles */
.cover-art {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 80vh;
  background:
    linear-gradient(rgba(248, 250, 252, 0.9), rgba(210, 179, 255, 0.9)),
    url('assets/map_bg.svg');
  background-size: cover;
  background-position: center;
  padding: 2rem;
}

.cover-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  backdrop-filter: blur(4px);
  padding: 2rem 1.5rem;
  border-radius: var(--border-radius-xl);
}

.cover-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: var(--font-weight-extrabold);
  margin: 0;
  background: linear-gradient(90deg, #7c5fd6, #ff5a5f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cover-tagline {
  margin-top: 1rem;
  font-size: 1.5rem;
  color: #333;
  font-weight: var(--font-weight-medium);
}

.cover-icons {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 32px;
  height: 32px;
  fill: #7c5fd6;
}
</pre></body></html>