:root {
  --pink: #ff6eb4;
  --rose: #ff3d8b;
  --purple: #b44fff;
  --deep: #7b2fff;
  --bg: #0d0010;
  --card: rgba(255, 255, 255, 0.04);
  --glow-p: rgba(180, 79, 255, 0.35);
  --glow-r: rgba(255, 61, 139, 0.35);
  --white: #fff5fc;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: "Nunito", sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* ── Custom cursor ── */
.cursor {
  width: 18px;
  height: 18px;
  border: 2px solid var(--pink);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transition:
    transform 0.15s ease,
    background 0.15s ease;
  mix-blend-mode: screen;
}
.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--rose);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
}
body:has(a:hover) .cursor,
body:has(button:hover) .cursor {
  transform: scale(2.5);
  background: rgba(255, 110, 180, 0.15);
}

/* ── Animated mesh background ── */
.mesh {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 20% 10%,
      rgba(123, 47, 255, 0.45) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 50% at 80% 80%,
      rgba(255, 61, 139, 0.4) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 50% 40% at 60% 30%,
      rgba(255, 110, 180, 0.25) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 90% 70% at 10% 90%,
      rgba(180, 79, 255, 0.2) 0%,
      transparent 60%
    );
  animation: meshMove 14s ease-in-out infinite alternate;
}
@keyframes meshMove {
  0% {
    filter: hue-rotate(0deg) brightness(1);
  }
  50% {
    filter: hue-rotate(15deg) brightness(1.08);
  }
  100% {
    filter: hue-rotate(-10deg) brightness(1.03);
  }
}

/* grain overlay */
.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
}

/* floating hearts */
.hearts {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.heart {
  position: absolute;
  bottom: -60px;
  font-size: 1.4rem;
  opacity: 0;
  animation: floatHeart linear infinite;
}
@keyframes floatHeart {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.55;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-110vh) rotate(360deg);
    opacity: 0;
  }
}

/* ── Layout wrapper ── */
.page {
  position: relative;
  z-index: 2;
}

/* ── HEADER / NAV ── */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6vw;
  border-bottom: 1px solid rgba(255, 110, 180, 0.12);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 0, 16, 0.55);
}
.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.02em;
}
.logo span {
  font-style: italic;
}
.nav-cta {
  background: linear-gradient(135deg, var(--rose), var(--purple));
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 26px;
  font-family: "Nunito", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: none;
  box-shadow: 0 0 18px var(--glow-r);
  transition:
    box-shadow 0.3s,
    transform 0.2s;
  text-decoration: none;
}
.nav-cta:hover {
  box-shadow: 0 0 35px var(--glow-r);
  transform: translateY(-2px);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 80px 6vw 60px;
}
@media (max-width: 780px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 50px;
  }
  .hero-visual {
    order: -1;
  }
}

.hero-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  border: 1px solid rgba(255, 110, 180, 0.35);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
  animation: fadeUp 0.6s ease both;
}
.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.12;
  font-weight: 700;
  margin-bottom: 22px;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(90deg, var(--pink) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 245, 252, 0.72);
  max-width: 480px;
  margin-bottom: 38px;
  animation: fadeUp 0.7s 0.2s ease both;
}
@media (max-width: 780px) {
  .hero-sub {
    margin: 0 auto 38px;
  }
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--rose) 0%, var(--purple) 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 60px;
  padding: 18px 42px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow:
    0 0 40px var(--glow-r),
    0 0 80px rgba(180, 79, 255, 0.25);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  cursor: none;
  animation:
    fadeUp 0.7s 0.3s ease both,
    pulse 3s 1s ease-in-out infinite;
}
.hero-btn:hover {
  transform: scale(1.06);
  box-shadow:
    0 0 65px var(--glow-r),
    0 0 100px rgba(180, 79, 255, 0.4);
}
@keyframes pulse {
  0%,
  100% {
    box-shadow:
      0 0 40px var(--glow-r),
      0 0 80px rgba(180, 79, 255, 0.25);
  }
  50% {
    box-shadow:
      0 0 60px var(--glow-r),
      0 0 120px rgba(180, 79, 255, 0.45);
  }
}

.btn-icon {
  font-size: 1.35rem;
}
.hero-note {
  margin-top: 16px;
  font-size: 0.82rem;
  color: rgba(255, 245, 252, 0.45);
  animation: fadeUp 0.7s 0.4s ease both;
}

/* ── HERO VISUAL ── */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeUp 0.9s 0.2s ease both;
}

