/* ===== Reset & base ===== */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 300;
  letter-spacing: -0.01em;
  background: #cc6e93;
  background-image: radial-gradient(1200px 700px at 50% -10%, #e08bae 0%, #cc6e93 45%, #ad557a 100%);
  background-attachment: fixed;
  color: #fff7f9;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; color: inherit; cursor: pointer; }
ul { list-style: none; }

:root {
  --bg: #cc6e93;
  --glass: rgba(255,255,255,0.07);
  --glass-2: rgba(255,255,255,0.10);
  --line: rgba(255,255,255,0.14);
  --line-2: rgba(255,255,255,0.22);
  --text: #fff7f9;
  --muted: rgba(255,247,249,0.6);
  --muted-2: rgba(255,247,249,0.78);
  --pink: #ffd6df;
  --pink-2: #ffc1ce;
  --rose: #ffaabd;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 24px 48px;
  overflow: hidden;
}
.hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center top, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.45) 100%);
}
.hero__fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 55%;
  background: linear-gradient(
    to bottom,
    rgba(204,110,147,0) 0%,
    rgba(204,110,147,0.35) 35%,
    rgba(204,110,147,0.85) 75%,
    var(--bg) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 540px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: heroIn 1.2s ease-out both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__handle {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 14px;
  font-weight: 400;
}
.hero__name {
  font-size: clamp(2.6rem, 7vw, 4.2rem);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 1;
  color: #fff;
  margin-bottom: 14px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.hero__tagline {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  font-weight: 300;
}

.hero__socials {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
  justify-content: center;
}
.hero__social {
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  opacity: 0.92;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.hero__social:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.hero__scroll {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ===== Section base ===== */
.section {
  padding: 120px 24px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.section__head {
  text-align: center;
  margin-bottom: 56px;
}
/* ===== About ===== */
#about { padding: 20px 24px 0; }
.about__content {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}
.about__text {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.01em;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 18px;
  font-weight: 400;
}
.section__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 14px;
  color: #fff;
}
.section__sub {
  font-size: 0.95rem;
  color: var(--muted);
  letter-spacing: -0.005em;
  max-width: 520px;
  margin: 0 auto;
  font-weight: 300;
}

/* ===== Tabs (analytics) ===== */
.tabs {
  position: relative;
  display: flex;
  gap: 4px;
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px;
  margin: 0 auto 32px;
  width: fit-content;
}
.tab {
  position: relative;
  z-index: 1;
  padding: 10px 22px;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--muted);
  border-radius: 999px;
  transition: color 0.3s ease;
}
.tab.is-active { color: #5e2c3d; }
.tab__indicator {
  position: absolute;
  top: 5px;
  left: 5px;
  height: calc(100% - 10px);
  background: var(--pink);
  border-radius: 999px;
  z-index: 0;
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1), width 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

/* ===== Slider ===== */
.slider {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.slider__track {
  display: flex;
  width: 300%;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
.stat-card {
  width: calc(100% / 3);
  flex-shrink: 0;
  padding: 40px;
}
.stat-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.stat-card__platform {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.stat-card__handle {
  font-size: 0.82rem;
  color: var(--muted);
  transition: color 0.2s ease;
}
.stat-card__handle:hover { color: var(--pink); }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}
.stat {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 20px;
  transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}
.stat:hover {
  border-color: var(--line-2);
  background: var(--glass-2);
  transform: translateY(-2px);
}
.stat__label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.stat__value {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.stat__delta {
  font-size: 0.74rem;
  color: var(--pink);
  letter-spacing: -0.005em;
}

.bars { padding-top: 8px; }
.bars__title {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.bar {
  display: grid;
  grid-template-columns: 130px 1fr 50px;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 0.85rem;
}
.bar__label { color: var(--muted-2); }
.bar__track {
  height: 6px;
  background: rgba(255,255,255,0.12);
  border-radius: 999px;
  overflow: hidden;
}
.bar__fill {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--pink), var(--rose));
  border-radius: 999px;
  transition: width 1.2s cubic-bezier(0.65, 0, 0.35, 1);
}
.bar__pct {
  text-align: right;
  font-variant-numeric: tabular-nums;
  color: var(--muted-2);
}

.dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 24px;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}
.dot.is-active {
  background: var(--pink);
  width: 22px;
  border-radius: 999px;
}

/* ===== Brands ===== */
#brands { padding: 40px 24px; }
.brands__label {
  text-align: center;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  text-transform: none;
  color: #fff;
  opacity: 1;
  margin-bottom: 32px;
}
.brands__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px 36px;
  max-width: 420px;
  margin: 0 auto;
  padding: 0 24px;
}
.brand-logo {
  height: 16px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.55;
  transition: opacity 0.3s;
}
.brand-logo:hover {
  opacity: 1;
}

/* ===== Content categories ===== */
#content .section__head { margin-bottom: 24px; }
#content .section__sub { padding: 0 36px; }
#content .phone-slide__views { display: none; }
#viral .section__head { margin-bottom: 24px; }
#viral .section__sub { padding: 0 36px; }
.cat-tabs {
  display: flex;
  gap: 4px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.cat-tab {
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--muted-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.25s ease;
}
.cat-tab:hover { color: var(--text); border-color: var(--line-2); background: var(--glass-2); }
.cat-tab.is-active {
  color: #5e2c3d;
  background: var(--pink);
  border-color: var(--pink);
}

.cat-slider {
  overflow: hidden;
  border-radius: 24px;
}
.cat-track {
  display: flex;
  width: 500%;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
.cat-panel {
  width: calc(100% / 5);
  flex-shrink: 0;
  padding: 4px;
}

/* ===== Phone carousel ===== */
.phone-carousel {
  overflow: hidden;
  position: relative;
  padding: 10px 0 6px;
  cursor: grab;
}
.phone-carousel:active { cursor: grabbing; }
.phone-carousel__track {
  display: flex;
  gap: 16px;
  will-change: transform;
}
.phone-slide {
  flex: 0 0 55%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0.5;
  transform: scale(0.88);
}
.phone-slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.phone-mockup {
  aspect-ratio: 9/19;
  width: 100%;
  border-radius: 34px;
  border: 6px solid #111;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.22),
    0 2px 6px rgba(0, 0, 0, 0.14),
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.18);
}
.phone-mockup::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 38%;
  height: 18px;
  background: #0a0a0a;
  border-radius: 999px;
  z-index: 3;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
}
.phone-mockup video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* Sound indicator */
.phone-slide.is-active .phone-mockup::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M11 5L6 9H2v6h4l5 4V5z'/%3E%3Cline x1='23' y1='9' x2='17' y2='15' stroke='white' stroke-width='2'/%3E%3Cline x1='17' y1='9' x2='23' y2='15' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 26px;
  height: 26px;
  padding: 5px;
  box-sizing: border-box;
  background: rgba(0,0,0,0.4);
  border-radius: 50%;
  z-index: 4;
  pointer-events: none;
  transition: opacity 0.3s;
}
.phone-slide.is-active.is-unmuted .phone-mockup::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M11 5L6 9H2v6h4l5 4V5z'/%3E%3Cpath d='M15.54 8.46a5 5 0 010 7.07' stroke='white' stroke-width='2' fill='none'/%3E%3Cpath d='M19.07 4.93a10 10 0 010 14.14' stroke='white' stroke-width='2' fill='none'/%3E%3C/svg%3E");
}
.phone-slide__views {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--muted-2);
  font-weight: 400;
  letter-spacing: 0.01em;
}
.phone-carousel__hint {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-top: 18px;
  opacity: 0.6;
  animation: hintPulse 2.4s ease-in-out infinite;
}
@keyframes hintPulse {
  0%,100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

/* ===== Rates ===== */
.rate-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.rate-card {
  background: var(--glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 24px;
  transition: all 0.3s ease;
}
.rate-card:hover {
  border-color: var(--line-2);
  background: var(--glass-2);
  transform: translateY(-3px);
}
.rate-card__platform {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 6px;
  font-weight: 500;
}
.rate-card__tagline {
  font-size: 0.74rem;
  color: var(--muted);
  margin-bottom: 18px;
}
.rate-card__list { margin-top: 12px; }
.rate-card__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.86rem;
}
.rate-card__list li:last-child { border-bottom: none; }
.rate-card__list li > span:first-child { color: var(--muted-2); }
.rate-card__list li > span:last-child {
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.rate-card--featured {
  background: linear-gradient(160deg, rgba(255,255,255,0.18), rgba(255,255,255,0.06));
  border-color: rgba(255,255,255,0.3);
}
.rate-card--featured .rate-card__list li > span:first-child { color: #fff; }
.rate-card__price {
  margin-top: 18px;
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: -0.04em;
  color: var(--pink);
}

/* ===== Contact ===== */
.section--contact {
  padding-bottom: 60px;
}
.contact {
  text-align: center;
  padding: 80px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), transparent);
}
.contact__title {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.contact__sub {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 32px;
}
.contact__btn {
  display: inline-block;
  padding: 16px 36px;
  background: #fff;
  color: #5e2c3d;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: all 0.25s ease;
}
.contact__btn:hover {
  background: var(--pink);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,255,255,0.2);
}
.contact__socials {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  font-size: 0.85rem;
  color: var(--muted);
}
.contact__socials a {
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}
.contact__socials a:hover { color: var(--pink); }

.footer {
  padding: 32px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.03em;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-panel { padding: 4px 0; }
  .rate-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card { padding: 28px 22px; }
  .cat-panel__intro { padding: 28px; }
  .bar { grid-template-columns: 110px 1fr 44px; gap: 12px; font-size: 0.8rem; }
}
@media (max-width: 600px) {
  .section { padding: 80px 18px; }
  .hero { padding: 0 18px 36px; }
  .hero__name { font-size: 2.4rem; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .stat { padding: 18px 16px; }
  .stat__value { font-size: 1.5rem; }
  .rate-grid { grid-template-columns: 1fr; }
  .phone-slide { flex: 0 0 60%; }
  .footer { flex-direction: column; gap: 6px; text-align: center; }
  .tab { padding: 9px 16px; font-size: 0.8rem; }
  .cat-tab { padding: 9px 14px; font-size: 0.78rem; }
  .stat-card__head { flex-direction: column; align-items: flex-start; gap: 10px; }
}
