*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html{
  overflow-x: hidden;
}
body {
  background: #F5F6F7;
  font-family: "Manrope", sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow-x: hidden;
  /* scroll-snap-type: y mandatory; */
}
body::selection{
    background: #D71789;
    color: white;
}
body::-moz-selection{
    background: #D71789;
    color: white;
}

nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background-color: white;
    padding: 16px 4.2%;
}
nav .logo{
    /* width: 80px; */
    height: 36px;
}
.nav-menu{
    list-style-type: none;
    display: flex;
    gap: 40px;
    align-items: center;
    transform: translateX(-50%);
    margin-left: 47%;
    position: absolute;
}
.nav-menu a{
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 2px;
    color: #475569;
    text-decoration: none;
    transition: all 0.2s ease;
}
.nav-menu a:hover{
    color: #BE123C; 
}
.nav-menu a.active{
    border-bottom: 2px solid #BE123C;
    color: #BE123C;
}
.nav-right button{
    font-family: "Manrope", sans-serif;
    background-color: transparent;
    padding: 12px 24px;
    border-radius: 99px;
    color: #2C2F30;
    font-weight: 700;
    border: none;
    cursor: pointer;
}
.nav-right .nav-planning{
    background: linear-gradient(105.63deg, #D71789 0%, #FF7294 100%);
    color: #FFFFFF;
}

/* ── Explore Platform Modal */
.explore-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(10px);
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.explore-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.explore-modal {
  background: linear-gradient(145deg, #f1f1f1, #ffffff);
  border-radius: 24px;
  padding: 32px;
  width: 90%;
  max-width: 420px;

  transform: scale(0.92) translateY(20px);
  transition: 0.35s cubic-bezier(.34,1.4,.64,1);

  position: relative;
}

.explore-modal-overlay.active .explore-modal {
  transform: scale(1) translateY(0);
}

/* CLOSE */
.explore-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;

  width: 38px;
  height: 38px;

  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  transition: 0.2s ease;
}

.explore-modal-close i {
  font-size: 16px;
  color: rgba(0,0,0,0.6);
}

.explore-modal-close:hover {
  transform: rotate(90deg);
  background: rgba(0,0,0,0.12);
}

/* HEADER */
.explore-modal-header {
  text-align: center;
  margin-bottom: 28px;
}

.explore-modal-logo {
  width: 60px;
  margin-bottom: 12px;
}

.explore-modal-header h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  margin-bottom: 6px;
}

.explore-modal-header p {
  font-size: 13px;
  color: rgba(0,0,0,0.5);
}

/* OPTIONS */
.explore-modal-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.explore-option {
  display: flex;
  align-items: center;

  padding: 14px 16px;
  border-radius: 16px;

  text-decoration: none;
  transition: 0.25s ease;
}

