:root {
  --gold-100: #f3e2a0;
  --gold-400: #e6c458;
  --gold-500: #d4af37;
  --gold-600: #b8912a;
  --gold-700: #8f6f1f;
  --gold-900: #4a3a10;
  --bg: #0a0a0a;
  --surface: #16130c;
  --surface-soft: #1f1a10;
  --border-soft: rgba(212, 175, 55, 0.16);
  --text: #f5efe0;
  --text-soft: #b8ac8e;
  --shadow: 0 10px 30px rgba(212, 175, 55, 0.12);
}

* { box-sizing: border-box; }

html {
  touch-action: pan-x pan-y;
}

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

.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(10, 10, 10, 0.9);
  backdrop-filter: blur(6px);
  z-index: 10;
}

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

.logo span { color: var(--gold-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(--gold-500);
  color: #1a1200;
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.35);
}

.btn-primary:hover { background: var(--gold-400); }
.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 — photo header + solid text block below, so copy never overlaps his face */
.hero {
  text-align: center;
}

.hero-photo {
  position: relative;
  height: 46vh;
  height: 46svh;
  min-height: 320px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #0a0a0a;
  background-size: cover;
  background-position: 50% 12%;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #0a0a0a 0%, rgba(10, 10, 10, 0.5) 22%, transparent 45%);
}

.hero-content {
  position: relative;
  width: 100%;
  padding: 28px 24px 28px;
}

.hero-eyebrow {
  color: var(--gold-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(--gold-400), var(--gold-100), var(--gold-600));
  -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(--gold-100);
  font-size: 13.5px;
  margin: 18px 0 0;
}

.hero-stat strong { color: var(--gold-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(--gold-100);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
}

/* Section shared */
.section-eyebrow {
  text-align: center;
  color: var(--gold-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: 32px 0 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(--gold-600);
  color: var(--gold-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: #1a1200;
  font-weight: 700;
  font-size: 14.5px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  transition: transform 0.15s, background 0.1s;
}

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

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

.linktree-arrow { margin-left: auto; color: rgba(26, 18, 0, 0.6); }

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

.linktree-wave {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  border: 1.5px solid var(--gold-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(--gold-600), var(--gold-900));
  color: #1a1200;
}

.linktree-youtube svg,
.linktree-instagram svg { color: #1a1200; }

.linktree-youtube .linktree-arrow,
.linktree-instagram .linktree-arrow { color: rgba(26, 18, 0, 0.6); }

/* 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: #7a7062; margin: 0; }
