/* ================ BASE STYLES ================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --primary-color: #ffffff;
  --primary-dark: #999999;
  --secondary-color: #6c63ff;
  --dark-bg: #000000;
  --darker-bg: #050505;
  --dark-card: #0D0D0D;
  --text-primary: #ffffff;
  --text-secondary: #a1a1a1;
  --text-muted: #80808080;
  --border-color: #232323;
  --success-color: #28a745;
  --error-color: #dc3545;
  --section-intro-color: #a1a1a1;
  --font-main: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --headline-font: "DM Serif Display", serif;
  --font-bold: 'Poppins', sans-serif;
  --font-Jakarta: 'Plus Jakarta Sans', sans-serif;
  --font-Work: 'Work Sans', sans-serif;
  --max-width: 1200px;
  --max-nav-width: 1700px;
  --border-radius: 8px;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  --transition: all 0.3s ease;
  --scale: 1;
}

/* ================ RESET & TYPOGRAPHY ================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.3;
  overflow-x: hidden;
  overflow: hidden;
  font-size: calc(16 * var(--scale));
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  /*-webkit-background-clip: text;
  background-clip: text;*/
  color: white;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-primary);
}

h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-color);
}

img {
  max-width: 100%;
  height: auto;
}

/* ================ UTILITY CLASSES ================ */

.large {
  display: inherit;
}

.small {
  display: none !important;
}

.container {
  
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  
  /*transform: scale(var(--scale));
  /*padding: 0 1.5rem;*/
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-color);
  color: var(--dark-bg);
  padding: 0.5rem 1rem;
  z-index: 100;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

/* ================ HEADER & NAVIGATION ================ */

#main-nav {
    max-width: var(--max-width);
    align-content: center;
    padding: 0 3.125rem;
    height: 4rem;
    /*border: 1px solid var(--border-color);*/
}

.header {
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  opacity: 0;
  transform: translateY(-100%);
  /*transition: var(--transition);*/
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
    display: flex;
}

.logo {
  height: 1.688rem;
  width: auto;
  transition: var(--transition);
}

.logo:hover {
  opacity: 0.8;
}

#flame-btn-wrapper {
    width: 9.5rem;
    display: flex;
    flex-direction: column;
    align-items: end;
}

#flame-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

#flame-btn > img {
    height: 1.8rem;
}

#flames-count {
    margin-top: 0.3rem;
    font-size: 0.7rem;
    font-weight: 600;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-item {
  margin-left: 2rem;
  align-content: center;
}

.nav-link {
  font-weight: 500;
  font-size: 1rem;
  color: var(--primary-color);
  position: relative;
  padding: 0.5rem 0;
}

.get-app-btn {
    padding: 0 1.25rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: 28px;
    margin-right: 2rem;
    cursor: pointer;
    color: white;
}

.get-app-btn > img {
    height: 1.2rem;
    width: 1.2rem;
    margin-right: 10px;
}

.active {
  color: var(--primary-color);
}

/* ================ HERO SECTION ================ */

.hero-section {
  /*height: 100vh;*/
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: end;
  position: relative;
  overflow: visible;
}

.hero-container {
  min-height: 720px;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: end;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  flex: 1;
  padding-top: 5rem;
  width: 100vw;
}

.hero-title {
  font-size: 4.5rem;
  margin-bottom: 1.8rem;
  color: var(--primary-color);
  text-align: center;
  font-weight: 600;
  line-height: 1.1;
  font-family: var(--headline-font);
  color: white;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 1.875rem;
}

.hero-logo {
  height: 1.8rem;
  margin-bottom: 2rem;
  opacity: 0;
}

.hero-cta {
  display: flex;
  gap: .5rem;
  margin-bottom: calc(4px * var(--scale));
}

.cta-button {
  height: 80px;
  width: 250px;
  display: flex;
  flex-direction: row;
  padding: 15px 27px;
  border-radius: 26px;
  transition: var(--transition);
  align-items: center;
  justify-content: start;
  box-shadow:
    0 0px 6px #ffffff33,  /* 0.2 opacity */
    0 0px 20px #ffffff2e,  /* 0.18 opacity */
    0 0px 40px #ffffff26, /* 0.15 opacity */
    0 0px 80px #ffffff1a, /* 0.1 opacity */
    0 0px 120px #ffffff0d; /* 0.05 opacity */
}

.cta-button > img {
  height: 38px;
  width: 38px;
}

.cta-button.primary {
  background-color: var(--primary-color);
  color: var(--dark-bg);
}

.cta-button.primary:hover {
  background-color: var(--primary-color);
  /*transform: translateY(-2px);*/
  box-shadow:
    0 0px 8px #ffffff40, /* 0.25 opacity */
    0 0px 24px #ffffff33, /* 0.2 opacity */
    0 0px 48px #ffffff26; /* 0.15 opacity */
}

.cta-button.secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  margin-left: 1rem;
}

