:root {
  --bg: #0b0e11;
  --panel: #161a1f;
  --panel-soft: #1e2329;
  --line: #2b3139;
  --text: #f5f5f5;
  --muted: #adb3bd;
  --yellow: #fcd535;
  --yellow-dark: #e0b129;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Sora", "Segoe UI", Tahoma, sans-serif;
  background:
    radial-gradient(circle at 15% 0%, rgba(252, 213, 53, 0.18), transparent 35%),
    radial-gradient(circle at 90% 30%, rgba(252, 213, 53, 0.1), transparent 30%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.hero {
  padding: 28px 0 18px;
  border-bottom: 1px solid rgba(252, 213, 53, 0.22);
}

.top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: 1.1px;
  color: var(--yellow);
  text-transform: uppercase;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  padding: 12px 30px;
  border-radius: 999px;
  border: 1px solid rgba(252, 213, 53, 0.42);
  background: linear-gradient(135deg, rgba(252, 213, 53, 0.15), rgba(252, 213, 53, 0.03));
  box-shadow: 0 10px 26px rgba(252, 213, 53, 0.16), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  text-shadow: 0 0 14px rgba(252, 213, 53, 0.35);
}

.brand::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 14px rgba(252, 213, 53, 0.95);
}

.btn {
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 700;
  padding: 11px 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.join-btn {
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
  color: #111;
  box-shadow: 0 10px 24px rgba(252, 213, 53, 0.28);
}

.join-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.hero-content {
  margin-top: 28px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--yellow);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-title {
  margin: 0;
  font-size: clamp(1.5rem, 3.8vw, 2.7rem);
  line-height: 1.2;
}

.lead {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.hero-services {
  margin-top: 18px;
}

.hero-services-title {
  margin: 0;
  color: var(--yellow);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.88rem;
}

.hero-services-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.hero-service-point {
  background: rgba(252, 213, 53, 0.1);
  border: 1px solid rgba(252, 213, 53, 0.35);
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--text);
  font-weight: 600;
}

.stats-wrap {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
}

.stat-card {
  width: 100%;
  min-width: 0;
  background: linear-gradient(135deg, rgba(252, 213, 53, 0.14), rgba(252, 213, 53, 0.03));
  border: 1px solid rgba(252, 213, 53, 0.35);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  animation: pulseGlow 2.8s ease-in-out infinite;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--yellow);
}

.stat-label {
  color: var(--text);
  font-weight: 600;
}

.section {
  margin-top: 44px;
}

.section-head {
  margin-bottom: 14px;
}

.section-title {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  color: var(--yellow);
}

.section-text {
  margin: 10px 0 0;
  color: var(--muted);
}

.compare-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.compare-card {
  background: linear-gradient(180deg, #12161b, #0f1216);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
}

.compare-card.highlight {
  border-color: rgba(252, 213, 53, 0.45);
  box-shadow: 0 10px 26px rgba(252, 213, 53, 0.15);
}

.compare-title {
  margin: 0;
  font-size: 1.06rem;
  font-weight: 700;
}

.compare-value {
  margin: 10px 0 0;
  color: var(--yellow);
  font-size: 1.4rem;
  font-weight: 800;
}

.vip-access {
  background: linear-gradient(180deg, #12161b, #0d1014);
  border: 1px solid rgba(252, 213, 53, 0.18);
  border-radius: 16px;
  padding: 24px;
}

.cta-row {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.broker-btn {
  border: 1px solid rgba(252, 213, 53, 0.42);
  background: rgba(252, 213, 53, 0.08);
  color: var(--yellow);
}

.broker-btn:hover {
  transform: translateY(-2px);
  background: rgba(252, 213, 53, 0.16);
}

.review-slider {
  margin-top: 18px;
  background: linear-gradient(180deg, #12161b, #0f1216);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.review-track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 18px;
  animation: scrollReviews 24s linear infinite;
}

.review-slider:hover .review-track {
  animation-play-state: paused;
}

.review-card {
  min-width: 260px;
  background: var(--panel-soft);
  border: 1px solid #353d46;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

.review-shot {
  min-height: 160px;
  border: 1px solid rgba(252, 213, 53, 0.28);
  border-radius: 10px;
  display: grid;
  align-content: space-between;
  gap: 12px;
  padding: 14px;
  background: linear-gradient(160deg, rgba(252, 213, 53, 0.08), rgba(252, 213, 53, 0.02));
}

.review-quote {
  margin: 0;
  color: #e6ebf2;
  line-height: 1.58;
  font-size: 0.93rem;
}

.review-author {
  margin: 0;
  color: var(--yellow);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.review-author span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0;
}


.review-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.contact {
  background: linear-gradient(180deg, #12161b, #0d1014);
  border: 1px solid rgba(252, 213, 53, 0.18);
  border-radius: 16px;
  padding: 24px;
}

.contact-line {
  margin: 12px 0 0;
  color: var(--muted);
}

.contact-line a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(252, 213, 53, 0.45);
}

.social-links {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-btn {
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(252, 213, 53, 0.35);
  background: rgba(252, 213, 53, 0.08);
  color: var(--yellow);
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.social-btn:hover {
  transform: translateY(-2px);
  background: var(--yellow);
  color: #121212;
}

.policy-mini {
  margin: 14px 0 0;
  text-align: left;
  font-size: 0.82rem;
  color: #8f97a4;
}

.policy-mini a {
  text-decoration: none;
  color: #a8b0bb;
  border-bottom: 1px solid rgba(252, 213, 53, 0.3);
}

.policy-mini a:hover {
  color: var(--yellow);
}

.policy-page {
  padding: 28px 0 8px;
}

.policy-card {
  margin-top: 18px;
  background: linear-gradient(180deg, #12161b, #0d1014);
  border: 1px solid rgba(252, 213, 53, 0.18);
  border-radius: 16px;
  padding: 24px;
}

.policy-meta {
  margin: 10px 0 0;
  color: #97a0ad;
  font-size: 0.88rem;
}

.policy-block {
  margin-top: 16px;
}

.policy-title {
  margin: 0;
  font-size: 1.02rem;
  color: var(--yellow);
  font-weight: 700;
}

.policy-list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.65;
}

.policy-inline-link {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(252, 213, 53, 0.45);
}

.footer {
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0 26px;
}

.muted {
  color: #8b93a0;
}

.reveal {
  animation: fadeUp 0.8s ease both;
}

.compare.reveal {
  animation-delay: 0.08s;
}

.vip-access.reveal {
  animation-delay: 0.14s;
}

.reviews.reveal {
  animation-delay: 0.2s;
}

.contact.reveal {
  animation-delay: 0.26s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 8px 20px rgba(252, 213, 53, 0.15);
  }
  50% {
    box-shadow: 0 12px 30px rgba(252, 213, 53, 0.32);
  }
}

@media (max-width: 800px) {
  .top-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .review-card {
    min-width: 230px;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 20px;
  }

  .vip-access,
  .contact {
    padding: 18px;
  }

  .cta-row {
    flex-direction: column;
  }

  .cta-row .btn {
    width: 100%;
    text-align: center;
  }

  .join-btn {
    width: 100%;
    text-align: center;
  }

  .social-links {
    flex-direction: column;
  }

  .social-btn {
    text-align: center;
  }

  .policy-card {
    padding: 18px;
  }
}
