/* ─── Satoshi Font Setup ─────────────────────────────────────────── */
@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi-Regular.otf") format("opentype"),
       url("./fonts/Satoshi-Regular.ttf") format("truetype"),
       url("./fonts/Satoshi-Regular.woff") format("woff"),
       url("./fonts/Satoshi-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi-Medium.otf") format("opentype"),
       url("./fonts/Satoshi-Medium.ttf") format("truetype"),
       url("./fonts/Satoshi-Medium.woff") format("woff"),
       url("./fonts/Satoshi-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi-Bold.otf") format("opentype"),
       url("./fonts/Satoshi-Bold.ttf") format("truetype"),
       url("./fonts/Satoshi-Bold.woff") format("woff"),
       url("./fonts/Satoshi-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi-Black.otf") format("opentype"),
       url("./fonts/Satoshi-Black.ttf") format("truetype"),
       url("./fonts/Satoshi-Black.woff") format("woff"),
       url("./fonts/Satoshi-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}




/* Global styles */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* ✅ Prevent horizontal scrolling */
  background-color: white;
  font-family: 'Satoshi', sans-serif;
}

/* ───── FOOTER STYLES ────────────────────────────────────────────── */
.minimal-footer {
  background: linear-gradient(
    135deg,
    rgba(83, 202, 252, 0.25),
    rgba(255, 255, 255, 0.1),
    rgba(83, 202, 252, 0.2)
  );

  backdrop-filter: blur(48px) saturate(250%);
  -webkit-backdrop-filter: blur(48px) saturate(250%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 18px 64px rgba(83, 202, 252, 0.25),
    inset 0 0 60px rgba(255, 255, 255, 0.08);

  padding: 0.4rem 0;
  width: 100%;
  min-height: 56px;

  position: fixed;      /* ✅ Locks it in place */
  top: 0;               /* ✅ Sticks to top instead */
  left: 0;
  z-index: 9998;
  overflow: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}




.footer-inner {
  display: flex;
  justify-content: space-between; /* 👈 Clean two-sided layout */
  align-items: center;
  padding: 0 4rem;
  height: 56px;
  position: relative;
}


.footer-logo {
  height: 48px;         /* ⬆️ Taller logo */
  width: auto;
  display: block;
  margin-left: 2rem;    /* ⬅️ Narrower spacing */
  margin-top: 16px;     /* ⬇️ Slightly reduced vertical offset */
}
.footer-right {
  position: absolute;
  right: 4rem; /* 👈 Shifted closer to center */
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer-nav {
  display: flex;
  gap: 2rem;
}

.footer-nav a {
  color: #000000;
  text-decoration: none;
  font-family: 'Satoshi', sans-serif;
  font-weight: 900;        /* ⬆️ Upgraded to Black */
  font-style: italic;      /* ⬅️ Now italic */
  transition: color 0.3s ease;
}


.footer-nav a:hover {
  color: #53CAFC;
}

.footer-buttons {
  display: flex;
  gap: 1rem;
}

.btn-join,
.btn-subscribe {
  box-sizing: border-box;
}

.btn-join {
  padding: 8px 16px;
  border: 2px solid #53CAFC;
  background: transparent;
  color: #B0B0B0;
  font-family: 'Satoshi', sans-serif;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-join:hover {
  background-color: #53CAFC;
  color: white;
  border-color: #53CAFC;
}

.btn-subscribe {
  padding: 8px 16px;
  background: linear-gradient(to right, #53CAFC, #FEE0FF);
  color: white;
  font-family: 'Satoshi', sans-serif;
  font-weight: 500;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-subscribe::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  border: 2px solid white;
  border-radius: 8px;
  opacity: 0;
  animation: snake-outline 1s linear infinite;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.btn-subscribe:hover::before {
  opacity: 1;
}

/* 👤 Logged-in user display */
.user-profile {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 4px 8px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(83, 202, 252, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

/* Invisible placeholder to reserve space */
.user-profile::after {
  content: "Username"; /* Match expected username length */
  visibility: hidden;
  height: 0;
  overflow: hidden;
  white-space: nowrap;
  position: absolute;
}


.user-profile:hover {
  background-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.05); /* 👈 grow on hover */
}


.profile-avatar {
  height: 36px;
  width: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #53CAFC;
  transition: transform 0.3s ease;
}

.profile-avatar:hover {
  transform: scale(1.07);
}

.profile-username {
  color: #000000;            /* ⬅️ Changed to white */
  font-weight: 900;          /* ⬆️ Satoshi Black */
  font-style: italic;        /* ⬅️ Italic style */
  font-size: 0.95rem;
  font-family: 'Satoshi', sans-serif;
  margin-right: 0.5rem;
  white-space: nowrap;
}


@keyframes snake-outline {
  0% { clip-path: inset(0 100% 100% 0); }
  25% { clip-path: inset(0 0 100% 0); }
  50% { clip-path: inset(0 0 0 0); }
  75% { clip-path: inset(100% 0 0 0); }
  100% { clip-path: inset(0 100% 100% 0); }
}

/* ✅ Hide main footer when sticky bar is active using body class */
body.hide-footer .minimal-footer {
  display: none !important;
}




.btn-signin-outline {
  padding: 8px 16px;
  border: 2px solid #53CAFC;
  background-color: transparent;
  color: #53CAFC;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  font-family: 'Satoshi', sans-serif;
}

.btn-signin-outline:hover {
  background-color: #53CAFC;
  color: #fff;
}


/* Divider */
.top-bar-nav .divider {
  width: 1px;
  height: 1rem;
  background-color: white;
  opacity: 0.6;
}




/* ───────── iPhone Top Footer + Sticky Bar Fix ───────── */
@media (max-width: 768px) {

  /* ===== Minimal Glass Top Footer ===== */

  .minimal-footer {
    padding: 0.6rem 0.6rem 0.6rem 0.2rem; /* reduced LEFT padding */
    min-height: 60px;
  }

  .footer-inner {
    padding: 0;
    justify-content: space-between;
    align-items: center;
  }

  /* 🍔 Hamburger */
  .mobile-menu-toggle {
  display: flex;
  width: 26px;
  height: 18px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  margin-left: 15px;   /* 🔥 pushes it right */
  margin-right: 4px;
}

  .mobile-menu-toggle span {
    height: 2px;
    width: 100%;
    background: #53CAFC;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  /* Keep container stable */
  .footer-left {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  /* 🔥 Shift ONLY the logo left */
  .footer-logo {
    height: 40px;
    margin: 0;
    margin-left: -120px; /* controls logo position only */
  }

  /* Remove absolute positioning */
  .footer-right {
    position: static;
    transform: none;
    gap: 1rem;
    margin-right: 6px;
  }

  /* Hide desktop nav */
  .footer-nav {
    display: none;
  }

  .footer-buttons {
    gap: 0.5rem;
  }

  .profile-avatar {
    height: 32px;
    width: 32px;
  }

  .profile-username {
    display: none;
  }


  /* ===== Glass Dropdown (Original Style Kept) ===== */

  .mobile-glass-menu {
    display: flex;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 30px 24px;

    background: linear-gradient(
      135deg,
      rgba(83, 202, 252, 0.25),
      rgba(255, 255, 255, 0.1),
      rgba(83, 202, 252, 0.2)
    );

    backdrop-filter: blur(48px) saturate(250%);
    -webkit-backdrop-filter: blur(48px) saturate(250%);

    border-top: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(83, 202, 252, 0.25);

    flex-direction: column;
    gap: 24px;

    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s ease;
    z-index: 9997;
  }

  .mobile-glass-menu a {
    text-decoration: none;
    font-family: 'Satoshi', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: #000000;
  }

  .mobile-glass-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }


  /* ===== Sticky Blue Drop Bar (Unchanged) ===== */

  .sticky-top-bar {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0;
    top: 18px;
  }

  .top-bar-content {
    width: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .top-bar-dot {
    height: 30px;
    width: 30px;
    background-size: 18px 18px;
  }

  .top-bar-nav {
    width: auto;
    padding: 0.2rem 0.5rem;
    gap: 0.5rem;
  }

  .top-bar-nav a {
    font-size: 0.75rem;
    padding: 0.2rem 0.35rem;
  }

  .top-bar-nav .divider {
    height: 0.7rem;
  }

  .nav-full a:nth-of-type(1),
  .nav-full .divider:nth-of-type(1) {
    display: none;
  }

  .nav-full a:nth-of-type(3),
  .nav-full .divider:nth-of-type(3) {
    display: none;
  }

}








































/* Layout */
.gearview-section {
  background-color: #ffffff; /* 🤍 Pure white */
  padding: 80px 40px;
  display: flex;
  justify-content: center;
}

.gearview-content {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

/* Headline */
.gearview-headline {
  font-size: 4rem;
  font-weight: 900;
  text-align: left;
  padding-left: 20px;
  margin-bottom: 10px;
}

.gradient-text {
  background: linear-gradient(to right, #53CAFC, #FEE0FF);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}


.gearview-subtext {
  font-size: 1.1rem;
  color: #555;
  padding-left: 20px;
  margin-top: 0;
  margin-bottom: 12px;
}

.gearview-icon {
  width: 40px;
  margin: 0 0 40px 20px;
}

/* Grid — 4 cards in one row */
.gear-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}

/* Responsive fallback */
@media (max-width: 1200px) {
  .gear-cards {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

/* Each card + text block */
.gear-item {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.gear-item:nth-child(1) { animation-delay: 0.1s; }
.gear-item:nth-child(2) { animation-delay: 0.2s; }
.gear-item:nth-child(3) { animation-delay: 0.3s; }
.gear-item:nth-child(4) { animation-delay: 0.4s; }

/* Card (IMAGE ONLY) */
.gear-card {
  background: white;
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
  min-height: 460px;

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

.gear-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
}

/* Text BELOW card (not inside) */
.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 20px;
}

.card-subtext {
  font-size: 1rem;
  color: #777;
  margin: 6px 0 12px;
}

/* ✅ EVEN PARAGRAPH HEIGHT (no clamp, no truncation) */
.card-description {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  max-width: 90%;
  min-height: calc(1.5em * 4);
  margin-bottom: 18px;
}

/* Button */
.card-btn {
  display: inline-block;
  background: #53CAFC;
  color: white;
  padding: 10px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.card-btn:hover {
  background: #3bb0e0;
}

/* Animation */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Gear Section Footer — EXTRA SPACIOUS */
.gearview-footer {
  text-align: center;
  margin-top: 220px; /* 🔥 Big separation from cards/buttons */
}

/* Massive headline */
.gearview-tagline {
  font-size: 4.2rem; /* 🚀 Very large, statement level */
  font-weight: 900;
  color: #111;
  margin-bottom: 50px;
  line-height: 1.1;
  font-family: 'Satoshi', sans-serif;
}

/* Banner image stays the same */
.gearview-banner {
  width: 100%;
  max-width: 1200px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}





/* Base for all overhang images */
.ios-overhang {
  position: absolute;
  border-radius: 24px;
  object-fit: cover;
  width: 260px;        /* Feel free to scale this appropriately */
  height: auto;
  z-index: 2;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* Container needs relative positioning */
.gallery-images {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 40px;
}

/* Specific Overhang Positions */
.left-overhang {
  top: -40px;          /* Moves above the first image slightly */
  left: -120px;        /* Overhang to left of gearimage2 */
}

.right-overhang {
  top: -40px;          /* Matches left-overhang vertical position */
  left: 180px;         /* Adjust to overhang on right of gearimage2 */
}

.left2-overhang {
  top: -20px;          /* Slight vertical offset for second image */
  left: 420px;         /* Overhang on the left of gearimage3 */
}

/* Keep main gallery images on top */
.gallery-img {
  position: relative;
  z-index: 1;
}



/* ───────── iPhone Gear Cards Layout (Image Optimised) ───────── */
@media (max-width: 768px) {

  /* Section spacing */
  .gearview-section {
    padding: 60px 16px;
  }

  .gearview-content {
    max-width: 100%;
    padding: 0;
    text-align: center;
  }

  /* Headline centered */
  .gearview-headline {
    font-size: 2.4rem;
    text-align: center;
    padding-left: 0;
  }

  .gearview-subtext {
    text-align: center;
    padding-left: 0;
  }

  .gearview-icon {
    display: block;
    margin: 0 auto 30px auto;
  }

  /* 🔥 2x2 Grid */
  .gear-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  /* Remove fade animation */
  .gear-item {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  /* ✅ Let image define height */
  .gear-card {
    padding: 14px;
    border-radius: 20px;
    min-height: unset;      /* remove forced height */
    height: auto;
  }

  /* 🔥 Keep image large + natural */
  .gear-card img {
    width: 100%;
    height: auto;           /* natural ratio */
    object-fit: contain;
    border-radius: 16px;
  }

  /* Text */
  .card-title {
    font-size: 1rem;
    text-align: center;
    margin-top: 14px;
  }

  .card-subtext {
    font-size: 0.85rem;
    text-align: center;
  }

  .card-description {
    display: none;
  }

  .card-btn {
    font-size: 0.85rem;
    padding: 8px 16px;
    display: inline-block;
    margin: 10px auto 0 auto;
  }

}




/* ───────── iPhone Gear Footer Layout (Stacked Story Mode) ───────── */
@media (max-width: 768px) {

  /* Center everything */
  .gearview-footer {
    margin-top: 120px;
    text-align: center;
  }

  .gearview-tagline {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  /* Banner wrapper becomes vertical stack */
  .gearview-banner-wrapper {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  /* Main banner image */
  .gearview-banner {
    width: 100%;
    max-width: 340px;
    border-radius: 18px;
    box-shadow: none;
  }

  /* Mockup image directly under banner */
  .ios-overhang {
    position: static !important;
    width: 180px;
    margin: 0 auto;
    box-shadow: none;
  }

  /* Gallery becomes vertical */
  .gearview-gallery {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .gallery-images {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .gallery-img {
    width: 100%;
    max-width: 340px;
    border-radius: 18px;
  }

  /* Ensure only ONE mockup per image block */
  .left-overhang,
  .right-overhang,
  .left2-overhang {
    display: none !important;
  }

  /* Headline under last image */
  .gallery-headline {
    font-size: 1.4rem;
    line-height: 1.4;
    padding: 0 10px;
    margin-top: 10px;
  }

}















/* Gallery image row under banner */
.gearview-gallery {
  margin-top: 100px;
  text-align: center;
}

.gallery-images {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.gallery-img {
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  object-fit: cover;
}

/* Tagline below image row */
.gallery-headline {
  font-size: 1.6rem;
  font-weight: 600;
  color: #111;
  font-family: 'Satoshi', sans-serif;
}

.highlight-blue {
  color: #53CAFC;
  font-weight: 700;
}

.highlight-green {
  color: #2ecc71;
  font-weight: 700;
}



.fade-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-item.visible {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 768px) {

  .know-scroll-wrapper,
  .know-scroll {
    display: none !important;
  }

  .know-section::after {
    content: "";
    display: block;
    width: 100%;
    max-width: 320px;
    height: 360px;
    margin: 40px auto 0 auto;

    background-image: url("mockuplightside.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

}





























/*Why Section*/
.why-section {
  background-color: #f9f9f9;
  padding: 100px 0;
  display: flex;
  justify-content: center;
}

.why-content {
  width: 100%;
}

.why-headline {
  font-size: 3.5rem;
  font-weight: 900;
  color: #111;
  margin: 0 0 40px 100px;
  font-family: 'Satoshi', sans-serif;
  text-align: left;
}

/* NEW WRAPPER - masks edge cutoff */
.why-scroll-wrapper {
  width: 100%;
  overflow-x: auto;     /* ⬅️ Allow horizontal scroll here */
  position: relative;
}

.why-scroll {
  display: flex;
  gap: 24px;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 100px;
  padding: 40px 0;
  padding-left: 100px;
  min-width: 100%;       /* ✅ Needed to allow overflow scroll */
  box-sizing: border-box;
}


/* First card doesn't need margin anymore */
.why-card:first-of-type {
  margin-left: 0;
}

.why-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.why-scroll-wrapper {
  -ms-overflow-style: none;     /* IE/Edge */
  scrollbar-width: none;        /* Firefox */
}

.why-scroll-end-spacer {
  flex: 0 0 auto;
  width: 100px; /* ⬅️ Adjust spacing at scroll end */
  height: 1px;
}




.why-link-wrapper {
  display: flex;
  justify-content: flex-end;
  margin: 0 100px 20px 0; /* Align with headline, add bottom space */
}

.why-link {
  font-size: 1rem;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.3s ease;
}

.why-link:hover {
  border-bottom: 2px solid #000;
}





.why-card {
  flex: 0 0 auto;
  min-width: 320px;       /* 🔼 Wider card */
  max-width: 360px;
  height: 280px;          /* 🔽 Shorter card height */
  background-color: #fff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  scroll-snap-align: start;
  position: relative;
}

.why-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
}

.why-title {
  font-size: 1.5rem;      /* 🔼 Bigger headline */
  font-weight: 700;
  margin-bottom: 4px;     /* 🔽 Tighter spacing */
  color: #111;
  line-height: 1.4;
}

.why-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 40px;    /* Space above chevron circle */
}

.why-action {
  position: absolute;
  bottom: 24px;
  right: 24px;
}

.why-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #53CAFC;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.why-circle:hover {
  background-color: #3bb0e0;
  cursor: pointer;
}

.chevron {
  width: 16px;
  height: 16px;
}






















/* Section */
.know-section {
  background-color: #fff;
  padding: 100px 0;
  display: flex;
  justify-content: center;
}

.know-content {
  width: 100%;
}

/* Headline - same style as why */
.know-headline {
  font-size: 3.5rem;
  font-weight: 900;
  color: #111;
  margin: 0 0 40px 100px;
  font-family: 'Satoshi', sans-serif;
  text-align: left;
}

/* Scroll Wrapper */
.know-scroll-wrapper {
  width: 100%;
  overflow-x: auto;
  position: relative;
}

/* Scroll Area */
.know-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 100px;
  padding: 40px 0;
  padding-left: 100px;
  min-width: 100%;
  box-sizing: border-box;
}

/* Scroll End Spacer */
.know-scroll-end-spacer {
  flex: 0 0 auto;
  width: 100px;
  height: 1px;
}

.know-card {
  flex: 0 0 auto;      /* Prevent shrink */
  width: 280px;        /* Consistent width */
  height: 520px;       /* Consistent height */
  background-color: transparent;
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  scroll-snap-align: start;
}


.know-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}


/* Hide Scrollbar */
.know-scroll::-webkit-scrollbar {
  display: none;
}
.know-scroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}


.know-tagline {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 900;
  color: #111;
  margin-top: 60px;
  padding: 0 20px;
  font-family: 'Satoshi', sans-serif;
}

.blue-text {
  color: #53CAFC;
}

.gradient-text {
  background: linear-gradient(to right, #53CAFC, #FEE0FF);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}


.know-images {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px; /* spacing between stacked images */
  margin-top: 60px;
}

.know-images img {
  width: 90%;
  max-width: 1200px;
  border-radius: 24px;
  object-fit: cover;
}



/* ============================= */
/* 📱 HIDE KNOW SECTION ON PHONE */
/* ============================= */

@media (max-width: 768px) {

  .know-section {
    display: none !important;
  }




/* ============================= */
/* 📱 KNOW MOVE GEAR 2.0 */
/* ============================= */

@media (max-width: 768px) {

  .know-section-2 {
    padding: 60px 20px 80px 20px;
    text-align: center;
  }

  .know-content-2 {
    width: 100%;
  }

  .know-headline-2 {
    font-size: 2.1rem;
    font-weight: 900;
    margin: 0 0 30px 0;
    text-align: center;
  }

  /* 🔥 Light mockup under 2.0 headline */
  .know-mockup-2 {
    width: 85%;
    max-width: 320px;
    height: auto;
    margin: 0 auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.08));
  }

  /* WHY SECTION HEADLINE – LARGER */

  .why-headline {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    margin: 0 0 16px 0;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* VIEW ALL LINK – CENTERED UNDER HEADLINE */

  .why-link-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 24px 0;
    padding: 0 !important;
  }

  .why-link {
    display: inline-block;
    text-align: center;
  }

}
}








/*creator section*/


.creator-section {
  background-color: #f5f5f5; /* Light grey */
  padding: 100px 0;
  display: flex;
  justify-content: center;
}

.creator-content {
  width: 100%;
}

.creator-headline {
  font-size: 3.5rem;
  font-weight: 900;
  color: #111;
  margin: 0 0 60px 100px;
  font-family: 'Satoshi', sans-serif;
  text-align: left;
}

/* Side-by-side images */
.creator-images {
  display: flex;
  justify-content: center;
  gap: 24px; /* Slimmer gap */
  flex-wrap: wrap;
  padding: 0 80px;
  box-sizing: border-box;
}

.creator-images img {
  flex: 1 1 48%;
  max-width: 700px;
  border-radius: 24px;
  object-fit: cover;
  width: 100%;
}

.creator-unique {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 200px 20px 0;
  box-sizing: border-box;
}

/* Brighter and sharper blur */
.blur-overlay {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 340px;
  height: 340px;
  background: #A3FFFC; /* ✅ new color */
  filter: blur(110px);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.unique-headline {
  font-size: 3rem;
  font-weight: 900;
  color: #111;
  margin-bottom: 40px;
  font-family: 'Satoshi', sans-serif;
  text-align: left;               /* ✅ now left-aligned */
  width: 100%;
  max-width: 1440px;              /* Match white box width */
  padding-left: 20px;             /* Add left spacing */
  position: relative;
  z-index: 1;
}


/* ===================================== */
/* 📱 CREATOR SECTION – iOS WHITE + MOCKUP */
/* ===================================== */

@media (max-width: 768px) {

  /* Make section white */
  .creator-section {
    background-color: #ffffff;
    padding: 90px 20px 70px 20px;
    text-align: center;
    position: relative;
  }

  /* Inject mockup ABOVE headline */
  .creator-content::before {
    content: "";
    display: block;
    width: 85%;
    max-width: 320px;
    height: 380px;
    margin: 0 auto 50px auto;

    background-image: url("mockup100.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  /* Center headline on phone */
  .creator-headline {
    font-size: 2.2rem;
    font-weight: 900;
    text-align: center;
    margin: 0 0 40px 0;
    padding: 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
  }

}









































.unique-box {
  width: 100%;
  max-width: 1720px;               /* ⬆️ was 1600px */
  background-color: white;
  border-radius: 44px;             /* ⬆️ softer, premium */
  box-shadow: 0 16px 48px rgba(0,0,0,0.09);
  padding: 100px 120px;            /* ⬆️ more internal space */
  box-sizing: border-box;
  position: relative;
  z-index: 1;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 100px;                      /* ⬆️ more separation */

  transition: min-height 0.3s ease;
}

/* Left column: text block */
.unique-left {
  flex: 1.2;                             /* ⬆️ More space for text */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 760px;                     /* ⬆️ Wider copy column */
}


/* Right column: images */
.unique-right {
  flex: 1;
  display: flex;
  justify-content: center;       /* 🔄 Centered but balanced */
  align-items: center;
  gap: 48px;                      /* 🧊 Tighter spacing between images */
  flex-wrap: nowrap;             /* ✅ Ensures side-by-side layout */
  padding-left: 20px;            /* ➡️ Subtle right shift */
}


/* Image styles */
.unique-img {
  width: auto;
  object-fit: cover;
  border-radius: 28px;
  height: auto;
}

.unique-img.phone {
  max-width: 480px;     /* 🚀 Major width boost */
  max-height: 800px;    /* 🏔️ Tall as it gets */
}



.unique-img.tablet {
  max-width: 600px;                /* ⬆️ bigger hero image */
  max-height: 400px;
}

/* Headline inside the box */
.unique-subheadline {
  font-size: 2.2rem;               /* ⬆️ stronger hierarchy */
  font-weight: 700;
  color: #111;
  margin: 0 0 18px 0;
  font-family: 'Satoshi', sans-serif;
}

/* Paragraph text */
.unique-text {
  font-size: 1.1rem;               /* ⬆️ improved readability */
  color: #555;
  line-height: 1.75;
  margin: 0 0 36px 0;
  font-family: 'Satoshi', sans-serif;
  max-width: 100%;
}

/* Hidden toggle paragraphs */
.unique-hidden {
  display: none !important;
}

/* Toggle headline buttons */
.toggle-headline {
  background: none;
  border: none;
  font-size: 1.85rem;              /* ⬆️ matches scale */
  font-weight: 700;
  color: #111;
  font-family: 'Satoshi', sans-serif;
  cursor: pointer;
  margin: 0;
  padding: 0;
}

.toggle-headline:hover {
  color: #53CAFC;
}

/* Divider line */
.unique-divider {
  width: 100%;
  max-width: 500px;                /* ⬆️ longer divider */
  height: 1px;
  background-color: #53CAFC;
  margin: 24px 0;
  border: none;
}


/* Blur overlay */
.blur-overlay {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 320px;
  background: #FEE0FF;
  filter: blur(100px);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}




/* ===================================== */
/* 📱 UNIQUE BOX – PHONE OPTIMISED */
/* ===================================== */

@media (max-width: 768px) {

  /* Remove rectangle look */
  .unique-box {
    flex-direction: column;
    align-items: center;
    gap: 50px;

    padding: 40px 20px;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }

  /* Left column */
  .unique-left {
    align-items: center;
    text-align: center;
    max-width: 100%;
  }

  /* Main headline */
  .unique-headline {
    font-size: 1.7rem;
    text-align: center;
    padding-left: 0;
    margin-bottom: 30px;

    white-space: normal;
    line-height: 1.25;
    letter-spacing: -0.4px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  /* 🔥 Images side-by-side */
  .unique-right {
    flex-direction: row;          /* ← changed */
    justify-content: center;
    align-items: center;
    gap: 20px;                    /* tighter spacing */
    padding-left: 0;
    width: 100%;
  }

  /* Image sizing for 2-column layout */
  .unique-img {
    width: 45%;                   /* side-by-side fit */
    max-width: 160px;
    border-radius: 20px;
  }

  .unique-img.phone,
  .unique-img.tablet {
    max-height: none;
  }

  /* Headline inside box */
  .unique-subheadline {
    font-size: 1.5rem;
  }

  /* Paragraph text */
  .unique-text {
    font-size: 1rem;
    line-height: 1.7;
  }

  /* Divider */
  .unique-divider {
    max-width: 140px;
    height: 2px;
    margin: 22px auto;
    border-radius: 4px;
  }

}














/* 🌟 Glass Bottom Footer Container */
.glass-bottom-footer {
  background: linear-gradient(
    135deg,
    rgba(83, 202, 252, 0.25),
    rgba(255, 255, 255, 0.1),
    rgba(83, 202, 252, 0.2)
  );
  backdrop-filter: blur(48px) saturate(250%);
  -webkit-backdrop-filter: blur(48px) saturate(250%);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 0 48px rgba(83, 202, 252, 0.35),
    inset 0 0 60px rgba(255, 255, 255, 0.08);
  padding: 100px 70px;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  z-index: 2;
  color: #B0B0B0;
  font-family: 'Satoshi', sans-serif;
  margin-top: 0;
  position: relative;
}

/* ✨ Shimmer Overlay */
.glass-bottom-footer::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 70%
  );
  animation: shimmerMove 8s infinite ease-in-out;
  z-index: 1;
  pointer-events: none;
}

/* 🏷 Top Title */
.footer-title {
  font-size: 2rem;
  font-weight: 700;
  color: black;
  margin-bottom: 50px;
  font-family: 'Satoshi', sans-serif;
  position: relative;
  z-index: 2;
}

/* 📦 Footer Layout */
.glass-footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.footer-col {
  min-width: 180px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-logobottom {
  width: 160px;
  margin: 40px auto 16px auto;
  display: block;
}

.footer-small-text {
  font-size: 0.9rem;
  color: #8f8f8f;
  margin: 6px 0;
  line-height: 1.4;
  text-align: center;
  margin-top: 10px;
}

.footer-small-text a {
  color: #8f8f8f;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-small-text a:hover {
  color: #53CAFC;
  text-decoration: underline;
}

/* 📰 Section Headlines */
.footer-headline {
  font-size: 1.2rem;
  font-weight: 600;
  color: black;
  margin-bottom: 12px;
  border-bottom: 1px solid #bdbdbd;
  padding-bottom: 6px;
  width: max-content;
}

/* 📋 Lists */
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin: 6px 0;
  font-size: 0.95rem;
  cursor: pointer;
  color: #8f8f8f;
  transition: color 0.3s ease;
}

.footer-list li a {
  color: #8f8f8f;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-list li a:hover {
  color: #53CAFC;
  text-decoration: underline;
}

/* 📧 Email */
.footer-email {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #8f8f8f;
}

/* 🌐 Social Icons */
.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.2s ease;
}

.footer-socials img:hover {
  opacity: 1;
  transform: scale(1.08);
}

/* 📱 QR Icon */
.qr-icon {
  width: 80px;
  height: auto;
  margin: 0 0 10px 0;
  display: block;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.download-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}

/* 🛒 Store Icons */
.store-icons {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}

.store-icons img {
  width: 105px;
  height: auto;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.store-icons img:hover {
  transform: scale(1.05);
}

.store-icons img[alt="WatchOS"] {
  border-radius: 12px;
  overflow: hidden;
}








/* ───────── iPhone Glass Bottom Footer (Left Aligned + Branding Bottom) ───────── */
@media (max-width: 768px) {

  .glass-bottom-footer {
    padding: 70px 24px;
  }

  .glass-footer-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
    text-align: left;
  }

  .footer-col {
    width: 100%;
    max-width: 100%;
    align-items: flex-start;
  }

  /* 🔥 Move logo + copyright column to bottom */
  .glass-footer-content .footer-col:first-child {
    order: 99;
    margin-top: 40px;
  }

  .footer-logobottom {
    width: 140px;
    margin: 40px 0 12px 0;
  }

  .footer-small-text {
    font-size: 0.85rem;
    text-align: left;
    margin-top: 6px;
  }

  /* Section Headlines */
  .footer-headline {
    font-size: 1.1rem;
    border-bottom: none;
    padding-bottom: 0;
  }

  /* Lists */
  .footer-list li {
    font-size: 0.9rem;
  }

  .footer-email {
    font-size: 0.9rem;
  }

  /* Social icons */
  .footer-socials {
    justify-content: flex-start;
  }

  /* Download Block */
  .download-block {
    align-items: flex-start;
    text-align: left;
  }

  .qr-icon {
    width: 70px;
  }

  .store-icons {
    justify-content: flex-start;
    gap: 12px;
  }

  .store-icons img {
    width: 95px;
  }

}