.phone-mockup {
  width: min(320px, 80vw);
  background: linear-gradient(160deg, #1a0025, #0d0017);
  border: 1.5px solid rgba(255, 110, 180, 0.3);
  border-radius: 40px;
  padding: 20px 16px 24px;
  box-shadow:
    0 0 60px rgba(180, 79, 255, 0.3),
    0 30px 80px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 2;
}
.phone-notch {
  width: 70px;
  height: 8px;
  background: rgba(255, 110, 180, 0.3);
  border-radius: 4px;
  margin: 0 auto 18px;
}
.chat-bubble {
  border-radius: 18px;
  padding: 12px 16px;
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 10px;
  max-width: 65%;
}
.chat-bubble.bot {
  background: linear-gradient(
    135deg,
    rgba(180, 79, 255, 0.25),
    rgba(255, 61, 139, 0.2)
  );
  border: 1px solid rgba(255, 110, 180, 0.2);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.chat-bubble.user {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom-right-radius: 4px;
  margin-left: auto;
  text-align: right;
}
.chat-photo {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 10px;
  position: relative;
  height: 160px;
  background: linear-gradient(135deg, #3a0050 0%, #1a0035 50%, #2d005a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-photo-inner {
  text-align: center;
}
.chat-photo-emoji {
  font-size: 3.5rem;
  display: block;
}
.chat-photo-text {
  font-size: 0.72rem;
  color: rgba(255, 110, 180, 0.7);
  margin-top: 6px;
}
.photo-blur {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(14px);
  background: rgba(13, 0, 16, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
}
.unlock-hint {
  text-align: center;
  font-size: 0.8rem;
  color: var(--pink);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.unlock-hint span {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.typing-indicator {
  display: flex;
  gap: 5px;
  padding: 12px 16px;
  background: linear-gradient(
    135deg,
    rgba(180, 79, 255, 0.2),
    rgba(255, 61, 139, 0.15)
  );
  border: 1px solid rgba(255, 110, 180, 0.15);
  border-radius: 18px 18px 18px 4px;
  width: fit-content;
  margin-top: 4px;
}
.dot {
  width: 7px;
  height: 7px;
  background: var(--pink);
  border-radius: 50%;
  animation: typingDot 1.2s infinite;
}
.dot:nth-child(2) {
  animation-delay: 0.2s;
}
.dot:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes typingDot {
  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  30% {
    transform: translateY(-5px);
    opacity: 1;
  }
}

/* floating badges around phone */
.badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 110, 180, 0.2);
  border-radius: 50px;
  padding: 10px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}
.badge-1 {
  top: 8%;
  left: 5%;
  animation-delay: 0s;
}
.badge-2 {
  top: 50%;
  right: 5%;
  animation-delay: 1.2s;
}
.badge-3 {
  bottom: 10%;
  left: 5%;
  animation-delay: 2.2s;
}
@media (max-width: 780px) {
  .badge {
    display: none;
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* glow ring behind phone */
.phone-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(180, 79, 255, 0.3) 0%,
    transparent 70%
  );
  animation: glowPulse 3s ease-in-out infinite alternate;
  z-index: 1;
}
@keyframes glowPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.15);
    opacity: 1;
  }
}

/* ── FEATURES ── */
.section {
  padding: 90px 6vw;
  position: relative;
}
.section-label {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 14px;
  font-weight: 700;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.2;
}
.section-title em {
  font-style: italic;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.feat-card {
  background: var(--card);
  border: 1px solid rgba(255, 110, 180, 0.12);
  border-radius: 24px;
  padding: 32px 28px;
  transition:
    transform 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 110, 180, 0.06),
    rgba(180, 79, 255, 0.04)
  );
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 24px;
}
.feat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 110, 180, 0.35);
  box-shadow: 0 0 30px rgba(255, 110, 180, 0.12);
}
.feat-card:hover::before {
  opacity: 1;
}
.feat-icon {
  font-size: 2.4rem;
  margin-bottom: 18px;
  display: block;
}
.feat-title {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.feat-desc {
  font-size: 0.9rem;
  color: rgba(255, 245, 252, 0.62);
  line-height: 1.65;
}

/* ── STEPS ── */
.steps-wrap {
  background: linear-gradient(
    135deg,
    rgba(180, 79, 255, 0.08),
    rgba(255, 61, 139, 0.06)
  );
  border: 1px solid rgba(255, 110, 180, 0.12);
  border-radius: 32px;
  padding: 60px 40px;
  backdrop-filter: blur(10px);
}
.steps {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 20px;
  position: relative;
}
.step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -10px;
  top: 28px;
  font-size: 1.4rem;
  color: rgba(255, 110, 180, 0.4);
}
@media (max-width: 600px) {
  .step:not(:last-child)::after {
    display: none;
  }
}
.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 auto 16px;
  box-shadow: 0 0 20px var(--glow-p);
}
.step-title {
  font-weight: 700;
  margin-bottom: 8px;
}
.step-desc {
  font-size: 0.85rem;
  color: rgba(255, 245, 252, 0.6);
  line-height: 1.55;
}

