:root {
  --green-50: #f5f0ff;
  --green-100: #ede4fb;
  --green-500: #a855f7;
  --green-600: #9333ea;
  --green-700: #7e22ce;
  --green-800: #6b21a8;
  --green-900: #4c1d75;
  --bg: #fdf1f6;
  --surface: #fce4ee;
  --surface-soft: #fad9e8;
  --border-soft: rgba(0, 0, 0, 0.06);
  --text: #1a1523;
  --text-soft: #7a6f78;
  --shadow: 0 10px 30px rgba(168, 33, 122, 0.1);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
}

.page {
  max-width: 480px;
  margin: 0 auto;
  background: var(--bg);
  min-height: 100vh;
}

a { text-decoration: none; }

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-soft);
  position: sticky;
  top: 0;
  background: rgba(253, 241, 246, 0.9);
  backdrop-filter: blur(6px);
  z-index: 10;
}

.logo {
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
}

.logo span { color: var(--green-500); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  text-align: center;
  transition: transform 0.15s, background 0.15s;
}

.btn-primary {
  background: var(--green-500);
  color: #fff;
  box-shadow: 0 6px 16px rgba(168, 85, 247, 0.35);
}

.btn-primary:hover { background: var(--green-700); }
.btn-primary:active { transform: scale(0.98); }

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

.btn-block {
  display: flex;
  width: 100%;
  padding: 15px 20px;
  font-size: 15px;
}

.btn-icon { gap: 8px; padding: 15px 26px; font-size: 15px; }

.btn-arrow { margin-left: 2px; }

/* Hero — full-bleed cover photo as the actual background, no card */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 40px 24px 28px;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 55% 15%;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #0a0a0a 0%, rgba(10, 10, 10, 0.94) 28%, rgba(10, 10, 10, 0.55) 52%, rgba(10, 10, 10, 0.05) 72%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-eyebrow {
  color: var(--green-100);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.hero-headline {
  color: #fff;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 800;
  margin: 0 0 26px;
}

.hero-headline span {
  background: linear-gradient(90deg, var(--green-500), #d8b4fe, var(--green-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 12.5px;
  line-height: 1.55;
  max-width: 340px;
  margin: 20px auto 0;
}

.hero-stat {
  color: var(--green-100);
  font-size: 13.5px;
  margin: 18px 0 0;
}

.hero-stat strong { color: var(--green-500); font-size: 15px; }

.hero-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
}

.hero-tags span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--green-100);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
}

/* Section shared */
.section-eyebrow {
  text-align: center;
  color: var(--green-500);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 20px 0 6px;
}

.section-heading {
  text-align: center;
  font-size: 21px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 10px;
  padding: 0 24px;
}

.section-desc {
  text-align: center;
  color: var(--text-soft);
  font-size: 14px;
  margin: 0 0 24px;
  padding: 0 28px;
}

/* Testimonial carousel */
.testimonials { padding-bottom: 8px; }

.carousel-viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.carousel-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: scroll-left 22s linear infinite;
}

.carousel-viewport:hover .carousel-track { animation-play-state: paused; }

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.carousel-slide {
  width: 150px;
  height: 200px;
  border-radius: 14px;
  overflow: hidden;
  flex: none;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-slide.placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(160deg, var(--surface-soft), var(--surface));
  border: 1px dashed var(--green-600);
  color: var(--green-500);
}

.placeholder-icon { font-size: 26px; }
.placeholder-text { font-size: 12px; font-weight: 700; }

/* Final CTA */
.final-cta {
  padding: 44px 24px;
  text-align: center;
  background: var(--surface-soft);
  margin-top: 36px;
}

.final-cta h2 {
  color: var(--text);
  font-size: 20px;
  margin: 0 0 8px;
}

.final-cta-sub {
  color: var(--text-soft);
  font-size: 13.5px;
  max-width: 320px;
  margin: 0 auto 24px;
  line-height: 1.5;
}

.linktree {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 360px;
  margin: 0 auto;
}

.linktree-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
  background: linear-gradient(135deg, var(--green-600), var(--green-800));
  transition: transform 0.15s, background 0.1s;
}

.linktree-item:hover { transform: translateY(-1px); }
.linktree-item:active { background: #000 !important; transform: translateY(0) scale(0.98); }

.linktree-item svg { color: #fff; flex-shrink: 0; }

.linktree-arrow { margin-left: auto; color: rgba(255, 255, 255, 0.75); }

.linktree-telegram {
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  padding: 18px 20px;
  font-size: 16px;
  box-shadow: 0 8px 22px rgba(168, 85, 247, 0.4);
  border: 1px solid var(--green-100);
  overflow: visible;
}

.linktree-wave {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  border: 1.5px solid var(--green-500);
  opacity: 0;
  animation: wave-pulse 3s ease-out infinite;
  pointer-events: none;
}

.wave-2 { animation-delay: 1.5s; }

@keyframes wave-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.12); opacity: 0; }
}

.linktree-youtube,
.linktree-instagram {
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
}

/* Footer */
.site-footer {
  padding: 28px 24px 36px;
  text-align: center;
}

.disclaimer {
  font-size: 11.5px;
  color: var(--text-soft);
  margin: 0 0 8px;
}

.copyright { font-size: 11.5px; color: #6b6b6b; margin: 0; }
