:root {
  --pink: #ff5eab;
  --pink-deep: #fc3fa0;
  --pink-soft: #ffd3e7;
  --pink-bg: #fff0f7;
  --bg: #fff8fb;
  --card: #ffffff;
  --border: rgba(252, 95, 181, 0.14);
  --border-strong: rgba(252, 95, 181, 0.28);
  --text: #1a1625;
  --text-soft: #4a4458;
  --muted: #8a8396;
  --white: #ffffff;
  --shadow-sm: 0 4px 14px rgba(252, 63, 160, 0.08);
  --shadow: 0 20px 48px rgba(252, 63, 160, 0.12);
  --shadow-lg: 0 30px 80px rgba(252, 63, 160, 0.22);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3 {
  color: var(--text);
  letter-spacing: -0.02em;
  font-weight: 800;
}

.wrap {
  width: min(1180px, 92vw);
  margin-inline: auto;
  position: relative;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}

.orb-1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(255, 94, 171, 0.35), transparent 70%);
  top: -160px;
  right: -120px;
}

.orb-2 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 211, 231, 0.8), transparent 70%);
  top: 40%;
  left: -180px;
}

.orb-3 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(252, 63, 160, 0.18), transparent 70%);
  bottom: -120px;
  right: 10%;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  background: rgba(252, 63, 160, 0.1);
  color: var(--pink-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
}

.eyebrow.white {
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.top {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  background: rgba(255, 248, 251, 0.72);
  border-bottom: 1px solid var(--border);
}

.top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.01em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
}

.nav a {
  position: relative;
  transition: color 0.2s;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--pink-deep);
  border-radius: 2px;
  transition: width 0.25s ease;
}

.nav a:hover {
  color: var(--pink-deep);
}

.nav a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  font-family: inherit;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, #ff7dbd 0%, var(--pink) 40%, var(--pink-deep) 100%);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(252, 63, 160, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 16px 40px rgba(252, 63, 160, 0.5);
}

.btn-ghost {
  background: var(--white);
  border-color: var(--border-strong);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
  border-color: var(--pink);
  color: var(--pink-deep);
}

.btn-light {
  background: var(--white);
  color: var(--pink-deep);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.14);
}

/* ---------- HERO ---------- */
.hero {
  padding: 80px 0 72px;
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--border-strong);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink-deep);
  box-shadow: 0 0 0 5px rgba(252, 63, 160, 0.18);
  animation: pulse 2s infinite;
}

.hero h1 {
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  line-height: 1.08;
  margin: 0 0 20px;
}

.gradient-text {
  background: linear-gradient(90deg, #ff7dbd, var(--pink-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  margin: 0 0 32px;
  color: var(--text-soft);
  font-size: 1.08rem;
  max-width: 44ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  margin-top: 40px;
  padding: 18px 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-num {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border-strong);
}

/* Phones */
.phone-stack {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-glow {
  position: absolute;
  inset: 10% 8%;
  background: radial-gradient(circle at 50% 50%, rgba(252, 63, 160, 0.3), transparent 65%);
  filter: blur(40px);
  z-index: 0;
}

.phone-card {
  position: relative;
  background: linear-gradient(180deg, #1a1625, #2b1e35);
  border: 8px solid #1a1625;
  border-radius: 44px;
  padding: 0;
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  width: min(100%, 340px);
  overflow: hidden;
  z-index: 2;
}

.phone-card.main-phone {
  transform: rotate(-3deg);
}

.phone-card.floating {
  position: absolute;
  right: -12px;
  bottom: 20px;
  width: 200px;
  transform: rotate(10deg);
  z-index: 3;
}

.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #0d0817;
  border-radius: 0 0 14px 14px;
  z-index: 5;
}

.mini-top {
  position: absolute;
  top: 44px;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 4;
}

.mini-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(252, 63, 160, 0.95);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 6px 16px rgba(252, 63, 160, 0.5);
}

.pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--white);
  animation: pulse-dot 1.4s ease infinite;
}

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

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 5px rgba(252, 63, 160, 0.18);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(252, 63, 160, 0);
  }
}

.screen {
  width: 100%;
  aspect-ratio: 9 / 18;
  object-fit: cover;
  background: linear-gradient(160deg, #1a1a1a, #3a2a35 55%, #fc5fb5);
  display: block;
}

.screen.large {
  min-height: 460px;
}

.floating-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--white);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow);
  z-index: 4;
  animation: float 4s ease-in-out infinite;
}

.chip-live {
  top: 12%;
  left: -4%;
  color: var(--pink-deep);
}

.chip-live .chip-ico {
  color: #ff3b5c;
  font-size: 10px;
}

.chip-gift {
  bottom: 18%;
  left: -6%;
  animation-delay: -2s;
}

.chip-gift img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ---------- SECTIONS ---------- */
.section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.tint {
  background: linear-gradient(180deg, transparent, var(--pink-bg) 30%, var(--pink-bg) 70%, transparent);
}