.cta-button.secondary:hover {
  background-color: rgba(0, 255, 157, 0.1);
  transform: translateY(-2px);
}


.hero-animation {
  position: absolute;
  bottom: 0;
  z-index: -1;
  width: 100vw;
  max-width: 1500px;
  display: flex;
}

.hero-animation > img {
  width: 100%;
  object-fit: contain;
}

.animation-container {
  width: 100%;
  height: 100%;
  background: rgba(18, 18, 18, 0.5);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--box-shadow);
}

.landing-animation {
  height: 430px;
  width: 100vw;
  background-color: #00cc7a00;
  justify-items: center;
  position: relative;
}

/* =========== Landing Animation ===========*/
.carousel-wrapper {
  position: relative;
  z-index: 9;
  width: 100vw;
  max-width: 1110px;
  overflow: hidden;
  height: 100px;
  top: 120px;
  align-content: center;
  margin: 0 auto;
  padding-left: 35px;
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, .05) 20%,
    rgba(0, 0, 0, .4) 45%,
    rgba(0, 0, 0, 1) 50%,
    rgba(0, 0, 0, .4) 55%,
    rgba(0, 0, 0, .05) 80%,
    rgba(0, 0, 0, 0)
  );
}

.scroll-track {
  display: flex;
  will-change: transform;
  transition: transform 0.4s ease-in-out;
  will-change: transform;
}

#days-container {
  position: absolute;
  top: 248px;
  justify-items: center;
  width: 100vw;
  height: 74px;
  background-color: #cc000000;
}

#days-track-wrapper {
  position: unset;
  width: 100%;
  height: 76px;
  max-width: 1350px;
  background-color: #becc0000;
  padding: 0;
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, .05) 20%,
    rgba(0, 0, 0, 1) 35%,
    rgba(0, 0, 0, 1) 50%,
    rgba(0, 0, 0, 1) 65%,
    rgba(0, 0, 0, .05) 80%,
    rgba(0, 0, 0, 0)
  );
}

.day-wrapper {
  height: 75px;
  width: 44px;
  background-color: #00000077;
  margin: 0 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border-radius: 22px;
  padding: 6px;
  padding-top: 14px;
  font-size: 12px;
  font-weight: 700;
}
.day-wrapper.selected {
  background-color: #00000000;
  border: 1px solid white;
}

.day-number-wrapper {
  border-radius: 50%;
  height: 32px;
  width: 32px;
  background-color: #ffffff00;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
}

.day-number-wrapper.selected {
  background-color: white;
  color: #000000;
}

.periods-container {
  position: absolute;
  top: 335px;
  width: 100vw;
  display: flex;
  justify-content: center;
}

#periods-overlay {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  max-width: 1200px;
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, .05) 20%,
    rgba(0, 0, 0, 1) 35%,
    rgba(0, 0, 0, 1) 50%,
    rgba(0, 0, 0, 1) 65%,
    rgba(0, 0, 0, .05) 80%,
    rgba(0, 0, 0, 0)
  );
}

#periods-wrapper {
  width: 375px;
  overflow: visible;
}

.periods-track-slider {
  display: flex;
  flex-direction: row;
  margin: 0 auto;
  width: max-content;
  padding-left: 15px;
  /*will-change: transform;*/
}

.period-wrapper {
  height: 34px;
  display: flex;
  align-items: center;
  margin-left: 10px;
  position: relative;
}

.period-wrapper img {
  height: 100%;
}

.period-wrapper.selected {
  border: 1px solid white;
  background-color: #00000000;
}

.mockup {
  position: absolute;
  top: 0;
  width: 100vw;
  z-index: 999999;
}

.icon {
  width: 54px;
  height: 54px;
  margin: 0 8px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  background-color: #cc000000;
  filter: brightness(1) grayscale(50%);
}

.icon.highlighted > svg {
  /*filter: brightness(1) grayscale(0%);*/
  transform: scale(1);
}
.icon.highlighted {
  fill: white;
  background-color: #cc000000;
  /*filter: brightness(1) grayscale(0%);*/
  transform: scale(1);
}

#phone {
  height: 700px;
  width: 403px;
  background-color: #00000000;
  position: relative;
  bottom: 100px;
  margin: 0 auto;
  border-radius: 30px;
}

#phone > img {
  width: 100%;
  object-fit: contain;
}

#hider {
  position: absolute;
  width: 14px;
  height: 110px;
  background-color: #000000;
  top: 97px;
  left: 4px;
  z-index: 9;
}

.gradian {
  position: absolute;
  bottom: -132px;
  height: 353px;
  width: 410px;
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 45%,
    rgba(0, 0, 0, .8) 70%,
    rgba(0, 0, 0, .6) 80%,
    rgba(0, 0, 0, 0) 100%
  );
}

/*============= Splash =============*/

