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

:root {
  --bg: #0a0608;
  --text: #f5f1ee;
  --muted: #9a8d8a;
  --accent: #FE5FB4;
  --accent-2: #FF8FCC;
  --card: #1a1113;
  --border: rgba(255, 255, 255, 0.06);
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
}

.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(254, 95, 180, 0.18), transparent 60%),
    radial-gradient(40% 40% at 80% 30%, rgba(255, 143, 204, 0.08), transparent 70%);
}

.header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--text);
}
.logo-accent { color: var(--accent); margin-left: 4px; }

.header-pills { display: flex; gap: 10px; }
.pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 14px;
  color: var(--text);
  backdrop-filter: blur(10px);
  font-family: inherit;
}
.pill-lang { cursor: pointer; font-weight: 600; letter-spacing: 0.04em; }
.pill-lang:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(254, 95, 180, 0.4);
}
.pill-site {
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(254, 95, 180, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pill-site:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(254, 95, 180, 0.5);
}

.pill-user .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.main {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 48px 80px;
}

.hero { max-width: 1100px; margin-bottom: 28px; }
.hero-title {
  font-size: clamp(30px, 4.2vw, 54px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 14px;
}
.accent {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 820px;
  margin: 0;
}
.hero-sub b { color: var(--text); font-weight: 600; }

.examples {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-bottom: 32px;
  align-items: stretch;
}

.card {
  position: relative;
  aspect-ratio: 9 / 14;
  max-height: 58vh;
  border-radius: 18px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(254, 95, 180, 0.25);
}
.card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(254, 95, 180, 0.5);
}
.badge::before { content: "\2726  "; }

.cta {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  margin: 64px 0;
  flex-wrap: wrap;
}

.btn-mega {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 22px 32px 22px 36px;
  min-width: 420px;
  border-radius: 28px;
  text-decoration: none;
  color: #fff;
  background:
    linear-gradient(135deg, #F94EAA 0%, #FF85C5 45%, #FE5FB4 100%);
  box-shadow:
    0 20px 50px rgba(254, 95, 180, 0.55),
    0 4px 14px rgba(254, 95, 180, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  overflow: hidden;
  isolation: isolate;
  font-family: inherit;
}
.btn-mega::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, rgba(255,255,255,0.7), rgba(255,255,255,0.05) 40%, rgba(255,255,255,0.6));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0.55;
  pointer-events: none;
}
.btn-mega::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 30% 0%, rgba(255,255,255,0.35), transparent 55%);
  pointer-events: none;
  z-index: 1;
}
.btn-mega-shine { display: none; }
.btn-mega-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  position: relative;
  z-index: 3;
}
.btn-mega-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.9;
}
.btn-mega-title {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.btn-mega-arrow {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  margin-left: auto;
}

.btn-mega-alt {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: none;
}
.btn-mega-alt::before,
.btn-mega-alt::after { display: none; }
.btn-mega-alt .btn-mega-label { color: var(--muted); }
.btn-mega-alt .btn-mega-arrow {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 12px 30px rgba(254, 95, 180, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(254, 95, 180, 0.55);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border-color: var(--border);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.leaks-banner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  margin: 0 0 56px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(254, 95, 180, 0.15), rgba(255, 143, 204, 0.05)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(254, 95, 180, 0.25);
  text-decoration: none;
  color: var(--text);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.leaks-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 50%, rgba(254, 95, 180, 0.25), transparent 60%);
  pointer-events: none;
  opacity: 0.6;
}
.leaks-banner:hover {
  transform: translateY(-3px);
  border-color: rgba(254, 95, 180, 0.6);
  box-shadow: 0 20px 50px rgba(254, 95, 180, 0.25);
}
.leaks-icon {
  position: relative;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 8px 24px rgba(254, 95, 180, 0.5);
}
.leaks-text { flex: 1; min-width: 0; position: relative; }
.leaks-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}
.leaks-sub { font-size: 14px; color: var(--muted); }
.leaks-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.feature {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.feature:hover {
  border-color: rgba(254, 95, 180, 0.3);
  transform: translateY(-4px);
}
.feature-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 14px;
  letter-spacing: 0.1em;
}
.feature h2, .feature h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.feature p { margin: 0; color: var(--muted); font-size: 15px; }

.faq { margin-top: 64px; max-width: 900px; }
.faq h2 {
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}
.faq details {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.25s ease;
}
.faq details[open] { border-color: rgba(254, 95, 180, 0.35); }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-weight: 700;
}
.faq details[open] summary::after { content: "\2212"; }
.faq p { color: var(--muted); margin: 12px 0 0; font-size: 15px; }

.footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 32px 24px;
  color: var(--muted);
  font-size: 14px;
  border-top: 1px solid var(--border);
}

@media (max-width: 1100px) {
  .examples { grid-template-columns: repeat(3, 1fr); }
  .features { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .header { padding: 14px 20px; }
  .main { padding: 14px 20px 60px; }
  .hero { margin-bottom: 18px; }
  .hero-title { font-size: 26px; margin-bottom: 10px; }
  .hero-sub { font-size: 14px; }
  .examples {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 11vw;
    gap: 12px;
    padding: 4px 11vw 16px;
    margin: 0 -20px 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .examples::-webkit-scrollbar { display: none; }
  .examples .card {
    flex: 0 0 78vw;
    max-height: 70vh;
    scroll-snap-align: center;
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  .examples.is-carousel .card { opacity: 0.45; transform: scale(0.94); }
  .examples.is-carousel .card.is-active { opacity: 1; transform: scale(1); }
  .hero-sub { font-size: 16px; }
  .btn { width: 100%; justify-content: center; }
  .btn-mega { min-width: 0; width: 100%; padding: 18px 20px; gap: 14px; border-radius: 22px; }
  .btn-mega-title { font-size: 20px; }
  .btn-mega-label { font-size: 11px; }
  .btn-mega-arrow { width: 44px; height: 44px; }
  .pill-site { display: none; }
  .leaks-banner { flex-wrap: wrap; }
  .leaks-cta { width: 100%; justify-content: flex-end; }
}