.section h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin: 0 0 14px;
  line-height: 1.15;
}

.section-head {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.sub {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
}

.sub.white {
  color: rgba(255, 255, 255, 0.9);
}

/* ---------- FEATURE CARDS ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow-sm);
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
}

.card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--pink-bg), #fff);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-media img {
  transform: scale(1.05);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14.5px;
}

/* ---------- SHOWCASE ---------- */
.showcase {
  display: grid;
  gap: 22px;
}

.showcase-card {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 32px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  align-items: center;
}

.showcase-card.reverse {
  grid-template-columns: 1.35fr 1fr;
}

.showcase-card.reverse .showcase-copy {
  order: 2;
}

.showcase-copy h3 {
  margin: 10px 0 10px;
  font-size: 1.45rem;
}

.showcase-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
}

.badge {
  display: inline-block;
  padding: 5px 12px;
  background: var(--pink-bg);
  color: var(--pink-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
}

.duo,
.trio,
.quad {
  display: grid;
  gap: 14px;
}

.duo {
  grid-template-columns: repeat(2, 1fr);
}

.trio {
  grid-template-columns: repeat(3, 1fr);
}

.quad {
  grid-template-columns: repeat(2, 1fr);
}

.duo img,
.trio img,
.quad img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 16px;
  background: var(--pink-bg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s;
}

.duo img:hover,
.trio img:hover,
.quad img:hover {
  transform: translateY(-4px) scale(1.02);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.chip {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--pink-bg);
  color: var(--pink-deep);
  font-size: 13px;
  font-weight: 600;
}

/* ---------- STRIP ---------- */
.strip {
  position: relative;
  background: linear-gradient(120deg, #ff7dbd 0%, var(--pink) 45%, var(--pink-deep) 100%);
  color: var(--white);
  padding: 56px 0;
  overflow: hidden;
  z-index: 1;
}

.strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.25), transparent 50%);
  pointer-events: none;
}

.strip-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
  position: relative;
}

.strip h2 {
  margin: 0 0 12px;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  color: var(--white);
  line-height: 1.25;
}

.strip p {
  margin: 0;
  opacity: 0.95;
}

.coin-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  align-items: end;
}

.coin-row img {
  width: 100%;
  max-width: 72px;
  margin-inline: auto;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.25));
  animation: bounce 3s ease-in-out infinite;
}

.coin-row img:nth-child(2) {
  animation-delay: -0.3s;
}
.coin-row img:nth-child(3) {
  animation-delay: -0.6s;
}
.coin-row img:nth-child(4) {
  animation-delay: -0.9s;
}
.coin-row img:nth-child(5) {
  animation-delay: -1.2s;
}
.coin-row img:nth-child(6) {
  animation-delay: -1.5s;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* ---------- GALLERY ---------- */
.asset-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.asset-tile {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
  position: relative;
}

.asset-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.asset-tile img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  transition: transform 0.4s;
}

.asset-tile:hover img {
  transform: scale(1.05);
}

.asset-tile.wide {
  grid-column: span 2;
}

.asset-tile.tall {
  grid-row: span 2;
}

.asset-tile.tall img {
  height: 380px;
}

.asset-tile figcaption {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  text-align: center;
}

/* ---------- CTA ---------- */
.cta-box {
  position: relative;
  padding: 60px 48px;
  background: linear-gradient(135deg, #ff7dbd 0%, var(--pink) 40%, var(--pink-deep) 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.35), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.2), transparent 45%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-icon {
  width: 80px;
  height: 80px;
  border-radius: 22px;
  margin-bottom: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.cta-content h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  color: var(--white);
  line-height: 1.1;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 28px;
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 40px 0 40px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.footer-brand span {
  font-size: 18px;
  color: var(--text);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-weight: 500;
}

.footer-links a {
  color: var(--text-soft);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--pink-deep);
}

.footer-copy {
  color: var(--muted);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .nav {
    display: none;
  }

  .phone-stack {
    min-height: 520px;
    justify-self: stretch;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .showcase-card,
  .showcase-card.reverse {
    grid-template-columns: 1fr;
  }

  .showcase-card.reverse .showcase-copy {
    order: 0;
  }

  .strip-grid {
    grid-template-columns: 1fr;
  }

  .asset-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .asset-tile.wide,
  .asset-tile.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .asset-tile.tall img {
    height: 180px;
  }

  .cta-box {
    padding: 44px 24px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 48px 0 40px;
  }

  .section {
    padding: 56px 0;
  }

  .hero-stats {
    gap: 14px;
    padding: 14px 18px;
  }

  .phone-card.floating {
    width: 150px;
    right: -4%;
  }

  .floating-chip {
    font-size: 11px;
    padding: 8px 12px;
  }

  .coin-row {
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