.hero-overlay {
  /****display: none !important; ***********************************/
  position: absolute;
  bottom: 0;
  z-index: 999;
  height: calc(100vh * 2);
  width: 100vw;
  background: #000;
  transform: translateY(50%);
  background: radial-gradient(circle, #00000000 0%, #000000 0%);
}

.digit {
    width: .8em;
    max-width: 10rem;
    text-align: center;
    color: white;
}

.odometer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: black;
    font-size: 2rem;
    font-weight: 900;
    color: white;
    font-family: var(--font-main);
    width: 100%;
}

.splash-logo {
    position: absolute;
    opacity: 0;
    transform: scale(0.5);
    transition: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);;
}

.splash-logo img {
    max-width: 200px;
    max-height: 30px;
}

.odometer-wrapper {
    position: relative;
}

/* ================ Branding ================ */
.branding-section {
  position: relative;
  z-index: 10;
  margin-top: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  
}

.branding-quote {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title {
  font-family: var(--font-bold);
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 1rem;
}

.section-intro {
  font-family: var(--font-bold);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.5;
  color: var(--section-intro-color);
  max-width: 700px;
  text-align: center;
}

.branding-brand {
  
  /*height: 100vh;*/
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4rem auto;
}

.branding-brand > img {
  height: 10%;
  width: 30%;
}

/* ================ Community section ================ */

.community-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  /*margin-top: 6.2rem;*/
}

.community-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.community-section .section-intro {
  font-family: var(--font-main);
  color: var(--section-intro-color);
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 12rem;
}

.community-concept-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 50px;
}


.community-concept-wrapper {
  width: 100%;
} 

.community-concept-card h3,
.social-interactions-card h3 {
  font-family: var(--font-bold);
  color: white;
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 600;
}

.community-section p {
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 500;
  max-width: 380px;
}

.community-concept-icon {
  height: 38.625rem;
  display: flex;
  align-items: center;
  justify-content: end;
  flex: 1;
}

.community-concept-card > .community-concept-icon:first-child {
  justify-content: start;
}

.community-concept-icon .img-wrapper {
  width: 36.875rem;
  border-radius: 16px;
  overflow: hidden;
}

.artcile-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
}


.community-concept-article {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  text-align: start;
}

.section-background {
  position: absolute;
  width: 100%;
  right: 0;
  top: 0;
  z-index: -1;
}

.social-interactions-wrapper {
  margin-top: 12.5rem;
  display: flex;
  align-items: start;
  position: relative;
  width: 100%;
  padding: 10rem 1rem 0rem 1rem;
  border-radius: 1rem;
  overflow: visible;
}

.social-interactions-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.social-interactions-card .community-concept-article {
  /*position: absolute;*/
  transform: translateY(-100px);
}

.social-interactions-icon {
  width: 25.688rem;
}

.social-interactions-wrapper .community-concept-article {
  align-items: center;
  max-width: 353px;
  text-align: center;
}

/* ================ Community ================ */

.booking-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.booking-content .section-intro {
  padding-bottom: 4rem;
}

.interactive-map {
    position: relative;
    /*height: calc(100vh + 333px);*/
    height: 100vh;
    width: 100vh;
    max-height: 1200px;
    max-width: 1200px;
    min-height: 1000px;
    min-width: 1000px;
    overflow: visible;
    
    background-image: url('/assets/images/screens/map_data.webp');
    background-size: cover; /* Ensures image covers the footer */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents image from repeating */
}

.map-wrapper {
    height: 100%;
    width: 100%;
}

.map-frame {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#map-frame {
    height: 87%;
    max-width: 411px;
    object-fit: contain;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    height: 100%;
    width: 100%;
    background: radial-gradient(circle, #00000000 34%, #000000 70%);
}

.stat-item img {
    position: absolute;
    max-width: 1704px;
    width: 1704px;
}

.markers {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    z-index: 3;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.markers img {
    height: 100%;
    max-height: 758px;
}

.pinned-map-frame {
    top: 0;
    position: absolute;
    height: 100%;
    width: 100%;
}

.interactive-map-wrapper {
    height: auto;
    width: auto;
    display: inline-block;
    background-color: black;
    height: 100vh;
    min-height: 1000px;
    max-height: 1350px;
    overflow: hidden;
    
    background-image: url('/assets/images/screens/map_data.webp');
    background-size: cover; /* Ensures image covers the footer */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents image from repeating */
}

.booking-article {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 3rem;
}

.booking-article p {
  max-width: 1200px !important;
  margin: 0 20px;
}

.tickets-presentation, .tickets-grid {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1200px;
}

.tickets-presentation {
  height: 1000px;
  overflow: hidden;
}

.tickets-grid-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.tickets-grid-wrapper img {
  height: 1111px;
  object-fit: cover;
}

.tickets-grid {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tickets-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black
}



        #ticket-body {
            fill: black;
            stroke: black;
        }

        #ticket-logo {
            fill: white;
        }

