/* Global CSS Variables */
:root {
  --maeveport-text-dark: #000000;
  --maeveport-text-light: #424341;
  --maeveport-accent-color: #00d08b;
  --maeveport-bg-white: #ffffff;
  --maeveport-progress-bg: #e0e0e0;
  --maeveport-button-bg: #333333;
  --maeveport-button-text: #ffffff;
  --maeveport-button-hover: #444444;
}

/* Reset and Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family:
    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial,
    sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.7;
}

body {
  background-color: #0a0a0a;
  min-height: 300vh;
}

.page-landing-background-lottie {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  margin: calc(var(--tw-spacing) * 0) /* 0rem = 0px */;
}

/* Landing Page Component Layout */
.maeveport-landing-hero-text-section {
  min-height: calc(100vh - 72px);
  height: calc(100vh - 72px);
  box-sizing: border-box;
}

.maeveport-landing-hero-text-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: clamp(16vh, 24vh, 32vh);
}

.maeveport-scroll-text-section {
  height: 20rem;
  margin-top: 72px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding-left: 5%;
}

/* Ensure components themselves don't have forced height */
.maeveport-landing-hero-text,
.maeveport-scroll-text-container {
  width: 100%;
}

.maeveport-landing-stats-card-section-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* This rule for .maeveport-landing-stats-card-section is removed as height is handled in its own CSS file. 
.maeveport-landing-stats-card-section {
  height: 100vh;
  align-items: center;
}
*/

.maeveport-scroll-text-section.maeveport-section > div {
  margin-left: 0 !important;
  margin-right: auto !important;
  text-align: left;
  max-width: 100% !important;
}
