@font-face {
  font-family: 'Syne';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('fonts/SyneRegular.woff2') format('woff2'),
       url('fonts/SyneRegular.woff') format('woff');
}
@font-face {
  font-family: 'Syne';
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url('fonts/SyneMedium.woff2') format('woff2'),
       url('fonts/SyneMedium.woff') format('woff');
}
@font-face {
  font-family: 'Syne';
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url('fonts/SyneSemiBold.woff2') format('woff2'),
       url('fonts/SyneSemiBold.woff') format('woff');
}
@font-face {
  font-family: 'Syne';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('fonts/SyneBold.woff2') format('woff2'),
       url('fonts/SyneBold.woff') format('woff');
}
@font-face {
  font-family: 'Syne';
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  src: url('fonts/SyneExtraBold.woff2') format('woff2'),
       url('fonts/SyneExtraBold.woff') format('woff');
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

:root {
  --pink: #ff1f45;
  --pink-2: #ff3d78;
  --pink-bright: #ff2447;
  --text: #ffffff;
  --text-dim: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.08);
  --bg: #121216;
  --topbar-h: 64px;
  --font-display: 'Syne', 'Nunito', 'Montserrat', sans-serif;
  --font-head: 'Nunito', 'Montserrat', sans-serif;
}

html {
  scroll-behavior: smooth;
}

html, body {
  background: var(--bg);
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.page {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--bg);
}
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.hero {
  position: relative;
  overflow: hidden;
  height: 100vh;
  height: 100dvh;
  width: 100%;
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.9) 100%);
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.bg-glow {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(44% 30% at 0% 12%, rgba(255, 45, 116, 0.17), transparent 62%),
    radial-gradient(44% 30% at 100% 88%, rgba(255, 31, 90, 0.17), transparent 62%);
}

.topbar {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  width: 100%;
  max-width: 480px;
  padding: 12px 12px;
  padding-top: calc(12px + env(safe-area-inset-top));
}

.lang {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 8px 18px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  background: rgba(22, 20, 23, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
}

.lang svg {
  color: rgba(255, 255, 255, 0.58);
  flex-shrink: 0;
}

.hero {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: auto;
  min-height: 100dvh;
  overflow: hidden;
}

.bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bg-gif {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(9, 7, 8, 0.82) 0%,
      rgba(9, 7, 8, 0.60) 22%,
      rgba(11, 11, 13, 0.62) 46%,
      rgba(15, 15, 18, 0.82) 64%,
      rgba(18, 18, 22, 1) 84%,
      rgba(18, 18, 22, 1) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: calc(var(--topbar-h) + 4px) 22px calc(28px + env(safe-area-inset-bottom));
}

.spacer {
  flex: 0 0 auto;
  height: clamp(100px, 25vh, 220px);
}

.spacer-bottom {
  flex: 0 0 auto;
  height: 34px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 8px 16px;
  margin-bottom: 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  color: #d9648f;
  background: rgba(16, 11, 14, 0.55);
  border: 1px solid rgba(255, 61, 110, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.badge-icon {
  flex-shrink: 0;
  font-size: 11px;
  line-height: 1;
  color: #ff3d6e;
}

.title {
  font-family: var(--font-head);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
}

.title-line {
  display: block;
  font-size: clamp(40px, 12vw, 54px);
  white-space: nowrap;
}

.brand {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.title .white { color: #ffffff; }
.title .pink {
  color: #ff2d74; /* fallback */
  background: linear-gradient(100deg, #ff5c8f 0%, #ff2d74 42%, #ff1f45 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead {
  font-size: 15px;
  line-height: 1.55;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.33);
  margin-bottom: 30px;
  max-width: 30em;
}

.lead strong {
  color: #ffffff;
  font-weight: 700;
}

.actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 26px;
}

.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px 24px;
  font-family: inherit;
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(180deg, #ff5c86 0%, #ff2a66 46%, #f0134b 100%);
  box-shadow:
    0 10px 24px rgba(255, 24, 84, 0.42),
    0 2px 5px rgba(0, 0, 0, 0.35),
    inset 0 2px 1px rgba(255, 255, 255, 0.35),
    inset 0 -4px 8px rgba(150, 0, 34, 0.4);
}

.btn-primary:active { transform: translateY(1px); }

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.35);
}

.btn-icon--dark {
  background: rgba(0, 0, 0, 0.28);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--text-dim);
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.btn-ghost:active { background: rgba(255, 255, 255, 0.05); }

.meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
}

.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.meta-item svg { opacity: 0.8; }

.meta-center {
  justify-content: center;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.3);
}

