:root {
    --primary-color: #FF2E95;
    --secondary-color: #FFC409;
    --text-black: #141414;
    --text-white: #FAF7F5;
    --bg-black: #353535;
    --box-shadow: 0 2.18px 5.44px 0 #4747471A;
    --background: #faf7f5;
    --bacground-2: #F6F2EE;

    /* Hero Animation */
    --offsetX: 0;
    --offsetY: 0;
    --velocity: 1;
    --shadow: 0px 9px 21px rgba(0,0,0,.1),0px 38px 38px rgba(0,0,0,.09),0px 85px 51px rgba(0,0,0,.05),0px 151px 60px rgba(0,0,0,.01);
    --ease-out-elastic: linear(0,0.5737 7.6%,0.8382 11.87%,0.9463 14.19%,1.0292 16.54%,1.0886 18.97%,1.1258 21.53%,1.137 22.97%,1.1424 24.48%,1.1423 26.1%,1.1366 27.86%,1.1165 31.01%,1.0507 38.62%,1.0219 42.57%,0.9995 46.99%,0.9872 51.63%,0.9842 58.77%,1.0011 81.26%,1);
}

/* ── CSS ── */
/* [data-anim] {
  opacity: 0;
  will-change: opacity, transform;
}
 */



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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--background);
    position: relative;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

.container {
    max-width: 1500px;
    width: 95%;
    margin: 0 auto;
    padding: 0 10px;
}

.container-fluid {
    /* max-width: 1920px; */
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.row {
    display: flex;
}

.login {
    display: none;
}


/* Background Effects */

.bg_circle_effect {
    width: inherit;
    position: absolute;
    z-index: -1;
}

.bg_circle_effect img {
    width: 100%;
	height: 100%;
}

.bg_circle_effect.one {
    top: 0;
    right: 0px;
    max-width: 500px;
}

.bg_circle_effect.two {
    left: 0;
    top: 10%;
}

.bg_circle_effect.three {
    left: 0;
    right: 0;
    width: 100%;
    top: 5%;
    height: auto;
    max-height: 950px;
	overflow: hidden;
}

/* Header */

header.header {
    position: relative;
    width: 100%;
    padding-block: 30px;
    background: transparent;
    z-index: 99;
}

.home header.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.header .row {
    align-items: center;
    justify-content: space-between;
}

.header .logo {
    width: 186px;
}

.header .logo img {
    width: 100%;
}

.header .login_button {
    background: var(--bg-black);
    font-size: 16px;
    font-weight: 600;
    gap: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    color: var(--text-white);
    border-radius: 50px;
}

.header .login_button .icon {
    width: 20px;
    height: 20px;
    color: var(--text-white);
}

.header .icon img {
    width: 100%;
    height: 100%;
}




/* Hero Banner */

.hero_section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    padding-block: 180px 60px;
}

.hero_section h1 {
    /* font-size: 80px; */
    font-size: clamp(32px, 5.5vw, 82px);
    font-weight: 900;
    color: #202126;
    text-align: center;
    line-height: 1;
    width: 83%;
    margin: 0 auto;
    font-style: italic;
    letter-spacing: -0.12px;
}

p.text {
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    font-weight: 400;
    color: #414040;
    width: 53%;
}

.hero_banner_content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.magnetic_hero {
    container: inline-block;
    place-items: center;
    text-align: center;
    display: flex;
    width: 100%;
    height: 100%;
    /* margin-top: 20px; */
}
.hero__images {
    display: flex;
    place-items: center;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    position: relative;
    touch-action: none;
    width: 100%;
    height: 40vh;
    z-index: 1;
}
.hero__images .hero__image {
    aspect-ratio: 1/1;
    border-radius: 1rem;
    width: clamp(9rem, 100%, 14vw);
    user-select: none;
}
.hero__images .hero__image img {
    border-radius: inherit;
    /* box-shadow: var(--shadow); */
    pointer-events: auto;
    width: auto;
    height: 100%;
    user-select: none;
    object-fit: cover;
    will-change: transform;
    transform: translateX(calc(var(--offsetX) * 1px)) translateY(calc(var(--offsetY) * 1px + var(--translateY)));
    transition: transform .7s var(--ease-out-elastic);
}

/* i = 1 → 1st, 5th, 9th, ... */
.hero__images .hero__image:nth-child(4n+1) img {
    rotate: calc(2deg - var(--velocity) * 0.25deg);
    --translateY: 5%;
}
/* i = 2 → 2nd, 6th, 10th, ... */
.hero__images .hero__image:nth-child(4n+2) img {
    rotate: calc(-3deg - var(--velocity) * 0.25deg);
    --translateY: -6%;
}
/* i = 3 → 3rd, 7th, 11th, ... */
.hero__images .hero__image:nth-child(4n+3) img {
    rotate: calc(6deg - var(--velocity) * 0.25deg);
    --translateY: 5%;
}
/* i = 4 → 4th, 8th, 12th, ... */
.hero__images .hero__image:nth-child(4n+4) img {
    rotate: calc(-2deg - var(--velocity) * 0.25deg);
    --translateY: -4%;
}