/* ============== Events Section ============== */

.event-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  margin-top: 0rem;
}

.event-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.event-screen {
  position: relative;
  width: 411px;
  margin-top: 270px;
}

.event-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.event-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 195px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, .95) 39%,
    rgba(0, 0, 0, 0) 100%
  );
}

.event-wrapper h1 {
  position: absolute;
  bottom: -30px;
}

.event-content p {
  margin: 30px 0;
  font-weight: 500;
}

/* ================ Personal profile section ================ */
.profile-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  margin-top: 8rem;
}

.section-Contact{
  font-family: var(--font-bold);
  font-size: 2.5rem;
  font-weight: 800;
}

.slider-overlay {
  position: absolute;
  top: 0;
  z-index: 100;
  width: 30%;
  height: 400px;
  background: linear-gradient(
    to left,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, .7) 50%,
    rgba(0, 0, 0, 1) 100%
  );
}

.slider-overlay-left {
  left: 0;
}
.slider-overlay-right {
  right: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, .7) 50%,
    rgba(0, 0, 0, 1) 100%
  );
}

.profile-bg-wrapper {
  position: absolute;
  width: 100%;
  top: 20px;
  left: -15px;
  z-index: -1;
  overflow: hidden;
  /*mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, .05) 20%,
    rgba(0, 0, 0, 1) 35%,
    rgba(0, 0, 0, 1) 50%,
    rgba(0, 0, 0, 1) 65%,
    rgba(0, 0, 0, .05) 80%,
    rgba(0, 0, 0, 0)
  );*/
}

.covers-slider {
  position: relative;
  display: flex;
  flex-direction: row;
  height: 320px;
  width: max-content;
}

.cover-wrapper {
  height: 100%;
  width: 410px;
}

.cover-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.profile-wrapper {
  width: 411px;
}
.profile-wrapper img {
  width: 100%;
}

.profile-description {
  position: relative;
  top: -11rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.profile-description p {
  max-width: 800px;
  font-family: var(--font-bold);
  margin: 0 20px;
  font-weight: 400;
}

#cover-1 {
  transform: translateX(-3690px);
}

.become-partner-btn {
  position: relative;
  top: -9.5rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 28px;
  cursor: pointer;
  color: black;
  background-color: white;
  height: 62px;
  padding: 0 1.25rem;
  box-shadow:
    0 0px 6px #ffffff33,  /* 0.2 opacity */
    0 0 20px #ffffff2e,  /* 0.18 opacity */
    0 0 40px #ffffff26, /* 0.15 opacity */
    0 0px 80px #ffffff1a, /* 0.1 opacity */
    0 0px 120px #ffffff0d; /* 0.05 opacity */
}

.become-partner-btn > a {
  color: black;
  font-weight: 600;
  font-size: 1.325rem;
}

/* ============= Philosophy section ============= */

.absolute {
  position: absolute;
}

.philosophy-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  margin: 2rem 0 0 0;
}

.philosophy-content {
  position: relative;
  padding: 100px 60px 0;
  padding-top: 0;
  border: 1px solid var(--border-color);
}

.philosophy-section h1 {
  text-align: center;
  display: none;
}

.philosophy-text {
  text-align: justify;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  font-size: 1.25rem;
  font-weight: 500;
}

.philosophy-text b {
  font-weight: 500;
  color: var(--primary-color);
}

.horizontal-line {
  left: 0px;
  width: 100%;
  max-width: 1200px;
}

.vertical-line {
  top: 0px;
  height: 100%;
  max-height: 1200px;
  width: 1px;
}

.top {
  top: -1px;
}

.bottom {
  bottom: -1px;
}

.left {
  left: -1px;
}

.right {
  right: -2px;
}

.joint {
  position: absolute;
  z-index: 100;
}

.top-left-joint {
  top: 0px;
  left: 0px;
  transform: translate(-52%, -54%);
}
.top-right-joint {
  top: 0px;
  right: 0px;
  transform: translate(55%, -55%);
}
.bottom-left-joint {
  bottom: 0px;
  left: 0px;
  transform: translate(-52%, 54%);
}
.bottom-right-joint {
  bottom: 0px;
  right: 0px;
  transform: translate(55%, 52%);
}

.dashed {
  z-index: -1;
}

.dashed-0 {
  transform: translateX(-100%);
}
.dashed-1 {
  transform: translateY(-100%);
}
.dashed-2 {
  transform: translateX(100%);
}
.dashed-3 {
  transform: translateY(100%);
}


/* ================ Quote section ================ */
.quote-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 1200px;
  min-height: 844px;
  margin-top: 150px;
  overflow: hidden;
}

