@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Manrope:wght@300;400;500;600;700;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

:root {
  --bg: #050505;
  --card: rgba(255, 255, 255, 0.03);
  --soft: #111;
  --text: #f5f5f5;
  --muted: #888;
  --accent: #7aa2ff;
  --accent2: #5b7fff;
  --border: rgba(255, 255, 255, 0.07);
  --glow: rgba(122, 162, 255, 0.15);
  --radius: 20px;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--accent2);
  border-radius: 3px;
}

/* AMBIENT BG GLOWS */
.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.4;
}
.glow-orb.one {
  width: 600px;
  height: 600px;
  background: var(--glow);
  top: -200px;
  right: -100px;
}
.glow-orb.two {
  width: 500px;
  height: 500px;
  background: rgba(90, 60, 255, 0.1);
  bottom: -150px;
  left: -100px;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 18px 7%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: 0.3s;
}
nav.scrolled {
  padding: 12px 7%;
  background: rgba(5, 5, 5, 0.95);
}
.nav-brand {
  font-size: 0.95rem;
  letter-spacing: 3px;
  font-weight: 800;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--text), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
}
nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: 0.3s;
  position: relative;
}
nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: 0.3s;
}
nav a:hover {
  color: var(--text);
}
nav a:hover::after {
  width: 100%;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: 0.3s;
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* MOBILE NAV */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(5, 5, 5, 0.97);
  backdrop-filter: blur(30px);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
.mobile-menu.active {
  display: flex;
}
.mobile-menu a {
  color: var(--text);
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  transition: 0.3s;
}
.mobile-menu a:hover {
  color: var(--accent);
}

/* SECTIONS */
section {
  min-height: 100vh;
  padding: 140px 7% 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: saturate(0.7);
}
.hero-bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, var(--bg), transparent);
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(122, 162, 255, 0.1);
  border: 1px solid rgba(122, 162, 255, 0.2);
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-weight: 600;
}
.hero-label .dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.hero h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  line-height: 0.95;
  font-weight: 800;
  max-width: 900px;
  letter-spacing: -4px;
  margin-bottom: 28px;
}
.hero h2 span {
  background: linear-gradient(135deg, var(--accent), #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .desc {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 50px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 800px;
}

/* HERO LAYOUT — two columns */
.hero-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.hero-left {
  flex: 1;
  min-width: 0;
}
.hero-right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* PROFILE 3D SCENE */
.profile-scene {
  width: 260px;
  height: 260px;
  perspective: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Nested orbit wrappers for dual-axis spin */
.profile-orbit {
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}
.profile-orbit--h {
  animation: spin-h 10s ease-in-out infinite;
}
.profile-orbit--v {
  animation: spin-v 14s ease-in-out infinite;
}

.profile-ring {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  padding: 4px;
  background: conic-gradient(
    var(--accent),
    #a78bfa,
    var(--accent2),
    var(--accent),
    transparent,
    var(--accent)
  );
  animation: ring-glow 4s ease-in-out infinite alternate;
  position: relative;
  box-shadow: 0 0 50px rgba(122, 162, 255, 0.25),
    0 0 100px rgba(122, 162, 255, 0.1);
  transform-style: preserve-3d;
}
.profile-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--bg);
  display: block;
  backface-visibility: hidden;
}

/* Coin back face — theme-matched disc */
.profile-back {
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border-radius: 50%;
  backface-visibility: hidden;
  transform: rotateY(180deg);
  background:
    radial-gradient(ellipse at 35% 30%, rgba(122, 162, 255, 0.35) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(91, 127, 255, 0.25) 0%, transparent 50%),
    linear-gradient(160deg, #1a1e30 0%, #0d1020 30%, #111528 55%, #181d35 75%, #1a1e30 100%);
  border: 3px solid var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 0 2px 15px rgba(122, 162, 255, 0.2),
    inset 0 -4px 10px rgba(5, 5, 20, 0.6),
    0 0 30px rgba(122, 162, 255, 0.1);
  overflow: hidden;
}

/* Inner ring emboss */
.coin-inner-ring {
  position: absolute;
  top: 12%;
  left: 12%;
  right: 12%;
  bottom: 12%;
  border-radius: 50%;
  border: 2px solid rgba(122, 162, 255, 0.2);
  box-shadow:
    inset 0 1px 3px rgba(122, 162, 255, 0.15),
    0 1px 3px rgba(5, 5, 20, 0.4);
  pointer-events: none;
}

/* Coin initial letter */
.coin-initial {
  font-family: "Manrope", serif;
  font-size: 4rem;
  font-weight: 900;
  color: transparent;
  background: linear-gradient(
    180deg,
    var(--accent) 0%,
    #a78bfa 40%,
    var(--accent2) 70%,
    var(--accent) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 2px 4px rgba(91, 127, 255, 0.3));
  line-height: 1;
  z-index: 1;
}

/* Decorative stars */
.coin-stars {
  font-size: 0.7rem;
  letter-spacing: 6px;
  color: rgba(122, 162, 255, 0.3);
  margin-top: 4px;
  z-index: 1;
}

/* Horizontal spin (Y-axis): variable speed */
@keyframes spin-h {
  0% {
    transform: rotateY(0deg);
  }
  20% {
    transform: rotateY(25deg);
  }
  35% {
    transform: rotateY(180deg);
  }
  50% {
    transform: rotateY(200deg);
  }
  70% {
    transform: rotateY(340deg);
  }
  85% {
    transform: rotateY(355deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

/* Vertical spin (X-axis): variable speed, offset timing */
@keyframes spin-v {
  0% {
    transform: rotateX(0deg);
  }
  15% {
    transform: rotateX(10deg);
  }
  30% {
    transform: rotateX(-15deg);
  }
  50% {
    transform: rotateX(180deg);
  }
  65% {
    transform: rotateX(200deg);
  }
  80% {
    transform: rotateX(350deg);
  }
  100% {
    transform: rotateX(360deg);
  }
}

/* Glow pulse on the ring */
@keyframes ring-glow {
  0% {
    box-shadow: 0 0 30px rgba(122, 162, 255, 0.15),
      0 0 60px rgba(122, 162, 255, 0.05);
  }
  100% {
    box-shadow: 0 0 60px rgba(122, 162, 255, 0.35),
      0 0 120px rgba(122, 162, 255, 0.15);
  }
}


/* CARDS */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: 0.4s;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(122, 162, 255, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.card:hover::before {
  opacity: 1;
}
.card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  font-weight: 700;
}
.card p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* STAT CARD */
.stat-value {
  font-family: "Manrope", sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--text), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}
.stat-label {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
}

/* SECTION HEADERS */
.section-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(122, 162, 255, 0.08);
  border: 1px solid rgba(122, 162, 255, 0.15);
  border-radius: 999px;
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}
.section-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  margin-bottom: 20px;
  line-height: 1.05;
  letter-spacing: -2px;
  font-weight: 800;
}
.section-sub {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 60px;
  line-height: 1.8;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

/* METRIC */
.metric {
  font-family: "Manrope", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
  line-height: 1;
}

/* PROGRESS BAR */
.progress-item {
  margin-bottom: 20px;
}
.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.9rem;
}
.progress-label span:last-child {
  color: var(--accent);
  font-weight: 700;
}
.progress-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  width: 0;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* BRAND PERSONALITY TAGS */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.tag {
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--muted);
  transition: 0.3s;
  cursor: default;
}
.tag:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(122, 162, 255, 0.05);
}