.hero__images .hero__image:not(:last-child) {
    margin-right: -6%;
}


/* Hero Cards Modal slider */

/* MODAL */
.modal-bg{
  position:fixed;inset:0;z-index:999;
  background:rgba(0,0,0,0);
  display:flex;align-items:center;justify-content:center;
  pointer-events:none;
  transition:background 0.3s;
}
.modal-bg.open{
  background:rgba(0,0,0,0.35);
  pointer-events:all;
  backdrop-filter:blur(6px);
}
.modal-shell{
  position:relative;
  display:flex;align-items:center;
  gap:14px;
}
.modal-card {
    background: var(--background);
    border-radius: 40px;
    width: 374px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    opacity: 0;
    transform: scale(0.82) translateY(24px);
    transition: opacity 0.38s cubic-bezier(0.34,1.56,0.64,1), transform 0.38s cubic-bezier(0.34,1.56,0.64,1);
    padding: 32px;
}
.modal-bg.open .modal-card{opacity:1;transform:scale(1) translateY(0);}

.modal-preview{
    width:100%;height:200px;
    display:flex;align-items:center;justify-content:center;
    position:relative;overflow:hidden;
    margin-bottom: 15px;
    border-radius: 30px;
}
.modal-preview-emoji {
    width: 100%;
}
.modal-app-row{display:flex;align-items:center;gap:10px;margin-bottom:10px;}

.modal-desc {
    font-size: 16px;
    color: var(--text-black);
    line-height: 1.6;
}
.modal-cta-row{display:flex;gap:8px;}
.modal-cta {
    padding: 8px 16px;
    border-radius: 50px;
    border: none;
    font-size: 12px;
    font-weight: 400;
    font-family: inherit;
    cursor: pointer;
    color: #fff;
    background: #353535 !important;
    margin-bottom: 10px;
}
.modal-close-btn {
    padding: 10px;
    border-radius: 50px;
    border: 1.5px solid #e5e5e5;
    font-size: 13px;
    background: #fff;
    color: #000;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: absolute;
    z-index: 9;
    right: 45px;
    top: 45px;
}