.section {
  position: relative;
  z-index: 1;
  padding: 60px 22px;
}

.center { text-align: center; }

.eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink-bright);
  opacity: 0.62;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 30px;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.section-title.left { text-align: left; }
.section-title .pink { color: var(--pink-bright); }

.passion .section-title .pink,
.cta .section-title .pink,
.features .eyebrow,
.steps .eyebrow {
  background: linear-gradient(100deg, #ff5c8f 0%, #ff2d74 42%, #ff1f45 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-title .brand { font-family: var(--font-display); font-weight: 800; }

.section-text {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
}

.center .section-text {
  max-width: 30em;
  margin-left: auto;
  margin-right: auto;
}

.stats-section {
  padding: 12px 0 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  min-width: 0;
  container-type: inline-size;
  padding: 34px 10px;
  text-align: center;
}

.stat:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.stat:nth-child(1),
.stat:nth-child(2) {
  border-bottom: 1px solid var(--line);
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 8.6vw, 40px);
  font-size: clamp(22px, 16cqi, 40px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--pink-bright);
}

.stat-num .star { font-size: 0.8em; }

.stat-label {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.4);
}

.passion {
  background:
    radial-gradient(90% 60% at 28% 30%, rgba(255, 31, 90, 0.13), transparent 72%),
    radial-gradient(85% 58% at 78% 74%, rgba(255, 45, 116, 0.11), transparent 72%);
}

.passion .section-title { font-size: 28px; }

.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.chip {
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.features {
  border-top: 1px solid var(--line);
}

.features .section-title { font-size: 34px; margin-top: 4px; }

.feature-list { margin-top: 26px; }

.feature {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 4px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.feature:last-child { border-bottom: 1px solid var(--line); }

.feature-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.32);
  padding-top: 4px;
}

.feature-body h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 9px;
}

.feature-body p {
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.37);
}

.steps {
  border-top: 1px solid var(--line);
}

.steps .section-title { font-size: 32px; }
.big-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15em;
  color: #ffffff;
}

.step-list {
  margin-top: 28px;
  text-align: left;
}

.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.step-badge {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.step-body h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.step-body p {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
}

.cta {
  padding: 104px 22px;
  border-top: 1px solid var(--line);
  background: radial-gradient(62% 42% at 50% 48%, rgba(255, 31, 90, 0.13), transparent 70%);
}

.cta .section-title { font-size: 34px; }
.cta .eyebrow { font-size: 10px; letter-spacing: 0.16em; }

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

.cta-btn {
  width: auto;
  min-width: 250px;
}

.cta .btn-primary {
  background: linear-gradient(180deg, #ff4778 0%, #ff2661 52%, #f3164e 100%);
  box-shadow:
    0 10px 26px rgba(255, 24, 84, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.footer {
  position: relative;
  z-index: 1;
  padding: 28px 22px calc(40px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 9px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  color: var(--pink-bright);
  background: transparent;
  border: 1px solid rgba(255, 45, 100, 0.5);
  border-radius: 8px;
}

.footer-copy {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
}

.footer-links {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}

.footer-links a {
  font-size: clamp(9px, 2.6vw, 11px);
  font-weight: 500;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.32);
  text-decoration: none;
}

.footer-links a:active { color: rgba(255, 255, 255, 0.65); }

.reveal {
  opacity: 0;
  transform: translateY(45px); 
  transition-delay: 0.6s; 

  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.feature:nth-child(even) { transition-delay: 0.4s; }
.chip:nth-child(2n) { transition-delay: 0.35s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}