/* ── PREVIEW GALLERY ── */
.gallery {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.gallery::-webkit-scrollbar {
  display: none;
}
.gallery-card {
  flex: 0 0 260px;
  scroll-snap-align: center;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 110, 180, 0.15);
  position: relative;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #1e0030, #0d0018);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.gallery-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 40px rgba(255, 110, 180, 0.2);
}
.gallery-card-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  background: linear-gradient(160deg, #2a0045 0%, #150020 60%);
  filter: blur(0px);
}
.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 0, 16, 0.9) 0%, transparent 55%);
}
.gallery-card-info {
  position: relative;
  z-index: 2;
  padding: 20px;
  width: 100%;
  text-align: left;
}
.gc-name {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
}
.gc-tag {
  display: inline-block;
  font-size: 0.72rem;
  padding: 4px 12px;
  border-radius: 50px;
  margin-top: 6px;
  background: rgba(255, 110, 180, 0.18);
  border: 1px solid rgba(255, 110, 180, 0.3);
  color: var(--pink);
}
.gallery-card-blur {
  position: absolute;
  inset: 0;
  z-index: 3;
  backdrop-filter: blur(22px);
  background: rgba(13, 0, 16, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  transition: opacity 0.3s;
}
.gallery-card:hover .gallery-card-blur {
  opacity: 0;
}
.lock-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.lock-text {
  font-size: 0.85rem;
  color: rgba(255, 245, 252, 0.75);
  line-height: 1.5;
}

/* ── TESTIMONIALS ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.testi-card {
  background: var(--card);
  border: 1px solid rgba(255, 110, 180, 0.1);
  border-radius: 20px;
  padding: 26px;
  backdrop-filter: blur(8px);
  transition: border-color 0.3s;
}
.testi-card:hover {
  border-color: rgba(255, 110, 180, 0.3);
}
.testi-stars {
  color: var(--pink);
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.testi-text {
  font-size: 0.9rem;
  color: rgba(255, 245, 252, 0.75);
  line-height: 1.65;
  margin-bottom: 16px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.testi-name {
  font-weight: 700;
  font-size: 0.88rem;
}
.testi-meta {
  font-size: 0.75rem;
  color: rgba(255, 245, 252, 0.45);
}

/* ── BIG CTA ── */
.cta-section {
  text-align: center;
  padding: 100px 6vw;
  background: linear-gradient(
    135deg,
    rgba(180, 79, 255, 0.08),
    rgba(255, 61, 139, 0.06)
  );
  border-top: 1px solid rgba(255, 110, 180, 0.08);
  border-bottom: 1px solid rgba(255, 110, 180, 0.08);
}
.cta-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 18px;
  line-height: 1.15;
}
.cta-title em {
  font-style: italic;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta-sub {
  font-size: 1.1rem;
  color: rgba(255, 245, 252, 0.65);
  max-width: 520px;
  margin: 0 auto 46px;
  line-height: 1.7;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, var(--rose) 0%, var(--purple) 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 70px;
  padding: 22px 56px;
  font-size: 1.25rem;
  font-weight: 800;
  box-shadow:
    0 0 50px var(--glow-r),
    0 0 100px rgba(180, 79, 255, 0.3);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  cursor: none;
  letter-spacing: 0.01em;
}
.cta-btn:hover {
  transform: scale(1.07);
  box-shadow:
    0 0 80px var(--glow-r),
    0 0 140px rgba(180, 79, 255, 0.5);
}
.cta-badge {
  margin-top: 22px;
  display: inline-block;
  font-size: 0.82rem;
  color: rgba(255, 245, 252, 0.45);
}
.cta-badge b {
  color: var(--pink);
}

/* ── FOOTER ── */
footer {
  padding: 28px 6vw;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 110, 180, 0.07);
}
.footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 245, 252, 0.28);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-links a {
  font-size: 0.72rem;
  color: rgba(255, 245, 252, 0.25);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.footer-links a:hover {
  color: rgba(255, 110, 180, 0.6);
}

/* ── Animations ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 110, 180, 0.3);
  border-radius: 3px;
}

.tg-logo {
  width: 25px;
  height: 25px;
  filter: invert(1);
}