.quote-grid-wrapper {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.quote-grid-wrapper img {
  width: 1260px;
  height: 884px;
  object-fit: cover;
}

.quote-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background: radial-gradient(circle, #00000066 0%, #000000 70%);*/
  background-color: black;
}

.quote {
  position: absolute;
  height: 165px;
  width: 410px;
  border-radius: 10px;
  
  background-image: url('/assets/images/screens/quote.webp');
  background-size: cover; /* Ensures image covers the footer */
  background-position: center; /* Centers the image */
  background-repeat: no-repeat; /* Prevents image from repeating */
  overflow: hidden;
  /*box-shadow:
    0 0px 40px rgba(255, 255, 255, 0.08), 
    0 0 60px #ffffff08, 
    0 0 80px #ffffff03; */
}

/* ================ FAQ Section ================ */

.faq-section {
  
  margin-top: 0px;
}
.faq-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
}
.faq-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
}

.faq-section h1 {
  text-align: center;
  margin-bottom: 2rem;
}

.faq-article {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  margin-top: 20px;
  min-height: 72px;
  border-radius: 10px;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='10' ry='10' stroke='%23333' stroke-width='3' stroke-dasharray='6%2c 6' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
  border-radius: 10px;
  text-align: start;
  padding: 24px 26px;
  width: 100%;
  max-width: 880px;
  overflow: hidden;
  transition: height 0.4s ease;
}

.faq-article h2 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  margin-right: 60px;
  max-width: 780px;
}

.faq-article p {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 1px;
  margin: 0;
  margin-top: 2rem !important;
  margin-bottom: 0 !important;
}

.expand_button {
  height: 36px;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--dark-card);
  position: absolute;
  right: 20px;
  top: 18px;
  z-index: 100;
  cursor: pointer;
}

.faq-article.open {
  max-height: 600px; /* or something larger if needed */
}

.faq-answer {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.3s ease;
  overflow: hidden;
  max-height: 0;
  display: block;
}

.faq-article.open .faq-answer {
  opacity: 1;
  transform: translateY(0);
}

.expand_button img {
  transition: transform 0.3s ease;
}

.faq-article.open .expand_button img {
  transform: rotate(45deg);
}

/* ================ GetTheApp ================ */
.get-the-app-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  margin: 0rem auto;
}

.get-the-app-content img {
  max-height: 100vh;
}

.get-the-app-content .img-wrapper {
  display: inline-block;
  position: relative;
}