/* side arrows */
.side-arrow{
  width:38px;height:38px;border-radius:50%;
  background:#fff;border:none;
  box-shadow:0 4px 20px rgba(0,0,0,0.14);
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;font-size:16px;color:var(--primary-color);
  opacity:0;transform:scale(0.7);
  transition:opacity 0.35s 0.1s,transform 0.35s 0.1s cubic-bezier(0.34,1.56,0.64,1),background 0.15s;
  flex-shrink:0;
  z-index: 2;
}
.modal-bg.open .side-arrow{opacity:1;transform:scale(1);}
.side-arrow:hover{background:#f5f5f5;}
.side-arrow:disabled{opacity:0.25!important;cursor:default;}







/* Marquee Text Slider */

.marquee-wrap {
  display: flex;
  align-items: center;
  background: #000;
  overflow: hidden;
  width: 100%;
  height: 44px;
}

/* .marquee-label {
  background: #000;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 0 20px;
  white-space: nowrap;
  flex-shrink: 0;
  height: 100%;
  display: flex;
  align-items: center;
  border-right: 1px solid #333;
  z-index: 2;
} */

.marquee-track {
  display: flex;
  overflow: hidden;
  flex: 1;
  height: 100%;
}

.marquee-inner {
  display: flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 28s linear infinite;
}

.marquee-inner span {
  color: #fff;
  font-size: 16px;
  padding: 0 26px;
  font-weight: 600;
  /* opacity: 0.85; */
  flex-shrink: 0;
  cursor: default;
}

.marquee-inner span:hover {
  opacity: 1;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}




/* Mobile Cards Slider */

section.slider_section {
    position: relative;
    width: 100%;
    padding-block: 160px 90px;
    overflow: hidden;
}

.slider_section .row {
    justify-content: center;
    align-items: center;
}

.slider_section h3 {
    text-align: center;
    color: var(--text-black);
    font-size: 30px;
    font-weight: 400;
}

.scene {
    margin-top: 40px;
}

.stage{
  position:relative;
  width:100%;height:580px;
  display:flex;align-items:center;justify-content:center;
}

.pw{
  position:absolute;
  will-change:transform,opacity;
  cursor:pointer;
}
.pw.animated{
  transition:transform 0.58s cubic-bezier(0.25,0.46,0.45,0.94), opacity 0.45s ease;
}

.phone{
  width:270px;
  /* height:530px; */
  height:100%;
  border-radius:44px;
  overflow:hidden;
  border:2.5px solid rgba(0,0,0,.11);
  position:relative;
  background:#111;
  box-shadow:0 32px 80px rgba(0,0,0,.22),0 2px 8px rgba(0,0,0,.08);
}

.sb{position:absolute;top:0;left:0;right:0;height:36px;display:flex;align-items:center;justify-content:space-between;padding:8px 20px 0;font-size:11.5px;font-weight:600;z-index:20;letter-spacing:.2px}

.prompt-box{
  position:absolute;top:14px;left:12px;right:12px;
  background:#fff;border-radius:18px;
  padding:12px 14px 10px;z-index:30;
  opacity:0;transform:translateY(-10px);
  transition:opacity .3s ease,transform .3s ease;
  box-shadow:0 4px 20px rgba(0,0,0,.12);
  pointer-events:none;
}
.prompt-box.visible{opacity:1;transform:translateY(0);pointer-events:auto}
.pb-label{font-size:9px;color:#bbb;margin-bottom:4px;font-weight:600;letter-spacing:.1em;text-transform:uppercase}
.pb-text{font-size:12.5px;color:#1a1a1a;line-height:1.5;min-height:26px;word-break:break-word}
.cursor{display:inline-block;width:2px;height:13px;background:#222;animation:blink .6s infinite;vertical-align:text-bottom;margin-left:1px}
@keyframes blink{0%,100%{opacity:1}50%{opacity:0}}
.pb-actions{display:flex;align-items:center;justify-content:space-between;margin-top:8px;padding-top:7px;border-top:.5px solid #f0f0f0}
.pb-plus{font-size:20px;color:#ccc;font-weight:300;line-height:1}
.pb-send{width:28px;height:28px;background:#e91e8c;border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.send-arr{width:0;height:0;border-style:solid;border-width:5px 0 5px 9px;border-color:transparent transparent transparent #fff;margin-left:2px}

.app-chip{position:absolute;bottom:18px;left:12px;right:12px;background:rgba(255,255,255,.92);border-radius:16px;padding:10px 14px;display:flex;align-items:center;gap:10px;z-index:10;backdrop-filter:blur(8px)}
.chip-ico{width:38px;height:38px;border-radius:10px;flex-shrink:0;display:flex;align-items:center;justify-content:center;font-size:20px}
.chip-name{font-size:13px;font-weight:700;color:#111;line-height:1.3}
.chip-desc{font-size:10.5px;color:#888}

.nav-row{display:flex;align-items:center;gap:18px;margin-top:1.5rem; justify-content: center;}
/* .nb{width:42px;height:42px;border-radius:50%;background:rgba(255,255,255,.75);border:none;font-size:22px;cursor:pointer;display:flex;align-items:center;justify-content:center;color:#333;transition:background .15s,transform .1s;box-shadow:0 2px 10px rgba(0,0,0,.1)}
.nb:hover{background:rgba(255,255,255,.95);transform:scale(1.06)}
.nb:active{transform:scale(.93)} */


  .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #faf7f5;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-color);
    z-index: 20;
    transition: background .2s;
  }

  .arrow:hover { background: rgba(255,255,255,0.95); }
  .arrow-l { left: 25%; }
  .arrow-r { right: 25%; }

  .dots {
    display: flex;
    gap: 7px;
    margin-top: 20px;
  }

  .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #BCBDB8;
    cursor: pointer;
    transition: all .3s;
  }

  .dot.a {
    background: #353535;
    transform: scale(1.2);
  }



/* Text Reavel Animation Section */

 
section.text-animation-section {
  position: relative;
  width: 100%;
  padding-block: 180px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.reveal-section {
  width: 90%;
  max-width: 1100px;
  display: flex;
  align-items: center;
  margin: 0 auto;
}
 
.reveal-text {
  font-size: clamp(32px, 5.5vw, 70px);
  font-weight: 700;
  line-height: 1.15;
  font-family: inherit;
}
 
.word {
  display: inline-block;
  color: rgba(0, 0, 0, 0.15);
  filter: blur(8px);
  will-change: color, filter;
}





/* FAQs Section */

section.faq-section {
    position: relative;
    width: 100%;
    padding-block: 60px 160px;
}

.faq-section .row {
    padding-inline: 6%;
}

.faq-section .text_col {
    width: 40%;
}

.faq-section .text_col span {
    color: #848383;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
}

.faq-section .text_col h3 {
    color: #0F172A;
    font-weight: 700;
    font-size: 26px;
    line-height: 32px;
    margin-top: 10px;
}

.faq-section .accordion_col {
    width: 60%;
}

.faq {
    width: 100%;
    font-family: inherit;
}

.faq-item {
    background: #fff;
    border: 1px solid #e8e5e0;
    border-radius: 16px;
    margin-bottom: 8px;
    overflow: hidden;
}

  .faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 32px;
    cursor: pointer;
    background: none;
    border: none;
    text-align: left;
    gap: 16px;
  }

  .faq-q-text {
    font-size: 16px;
    font-weight: 700;
    color: #0F172A;
    font-style: italic;
    line-height: 1.4;
    padding-block: 4px;
  }

  .faq-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .faq-icon svg {
    width: 14px;
    height: 14px;
    stroke: #888;
    stroke-width: 1.8;
    fill: none;
  }

  .faq-item.open .faq-icon {
    transform: rotate(180deg);
  }

  /* CSS grid trick — no JS height calculation needed */
  .faq-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .faq-item.open .faq-body {
    grid-template-rows: 1fr;
  }

  .faq-inner {
    overflow: hidden;
  }

  .faq-a {
    padding: 0px 36px 12px;
    font-size: 14px;
    color: #0F172A;
    line-height: 1.7;
  }


















/* Footer */

footer.footer {
    background: var(--bacground-2);
    padding-block: 60px 20px;
}

.footer .copyright {
    align-items: center;
    justify-content: space-between;
    padding-block: 30px;
    border-top: 1px solid #EBE7E3;
}

.footer .copyright a,
.footer .copyright p {
    font-size: 16px;
    font-weight: 500;
}

.footer .policy_row {
	display: flex;
	align-items:center;
	justify-content: flex-end;
	gap: 10px;
}

.footer .newsletter {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding-block: 40px 90px;
}

.newsletter .footer_logo {
    width: 120px;
    height: 120px;
}

.newsletter .footer_logo img {
    width: 100%;
}

.newsletter h2 {
    font-size: 40px;
    font-weight: 900;
    color: var(--text-black);
    line-height: 1.05;
    font-style: italic;
    letter-spacing: -0.12px;
}

.newsletter p {
    width: 100%;
    max-width: 490px;
    font-size: 20px;
    letter-spacing: -0.25px;
    font-weight: 400;
    text-align: center;
    font-style: italic;
    color: #414040;
}

.waitlist-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 2rem 1rem; */
  width: 100%;
}

.waitlist-container {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #E2DCD6;
  border-radius: 999px;
  padding: 5px 10px 5px 20px;
  gap: 8px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--box-shadow);
}

.waitlist-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 15px;
  color: #414040;
  min-width: 0;
  height: 50px;
}

.waitlist-input::placeholder {
  color: var(--text-black);
}

.waitlist-btn {
  background: var(--primary-color);
  color: var(--text-white);
  border: none;
  border-radius: 99px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s, transform 0.1s;
}

.waitlist-btn:hover {
  background: #FF64B1;
}

.waitlist-btn:active {
  transform: scale(0.97);
}



@media(max-width:1500px){
    .hero_section {
        height: 100%;
    }
}

@media(max-width:768px){
    p.text {
        width: 80%;
    }
    .header .logo {
        width: 126px;
    }
    .header .login_button {
        font-size: 14px;
        padding: 10px 14px;
    }
    .header .login_button .icon {
        width: 16px;
        height: 16px;
    }
    .hero__images {
        gap: 10px;
    }

    .magnetic_hero {margin-top:20px}

    .phone {
        width: 210px;
        border-radius: 32px;
    }
    .faq-section .row {
        padding: 0%;
    }
}

@media(max-width:450px){
    .hero_section h1 {
        width: 100%;
    }
    .hero__images .hero__image {
        aspect-ratio: 1/1.2;
        width: 5rem;
    }
    .hero__images {
        gap: 0;
        height: 30vh;
    }
    p.text {
        width: 100%;
        font-size:16px;
    }
    .waitlist-btn {
        padding: 10px 16px;
    }
    .waitlist-input {height: 40px;}
    .marquee-inner span {font-weight: 400;}
    section.slider_section {
        padding-block: 60px 40px;
    }
    .arrow-r {right: 5%;}
    .arrow-l {left: 5%;}
    .stage {height: 480px;}
    .reveal-section {width: 100%;}
    .faq-section .row {
        flex-direction: column;
        gap: 20px;
    }
    .faq-section .text_col,.faq-section .accordion_col {width: 100%;}
    section.faq-section {padding-block: 60px 90px;}
    .newsletter h2 {padding-inline: 20px;text-align: center;}
    .modal-card {width: 300px;padding: 20px;}
    .modal-close-btn {right: 25px;top: 35px;}
    .side-arrow {position: absolute;}
    button#prevBtn {
        left: -15px;
        top: 45%;
    }
    button#nextBtn {
        right: -15px;
        top: 45%;
    }
}