/* QUOTE */
.quote-block {
  padding: 40px;
  background: linear-gradient(
    135deg,
    rgba(122, 162, 255, 0.08),
    rgba(167, 139, 250, 0.05)
  );
  border-radius: 24px;
  border: 1px solid var(--border);
  margin-top: 40px;
  position: relative;
}
.quote-block::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 24px;
  font-size: 5rem;
  color: rgba(122, 162, 255, 0.15);
  font-family: serif;
  line-height: 1;
}
.quote-block p {
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 800px;
  padding-left: 10px;
  font-style: italic;
  color: var(--muted);
}

/* PACKAGES */
.package-card {
  position: relative;
  overflow: hidden;
}
.package-card.featured {
  border-color: rgba(122, 162, 255, 0.3);
  background: linear-gradient(180deg, rgba(122, 162, 255, 0.06), var(--card));
}
.package-card.featured::after {
  content: "POPULAR";
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  background: var(--accent);
  color: #000;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.package-tier {
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}
.package-price {
  font-family: "Manrope", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  margin: 16px 0;
  background: linear-gradient(135deg, var(--text), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.package-list {
  list-style: none;
  margin-top: 20px;
}
.package-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.package-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
}

/* WHY SECTION */
.advantage-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.advantage-num {
  font-family: "Manrope", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: rgba(122, 162, 255, 0.2);
  min-width: 40px;
}

/* CONTACT */
.contact {
  text-align: center;
  align-items: center;
}
.contact-cta {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn {
  padding: 16px 32px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: 0.4s;
  background: rgba(255, 255, 255, 0.03);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn:hover {
  background: var(--accent);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(122, 162, 255, 0.25);
  border-color: var(--accent);
}
.btn-primary {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: #fff;
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.15);
}

/* FOOTER */
footer {
  padding: 60px 7% 40px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-brand {
  font-size: 0.85rem;
  letter-spacing: 3px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--text), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
footer p {
  color: var(--muted);
  font-size: 0.8rem;
}

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) {
  transition-delay: 0.1s;
}
.fade-up:nth-child(3) {
  transition-delay: 0.2s;
}

/* STAGGER CHILDREN */
.stagger .card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.stagger.show .card {
  opacity: 1;
  transform: translateY(0);
}
.stagger.show .card:nth-child(1) {
  transition-delay: 0.05s;
}
.stagger.show .card:nth-child(2) {
  transition-delay: 0.15s;
}
.stagger.show .card:nth-child(3) {
  transition-delay: 0.25s;
}
.stagger.show .card:nth-child(4) {
  transition-delay: 0.35s;
}

/* DONUT CHART */
.donut-container {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 16px;
}
.donut {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.donut-center {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}
.donut-legend {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
}
.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

/* DIVIDER */
.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin-bottom: 30px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .hero-layout {
    flex-direction: column-reverse;
    gap: 40px;
  }
  .hero-right {
    width: 100%;
  }
  .profile-scene {
    width: 200px;
    height: 200px;
  }
  .profile-orbit {
    width: 180px;
    height: 180px;
  }
  .profile-ring {
    width: 160px;
    height: 160px;
  }
}
@media (max-width: 768px) {
  nav ul {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  section {
    padding: 120px 5% 80px;
  }
  .hero h2 {
    letter-spacing: -2px;
  }
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .donut-container {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }
}