.s-o-wrapper {
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.street-overlay {
  position: absolute;
  height: 75%;
  width: 100vw;
  bottom: 0;
  background: radial-gradient(at center top,rgba(0, 0, 0, 0) 0%,rgb(0, 0, 0) 00%);
  max-width: 1200px;
}

.get-the-app-content h1 {
  text-align: center;
  margin-top: 0px;
  margin-bottom: 2.2rem;
}

.cta-buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.icon-wrapper {
  height: 38px;
  width: 38px;
  margin-right: 14px;
}

.icon-wrapper img {
  height: 100%;
}

.btn-desc {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.btn-title {
  font-size: 1rem;
  font-weight: 500;
}

.btn-target {
  font-size: 1.5rem;
  font-weight: 600;
}

.get-method {
  position: relative;
  display: inline-block;
}

.qr-wrapper {
  position: absolute;
  height: 250px;
  width: 250px;
  background-color: white;
  border-radius: 24px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  z-index: 999;
  visibility: hidden;
  transform: translateY(5px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.get-method:hover .qr-wrapper {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ================ NewsLetter ================ */
.newsletter-section {
  width: 100%;
  position: relative;
  margin-top: 150px;
  margin-bottom: 150px;
}

.newsletter-card {
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-wrapper > img {
  max-width: 411px;
  height: 90vh;
  max-height: 790px;
}

.newsletter-card > img {
  height: 90vh;
  width: auto;
  max-height: 800px;
}

.news-letter-frame {
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin-top: 10px;
}

.phone-wrapper {
  max-width: 411px;
  display: inline-block;
  position: relative;
}


/* Container */
.interactive-container {
    max-width: 411px;
    width: 100%;
    margin: 0 auto;
    border-radius: 16px;
    padding: 5px 26px 0 26px;
    position: absolute;
    bottom: 0;
    margin-bottom: 50px;
}

/* Message wrapper */
.messages-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
    max-height: 75vh;
    overflow-y: auto;
    padding: 0 9px;
    padding-bottom: 16px;
    padding-top: 120px;
    overflow: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer and Edge */
}


.messages-wrapper ::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

/* Messages */
.message {
  position: relative;
    max-width: 85%;
    padding: 9px 19px 9px 13px;
    border-radius: 14px;
    line-height: 1.4;
    font-size: 15px;
    font-weight: 400;
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
}

.message.bot {
    background: #1D2024;
    background: -webkit-linear-gradient(138deg,rgba(29, 32, 36, 1) 0%, rgba(19, 22, 26, 1) 100%);
    background: -moz-linear-gradient(138deg,rgba(29, 32, 36, 1) 0%, rgba(19, 22, 26, 1) 100%);
    background: linear-gradient(138deg,rgba(29, 32, 36, 1) 0%, rgba(19, 22, 26, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(
      startColorstr="#1D2024",
      endColorstr="#13161A",
      GradientType=0
    );
    align-self: flex-start;
}

.message.user {
    background-color: white;
    color: black;
    align-self: flex-end;
}

.message .timestamp {
  position: absolute;
  bottom: 4px;
  right: 12px;
  font-size: 12px;
  color: #777777;
}

/* Input section */
.msg-input-wrapper {
    padding-top: .5rem;
}

.input-wrapper {
    display: flex;
    gap: 7px;
}

.phone-nav {
    position: absolute;
    top: 0;
    z-index: 9;
    margin-top: 4px;
    background: rgba(0, 0, 0, 0.8); /* Transparent background */
    backdrop-filter: blur(10px); /* Applies blur effect */
    padding: 10px;
    border-radius: 47px 47px 0 0;
    margin: 4px 8px 8px;
    
}

#status-hour {
  font-size: 14px;
  font-weight: 600;
  color: white;
  position: absolute;
  z-index: 10;
  top: 24px;
  left: 60px;
  font-family: 'inter', sans-serif;
}


#email-input {
    flex: 1;
    padding: 12px 16px;
    font-size: 13px;
    border-radius: 22px;
    border-width: 0;
    direction: none;
    height: 44px;
    color: white;
    background-color: var(--dark-card);
}

#email-input:focus {
  outline: none; /* Removes the default focus border */
  border: none; /* Ensures no border is applied */
}

#submit-btn {
    background-color: white;
    border: none;
    border-radius: 50%;
    height: 44px;
    width: 44px;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

#submit-btn:hover {
    background-color: #dbdbdb;
}

#submit-btn img {
  height: 14px;
  width: 14px;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* ================ FOOTER ================ */

.footer {
    height: 500px;
    width: 100%;
    background-image: url('/assets/images/footer_bg.png');
    background-size: cover; /* Ensures image covers the footer */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents image from repeating */
}

footer a {
    letter-spacing: 1px;
    font-size: 1rem;
    font-weight: 500;
}

footer a:hover {
    opacity: .8;
}

.footer-wrapper {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: fit-content;
    padding-top: 100px;
}

.brand-wrapper img {
    height: 42px;
}

.footer-social {
    margin-top: 30px;
}

.footer-wrapper nav {
    margin-top: 75px;
    margin-bottom: 20px;
}

.footer-nav {
    display: flex;
    align-items: center;
    width: 100%;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

.copyright {
    color: white;
    letter-spacing: 1px;
    margin-bottom: 20px !important;
}

.legal-links {
    display: flex;
    justify-content: space-between;
}
/*.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-color);
}

.footer .container {
  width: 100vw;
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-grid {
  /*display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1rem;*//*
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
  width: 100%;
  max-width: 1200px;
}

#get-app-btn-footer {
  height: 52px;
  background-color: white;
  color: black !important;
}

#get-app-btn-footer .nav-link {
  color: black;
}

.footer-heading {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-links-wrapper {
  display: flex;
  gap: 7.5rem;
}

.footer-nav ul {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 0.75rem;
}

.footer-nav a {
  color: var(--primary-color);
}

.footer-nav a:hover {
  color: var(--text-secondary);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/*.social-icon {
  width: 40px;
  height: 40px;
  background-color: var(--dark-card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}*//*

.footer-contact {
  opacity: 0;
}

.footer-bottom-wrapper {
  width: 100%;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  max-width: 1200px;
  width: 100%;
}

.copyright {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
}

.legal-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.legal-links a:hover {
  color: var(--primary-color);
}*/

/* ================ Cookies ================ */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #1e1e1e;
  color: #fff;
  padding: 1rem 2rem;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  z-index: 10000;
  font-size: 0.95rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.cookie-banner .cookie-text {
  flex: 1 1 60%;
  line-height: 1.5;
}

.cookie-banner .cookie-text a {
  color: #00c896;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.5rem;
  flex: 1 1 35%;
  justify-content: flex-end;
}

.cookie-banner button {
  padding: 0.6rem 1rem;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}

#acceptAllCookies {
  background-color: #00c896;
  color: #fff;
}

#rejectCookies {
  background-color: #444;
  color: #fff;
}


@media (min-width: 1400px) and (max-width: 1600px) {
  .landing-animation {
    height: 364px;
  }
}

@media (max-width: 1513px) {

  #main-nav {
    max-width: var(--max-width);
    align-content: center;
    padding: 0 2.5rem;
    height: 3rem;
    /*border: 1px solid var(--border-color);*/
  }

  .header {
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
  }

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo-link {
      display: flex;
  }

  .logo {
    height: 1.3rem;
  }

  #flame-btn-wrapper {
      width: 4.5rem;
  }

  #flame-btn > img {
      height: 1.2rem;
  }

  #flames-count {
      margin-top: 0.3rem;
      font-size: 0.6rem;
  }

  .nav-item {
    margin-left: 1.2rem;
  }

  .nav-link {
    font-size: .8rem;
  }

  .hero-container {
    min-height: 650px;
  }
  .landing-animation {
    height: 364px;
  }

  .hero-logo {
    height: 1.3rem;
    margin-bottom: 1rem;
  }

  .splash-logo img {
    max-width: 200px;
    height: 1.3rem;
  }

  .odometer {
    font-size: 1.5rem;
}

  .digit {
    width: .6em;
    max-width: 10rem;
  }

  .hero-title {
    font-size: 3rem;
    margin-bottom: 0rem;
  }

  .icon {
    width: 45px;
    height: 45px;
    margin: 0 5px;
  }

  .carousel-wrapper {
    top: 100px;
  }

  #days-container {
    top: 211px;
    height: 74px;
  }


  .day-wrapper {
    height: 64px;
    width: 40px;
    padding: 4px;
    padding-top: 10px;
    margin: 0 4px;
    font-size: 10px;
  }

  .day-number-wrapper {
    font-size: 12px;
    height: 30px;
    width: 30px;
  }

  #days-track-wrapper {
    padding-left: 24px;
    height: 64px;
  }

  .periods-container {
    top: 282px;
  }

  .period-wrapper {
    height: 30px;
  }

  #periods-wrapper {
    width: 315px;
  }

  #phone {
    width: 325px;
    bottom: 85px;
  }

  .gradian {
    bottom: 25px;
    width: 325px;
    height: 277px;
  }

  #hider {
    width: 10px;
  }

  /* ================ Branding ================ */

  .section-title {
    font-size: 2.3rem;
  }

  .section-intro {
    font-size: 1.2rem;
    max-width: 730px;

  }

    /* ================ Community ================ */

    .section-intro {
      font-size: 1.3rem;
    }


  .community-concept-article p, 
  .community-concept-article h3 {
    font-size: 1.2rem;
    max-width: 262px;
  }

  .community-concept-icon .img-wrapper {
    width: 26rem;
  }

  .social-interactions-wrapper {
    margin-top: 10rem;
  }

  .social-interactions-icon {
    width: 20rem;
  }

  .social-interactions-wrapper .community-concept-article {
    max-width: 353px;
  }

  .community-concept-wrapper {
    width: 85%
  }

  .social-interactions-wrapper {
    padding: 3.5rem 2.5rem;
    width: 85%;
  }

  /*========= newsletter ==========*/
  
  .cover-wrapper {
    height: 100%;
    width: 373px;
  }

  .profile-bg-wrapper {
    left: 41px;
  }

  .covers-slider {
    height: 315px;
  }

  .profile-wrapper {
    width: 375px;
  }

  /*========= newsletter ==========*/

  #status-hour {
    font-size: 10px;
    left: 54px;
    top: 22px
  }

  .message {
    padding: 7px 17px 7px 11px;
    border-radius: 14px;
    line-height: 1.4;
    font-size: 12px;
    letter-spacing: .5px;
  }

  .message .timestamp {
    font-size: 9px;
  }

  #email-input {
    min-width: 180px;
    height: 38px;
  }

  #submit-btn {
    height: 38px;
    width: 38px;
  }

}