/* iOS */
.ios-option {
  background: linear-gradient(135deg, #000, #1c1c1e);
  color: #fff;
}

/* Android */
.android-option {
  background: linear-gradient(135deg, #34c759, #28a745);
  color: #fff;
}

.explore-option:hover {
  transform: translateX(4px);
}

/* ICON */
.explore-option-icon {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-right: 12px;
}

.explore-option-icon i {
  font-size: 20px;
}

/* TEXT */
.explore-option-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.explore-option-name {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.explore-option-sub {
  font-size: 12px;
  opacity: 0.7;
}

/* ARROW */
.explore-option-arrow {
  font-size: 14px;
  opacity: 0.6;
  transition: 0.2s ease;
}

.explore-option:hover .explore-option-arrow {
  transform: translateX(3px);
  opacity: 1;
}

/* MOBILE */
@media (max-width: 480px) {
  .explore-modal {
    padding: 24px;
    border-radius: 20px;
  }
}


.hamburger {
    display: none;
    background: none;
    border: none;
    width: 24px;
    height: 20px;
    cursor: pointer;
    position: relative;
}

.hamburger span {
    display: block;
    width: 70%;
    height: 2px;
    background: #475569;
    border-radius: 1px;
    position: absolute;
    transition: all 0.3s;
}

.hamburger span:nth-child(1) { top: 10%; }
.hamburger span:nth-child(2) { top: 40%; }
.hamburger span:nth-child(3) { top: 70%; }

.hamburger.cross span:nth-child(1) {
    transform: rotate(45deg);
    top: 54%;
    transform-origin: center;
}

.hamburger.cross span:nth-child(2) {
    opacity: 0;
}

.hamburger.cross span:nth-child(3) {
    transform: rotate(-45deg);
    top: 55%;
    transform-origin: center;
}

/* Mobile dropdown */
.nav-menu.mobile-open {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    margin-left: 0;
    background: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transform: none; /* Override inline transform */
}

.nav-menu li {
    margin: 20px 0;
}

.nav-menu.mobile-open a {
    font-size: 24px;
    color: #475569;
    padding: 15px 30px;
    border-radius: 8px;
    transition: background 0.3s;
}

.nav-menu.mobile-open a:hover {
    background: linear-gradient(105.63deg, #D71789 0%, #FF7294 100%);
    color: white;
}

.nav-right-mobile {
    display: none;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    gap: 15px;
}

.nav-right-mobile button {
    background: transparent;
    border: 2px solid #D71789;
    color: #D71789;
    padding: 12px 24px;
    border-radius: 99px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
}

.nav-right-mobile button:hover {
    background: linear-gradient(105.63deg, #D71789 0%, #FF7294 100%);
    color: white;
    transform: scale(1.05);
}


.hero-section{
    display: flex;
    align-items: stretch;
    padding: 48px 5%;
    padding-top: 24px;
    padding-bottom: 100px;
    background-color: #F5F6F7;
}
.hero-section .hero-left{
    flex-basis: 55%;
    padding-top: 28px;
}
.hero-section .hero-right{
    flex-basis: 45%;
    margin-bottom: 20px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}
.hero-section .hero-left .label .dot{
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #B7004D;
    border-radius: 99px;
    margin-right: 6px;
}
.hero-section .hero-left .label{
    border: 1px solid rgba(171, 173, 174, 0.25);
    background-color: hsl(200, 10%, 93%);
    color: #595C5D;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 800;
    width: max-content;
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 12px;
}
h1{
    color: #2C2F30;
    font-size: 62px;
    font-weight: 900;
    letter-spacing: -3.6px;
    line-height: 0.96;
}
h1 .changing-text{
  color: #D71789;
  display: inline !important;
}
h1 svg{
    font-size: 53px;
    color: #D71789;
    transform: translateY(5%);
}
.hero-left .desc{
    color: #595C5D;
    font-size: 20px;
    padding: 24px 0px;
    padding-left: 3px;
    max-width: 85%;
    font-size: 18px;
}
.qzv-launcher{
  cursor: pointer;
}
.hero-ctas{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}
.hero-ctas > div{
    cursor: pointer;
}
.hero-ctas button{
    padding: 16px 32px;
    border-radius: 999px;
    background-color: rgba(218, 221, 223, 0.6);
    border: none;
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #2C2F30;
    cursor: pointer;
}
.hero-ctas .explore-btn{
    background: linear-gradient(105.38deg, #D71789 0%, #FF7294 100%);
    color: white;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    position: relative;
}
.atropos-shadow{
    background-color: rgba(0, 0, 0, 0.65) !important;
}
  
.hero-ctas .explore-btn svg{
    font-size: 17px;
}
.hero-ctas .demo-btn{
    display: flex;
    gap: 6px;
    align-items: center;
    background: linear-gradient(105.63deg, #D71789 0%, #FF7294 100%); 
    color: white;
}
.hero-ctas .demo-btn:hover{
    /* background-color: rgba(218, 221, 223, 1); */
    opacity: 0.9;
}
.hero-ctas .demo-btn svg{
    font-size: 13px;
}

.hero-right .cards-wrapper .card2 {
    position: relative;
    width: 288px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0px 25px 50px -12px rgba(44, 47, 48, 0.1);
    backdrop-filter: blur(6px);
    border-radius: 24px;
    padding: 14px;
    user-select: none;
}
.hero-right .cards-wrapper .card2 .sub{
  font-style: italic;
  font-size: 14px;
  color: #181818;
}
.hero-right .cards-wrapper .card2 .tag{
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: rgba(255, 255, 255, 0.9);
    font-size: 10px;
    font-weight: 700;
    color: #B7004D;
    padding: 4px 10px;
    border-radius: 99px;
    text-transform: uppercase;
    
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 9;
}
.hero-right .cards-wrapper .card2 img{
    width: 100%;
    border-radius: 16px;
}
.hero-right .cards-wrapper .card2 h2{
    font-size: 18px;
    font-weight: bold;
    padding-top: 8px;
    color: #2C2F30;
}
.hero-right .cards-wrapper .card2 .desc {
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: #595C5D;
    padding-top: 2px;
}
.hero-right .cards-wrapper .card2 .desc .dot{
  font-size: 20px;
  line-height: 12px;
  display: inline-block;
  transform: translateY(27%);
  margin-left: 2px;
  margin-right: 2px;
}

.hero-right .cards-wrapper .card2 .card-bottom{
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
}
.hero-right .cards-wrapper .card2 .card-bottom .circles{
    display: flex;
    align-items: center;
    gap: 0;
}
.hero-right .cards-wrapper .card2 .card-bottom .circle {
    display: inline-block;
    width: 24px;
    height: 24px;

    background: #E2E8F0;
    border: 2px solid #FFFFFF;
    border-radius: 9999px;
}
.hero-right .cards-wrapper .card2 .card-bottom .circle2{
    background-color: #CBD5E1;
    transform: translateX(-35%);
}
.hero-right .cards-wrapper .card2 .card-bottom .icon{
    font-size: 18px;
    background-color: transparent;
    border: none;
    color: #B7004D;
}
.hero-right .cards-wrapper .card1 {
    width: 256px;
}
.hero-right .cards-wrapper .card1 .card{
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0px 25px 50px -12px rgba(44, 47, 48, 0.1);
  backdrop-filter: blur(6px);
  border-radius: 24px;
  padding: 16px 20px;
  padding-bottom: 20px;
}
.hero-right .cards-wrapper .card1 .card-header svg{
    font-size: 36px;
}
.hero-right .cards-wrapper .card1 .card-header{
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
}
.hero-right .cards-wrapper .card1 .card-header h3{
    font-size: 14px;
    font-weight: bold;
    color: #2C2F30;
}
.hero-right .cards-wrapper .card1 .card-header .sub{
    font-size: 8px;
    font-weight: bold;
    color: #B7004D;
}

.hero-right .cards-wrapper .card1 .m1{
    padding: 12px;
    background-color: #EFF1F2;
    font-size: 10px;
    font-weight: 500;
    color: #2C2F30;
    border-radius: 16px;
    border-bottom-left-radius: 0px;
    margin-top: 8px;
    max-width: 90%;
}
.hero-right .cards-wrapper .card1 *{
    user-select: none;
}
.hero-right .cards-wrapper .card1 .m2{
    width: 80%;
    padding: 12px;
    background-color: #EFF1F2;
    font-size: 10px;
    font-weight: 600;
    color: #B7004D;
    border-radius: 16px;
    border-top-right-radius: 0px;
    background-color: rgba(183, 0, 76, 0.05);
    margin-top: 12px;
    margin-left: auto;
}
.hero-right .cards-wrapper .card1 .m2.last{
  margin-bottom: 20px;
  margin-top: 8px;
}
.hero-right .cards-wrapper .card1 .process{
    height: 4px;
    border-radius: 99px;
    background-color: #E0E3E4;
    position: relative;
}
.hero-right .cards-wrapper .card1 .process::after{
    display: block;
    content: "";
    height: 100%;
    width: 65%;
    background: linear-gradient(91.61deg, #B7004D 0%, #FF7294 100%);
    border-radius: 9999px;
}

.hero-right .cards-wrapper .card3 {
    padding: 24px;
    position: relative;

    background: #FFFFFF;
    border: 1px solid rgba(171, 173, 174, 0.05);
    box-shadow: 0px 40px 80px rgba(44, 47, 48, 0.12);
    border-radius: 40px;
    width: 300px;
}
.hero-right .cards-wrapper .card3 .header{
  position: relative;
}
.hero-right .cards-wrapper .card3 .header img{
  content: "";
  position: absolute;
  width: 32%;
  top: 100%;
  right: 0;
  z-index: 0;
}
.hero-right .cards-wrapper .card3 .atropos-inner{
  overflow: visible !important;
}
.hero-right .cards-wrapper .card3 .green-tick-stamp{
  position: absolute;
  top: 8%;
  right: -6%;
  object-fit: contain;
  width: 25%;
  opacity: 0.9;
  height: 25%;
  opacity: 0.8;
  z-index: 1;
}
.hero-right .cards-wrapper .card3 .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hero-right .cards-wrapper .card3 .sub{
  margin-bottom: 12px;
  font-size: 14px;
  margin-top: 2px;
  margin-left: 2px;
  color: #333;
}
.hero-right .cards-wrapper .card3 .header h3{
    font-size: 18px;
    font-weight: bold;
    color: #2C2F30;
}
.hero-right .cards-wrapper .card3 .points{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.hero-right .cards-wrapper .card3 .points .p1 .circle{
    height: 20px;
    width: 20px;
    border: 4px solid white;
    background: linear-gradient(135deg, #B7004D 0%, #FF7294 100%);
    border-radius: 99px;
    margin-top: 6px;
}
.hero-right .cards-wrapper .card3 .points .p1{
    display: flex;
    gap: 16px;
}
.hero-right .cards-wrapper .card3 .points .p1 .time{
    font-size: 12px;
    font-weight: 700;
    color: #595C5D;
}
.hero-right .cards-wrapper .card3 .points .p1 h3{
    font-size: 14px;
    font-weight: 700;
    color: #2C2F30;
    line-height: 1.42;
}
.hero-right .cards-wrapper .card3 .points .p2 .circle{
    height: 20px;
    width: 20px;
    border: 4px solid white;
    background: #8137B1;
    border-radius: 99px;
    margin-top: 6px;
}
.hero-right .cards-wrapper .card3 .points .p2{
    display: flex;
    gap: 16px;
}
.hero-right .cards-wrapper .card3 .points .p2 .time{
    font-size: 12px;
    font-weight: 700;
    color: #595C5D;
}
.hero-right .cards-wrapper .card3 .points .p2 h3{
    font-size: 14px;
    font-weight: 700;
    color: #2C2F30;
    line-height: 1.42;
}
.hero-right .cards-wrapper .card3 .points .p3 .circle{
    height: 20px;
    width: 20px;
    border: 4px solid white;
    background: #E0E3E4;
    border-radius: 99px;
    margin-top: 6px;
}
.hero-right .cards-wrapper .card3 .points .p3{
    display: flex;
    gap: 16px;
}
.hero-right .cards-wrapper .card3 .points .p3 .time{
    font-size: 12px;
    font-weight: 700;
    color: #595C5D;
}
.hero-right .cards-wrapper .card3 .points .p3 h3{
    font-size: 14px;
    font-weight: 700;
    color: #2C2F30;
    line-height: 1.42;
}

.hero-right .cards-wrapper{
    position: relative;
    display: flex;
    justify-content: flex-start;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    margin-top: -1%;
}
.hero-right .cards-wrapper .card3,
.hero-right .cards-wrapper .card2{
    position: absolute;
}
.hero-right .cards-wrapper .card1{
    margin-left: 112.62px;
    margin-top: -73.87px;
    /* transform: rotate(3deg); */
}
.hero-right .cards-wrapper .card1 .card{
  position: relative;
}
.hero-right .cards-wrapper .card1 .card .card-header::after{
  content: "LIVE";
  display: inline-block;
  color: white;
  background-color: #e44389;
  font-size: 11px;
  font-weight: 700;
  padding-top: 1px;
  padding-bottom: 1px;
  width: 40px;
  border-radius: 99px;
  text-align: center;
  position: absolute;
  top: 16%;
  right: 0%;
  z-index: 0;
}
.hero-right .cards-wrapper .card2{
    margin-left: -21%;
    margin-top: -17%;
    /* transform: rotate(-6deg); */
}
.hero-right .cards-wrapper .card3{
    left: 14%;
    top: 90%;
    /* transform: rotate(6deg); */
}

/* ── Section 3 ── */
.section-3 {
    width: 100%;
    padding: 80px 0 0;
    padding-top: 28px;
    padding-bottom: 36px;
    /* overflow: hidden; */
    /* background: #F5F6F7; */
  }

  /* ── Giant heading ── */
  .s3-heading {
    text-align: center;
    padding: 0 5%;
    font-size: clamp(3.5rem, 7.3vw, 8.5rem);
    font-weight: 800;
    line-height: 1.28;
    letter-spacing: -0.03em;
    white-space: nowrap;
    margin-bottom: 36px;
    margin-left: 5%;
  }

  .s3-pink {
    color: #C8005A;
  }

  .s3-purple {
    color: #8137B1;
    margin-left: 12px;
  }

  /* ── Two-column body ── */
  .s3-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
    padding: 40px 5% 60px;
    min-height: 480px;
  }

  /* ── Left: phone ── */
  .s3-left {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
  }

  .phone-glow {
      position: absolute;
      width: 162px;
      height: 162px;
      left: 36%;
      top: 12%;

      background: #D54385;
      opacity: 0.9;
      filter: blur(125px);
  }

  #phone-3d-canvas {
    width: 100%;
    height: 100%;
    display: block;
  }

  #phone-3d-canvas.floating-phone {
    pointer-events: none; /* Prevent interaction while floating */
    filter: blur(0.5px); /* Subtle blur for background effect */
    /* background: rgba(255, 255, 255, 0.1); */
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
  }

  .phone-wrap {
    position: relative;
    aspect-ratio: 400/800;
    /* transform: rotate(-11deg); */
    filter: drop-shadow(0 24px 48px rgba(0,0,0,0.18)) drop-shadow(0 8px 20px rgba(0,0,0,0.10));
    z-index: 2;
  }

  .phone-frame {
    width: 220px;
    height: 420px;
    background: #111;
    border-radius: 36px;
    padding: 10px;
    position: relative;
    box-shadow:
      inset 0 0 0 1.5px #2a2a2a,
      0 0 0 1px #111;
  }

  /* notch */
  .phone-frame::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 18px;
    background: #111;
    border-radius: 0 0 12px 12px;
    z-index: 10;
  }

  .phone-screen {
    width: 100%;
    height: 100%;
    background: #e5e5e5;
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 20px;
    gap: 14px;
    overflow: hidden;
    position: relative;
  }

  .phone-screen::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 40% 50%, rgba(200,0,90,0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  .phone-logo {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: #C8005A;
    text-transform: uppercase;
  }

  .phone-text {
    font-size: 48px;
    font-weight: 800;
    color: #2C2F30;
    text-align: center;
    line-height: 108%;
    display: flex;
    flex-direction: column;
    position: absolute;
    z-index: 3;
  }
  .s4-card .orb-wrapper{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 50%;
    border-radius: 999px;
    overflow: hidden !important;
  }
  .orb-anim{
    width: 100%;
    transform: translateX(-1%) scale(1.02);
  }

  .phone-text span:first-child{
    transform: translateX(-4%);
  }
  .phone-text span:last-child{
    transform: translateX(10%);
    margin-top: 6px;
  }

  /* ── Right: text block ── */
  .s3-right {
    padding-left: 6%;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .live-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #c8005abd;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 999px;
    width: fit-content;
    letter-spacing: 0.01em;
  }

  .live-badge::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
    animation: pulse-dot 1.8s ease-in-out infinite;
  }

  @keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1.1); }
    50% { opacity: 0.5; transform: scale(0.75); }
  }

  /* Circle spinning animations */
  @keyframes spin-clockwise {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  @keyframes spin-clockwise2 {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
  }

  @keyframes spin-counter-clockwise {
    from { transform: translate(-50%, -50%) rotate(360deg); }
    to { transform: translate(-50%, -50%) rotate(0deg); }
  }

  .s3-title {
    font-size: 38px;
    font-weight: 700;
    color: rgba(44, 47, 48, 0.85);
    line-height: 108%;
  }

  .s3-desc-main {
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    color: rgba(44, 47, 48, 0.86);
    line-height: 108%;
    font-weight: 500;
  }

  .s3-desc-sub {
    font-size: clamp(0.85rem, 1.1vw, 0.95rem);
    color: rgba(44, 47, 48, 0.5);
    line-height: 108%;
    font-weight: 500;
  }

  /* ── Ticker ── */
  .s3-ticker-section {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 40px;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  }

  .ticker-row {
    display: flex;
    gap: 10px;
    width: max-content;
  }

  .ticker-row-1 { animation: ticker-left 56s linear infinite; }
  .ticker-row-2 { animation: ticker-right 56s linear infinite; }

  @keyframes ticker-left {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  @keyframes ticker-right {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
  }

  .ticker-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 1px 4px rgba(229, 188, 188, 0.04);
  }

  .ticker-pill .pill-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .ticker-pill.grey{
    border-color: #6B6B6B;
    background-color: #6B6B6B;
    color: #fff;
  }
  .ticker-pill.pink{
    border-color: rgba(200, 0, 90, 0.85);
    color: white;
    background-color: rgba(200, 0, 90, 0.7);
  }
  .ticker-pill.purple{
    border-color: rgba(104, 24, 138, 0.8);
    color: #fff;
    background-color: rgba(104, 24, 138, 0.8);
  }
  .ticker-pill.yellow{
    border-color: rgba(249, 149, 8, 1);
    color: #fff;
    background-color: rgba(249, 149, 8, 0.734);
  }

  /* icon colour variants */
  .pill-icon.grey  svg { color: #999; }
  .pill-icon.pink  svg { color: #C8005A; }
  .pill-icon.purple svg { color: rgba(104, 24, 138, 0.8); }
  .pill-icon.yellow svg { color: #f59e0b; }
  .pill-icon.teal  svg { color: #14b8a6; }
  .pill-icon.orange svg { color: #f97316; }

    /* ─── Section 4 ─── */
    .section-4 {
      height: 100svh;
      /* overflow: hidden; */
      position: relative;
      width: 100%;
      margin-top: auto;
      margin-bottom: auto;
      padding: 60px 10%;
      /* max-width: 1200px; */
      /* background-color: #F5F6F7; */
      }

      .s4-slides-wrapper {
        position: relative;
        width: 100%;
        height: 100%;
        /* overflow: hidden; */
      }
      .s4-slide {
        position: absolute;
        inset: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 80px;
        opacity: 0;            /* all hidden initially */
        pointer-events: none;
      }
      .s4-slide.is-active {
        opacity: 1;
        pointer-events: auto;
      }
      .s4-slide .s4-left * {
        pointer-events: none !important;  
      }
      .s4-slide.is-active .s4-left * {
        pointer-events: all !important;   /* only active slide's left cluster is interactive */
      }
      /* Allow pointer events on s4-card elements */
      .s4-card {
        pointer-events: auto;
      }
      .s4-slide.three .s4-left{
        display: flex
      }
      .s4-slide.three .s4-left > div{
        flex: 1;
      }
      .s4-slide.three .dashed-circle{
        position: absolute;
    inset: 0;
    width: 100%;
    animation: spin-clockwise 100s linear infinite;
    transform-origin: center;
    will-change: transform;
      }
      .s4-slide.three .circle-images-container{
        position: relative;
    inset: 0;
    width: 100%;
    height: 100%;
    animation: spin-clockwise 100s linear infinite;
    transform-origin: center;
    will-change: transform;
      }
      .s4-slide.three .dashed-circle2{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
        animation: spin-counter-clockwise 100s linear infinite;
        transform-origin: center;
        will-change: transform;
        opacity: 0.8;
      }
      .s4-slide.three .dashed-circle3{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
        animation: spin-clockwise2 100s linear infinite;
        transform-origin: center;
        will-change: transform;
        opacity: 0.8;
      }
   
      /* ══════════════════════════════
         LEFT – visual cluster
      ══════════════════════════════ */
      .s4-left {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 560px;
      }
      .s4-left *{
        /* pointer-events: all !important; */
        overflow: visible !important;
      }
   
      /* Dashed border container */
      .dashed-frame {
        /* border: 1.5px dashed rgba(200, 0, 90, 0.45); */
        border: none;
        border-radius: 24px;
        pointer-events: none;
        padding: 12px;
        position: relative;
      }

      .dashed-border-svg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        overflow: visible;
      }
   
      /* Main Eiffel photo card */
      .photo-card {
        width: 26.5vw;
        max-width: 320px;
        /* height: 420px; */
        border-radius: 24px;
        overflow: hidden;
        transform: translateX(2%);
        position: relative;
        flex-shrink: 0;
      }
   
      .photo-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        transform: scale(0.97);
      }
      .photo-card .slide2-img{
        transform: scale(0.97) translateX(-2%);
      }
   
      /* Fallback gradient when no image */
      .photo-placeholder {
        width: 100%;
        height: 100%;
        background: linear-gradient(
          160deg,
          #b3d4f5 0%,
          #d4a8e0 40%,
          #f9c97c 70%,
          #f4a261 100%
        );
        display: flex;
        align-items: flex-end;
        justify-content: center;
        padding-bottom: 32px;
        position: relative;
      }
   
      /* Eiffel Tower SVG silhouette */
      .eiffel-svg {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 160px;
        opacity: 0.92;
      }
   
      /* Sky gradient layer */
      .photo-placeholder::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to bottom,
          #87ceeb 0%,
          #ffb347 55%,
          #ff6b6b 75%,
          #c0392b 100%
        );
      }
   
      /* 3 action icon buttons top-right of photo */
      .action-buttons {
        position: absolute;
        top: 16px;
        right: 6%;
        display: flex;
        flex-direction: column;
        gap: 0px;
        z-index: 10;
      }
   
      .action-btn {
        width: 38px;
        height: 38px;
        background: #343434;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0px -4px 4px rgba(0, 0, 0, 0.25);
        transition: transform 0.2s ease, background 0.2s ease;
      }
   
      .action-btn:hover { transform: scale(1.08); background: #2d2d2f; }
   
      .action-btn svg {
        /* width: 18px;
        height: 18px; */
        color: #ffffffd9;
      }
   
      /* City pill badge – bottom-left of photo */
      .city-badge {
        position: absolute;
        bottom: 64%;
        left: -22.6%;
        transform: rotate(3deg);
        background: #D48AF2;
        color: #190826;
        font-family: sans-serif;
        font-size: 28px;
        font-weight: 800;
        letter-spacing: 0.04em;
        padding: 14px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        gap: 7px;
        box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35);
        z-index: -2;
        white-space: nowrap;
        overflow: hidden;
      }
      .tag-book {
        position: absolute;
        bottom: 8%;
        right: -8%;
        display: inline-flex;
        align-items: center;
        gap: 10px;
      
        padding: 10px 18px;
        border-radius: 16px;
      
        background: linear-gradient(135deg, #ff7eb3, #ff4fa3);
        color: #1a1a1a;
        font-family: sans-serif;
        font-weight: 800;
        font-size: 16px;
        letter-spacing: 0.5px;
      
        box-shadow: 
          0 6px 18px rgba(255, 79, 163, 0.35),
          inset 0 1px 0 rgba(255, 255, 255, 0.4);
      
        backdrop-filter: blur(6px);
      }
      
      /* Icon circle */
      .tag-icon {
        display: flex !important;
        align-items: center;
        justify-content: center;
      
        width: 28px !important;
        height: 28px !important;
      
        background: rgba(255, 255, 255, 0.85);
        border-radius: 50%;
      
        font-size: 12px;
      }
      
      /* Text */
      .tag-text {
        color: #1a1a1a;
      }
      .s4-slide.is-active .s4-left .city-badge{
        pointer-events: none !important;
        z-index: 99999 !important;
      }
      .city-badge.city-badge2{
        max-width: 210px;
        padding: 12px;
        bottom: 10%;
        z-index: 1;
        gap:2px;
      }
      .city-badge.city-badge2 .textsl2{
        display: flex;
        flex-direction: column;
        line-height:1.08;
      }
      .city-badge.city-badge2 .textsl2 span:first-of-type{
        font-size: 12px; 
        font-weight: 500;
        color: rgb(25, 8, 38, 0.68);
      }
      .city-badge.city-badge2 .textsl2 span:last-of-type{
        font-size: 14px;
        font-weight: 500;
        color: #190826;
        white-space: normal;
      }

      .city-badge .icon{
        background-color: #FFFFFF;
        color: #190826;
        width: 34px;
        height: 34px;
        flex-shrink: 0;
        border-radius: 99px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .city-badge .imgs{
        display: flex;
        align-items: center;
        gap: 0;
      }
      .city-badge .imgs img:last-of-type{
        margin-left: -24px;
      }
   
      .city-badge svg {
        width: 19px;
        flex-shrink: 0;
        transform: rotate(16deg) translateX(1px);
      }
   
      /* "Start planning" floating card – bottom-left */
      .start-card {
        position: absolute;
        bottom: -6%;
        left: -15%;
        background: #fff;
        border-radius: 20px;
        border: 1px solid rgba(0, 0, 0, 0.22);
        padding: 20px 20px 16px;
        width: 150px;
        box-shadow: 0 12px 40px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.06);
        z-index: 15;
        display: flex;
        flex-direction: column;
        gap: 8px;
        transform: rotateY(-20deg) rotateZ(2.8deg) skewY(-1deg);
        pointer-events: all !important;
      }
      .sm-badge{
        background-color: #311B42;
        border-radius: 16px;
        color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 80px;
        padding: 10px;
        text-align: center;
        font-size: 11px;
        position: absolute;
        top: 10%;
        left: -8%;
        rotate: -6deg;
      }
      .s4-card .atropos-scale,
.s4-card .atropos-rotate,
.s4-card .atropos-inner {
  transform-style: preserve-3d !important;
}
.s4-card.two{
  padding-left:12px;
}
/* ── Slide 3 circle layout ── */
.s4-slide.three .s4-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 520px;
  margin: auto;
}

/* All circle-content images share base positioning */
.s4-slide.three .s4-card .circle-images-container > img {
  position: absolute;
  pointer-events: none;
  user-select: none;
  animation: spin-counter-clockwise 100s linear infinite;
  will-change: transform;
}

/* 1 — slider-msg-2.svg → 11 o'clock (top, slightly left) */
.s4-slide.three .s4-card .circle-images-container > img:nth-child(1) {
  top: 4%;
  left: 36%;
  transform: translate(-50%, -50%);
  /* width: 190px; */
}

/* 2 — circle-loc-2.png → 1 o'clock (top-right) */
.s4-slide.three .s4-card .circle-images-container > img:nth-child(2) {
  top: 15%;
  left: 86%;
  transform: translate(-50%, -50%);
  /* width: 76px; */
}

/* 3 — slider-bali-loc.svg → 3 o'clock (right) */
.s4-slide.three .s4-card .circle-images-container > img:nth-child(3) {
  top: 50%;
  left: 98%;
  transform: translate(-50%, -50%);
  /* width: 165px; */
}

/* 4 — 899-more-locations.svg → 4-5 o'clock (bottom-right) */
.s4-slide.three .s4-card .circle-images-container > img:nth-child(4) {
  top: 85%;
  left: 82%;
  transform: translate(-50%, -50%);
  /* width: 145px;*/
}

/* 5 — slider-msg-2.svg (2nd) → 7-8 o'clock (bottom-left) */
.s4-slide.three .s4-card .circle-images-container > img:nth-child(5) {
  top: 95%;
  left: 35%;
  transform: translate(-50%, -50%);
  /* width: 175px;*/
}

/* 6 — slider-eiffil-tag.svg → 9 o'clock (left) */
.s4-slide.three .s4-card .circle-images-container > img:nth-child(6) {
  top: 65%;
  left: 0%;
  transform: translate(-50%, -50%);
  /* width: 165px; */
}

/* 7 — star-loc.png → 10 o'clock (upper-left rim) */
.s4-slide.three .s4-card .circle-images-container > img:nth-child(7) {
  top: 27%;
  left: 4%;
  transform: translate(-50%, -50%);
  width: 64px;
}
/* Circle Layout End */
/* Bake Z elevation into base transform so it's always in front */
.start-card {
  transform: rotateY(-20deg) rotateZ(2.8deg) skewY(-1deg) translateZ(50px);
}

/* Same for city-badge — it has the same problem, just less obvious */
.city-badge {
  transform: rotate(3deg) translateZ(20px);
}
   
      .start-card p {
        font-size: 17px;
        font-weight: 600;
        color: #1c1c1e;
        line-height: 1.4;
      }
   
      .arrow-btn {
        width: 38px;
        height: 38px;
        background: #1c1c1e;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: transform 0.2s ease;
        align-self: flex-end;
      }
   
      .arrow-btn:hover { transform: scale(1.1) rotate(-5deg); }
   
      .arrow-btn svg {
        width: 18px;
        height: 18px;
        color: #fff;
      }
   
      /* ══════════════════════════════
         RIGHT – text block
      ══════════════════════════════ */
      .s4-right {
        display: flex;
        flex-direction: column;
        gap: 24px;
      }
   
      .s4-eyebrow {
        font-size: 16px;
        font-weight: 500;
        color: rgb(44 47 48 / 70%);
        letter-spacing: 0.02em;
      }
   
      .s4-eyebrow span { margin: 0 6px; }
   
      .s4-heading {
        font-size: clamp(2.2rem, 5vw, 56px);
        font-weight: 800;
        color: #68188A;
        line-height: 1.1;
        letter-spacing: -0.03em;
      }
      .s4-heading.md {
        font-size: clamp(2.2rem, 5vw, 50px);
      }

      .s4-heading-sm {
        font-size: clamp(2.2rem, 5vw, 42px);
      }
   
      .s4-bullets {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
      }
   
      .s4-bullets li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 16px;
        color: #2c2f30cc;
        font-weight: 500;
        line-height: 1.5;
      }
   
      .s4-bullets li::before {
        content: '•';
        color: #1c1c1e;
        font-size: 18px;
        line-height: 1.4;
        flex-shrink: 0;
      }
   
      /* Tag pills */
      .s4-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 8px;
      }
   
      .s4-tag {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        padding: 9px 16px;
        border-radius: 8px;
        font-size: 13px;
        font-weight: 600;
        cursor: default;
        transition: transform 0.15s ease;
      }
   
      .s4-tag:hover { transform: translateY(-1px); }
   
      .s4-tag svg { width: 14px; height: 14px; flex-shrink: 0; }
   
      /* grey */
      .s4-tag.grey {
        background: rgba(44, 47, 48, 0.16);
        color: #2C2F30;
        border: 1.5px solid rgba(107,107,107,0.18);
      }
      /* pink */
      .s4-tag.pink {
        background: rgba(213, 23, 137, 0.16);
        color: #D51789;
        border: 1.5px solid rgba(255,35,166,0.2);
      }
      .s4-tag.green {
        background: #008000;
        color: #fff;
        border: 1.5px solid #008000;
        border-radius: 999px;
        font-size: 12px;
        padding: 6px 12px;
      }
      /* purple */
      .s4-tag.purple {
        background: rgba(104, 24, 138, 0.16);
        color: #68188A;
        border: 1.5px solid rgba(124,58,237,0.2);
      }
      /* yellow */
      .s4-tag.yellow {
        background: rgba(243, 199, 134, 0.501);
        color: #C17500;
        border: 1.5px solid rgba(207,126,1,0.22);
      }

      .s4-slide-cta{
        background: #361C49;
        border-radius: 999px;
        color: #fff;
        padding: 12px 20px;
        font-size: 15px;
        font-weight: 500;
        width: max-content;
        display: flex;
        align-items: center;
        gap: 6px;
        pointer-events: all;
        text-decoration: none;
      }
   
      /* ── Responsive ── */
      @media (max-width: 900px) {
        .section-4 {
          grid-template-columns: 1fr;
          padding: 60px 24px;
          gap: 60px;
        }
        .s4-left { min-height: 460px; }
      }  

/* ── Section 5 ── */
.section-5 {
  width: 100%;
  height: 100vh;
  padding: 48px 4%;
  background-color: #FFFFFF;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.s5-wrapper{
  width: 100% !important;
  height: 100% !important;
}

.section-5 .s5-heading {
  color: #2C2F30;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
}

.section-5 .sub {
  color: #68188A;
  font-size: 20px;
  font-weight: 600;
  padding-left: 2px;
  padding-top: 4px;
}

/* Flex column container — label → line → circle */
.s5-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  margin-top: 12vh;
}

/* ── Fixed label slot at top center ── */
.circle-label-slot {
  position: absolute;
  top: 55%;
  width: 360px;
  height: 148px; /* fixed height prevents layout shift between points */
  text-align: center;
  flex-shrink: 0;
  max-width: 100%;
}

/* All points stacked at the same position */
.circle-point {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.45s ease, visibility 0.45s ease, transform 0.45s ease;
}

.circle-point.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.point-icon {
  font-size: 28px;
  line-height: 1;
}

.circle-point h3 {
  font-size: clamp(18px, 32px, 30px);
  font-weight: 700;
  /* color: #2C2F30; */
  color: #d71789;
  line-height: 1.3;
  margin: 0;
}

.point-desc {
  font-size: 18px;
  font-weight: 500;
  color: rgba(44, 47, 48, 0.7);
  line-height: 1.6;
  margin: 0;
}

/* ── Connector line ── */
.circle-connector {
  width: 1.5px;
  height: 56px;
  flex-shrink: 0;
  background: linear-gradient(to bottom, #c8005a61, rgba(0,0,0,0.05));
  transform: translateY(100%);
}

/* ── Rotating ring ── */
.content-circle {
  --circle-size: min(82vw, 1000px);
  width: var(--circle-size);
  height: var(--circle-size);
  --emoji-radius: calc(var(--circle-size) / 2 - 4px);
  --emoji-active-radius-adjust: 0px;
  border: 1.5px solid #c8005a;
  background-color: #c8005a0d;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

/*
  Emoji math:
    Each emoji starts at center (50%/50%) then:
    rotate(-60deg * i)  ← positions it counter-clockwise by i steps
    translateY(-radius) ← moves it outward to the rim

  When the circle rotates clockwise by φ = 60*i degrees,
  emoji i arrives at the top center — aligning with the label above.
*/
.ring-emoji {
  position: absolute;
  font-size: 32px;
  line-height: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(calc(-60deg * var(--i))) translateY(calc(-1 * var(--emoji-radius)));
  opacity: 0.6;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 1em;
  min-height: 1em;
  transition: opacity 0.35s ease, font-size 0.35s ease;
}
.emoji-num {
  position: absolute;
  top: -14px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #2c2f30a2;
  background: #fff;
  font-size: 12px;
  font-weight: 700;
  color: #2C2F30;
  font-family: "Manrope", sans-serif;
  line-height: 1;
  opacity: 0;
  transform: translate(-50%, -4px) scale(0.8);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.ring-emoji.active .emoji-num {
  top: -20px;
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.ring-emoji.active {
  opacity: 1;
  font-size: 56px;
  /* transform includes extra rotation to counteract parent rotation and keep emoji sticky at top center */
  transform: translate(-50%, -50%) rotate(calc(-60deg * var(--i) + var(--extra-rot, 0deg))) translateY(calc(-1 * (var(--emoji-radius) - var(--emoji-active-radius-adjust))));
}

     /* Last CTA Section */
     .ready-section {
      padding: 50px 20px 68px;
      background: #FFF;
      text-align: center;
      position: relative;
      overflow: hidden;
      width: 100%;
      scroll-snap-align: start;
    }
    
    .ready-content {
      max-width: 850px;
      margin: 0 auto;
    }
    
    .ready-headline {
      font-family: "Manrope", sans-serif;
      font-size: clamp(3.2rem, 4.8vw, 104px);
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -0.04em;
      color: #2C2F30;
      margin-bottom: 20px;
      position: relative;
    }
    .ready-headline::after{
        content: "";
        display: block;
        height: 100%;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background: linear-gradient(to bottom, transparent, #FFF);
    }
    
    .ready-subtext {
      font-size: clamp(1.1rem, 2.5vw, 18px);
      line-height: 1.55;
      color: #2C2F30;
      max-width: 560px;
      margin: 0 auto 48px auto;
      font-weight: 400;
    }
    
    .demo-button {
      padding: 16px 52px;
      font-family: "Manrope", sans-serif;
      font-size: 20px;
      font-weight: 600;
      color: white;
      background: linear-gradient(90deg, #D51789 0%, #9F188A 50%, #68188A 100%);
      border: none;
      border-radius: 60px;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 10px 30px rgba(226, 42, 142, 0.25);
      position: relative;
      overflow: hidden;
    }
    
    .demo-button:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(155, 77, 255, 0.35);
    }
    
    .demo-button:active {
      transform: scale(0.97);
    }
    
    /* Subtle background accent */
    .ready-section::before {
      content: '';
      position: absolute;
      top: 20%;
      left: 50%;
      transform: translateX(-50%);
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(226,42,142,0.08) 0%, transparent 70%);
      pointer-events: none;
      z-index: -1;
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
      .ready-section {
        padding: 120px 20px 100px;
      }
    }
    .movodream-footer {
      background: #F5F6F7;
      color: #2C2F30;
      width: 100%;
      padding: 80px 40px 50px;
      font-family: "Manrope", sans-serif;
    }
    
    .footer-container {
      max-width: 1280px;
      margin: 0 auto;
    }
    
    .footer-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 60px;
      flex-wrap: wrap;
      gap: 30px;
    }
    
    .footer-logo {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    
    .logo-text {
      font-size: 28px;
      font-weight: 800;
      letter-spacing: -0.02em;
      background: linear-gradient(90deg, #ff2a8e, #9b4dff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    
    .app-buttons {
      display: flex;
      gap: 16px;
    }
    
    .app-button {
      display: flex;
      align-items: center;
      gap: 12px;
      background: #111;
      border: 1px solid #222;
      border-radius: 12px;
      padding: 12px 24px;
      color: white;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    
    .app-button:hover {
      background: #1a1a1a;
      border-color: #444;
      transform: translateY(-2px);
    }
    
    .app-button i {
      font-size: 28px;
    }
    
    .small {
      font-size: 12px;
      opacity: 0.7;
      display: block;
    }
    
    .bold {
      font-size: 16px;
      font-weight: 600;
      letter-spacing: -0.01em;
    }
    
    .footer-links {
      display: flex;
      justify-content: center;
      gap: 50px;
      /* margin-bottom: 50px; */
      font-size: 15px;
      font-weight: 500;
      letter-spacing: 0.5px;
      transform: translateX(16%);
    }
    
    .footer-links a {
      color: #2C2F30;
      text-decoration: none;
      transition: color 0.3s;
    }
    
    .footer-links a:hover {
      color: #000000;
    }
    
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
      padding-top: 30px;
      border-top: 1px solid #22222261;
    }
    
    .social-icons {
      display: flex;
      gap: 16px;
    }
    
    .social-icon {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: #1a1a1a;
      color: #a8a8a8;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      text-decoration: none;
      transition: all 0.3s;
    }
    
    
    .social-icon:hover {
      background: #222;
      color: #ddd;
    }
    
    .copyright {
      color: #666;
      font-size: 14px;
      /* transform: translateX(50%); */
    }
    
    .global-support {
      display: flex;
      align-items: center;
      gap: 10px;
      background: rgba(0, 255, 100, 0.08);
      color: #08d073;
      padding: 8px 20px;
      border-radius: 50px;
      font-size: 12px;
      font-weight: 600;
      border: 1px solid rgba(0, 255, 100, 0.2);
      opacity: 0.8;
    }
    
    .status-dot {
      display: inline-block;
      width: 8px;
      height: 8px;
      background: #08d073;
      border-radius: 50%;
      box-shadow: 0 0 12px #08d073;
      animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.4; }
    }
    
    /* Responsive */
    @media (max-width: 768px) {
      .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      
      .footer-links {
        gap: 30px;
        margin-bottom: 40px;
        transform: none;
      }
    }
    /* Fixed CTA Bar - Revealed when footer scrolls up */
.fixed-cta-bar {
  position: fixed;
  bottom: -100px;           /* Hidden below screen initially */
  left: 0;
  right: 0;
  background: #0a0a0a;
  padding: 18px 40px;
  z-index: 1000;
  transition: bottom 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 1px solid #222;
}

.fixed-cta-bar.visible {
  bottom: 0;
}

.cta-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.cta-left .cta-text {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
}

.cta-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.app-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #111;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.app-btn:hover {
  background: #1f1f1f;
  transform: translateY(-2px);
}

.contact-link {
  color: #aaa;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 20px;
}

.contact-link:hover {
  color: white;
}

/* Footer styles - Curtain effect */
.movodream-footer {
  background: #F5F6F7;
  color: #2C2F30;
  padding: 80px 40px 130px;
  position: relative;
  z-index: 999;
  font-family: "Manrope", sans-serif;
  border-bottom-right-radius: 5rem;
  border-bottom-left-radius: 5rem;
}
/* ==================== NEW: SHUTTER / CURTAIN CTA PANEL ==================== */
.shutter-cta {
            position: fixed;
            inset: 0; 
            top: 0;
            left: 0;
            background: #0a0a0a;
            z-index: -3;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: none;             /* GSAP will control animation */
            overflow: hidden;
            opacity: 0;
        }

        .shutter-inner {
            width: 100%;
            max-width: 1100px;
            padding: 0 40px;
            text-align: center;
            color: #fff;
        }

        .shutter-logo {
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 14px;
          margin-bottom: 40px;
          background: #ffffffb3;
          width: max-content;
          padding: 6px 16px;
          border-radius: 16px;
          margin-left: auto;
          margin-right: auto;
          transform: translateY(16%);
        }

        .shutter-logo img {
            height: 82px;
        }

        .shutter-headline {
            font-family: "Manrope", sans-serif;
            font-size: clamp(2.8rem, 7vw, 6rem);
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.04em;
            margin-bottom: 24px;
            text-transform: uppercase;
            position: relative;
        }
        .shutter-headline span{
          font-size: clamp(2.8rem, 7vw, 3rem);
          display:flex;
          flex-direction: column;
          font-weight: 600;
          text-transform: capitalize;
          
        }
        .shutter-headline::after {
          content: "";
          display: block;
          height: 100%;
          width: 100%;
          position: absolute;
          top: 0;
          left: 0;
          background: linear-gradient(to bottom, transparent 85%, #0a0a0a);
          transform: translateY(2px);
          z-index: 1;
      }
      .shutter-cta-h3 {
        font-size: 28px;
        font-weight: 800;
        margin: 0 auto 20px;
        margin-left: 0;
        margin-right: 0;
        font-style: italic;
        margin-top: 48px;
    }

        .shutter-subtext {
            font-size: clamp(1.1rem, 2.5vw, 1.35rem);
            max-width: 620px;
            margin: 0 auto 20px;
            opacity: 0.9;
        }

        .shutter-app-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 80px;
        }

        .shutter-app-button {
            display: flex;
            align-items: center;
            gap: 14px;
            background: #111;
            border: 1px solid #222;
            border-radius: 14px;
            padding: 16px 32px;
            color: white;
            text-decoration: none;
            min-width: 240px;
            transition: all 0.3s ease;
        }

        .shutter-app-button:hover {
            background: #1f1f1f;
            transform: translateY(-4px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.4);
        }

        .shutter-app-button i {
            font-size: 32px;
        }

        .shutter-contact {
            font-size: 1.1rem;
            opacity: 0.75;
        }

        .shutter-contact a {
            color: #ff2a8e;
            text-decoration: none;
        }

        .shutter-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            width: 2px;
            height: 100%;
            background: linear-gradient(transparent, rgba(255,42,142,0.3), transparent);
            opacity: 0.15;
            transform: translateX(-50%);
        }

/* How it works */
.how-it-works {
  --bg-color: #F9F9FB;
  --text-primary: #1A1A1A;
  --text-secondary: #4A4A4A;
  --card-bg-start: #241235;
  --card-bg-end: #160a21;
  --purple-accent: #D0006F;
  --purple-light: #9D4EDD;
  --pink-light: #FF8CBA;
  --chat-bg: #D392B2;
  margin: 0 auto;
  padding: 60px 60px;
  color: var(--text-primary);
  /* background-color: #F5F6F7; */
  width: 100%;
}
.how-waves-wrapper{
  position: relative;
  z-index: 0;
}
.how-it-works .wrapper{
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.circle-wrapper{
  width: 45%;
  height: 90%;
  position: relative;
  top: 14%;
  left: 8%;
}
.circle-wrapper .dashed-circle{
  position: absolute;
    inset: 0;
    height: 100%;
    animation: spin-clockwise 100s linear infinite;
    transform-origin: center;
    will-change: transform;
}
.circle-wrapper .dashed-circle2{
  position: absolute;
  top: 50%;
  left: 50%;
  height: 80%;
  transform: translateY(-50%) translateX(-50%);
  animation: spin-counter-clockwise 100s linear infinite;
  transform-origin: center;
  will-change: transform;
  opacity: 0.8;
}
.circle-wrapper .dashed-circle3{
  position: absolute;
  top: 50%;
  left: 50%;
  height: 76%;
  transform: translateY(-50%) translateX(-50%);
  animation: spin-clockwise2 100s linear infinite;
  transform-origin: center;
  will-change: transform;
  opacity: 0.8;
}
.circle-wrapper .circle-images-container {
  position: relative;
  inset: 0;
  width: auto;
  height: 100%;
  aspect-ratio: 1/1;
  animation: spin-clockwise 100s linear infinite;
  transform-origin: center;
  will-change: transform;
  margin-left: auto;
  margin-right: auto;
}
.circle-wrapper .circle-images-container > img {
  position: absolute;
  pointer-events: none;
  user-select: none;
  animation: spin-counter-clockwise 100s linear infinite;
  will-change: transform;
  z-index: 1;
}
.how-it-works .circle-images-container img {
  transform-origin: center center;
  will-change     : transform, opacity;
}
.circle-wrapper .circle-images-container > img:nth-child(1) {
  top: 4%;
  left: 36%;
  transform: translate(-50%, -50%);
  /* width: 190px; */
}
.circle-wrapper .circle-images-container > img:nth-child(2){
  top: 15%;
  left: 86%;
  transform: translate(-50%, -50%);
  /* width: 76px;*/
}
.circle-wrapper .circle-images-container > img:nth-child(3){
  top: 50%;
  left: 98%;
  transform: translate(-50%, -50%);
}
.circle-wrapper .circle-images-container > img:nth-child(4){
  top: 85%;
  left: 82%;
  transform: translate(-50%, -50%);
}
.circle-wrapper .circle-images-container > img:nth-child(5){
  top: 95%;
  left: 35%;
  transform: translate(-50%, -50%);
}
.circle-wrapper .circle-images-container > img:nth-child(6){
  top: 65%;
  left: 0%;
  transform: translate(-50%, -50%);
}
.circle-wrapper .circle-images-container > img:nth-child(7){
  top: 27%;
  left: 4%;
  transform: translate(-50%, -50%);
  width: 56px;
}

/* --- Header --- */
.header-section {
  text-align: center;
  margin-bottom: 40px;
}

.main-title {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, #D51789 8.22%, #68188A 29.01%, #DA9BF5 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-fill-color: transparent;
  margin-bottom: 15px;
}

.subtitle {
  font-size: 1.2rem;
  color: #2D1B4E;
  font-weight: 500;
}

/* --- Feature Card --- */
.feature-card-wrapper {
  width: 100%;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}

.feature-card {
  width: 100%;
  height: 60vh;
  background: #201328;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  /* Simulating the purple ambient glow */
  border: 1px solid rgba(255,255,255,0.1);
}

/* Decorative Background Curves */
.curve {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157,78,221,0.2) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}
.curve-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  left: -100px;
}
.curve-2 {
  width: 800px;
  height: 800px;
  bottom: -400px;
  right: -200px;
}
.how-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}
.how-slide.active {
  opacity: 1;
  pointer-events: auto;
}
/* ── Module timer bars ── */
.module::before {
  background: rgba(32, 19, 40, 0.1); /* dim default */
  transition: none;
}
.module.active::before {
  background: linear-gradient(
    to right,
    rgba(32,19,40,0.55) var(--timer-pct, 0%),
    rgba(32,19,40,0.1) var(--timer-pct, 0%)
  );
}

/* ── Slide 2 — stacked cards ── */
.hs2-stack-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  width: 340px;
  height: 220px;
}
.hs2-card {
  position: absolute;
  width: 100%;
  background: linear-gradient(180deg, #190826 18.75%, rgba(25, 8, 38, 0) 100%);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 20px 22px 18px;
  color: #fff;
  transition: box-shadow 0.30s ease;
  cursor : pointer;
  min-height: 172px;
  will-change : transform, opacity;
  border: 2px solid rgb(221, 165, 255, 0.8);
}
.hs2-card:hover {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55),
              0 0 0 1px rgba(255, 255, 255, 0.14);
}
/* Keyboard-accessible focus ring */
.hs2-card:focus-visible {
  outline       : 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: 4px;
}
.hs2-card--back  { transform: translate(-22px, -22px) rotate(-4deg); opacity: 0.45; z-index: 1; }
.hs2-card--mid   { transform: translate(-11px, -11px) rotate(-2deg); opacity: 0.65; z-index: 2; }
.hs2-card--front { transform: translate(0,0) rotate(0deg); opacity: 1; z-index: 3; }

.hs2-dots { font-size: 14px; letter-spacing: 3px; color: #C9B5D6; display: block; margin-bottom: 10px; }
.hs2-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: #C9B5D6; }
.hs2-body  { font-size: 15px; color: rgba(201, 181, 214, 0.8); line-height: 1.55; max-width: 260px; }
.hs2-icon  { position: absolute; bottom: 18px; right: 18px; }
/* ── Slide 3 — companion ── */
.hs3-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px;
}
.hs3-companion-card {
  width: 360px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 18px;
  padding: 18px 20px;
  backdrop-filter: blur(8px);
}
.hs3-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.hs3-label { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }
.hs3-status { font-size: 12px; font-weight: 600; color: #4ade80; }

.hs3-messages { display: flex; flex-direction: column; gap: 8px; }
.hs3-msg {
  font-size: 13px;
  line-height: 1.45;
  padding: 9px 13px;
  border-radius: 10px;
  max-width: 90%;
}
.hs3-msg--ai   { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.88); align-self: flex-start; }
.hs3-msg--user { background: rgba(213,23,137,0.35); color: #fff; align-self: flex-end; }

.hs3-stats {
  display: flex;
  gap: 28px;
}
.hs3-stat { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.hs3-num  { font-size: 22px; font-weight: 800; color: #fff; will-change: contents; }
.hs3-lbl  { font-size: 11px; color: rgba(255,255,255,0.5); font-weight: 500; }

.how-slide-1 {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ====================================
   SHARED KEYFRAMES
   ==================================== */
   @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes popIn {
    from { opacity: 0; transform: scale(0.6); }
    to   { opacity: 1; transform: scale(1); }
  }
  @keyframes msgFromLeft {
    from { opacity: 0; transform: translateX(-18px); }
    to   { opacity: 1; transform: translateX(0); }
  }
  @keyframes msgFromRight {
    from { opacity: 0; transform: translateX(18px); }
    to   { opacity: 1; transform: translateX(0); }
  }
  @keyframes cardDealBack {
    from { opacity: 0; transform: translate(-80px, 40px) rotate(-12deg); }
    to   { opacity: 0.45; transform: translate(-22px, -22px) rotate(-4deg); }
  }
  @keyframes cardDealMid {
    from { opacity: 0; transform: translate(-60px, 30px) rotate(-8deg); }
    to   { opacity: 0.65; transform: translate(-11px, -11px) rotate(-2deg); }
  }
  @keyframes cardDealFront {
    from { opacity: 0; transform: translate(-40px, 20px) rotate(-4deg) scale(0.92); }
    to   { opacity: 1; transform: translate(0, 0) rotate(0deg) scale(1); }
  }
  
  /* ====================================
     SLIDE 1 — map elements float up with stagger
     ==================================== */
  .how-slide-1.entering > * {
    animation: fadeUp 0.6s ease both;
  }
  .how-slide-1.entering > *:nth-child(1) { animation-delay: 0.05s; }
  .how-slide-1.entering > *:nth-child(2) { animation-delay: 0.18s; }
  .how-slide-1.entering > *:nth-child(3) { animation-delay: 0.30s; }
  .how-slide-1.entering > *:nth-child(4) { animation-delay: 0.42s; }
  .how-slide-1.entering > *:nth-child(5) { animation-delay: 0.52s; }
  
  /* ====================================
     SLIDE 2 — cards shuffle/deal in
     ==================================== */
  .how-slide-2.entering .hs2-card--back {
    animation: cardDealBack  0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.00s both;
  }
  .how-slide-2.entering .hs2-card--mid {
    animation: cardDealMid   0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s both;
  }
  .how-slide-2.entering .hs2-card--front {
    animation: cardDealFront 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 1.6s both;
  }
  
  /* ====================================
     SLIDE 3 — messages stagger in, stats pop
     ==================================== */
  .how-slide-3.entering .hs3-companion-card {
    animation: fadeUp 0.5s ease 0.0s both;
  }
  .how-slide-3.entering .hs3-msg--ai   { animation: msgFromLeft  0.4s ease both; }
  .how-slide-3.entering .hs3-msg--user { animation: msgFromRight 0.4s ease both; }
  
  .how-slide-3.entering .hs3-messages .hs3-msg:nth-child(1) { animation-delay: 0.20s; }
  .how-slide-3.entering .hs3-messages .hs3-msg:nth-child(2) { animation-delay: 0.40s; }
  .how-slide-3.entering .hs3-messages .hs3-msg:nth-child(3) { animation-delay: 0.60s; }
  .how-slide-3.entering .hs3-messages .hs3-msg:nth-child(4) { animation-delay: 0.80s; }
  
  .how-slide-3.entering .hs3-stat {
    animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  }
  .how-slide-3.entering .hs3-stat:nth-child(1) { animation-delay: 0.50s; }
  .how-slide-3.entering .hs3-stat:nth-child(2) { animation-delay: 0.65s; }
  .how-slide-3.entering .hs3-stat:nth-child(3) { animation-delay: 0.80s; }

/* SVG Lines */
.connection-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Node Base Styles */
.node {
  position: absolute;
  z-index: 2;
}

.node img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%; /* Default circle */
}

/* Node: Tokyo Tower */
.tokyo-tower {
  width: 40px;
  height: 40px;
  top: 65%;
  left: 17%;
}
.tokyo-tower .node-label {
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 10px;
  border-radius: 10px;
  color: white;
  display: flex;
  flex-direction: column;
}
.tokyo-tower .distance {
  font-size: 0.75rem;
  color: #ddd;
  margin-bottom: 2px;
}
.tokyo-tower .location-name {
  font-weight: bold;
  font-size: 1rem;
}
.tokyo-tower img {
  border-radius: 50%;
  border: 2px solid white;
}

/* Node: Sensoji Temple */
.sensoji-temple {
  width: 45px;
  height: 45px;
  top: 12%;
  left: 24%;
}
.sensoji-temple .node-label.top-left {
  position: absolute;
  left: 60px;
  top: 10px;
  color: white;
  display: flex;
  flex-direction: column;
}
.sensoji-temple .node-label span {
  font-size: 0.85rem;
  white-space: nowrap;
}
.sensoji-temple .distance {
  color: #ccc;
}

/* Node: Tokyo Main */
.tokyo-main {
  top: 48%;
  left: 30%;
  width: 180px;
  height: 100px;
}
.tokyo-stack {
  position: relative;
  width: 100%;
  height: 60%;
}
.stack-img-1, .stack-img-2 {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  border: 3px solid var(--card-bg-start);
}
.stack-img-1 {
  top: 0;
  left: 10px;
  z-index: 1;
}
.stack-img-2 {
  top: 10px;
  left: 50px;
  z-index: 2;
}
.location-text {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: white;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

/* Node: Other Images */
.other-img-1 {
  width: 50px;
  height: 50px;
  top: 25%;
  left: 45%;
}
.other-img-1 img { border-radius: 50%; }

.other-img-2 {
  width: 50px;
  height: 50px;
  top: 35%;
  left: 20%;
}
.other-img-2 img { border-radius: 50%; }

/* Node: Click To View */
.click-view {
  top: 78%;
  left: 40%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}
.image-collage {
  display: flex;
  width: 80px;
  height: 50px;
}
.image-collage img {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  border: 2px solid var(--card-bg-start);
  margin-left: -15px;
}
.image-collage img:first-child { margin-left: 0; z-index: 2; }
.click-text {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
}

/* Chat Interface */
.chat-interface {
  position: absolute !important;
  top: 20%;
  right: 25%;
  z-index: 10;
  transform: rotate(-3deg);
  transform-style: preserve-3d; /* Required for Atropos 3D transforms */
}

.chat-interface .atropos-inner {
  display: flex;
  align-items: flex-start;
  gap: 0px;
  overflow: visible !important;
}

.chat-interface .user-avatar{
  z-index: 2;
}
.chat-interface .chat-bubbles{
  z-index: 1;
}

.chat-interface .user-avatar img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  transform: translateX(44%) translateY(-36%);
}

.chat-bubbles {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.how-it-works .bubble {
  background: rgba(229, 182, 207, 0.8);
  padding: 12px 16px;
  border-radius: 12px 12px 0 12px; /* Chat bubble shape */
  color: #2B1121;
  font-size: 12px;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 220px;
  transform-origin: center center;
}

.how-it-works .bubble-2 {
  border-radius: 12px 12px 12px 0; /* Alternate bubble tail */
  background: rgba(229, 182, 207, 0.6);
  align-self: flex-end;
}
.how-it-works .bubble.bubble-1{
  padding-left: 26px;
}
.how-it-works .bubble-1 .icon {
  font-size: 1.2rem;
  margin-left: auto;
}

/* --- Modules Section --- */
.modules-section {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.module {
  padding-top: 24px;
  position: relative;
}
.module::before{
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(32, 19, 40, 0.1);
}

.module-label {
  display: block;
  color: rgba(32, 19, 40, 0.8);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 20px;
  cursor: pointer;
}

.module-1 h3 {
  font-size: 19px;
  font-weight: 700;
  color: #201328;
}
.module h3{
  margin-bottom: 20px;
}
/* Hide h3 and bullets by default */
.module h3,
.module .feature-list {
  opacity: 0.12;
  transition: all 0.8s ease;
}

/* Show only for the active module */
.module.active h3,
.module.active .feature-list {
  opacity: 1;
}

/* .module-1::before{
  background: linear-gradient(to right, rgba(32, 19, 40, 0.50) 60%, rgba(32, 19, 40, 0.1) 60%);
} */

.feature-list {
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: #201328;
  line-height: 1.5;
  font-size: 15px;
}

.feature-list li::before {
  content: '✦';
  position: absolute;
  left: -6px;
  top: -4px;
  color: #d71789;
  font-size: 22px;
}
.circle-map{
  transform: scale(1.12) translateY(36px);
  margin-left: 5%;
}
.how-waves{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  will-change: transform;
  z-index: 2;
}
.how-waves-wrapper::before{
  content: "";
  display: block;
  width: 16%;
  height: 222px;
  background: linear-gradient(307.14deg, rgba(31, 10, 42, 0) 32.79%, #1F0A2A 69.4%);
  position: absolute;
  top: 1%;
  left: 0;
  z-index: 3;
}
.demo-button-sub{
  background: #e0e0e0;
  width: 100%;
  text-align: center;
  padding: 16px 12px;
  font-weight: 700;
  color: #373737;
}

@media (max-width: 1149px) {
  .nav-menu {
      display: none;
  }
  .nav-right-mobile{
    display: flex;
  }
  .hero-section{
    flex-direction: column;
    align-items: center;
    padding-top: 3%;
  }
  .hero-section .hero-right {
      position: relative;
      flex-basis: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      width: 100%;
      min-height: 70vh;
  }
  .hero-section .hero-left{
    flex-basis: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hamburger {
      display: block;
      z-index: 999999999;
  }

  .nav-right .nav-contact,
  .nav-right .nav-planning {
      display: none;
  }

  nav {
      padding: 16px 4%;
  }
}
.content-circle,
.bg-img,
.s2-card,
.feature-bar,
.fullscreen-content {
  will-change: transform;
  transform: translateZ(0); /* Force GPU acceleration */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .main-title { font-size: 2.5rem; }
  .feature-card { 
    height: 40svh; 
  }
  .photo-card{
    width: unset;
  }
  .chat-interface { 
    display: none;
    scale: 0.7 !important;
    right: 0%;
    top: unset;
    bottom: 4%;
  }
  .hs3-companion-card{
    scale: 0.7 !important;
    transform-origin: bottom;
  }
  .hs2-stack-wrapper{
    scale: 0.7;
    transform-origin: center left;
  }
  .header-section{
    margin-bottom: 30px;
  }
  .circle-wrapper .circle-images-container > img{
    scale: 0.5;
  }
  .modules-section { grid-template-columns: 1fr; }
  h1{
    font-size: 48px;
    line-height: 1;
    word-spacing: 3px;
  }

  /* Hero section responsive adjustments */
  @media (max-width: 1149px) {
    .hero-section {
      flex-direction: column;
      align-items: center;
      padding-top: 40px;
      padding-bottom: 60px;
    }
    .hero-left {
      flex-basis: 100%;
      text-align: center;
      margin-bottom: 40px;
    }
    .hero-left h1 {
      font-size: 3rem;
    }
    .hero-left .desc {
      max-width: 100%;
    }
    .hero-right {
      flex-basis: 100%;
      position: relative;
      width: 100%;
      min-height: 400px;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .cards-wrapper {
      position: relative;
      width: 100%;
      max-width: 400px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .card1, .card2, .card3 {
      position: relative;
      width: 100%;
      margin: 0 0 20px 0;
      transform: none;
      left: 0;
      margin-left: 0;
      margin-top: 0;
    }
    .card2, .card3 {
      left: 0;
      margin-left: 0;
      margin-top: 0;
      transform: none;
    }
  }
  .module:not(.active) {
    display: none;
  }
  .hero-left .desc{
    font-size: 18px;
    padding: 10px 0px;
  }
  .hero-section{
    padding-bottom: 78px;
  }
  .s3-heading { 
    font-size: clamp(2.5rem, 10vw, 4rem); 
    white-space: normal; 
    padding-left: 16%;
    margin-bottom: 0;
  }
  .s3-body { grid-template-columns: 1fr; padding: 30px 5% 40px; gap: 0px; }
  .s3-left { 
    min-height: 72px; 
    margin-bottom: 8%;
  }
  .phone-glow { width: 280px; height: 280px; }
  .phone-frame { width: 170px; height: 320px; }
  .phone-text { font-size: 38px; }
  .s3-right { 
    padding-left: 0; 
    align-items: center;
    text-align: center;
  }
  .s3-title{
    text-align:  center;
    font-size: 32px;
  }
  .s3-desc-main {
    font-size: 16px;
  }
  .s3-desc-sub{
    color: #2c2f30db;
    font-size: 16px;
  }
  .s3-right{
    gap: 16px;
  }
  .start-card{
    width: 133px;
    padding: 12px;
    gap: 8px;
  }
  .start-card p{
    font-size: 12px;
  }
  .arrow-btn{
    width: 32px;
    height: 32px;
  }
  .action-btn{
    width: 32px;
    height: 32px;
  }
  .action-btn svg{
    transform: scale(0.8) !important;
  }
  /* ─── Section-4 mobile: unpin, stack slides naturally ─── */
  .section-4{
    height: auto;
    min-height: 0;
    padding: 48px 24px !important;
  }
  .s4-slides-wrapper{
    position: static;
    height: auto;
    overflow: visible;
    display: flex;
    flex-direction: column;
    gap: 80px;
  }
  
  .s4-slide{
    position: relative;
    inset: auto;
    grid-template-columns: 1fr;
    gap: 28px;
    /* opacity starts at 0 — s4SlideIn (JS) animates it in when the slide enters the viewport */
    opacity: 0;
    pointer-events: auto;
  }
  .s4-slide.is-active{
    opacity: 1;
    pointer-events: auto;
  }
  /* Re-enable interactions on all slide children on mobile (desktop hides non-active children) */
  .s4-slide .s4-left *,
  .s4-slide.is-active .s4-left *{
    pointer-events: auto !important;
  }
  .s4-left{
    min-height: 0;
    width: 100%;
  }
  .s4-right{
    align-items: center;
    gap: 12px;
    text-align: center;
  }
  .s4-bullets{
    align-items: center;
  }
  .s4-tags{
    align-items: center;
    justify-content: center;
  }
  .s4-slide.three{
    display: flex;
    flex-direction: column;
  }
  .s4-eyebrow.s3{
    border-radius: 999px;
  }
  /* Mobile s2-card: base (index.html inline) keeps `width:100%; aspect-ratio:16/8`
     as the STARTING state. GSAP (script.js) will scrub-zoom it to 100svw/100svh
     and to `border-radius: 0` as the user scrolls into the section. */
  .s2-card{
    max-height: 100svh;
    max-width: 100svw;
  }
  .s4-eyebrow.s3 .s4-tag.green{
    margin-top: 8px;
  }
  .s4-slide.three .s4-left{
    flex-basis: auto;
    width: 100%;
  }
  .s4-slide.three .s4-right{
    flex-basis: auto;
  }
  /* Remove the desktop-shrink hack so the card renders at a readable size */
  .s4-slide.three .s4-card{
    transform: none;
    transform-origin: center;
  }
  /* Give every slide's Atropos card a sensible, readable mobile size */
  .s4-card{
    width: min(82vw, 360px);
    margin-inline: auto;
  }
  /* ─── 3D phone: shrink on mobile so the WebGL canvas is smaller ─── */
  .phone-wrap{
    width: 58vw;
    max-width: 280px;
  }
  /* ─── Advantage circle (section-5): GPU hints for smoother rotation on mobile ─── */
  .content-circle{
    will-change: transform;
    transform: translateZ(0);
  }
  .ring-emoji{
    will-change: transform;
    contain: layout;
  }
  .city-badge.city-badge2{
    max-width: 140px;
    padding: 8px;
    border-radius: 12px;
  }
  .city-badge.city-badge2 .imgs img{
    height: 32px;
    width: 32px;
  }
  .city-badge.city-badge2 .textsl2 span:first-of-type{
    font-size: 8px; 
    font-weight: 500;
  }
  .city-badge.city-badge2 .textsl2 span:last-of-type{
    font-size: 10px;
    font-weight: 500;
  }
  .city-badge.city-badge2 .textsl2{
    gap: 2px;
  }
  .sm-badge{
    width: 60px;
    padding: 8px;
    text-align: center;
    font-size: 11px;
    position: absolute;
    top: 10%;
    left: -8%;
    rotate: -6deg;
    border-radius: 8px;
  }
  .sm-badge img{
    width: 32px;
  }
  .sm-badge span{
    font-size: 8px;
  }
  .s5-content{
    margin-top: 32vh;
  }
  .circle-label-slot{
    top: 67%;
  }
  /* .hero-section{
    flex-direction: column-reverse;
  } */
}

@media (max-width: 450px){
  .phone-text{
    font-size: 32px;
  }
  .hero-section .hero-right{
    min-height: 43vh;
  }
  .hero-section{
    padding-bottom: 24px;
  }
  .hero-right .cards-wrapper, .hero-right .cards-wrapper *{
    pointer-events: none !important;
  }
  /* NOTE: the old rule that set `.feature-bar { opacity: 0 }` was removed —
     the mobile-light flip branch in script.js now drives the feature-bar's
     visibility via GSAP tweens instead. */
  .ring-emoji.active{
    /* Avoid transform-scale drift on emoji glyphs; size with font-size instead */
    scale: 1;
    font-size: 34px;
  }
  .hero-section .cards-wrapper{
    transform: scale(0.7);
    transform-origin: top;
  }
  .s4-slide:first-child .city-badge{
    scale: 0.5;
    /* transform-origin: left; */
  }
  .s4-slide.three .s4-card{
    transform: scale(0.78);
  }
  .s4-slide.is-active div.s4-card, .s4-slide.is-active div.s4-card *{
    pointer-events: none !important;
  }
  .ring-emoji.active .emoji-num{
    transform: translate(-50%, 0) scale(0.6);
  }
  .fullscreen-content{
    pointer-events: none;
  }
  .start-card{
    left: -2%;
    bottom: -2%;
    transform-origin: bottom left;
  }
  .nav-menu li{
    margin-bottom: 0;
  }
  .hero-section{
    padding-top: 0;
  }
  .hero-ctas{
    flex-direction: column-reverse;
  }
  .s3-title{
    font-size: 22px;
  }
  .s3-heading{
    font-size: clamp(2.2rem, 10vw, 4rem);
  }
  .circle-label-slot{
    top: 74%;
  }
  .content-circle{
    --emoji-active-radius-adjust: 1px;
    scale: 1.4 !important;
  }
  .circle-connector{
    transform: translateY(-100%);
  }
  .circle-label-slot{
    top: 58%;
  }
  .section-5 .s5-heading{
    text-align: center;
    line-height: 1.1;
    margin-bottom: 4px;
    font-size: clamp(1.8rem, 4vw, 3rem);
  }
  .circle-point h3{
    font-size: clamp(18px, 32px, 24px);
  }
  .section-5 .sub{
    font-size: 18px;
    text-align: center;
    max-width: 94%;
    margin: auto;
  }
  .s2-card{
    border-radius: 12px;
  }
  .section-5{
    padding-top: 32px !important;
  }
  .feature-bar.vertical{
    /* min-height: 80% !important; */
    width: 90% !important;
    opacity: 1;
  }
  .how-it-works{
    padding-left: 24px;
    padding-right: 24px;
  }
  footer .app-buttons{
    flex-direction: column;
  }
  body{
    max-width: 100svw;
  }
  .footer-bottom{
    justify-content: space-between;
    align-items: center;
    gap: 0;
    row-gap: 32px;
  }
  .global-support{
    margin-left: auto;
    margin-right: auto;
    margin-top: 16px;
    opacity: 0.7;
  }
  footer .copyright{
    transform: none;
  }
  .movodream-footer{
    padding-left: 24px;
    padding-right: 24px;
  }
  .s3-body{
    padding-top: 15px;
    min-height: 0;
    gap: 28px;
  }
  .s3-left{
    margin-bottom: 2%;
    margin-top: 2.8%;
  }
  .s3-heading{
    padding-right: 0;
    padding-left: 12%;
  }
  .shutter-inner{
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero-right .cards-wrapper .card1{
    margin-left: 74.62px;
  }
  .shutter-cta{
    width: 100svw;
  }
  .shutter-headline{
    font-size: 32px;
  }
  .shutter-subtext{
    font-size: 16px;
  }
  .shutter-contact{
    /* transform: translateY(-80%); */
  }
  .hero-left h1{
    font-size: 2.5rem;
  }
  .movodream-footer{
    border-bottom-right-radius: 3.4rem;
    border-bottom-left-radius: 3.4rem;
    padding: 58px 40px 44px;
  }
  .ready-section{
    padding-top: 92px;
  }
  .s4-heading{
    text-transform: capitalize;
  }
  .s4-heading,
  .s4-heading-sm{
    font-size: 28px !important;
  }
  .main-title{
    font-size: 2rem;
  }
  .ready-headline{
    font-size: clamp(2.2rem, 4.8vw, 104px);
  }
  .s4-bullets li{
    gap: 0;
  }
  .section-4 .sub{
    font-size: 14px;
  }
  .s4-right{
    gap: 8px;
  }
  .nav-right button{
    right: 16px;
  }
  .s2-card{
    border-radius: 12px;
  }
  .ring-emoji{

  }
}