@media (max-width: 720px) {


  .header {
      opacity: 1;
      transform: translateY(0);
      /*transition: var(--transition);*/
  }
  
  .large {
    display: none !important;
  }

  .small {
    display: inherit !important;
  }

  /* Mobile Navigation Styles */
  .navbar.small {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      align-items: center;
  }

  .top-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem;
      position: relative;
      z-index: 1001;
  }

  .top-header .log {
    height: 1.563rem;
  } 

  .menu-toggle {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 1px solid var(--border-color);
      background: transparent;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      transition: all 0.3s ease;
      padding: 0;
      position: relative;
      z-index: 1001;
  }

  .menu-toggle:hover {
      background: rgba(170, 170, 170, 0.1);
  }

  .hamburger {
      display: block;
      width: 16px;
      height: 2px;
      position: relative;
      transition: all 0.3s ease;
  }

  .hamburger::before {
      content: '';
      position: absolute;
      width: 16px;
      height: 2px;
      background-color: var(--text-primary);
      top: -3px;
      left: 0;
      transition: all 0.3s ease;
  }

  .hamburger::after {
      content: '';
      position: absolute;
      width: 16px;
      height: 2px;
      background-color: var(--text-primary);
      bottom: -5px;
      left: 0;
      transition: all 0.3s ease;
  }

  /* Active state (when menu is open) */
  .menu-toggle.active .hamburger {
      transform: rotate(45deg);
      top: 1px;
  }

  .menu-toggle.active .hamburger::before {
      transform: rotate(-90deg);
      top: 0;
  }
  .menu-toggle.active .hamburger::after {
      transform: rotate(0deg);
      bottom: 0;
  }

  .nav-content {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      max-width: 100vw;
      height: 100vh;
      background-color: #000;
      transition: right 0.4s ease-in-out;
      padding: 5rem 1.5rem;
      overflow-y: auto;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
  }

  .navbar.small .nav-content.active {
      right: 0;
  }

  .nav-menu {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      align-items: center;
      padding-top: 1rem;
      padding-right: 24px;
  }

  .nav-item {
      opacity: 0;
      transform: translateX(20px);
      transition: all 0.3s ease;
  }
  .nav-item a {
      font-size: 1.2rem;
      font-weight: 700;
      line-height: 1.3;
  }

  .nav-content.active .nav-item {
      opacity: 1;
      transform: translateX(0);
  }

  /* Staggered animation for nav items */
  .nav-content.active .nav-item:nth-child(1) { transition-delay: 0.1s; }
  .nav-content.active .nav-item:nth-child(2) { transition-delay: 0.2s; }
  .nav-content.active .nav-item:nth-child(3) { transition-delay: 0.3s; }
  .nav-content.active .nav-item:nth-child(4) { transition-delay: 0.4s; }

  .nav-link {
      color: var(--text-primary);
      font-weight: 500;
      padding: 0.5rem 0;
      display: block;
      position: relative;
      transition: color 0.3s ease;
  }

  .nav-link:hover {
      color: var(--primary-color);
  }

  .nav-link.active {
      color: var(--primary-color);
  }

  .get-app-btn {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(0, 255, 157, 0.1);
      padding: 0.5rem 1rem;
      border-radius: 50px;
      transition: all 0.3s ease;
  }

  .get-app-btn:hover {
      background: rgba(0, 255, 157, 0.2);
  }

  /* Overlay when menu is open */
  .nav-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 999;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
  }

  .nav-overlay.active {
      opacity: 1;
      visibility: visible;
  }

  .nav-footer {
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-bottom: 2rem;
  }
  
  .nav-footer a, .nav-footer p {
    font-size: 12px;
    font-weight: 600;
  }
  
  .footer-wrapper a img {
    width: 28px;
  }
  
  .nav-footer > .footer-wrapper {
      padding-top: 0px;
  }

  .brand-wrapper img {
      height: 1.5rem;
  }

  .footer-social {
      margin-top: 22px;
      margin-bottom: 25px;
  }

  .nav-footer > .footer-wrapper nav {
      display: none;
  }

  .copyright {
      color: white;
      font-size: 13px;
      letter-spacing: 1px;
      margin-bottom: 18px !important;
  }

  .footer a {
    font-size: 13px;
  }

  .legal-links {
      display: flex;
      justify-content: space-between;
  }

  .footer-bg-wrapper {
    position: absolute;
    bottom: 0;
    height: 250px;
    width: 100vw;
    z-index: -1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-bg {
    width: 100%;
    min-width: 1000px;
  }

  .footer-wrapper nav {
    margin-top: 25px;
  }

  .main-mobile-home {
    height: 100vh;
    width: 100vw;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 90px;
    text-align: center;
    background-image: url('/assets/images/landing_bg_mobile.webp');
    background-size: cover; /* Ensures image covers the footer */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents image from repeating */
    overflow-x: hidden;
  }

  .mobile-header-logo {
    height: 12px;
  }
  .mobile-header-logo img {
    height: 100%;
    width: auto;

  }

  .mobile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .mobile-header h1 {
    font-size: 28px;
    font-weight: 700;
  }
  
  .cta-button {
    height: 51px;
    width: 160px;
    padding: 10px 18px;
    border-radius: 16px;
    box-shadow:
      0 0px 60px rgba(255, 255, 255, 0.16),  /* 0.2 opacity */
      0 0px 20px rgba(255, 255, 255, 0.16),  /* 0.18 opacity */
      0 0px 80px rgba(255, 255, 255, 0.02);
  }

  .cta-button > .icon-wrapper {
    height: 27px;
    width: 27px;
    margin-right: 9px;
  }

  .btn-title {
    font-size: 10px;
    font-weight: 500;
  }

  .btn-target {
    font-size: 15px;
    font-weight: 600;
  }

  .bottom-mobile-content {
    position: absolute;
    bottom: 10%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
    z-index: 9;
  }

  .mobile-hero {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }

  .mobile-hero img{
    width: 120vw;
    max-width: 120vw;
  }

  .mobile-quote h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
  }

  .mobile-hint {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.2px;
    margin-top: 14px;
    color: #94959A;
  }

  .bg-helper {
    width: 100vw;
    height: 20vh;
    background: #000;
    position: absolute;
    bottom: 0;
    z-index: 0;
  }

  .mobile-cta-buttons {
    display: flex;
    flex-direction: row;
    gap: 13px;
  }
}