:root {
  --bg: #060606;
  --bg-soft: #101010;
  --bg-card: #151515;
  --gold: #d4af37;
  --gold-soft: #f1dd95;
  --text: #f8f7f2;
  --muted: #d3d0c8;
  --border: rgba(212, 175, 55, 0.32);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: "Cairo", sans-serif;
  color: var(--text);
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
}

.background-texture {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 10%, rgba(212, 175, 55, 0.24) 0%, transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(212, 175, 55, 0.16) 0%, transparent 32%),
    radial-gradient(circle at 80% 72%, rgba(212, 175, 55, 0.12) 0%, transparent 30%),
    repeating-linear-gradient(90deg, rgba(212, 175, 55, 0.05) 0 1px, transparent 1px 68px),
    repeating-linear-gradient(0deg, rgba(212, 175, 55, 0.04) 0 1px, transparent 1px 68px),
    linear-gradient(150deg, #040404 0%, #0c0c0c 40%, #080808 100%);
  background-size: cover;
}
.background-texture::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(241, 221, 149, 0.09) 0.9px, transparent 0.9px);
  background-size: 28px 28px;
  mix-blend-mode: soft-light;
  opacity: 0.35;
}

img { max-width: 100%; display: block; }

.container { width: min(1200px, 92%); margin: 0 auto; }
.section { padding: 96px 0; }
.section-dark { background: linear-gradient(135deg, rgba(16, 16, 16, 0.9), rgba(8, 8, 8, 0.95)); }

.gold-divider {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gold-soft);
}
.gold-divider::before,
.gold-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(to left, transparent, rgba(241, 221, 149, 0.75), transparent);
}
.gold-divider span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.2);
  font-size: 0.86rem;
}

h1, h2, h3, h4 { margin: 0 0 12px; line-height: 1.35; }
h1 { font-size: clamp(2.2rem, 4.5vw, 3.7rem); }
h2 { font-size: clamp(1.55rem, 2.6vw, 2.2rem); color: var(--gold-soft); }
h3 { font-size: clamp(1.08rem, 2vw, 1.4rem); }
p { color: var(--muted); line-height: 1.9; margin: 0 0 12px; }
.section-subtitle {
  margin: 0 0 24px;
  max-width: 78ch;
  color: #ece5d0;
  font-size: clamp(1rem, 1.35vw, 1.08rem);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(7, 7, 7, 0.68);
  backdrop-filter: blur(10px);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.topbar.scrolled {
  background: rgba(7, 7, 7, 0.95);
  border-color: var(--border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 0;
}
.logo img {
  height: clamp(88px, 11.5vw, 126px);
  width: auto;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: drop-shadow(0 12px 24px rgba(212, 175, 55, 0.36));
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 10px;
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.nav-links a:hover {
  color: var(--gold-soft);
  background: rgba(212, 175, 55, 0.08);
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.24);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  color: var(--gold-soft);
  border-radius: 10px;
  background: #0f0f0f;
  padding: 7px 11px;
  font-size: 1rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: clamp(26px, 4vw, 56px);
}
.hero-content {
  display: grid;
  gap: 14px;
}
.hero-content h1 {
  margin-bottom: 0;
  text-wrap: balance;
  font-size: clamp(2.3rem, 5.4vw, 4.2rem);
  line-height: 1.2;
}
.hero-content span {
  color: var(--gold-soft);
  display: block;
  font-size: clamp(2rem, 5vw, 4rem);
  text-shadow: 0 0 24px rgba(212, 175, 55, 0.22);
}
.hero-content p {
  margin: 0;
  max-width: 62ch;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: #e3dece;
}
.hero-cta, .center-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}
.center-cta { justify-content: center; }

.hero-image-wrap {
  position: relative;
  isolation: isolate;
}
.hero-halo {
  position: absolute;
  inset: -10% 6% auto;
  height: 88%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.34) 0%, rgba(212, 175, 55, 0.02) 68%, transparent 72%);
  filter: blur(8px);
  z-index: -1;
  animation: heroHaloPulse 4.8s ease-in-out infinite;
}
.premium-frame {
  padding: clamp(10px, 2vw, 16px);
  border-radius: 30px;
  border: 1px solid rgba(241, 221, 149, 0.3);
  background:
    linear-gradient(152deg, rgba(241, 221, 149, 0.48) 0%, rgba(212, 175, 55, 0.12) 30%, rgba(16, 16, 16, 0.85) 75%),
    #0f0f0f;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 175, 55, 0.2);
  animation: heroFloat 5.5s ease-in-out infinite;
}
.hero-image {
  border-radius: 18px;
  border: 1px solid rgba(241, 221, 149, 0.6);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
}

.hero-stats {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.hero-stat-card {
  position: relative;
  padding: 16px 14px;
  border-radius: 14px;
  background: linear-gradient(155deg, rgba(212, 175, 55, 0.16), rgba(9, 9, 9, 0.96));
  border: 1px solid rgba(212, 175, 55, 0.32);
  box-shadow: inset 0 0 0 1px rgba(255, 226, 132, 0.06);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.hero-stat-card h3 {
  margin-bottom: 6px;
  color: var(--gold-soft);
  font-size: 1.05rem;
}
.hero-stat-card p {
  margin: 0;
  font-size: 0.89rem;
  line-height: 1.6;
}
.hero-stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(241, 221, 149, 0.75);
  box-shadow: 0 12px 22px rgba(212, 175, 55, 0.14);
}


.future-skills-section {
  position: relative;
  overflow: hidden;
  padding-top: 62px;
  padding-bottom: 56px;
  background:
    radial-gradient(circle at 20% 18%, rgba(212, 175, 55, 0.2), transparent 42%),
    radial-gradient(circle at 80% 74%, rgba(212, 175, 55, 0.16), transparent 45%),
    linear-gradient(155deg, #0b0b0b 0%, #040404 72%);
}
.future-skills-wrap {
  display: grid;
  gap: 38px;
  justify-items: center;
  text-align: center;
}
.future-orbit {
  --orbit-scale: 0.88;
  position: relative;
  width: min(96vw, 800px);
  min-height: clamp(430px, 56vw, 560px);
  display: grid;
  place-items: center;
  isolation: isolate;
}
.orbit-line,
.light-trace {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.orbit-line {
  border: 1px solid rgba(241, 221, 149, 0.27);
  box-shadow: inset 0 0 24px rgba(212, 175, 55, 0.14), 0 0 28px rgba(212, 175, 55, 0.09);
  animation: lineSpin 24s linear infinite;
}
.orbit-line-1 {
  width: min(86vw, 680px);
  height: min(86vw, 680px);
}
.orbit-line-2 {
  width: min(72vw, 560px);
  height: min(72vw, 560px);
  opacity: 0.65;
  animation-direction: reverse;
  animation-duration: 30s;
}
.light-trace {
  border: 1px solid rgba(241, 221, 149, 0.16);
  border-top-color: rgba(241, 221, 149, 0.55);
  border-bottom-color: transparent;
  filter: blur(0.2px);
}
.light-trace-1 {
  width: min(90vw, 710px);
  height: min(90vw, 710px);
  transform: rotate(16deg);
  animation: lineSpin 36s linear infinite;
}
.light-trace-2 {
  width: min(78vw, 610px);
  height: min(78vw, 610px);
  transform: rotate(-20deg);
  animation: lineSpin 28s linear infinite reverse;
}
.particle-layer {
  position: absolute;
  inset: 10% 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 15% 22%, rgba(255, 244, 203, 0.9) 0 1px, transparent 2px),
    radial-gradient(circle at 34% 68%, rgba(212, 175, 55, 0.6) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 74% 22%, rgba(255, 244, 203, 0.7) 0 1.2px, transparent 2.2px),
    radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.55) 0 1.4px, transparent 2.4px),
    radial-gradient(circle at 56% 50%, rgba(255, 236, 178, 0.5) 0 1px, transparent 2px),
    linear-gradient(120deg, rgba(255, 222, 130, 0.08), transparent 40%);
  opacity: 0.65;
  z-index: 1;
  animation: particlePulse 9s ease-in-out infinite;
}
.center-frame {
  position: relative;
  z-index: 5;
  width: clamp(154px, 24vw, 220px);
  height: clamp(154px, 24vw, 220px);
  border-radius: 50%;
  padding: 22px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(241, 221, 149, 0.76);
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 236, 178, 0.35), rgba(212, 175, 55, 0.12) 36%, rgba(12, 12, 12, 0.9) 72%),
    rgba(10, 10, 10, 0.72);
  box-shadow:
    0 0 0 1px rgba(241, 221, 149, 0.3),
    0 0 52px rgba(212, 175, 55, 0.42),
    inset 0 0 40px rgba(212, 175, 55, 0.28);
  backdrop-filter: blur(8px);
  animation: centerGlow 5.6s ease-in-out infinite;
}
.center-frame::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 1px solid rgba(241, 221, 149, 0.31);
  box-shadow: 0 0 28px rgba(212, 175, 55, 0.16);
}
.center-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(212, 175, 55, 0.4));
}
.orbit-item {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  transform: translate(-50%, -50%) rotate(calc(var(--angle) * 1deg)) translateX(calc(var(--radius) * var(--orbit-scale)));
  animation: orbitalDrift 13s ease-in-out infinite;
  animation-delay: var(--delay);
}
.orbit-item-inner {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(241, 221, 149, 0.45);
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.22), rgba(10, 10, 10, 0.94));
  color: #f5e7bc;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.45), 0 0 16px rgba(212, 175, 55, 0.24);
  transform: rotate(calc(var(--angle) * -1deg));
  animation: orbitBadgeFloat 8.8s ease-in-out infinite;
  animation-delay: calc(var(--delay) * 0.75);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.orbit-item-inner:hover {
  transform: rotate(calc(var(--angle) * -1deg)) translateY(-2px) scale(1.02);
  border-color: rgba(241, 221, 149, 0.84);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.5), 0 0 26px rgba(212, 175, 55, 0.6);
}
.item-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 20%, rgba(255, 239, 193, 0.54), rgba(212, 175, 55, 0.1));
  box-shadow: inset 0 0 0 1px rgba(241, 221, 149, 0.35);
  font-size: 0.86rem;
}
.item-label {
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.future-skills-content {
  max-width: 920px;
  display: grid;
  gap: 12px;
}
.future-skills-content h2 {
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 3.2rem);
  text-shadow: 0 0 26px rgba(212, 175, 55, 0.24);
}
.future-skills-content p {
  margin: 0;
  color: #ebdfbe;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 2;
}

.timeline {
  display: inline-block;
  margin-bottom: 18px;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: linear-gradient(to left, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.04));
  color: var(--gold-soft);
  font-weight: 800;
}

.about-copy {
  max-width: 980px;
  display: grid;
  gap: 6px;
}
.about-copy p {
  margin: 0;
  color: #ece4cf;
  font-size: clamp(1.02rem, 1.55vw, 1.18rem);
  line-height: 2;
}

.about-stats {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}
.stat-card {
  padding: 22px 20px;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.12), rgba(11, 11, 11, 0.97));
  border: 1px solid rgba(241, 221, 149, 0.3);
}
.premium-features .stat-card h3 {
  color: var(--gold-soft);
  font-size: 1.12rem;
}
.premium-features .stat-card p {
  margin-bottom: 0;
  color: #e4ddc9;
}

.card {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.card::before {
  content: "";
  position: absolute;
  inset: -120% auto auto -120%;
  width: 180%;
  height: 180%;
  background: linear-gradient(135deg, transparent 44%, rgba(241, 221, 149, 0.16) 50%, transparent 56%);
  transition: transform 0.7s ease;
  transform: translateX(-18%);
  pointer-events: none;
}
.premium-card, .course-card, .social-card, .quote, .chip, .founder-highlight, .stat-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.premium-card:hover,
.course-card:hover,
.social-card:hover,
.quote:hover,
.chip:hover,
.founder-highlight:hover,
.stat-card:hover {
  transform: translateY(-7px);
  border-color: rgba(241, 221, 149, 0.9);
  box-shadow: 0 22px 36px rgba(212, 175, 55, 0.18);
}
.card:hover::before {
  transform: translateX(16%);
}

.cards-grid { display: grid; gap: 16px; }
.vision-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 22px; }
.premium-card { padding: 24px; }

.founder-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: stretch;
}
.founder-profile-card {
  position: relative;
  padding: clamp(18px, 2.6vw, 26px);
  border-radius: 24px;
  border: 1px solid rgba(241, 221, 149, 0.44);
  background:
    radial-gradient(circle at 18% 12%, rgba(212, 175, 55, 0.2), transparent 54%),
    linear-gradient(162deg, rgba(212, 175, 55, 0.16), rgba(7, 7, 7, 0.96) 56%);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.17), 0 24px 42px rgba(0, 0, 0, 0.5);
}
.founder-profile-card h2 {
  margin-bottom: 14px;
}
.founder-name {
  margin-top: 16px;
  margin-bottom: 6px;
  color: var(--gold-soft);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
}
.founder-role {
  margin: 0;
  color: #efe3b2;
  font-weight: 700;
  line-height: 1.6;
}
.founder-image-wrap {
  padding: clamp(10px, 2vw, 14px);
  background: rgba(212, 175, 55, 0.09);
  border: 1px solid rgba(241, 221, 149, 0.3);
  border-radius: 20px;
  box-shadow: inset 0 0 26px rgba(212, 175, 55, 0.08), 0 0 18px rgba(212, 175, 55, 0.12);
}
.founder-image {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(241, 221, 149, 0.62);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
}
.founder-content {
  display: grid;
  align-content: center;
  gap: 18px;
}
.founder-bio {
  margin: 0;
  font-size: clamp(1rem, 1.55vw, 1.12rem);
  line-height: 2;
  color: #e7e1ce;
}

.achievements-grid {
  display: grid;
  gap: 12px;
}
.achievement-card {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(241, 221, 149, 0.5);
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.16), rgba(11, 11, 11, 0.96));
  box-shadow: inset 0 0 0 1px rgba(241, 221, 149, 0.12), 0 10px 24px rgba(0, 0, 0, 0.35);
  color: #f5eed2;
  line-height: 1.8;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.achievement-card:hover {
  transform: translateY(-4px);
  border-color: rgba(241, 221, 149, 0.85);
  box-shadow: 0 16px 28px rgba(212, 175, 55, 0.16);
}

.chip {
  background: #121212;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 13px;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.course-card {
  padding: 22px 20px;
  background:
    radial-gradient(circle at 8% 10%, rgba(212, 175, 55, 0.22), transparent 38%),
    linear-gradient(150deg, rgba(212, 175, 55, 0.12), rgba(7, 7, 7, 0.97) 58%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  min-height: 220px;
  display: flex;
  flex-direction: column;
}
.course-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #f3e6bc;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
}
.course-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(170deg, rgba(255, 234, 172, 0.88), rgba(212, 175, 55, 0.4));
  border: 1px solid rgba(241, 221, 149, 0.6);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.28), 0 8px 16px rgba(212, 175, 55, 0.2);
  font-size: 1.05rem;
}
.course-card p {
  margin-bottom: 0;
  color: #e1dbc9;
  line-height: 1.8;
}
.course-card--trading {
  gap: 12px;
}
.course-card--trading .course-intro {
  margin-bottom: 0;
}
.trading-benefits {
  display: grid;
  gap: 10px;
}
.trading-benefit-block {
  padding: 10px 11px;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.32);
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.11), rgba(10, 10, 10, 0.9));
}
.trading-benefit-block h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  color: #f2e2b0;
  font-size: 0.98rem;
}
.trading-mini-icon {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(170deg, rgba(255, 234, 172, 0.82), rgba(212, 175, 55, 0.38));
  border: 1px solid rgba(241, 221, 149, 0.58);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.24), 0 6px 14px rgba(212, 175, 55, 0.16);
  font-size: 0.9rem;
}
.trading-benefit-block ul {
  margin: 0;
  padding: 0 18px 0 0;
  display: grid;
  gap: 4px;
}
.trading-benefit-block li {
  color: #ddd6bf;
  line-height: 1.7;
  font-size: 0.92rem;
}
.trading-highlight {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(241, 221, 149, 0.46);
  background: rgba(212, 175, 55, 0.1);
  color: #f4e9c8 !important;
  font-size: 0.93rem;
  line-height: 1.85;
}
.course-tag {
  display: inline-block;
  margin-top: auto;
  align-self: flex-start;
  margin-right: 2px;
  margin-bottom: 2px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--gold-soft);
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(212, 175, 55, 0.08);
}
.course-card:hover {
  transform: translateY(-8px);
  border-color: rgba(241, 221, 149, 0.9);
  box-shadow: 0 0 0 1px rgba(241, 221, 149, 0.32), 0 24px 36px rgba(212, 175, 55, 0.24);
}

.presentation-card {
  padding: clamp(24px, 3.2vw, 34px);
  text-align: center;
  background:
    radial-gradient(circle at 12% 16%, rgba(212, 175, 55, 0.24), transparent 40%),
    radial-gradient(circle at 88% 82%, rgba(212, 175, 55, 0.14), transparent 38%),
    linear-gradient(154deg, rgba(212, 175, 55, 0.17), rgba(8, 8, 8, 0.98) 58%);
  border: 1px solid rgba(241, 221, 149, 0.48);
  box-shadow: 0 0 0 1px rgba(241, 221, 149, 0.16), 0 24px 44px rgba(0, 0, 0, 0.48);
}
.presentation-card h2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}
.presentation-card p {
  margin: 0 auto;
  max-width: 78ch;
  color: #ece5d1;
  font-size: clamp(1rem, 1.45vw, 1.1rem);
}
.presentation-icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(170deg, rgba(255, 234, 172, 0.88), rgba(212, 175, 55, 0.38));
  border: 1px solid rgba(241, 221, 149, 0.64);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.28), 0 8px 16px rgba(212, 175, 55, 0.2);
}
.presentation-card .center-cta {
  margin-top: 18px;
}

.social-block + .social-block { margin-top: 24px; }
.social-subtitle { margin-bottom: 10px; }
.social-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.social-card {
  padding: 20px 18px;
  text-align: center;
  background:
    radial-gradient(circle at 16% 8%, rgba(212, 175, 55, 0.22), transparent 56%),
    linear-gradient(160deg, #111111, #060606 70%);
  border-color: rgba(212, 175, 55, 0.42);
}
.social-card:hover {
  box-shadow: 0 0 0 1px rgba(241, 221, 149, 0.55), 0 22px 36px rgba(212, 175, 55, 0.22);
}
.icon {
  display: inline-grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin-bottom: 12px;
  background: radial-gradient(circle at 30% 28%, #f3de9a 0%, #d4af37 52%, #8e6a16 100%);
  border: 1.5px solid rgba(241, 221, 149, 0.92);
  box-shadow: 0 10px 22px rgba(212, 175, 55, 0.28), inset 0 1px 3px rgba(255, 255, 255, 0.38);
}
.icon svg {
  width: 34px;
  height: 34px;
  fill: #0e0e0e;
}
.icon-tiktok svg {
  width: 33px;
  height: 33px;
}
.social-card h4 {
  color: var(--gold-soft);
  margin-bottom: 12px;
  font-size: 1.12rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.why-card {
  padding: 22px 20px;
  background:
    radial-gradient(circle at 90% 8%, rgba(212, 175, 55, 0.16), transparent 48%),
    linear-gradient(160deg, rgba(212, 175, 55, 0.12), rgba(8, 8, 8, 0.95) 66%);
  border: 1px solid rgba(241, 221, 149, 0.48);
  box-shadow: inset 0 0 0 1px rgba(241, 221, 149, 0.12);
}
.why-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-soft);
  margin-bottom: 10px;
  font-size: 1.08rem;
}
.why-card p {
  margin: 0;
  color: #e8e1cd;
  line-height: 1.85;
}
.why-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid rgba(241, 221, 149, 0.6);
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.2);
  font-size: 0.95rem;
}
.why-card:hover,
.testimonial-card:hover {
  box-shadow: 0 0 0 1px rgba(241, 221, 149, 0.44), 0 24px 38px rgba(212, 175, 55, 0.2);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.testimonial-card {
  padding: 20px 18px;
  background:
    radial-gradient(circle at 12% 8%, rgba(212, 175, 55, 0.2), transparent 52%),
    linear-gradient(160deg, #121212, #070707 72%);
  border: 1px solid rgba(212, 175, 55, 0.42);
}
.testimonial-card p {
  margin: 12px 0 0;
  color: #e8e2cf;
  line-height: 1.85;
  font-size: 0.97rem;
}
.testimonial-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-head h3 {
  margin: 0 0 2px;
  color: var(--gold-soft);
  font-size: 1.04rem;
}
.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: radial-gradient(circle at 30% 30%, #f2dd9a 0%, #d4af37 56%, #8d6815 100%);
  color: #111;
  font-weight: 800;
  border: 1.5px solid rgba(241, 221, 149, 0.86);
  box-shadow: 0 8px 18px rgba(212, 175, 55, 0.24);
}
.stars {
  color: #f1cf64;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.28);
}

.faq-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(212, 175, 55, 0.14), transparent 40%),
    radial-gradient(circle at 88% 22%, rgba(212, 175, 55, 0.11), transparent 36%),
    linear-gradient(160deg, #0c0c0c, #050505 70%);
}
.faq-heading {
  margin-bottom: 24px;
  text-align: center;
}
.faq-heading .section-subtitle {
  margin-inline: auto;
  max-width: 64ch;
}
.faq-list {
  display: grid;
  gap: 14px;
  max-width: 940px;
  margin-inline: auto;
}
.faq-item {
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 16px;
  background: linear-gradient(150deg, rgba(212, 175, 55, 0.12), rgba(8, 8, 8, 0.95) 58%);
  box-shadow: inset 0 0 0 1px rgba(241, 221, 149, 0.08), 0 14px 26px rgba(0, 0, 0, 0.28);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.faq-item:hover {
  transform: translateY(-4px);
  border-color: rgba(241, 221, 149, 0.8);
  box-shadow: 0 20px 34px rgba(212, 175, 55, 0.17);
}
.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: #f5eed5;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  min-height: 58px;
  text-align: right;
  font: inherit;
  font-size: clamp(1.01rem, 1.6vw, 1.12rem);
  font-weight: 800;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.faq-question:hover {
  color: var(--gold-soft);
}
.faq-question:focus-visible {
  outline: 2px solid rgba(241, 221, 149, 0.84);
  outline-offset: -2px;
  border-radius: 16px;
}
.faq-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(212, 175, 55, 0.16);
  border: 1px solid rgba(241, 221, 149, 0.55);
  color: #f5da83;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.2);
}
.faq-chevron {
  margin-inline-start: auto;
  font-size: 1.25rem;
  color: var(--gold-soft);
  transition: transform 0.35s ease;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease;
}
.faq-answer > p {
  margin: 0;
  padding: 0 20px 18px;
  color: #e7e0cb;
  line-height: 1.95;
}
.faq-item.open .faq-answer {
  opacity: 1;
}

.final-cta { text-align: center; }
.contact-section {
  background:
    radial-gradient(circle at 14% 8%, rgba(212, 175, 55, 0.17), transparent 42%),
    radial-gradient(circle at 90% 18%, rgba(212, 175, 55, 0.12), transparent 36%),
    linear-gradient(158deg, #0d0d0d, #050505 75%);
}
.contact-header {
  max-width: 820px;
  margin: 0 auto;
}
.contact-header p {
  margin-bottom: 16px;
  color: #ece4cd;
  font-size: clamp(1.02rem, 1.4vw, 1.1rem);
}
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}
.trust-badge {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(241, 221, 149, 0.45);
  background: rgba(212, 175, 55, 0.09);
  color: var(--gold-soft);
  font-weight: 700;
  font-size: 0.92rem;
}
.contact-main-cta {
  margin-bottom: 24px;
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.contact-card {
  padding: 20px 16px;
  text-align: center;
  background:
    radial-gradient(circle at 15% 8%, rgba(212, 175, 55, 0.22), transparent 56%),
    linear-gradient(162deg, #111111, #060606 70%);
  border: 1px solid rgba(212, 175, 55, 0.45);
}
.contact-card h3 {
  color: var(--gold-soft);
  margin-bottom: 8px;
}
.contact-card p {
  margin-bottom: 14px;
  line-height: 1.75;
  color: #e7e0cc;
  min-height: 88px;
}
.contact-card:hover {
  border-color: rgba(241, 221, 149, 0.86);
  box-shadow: 0 0 0 1px rgba(241, 221, 149, 0.55), 0 22px 34px rgba(212, 175, 55, 0.2);
}
.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 12px;
  padding: 12px 20px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(180deg, #e4c157 0%, #c89a2d 100%);
  color: #0f0f0f;
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.35);
}
.btn-outline {
  color: var(--gold-soft);
  border: 1px solid var(--border);
  background: rgba(212, 175, 55, 0.03);
}
.btn-outline:hover { background: rgba(212, 175, 55, 0.12); }

.footer {
  border-top: 1px solid var(--border);
  padding: 34px 0;
  background: linear-gradient(180deg, #090909 0%, #060606 100%);
}
.footer-inner {
  display: grid;
  justify-items: center;
  gap: 12px;
}
.footer-text {
  margin: 0;
  color: var(--gold-soft);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  font-weight: 800;
  letter-spacing: 0.02em;
}
.footer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 20px;
}
.footer-logos img {
  max-height: 38px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatElement {
  0%,
  100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
}

@keyframes orbitalDrift {
  0%,
  100% { transform: translate(-50%, -50%) rotate(calc(var(--angle) * 1deg)) translateX(calc(var(--radius) * var(--orbit-scale))); }
  50% { transform: translate(-50%, -50%) rotate(calc((var(--angle) + 4) * 1deg)) translateX(calc((var(--radius) * var(--orbit-scale)) + 5px)); }
}

@keyframes orbitBadgeFloat {
  0%,
  100% { transform: rotate(calc(var(--angle) * -1deg)) translateY(0); }
  50% { transform: rotate(calc(var(--angle) * -1deg)) translateY(-5px); }
}

@keyframes lineSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes particlePulse {
  0%,
  100% { opacity: 0.5; }
  50% { opacity: 0.85; }
}

@keyframes centerGlow {
  0%,
  100% { box-shadow: 0 0 0 1px rgba(241, 221, 149, 0.28), 0 0 38px rgba(212, 175, 55, 0.42), inset 0 0 34px rgba(212, 175, 55, 0.22); }
  50% { box-shadow: 0 0 0 1px rgba(241, 221, 149, 0.42), 0 0 56px rgba(212, 175, 55, 0.58), inset 0 0 42px rgba(212, 175, 55, 0.32); }
}

@keyframes heroFloat {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes heroHaloPulse {
  0%,
  100% { opacity: 0.54; transform: scale(0.98); }
  50% { opacity: 0.92; transform: scale(1.04); }
}

@media (prefers-reduced-motion: reduce) {
  .orbit-item,
  .orbit-item-inner,
  .center-frame,
  .hero-halo,
  .premium-frame {
    animation: none;
  }
}

@media (max-width: 1100px) {
  .courses-grid,
  .social-grid,
  .about-stats,
  .why-grid,
  .testimonials-grid,
  .contact-cards,
  .vision-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid,
  .founder-grid {
    grid-template-columns: 1fr;
  }

  .future-orbit {
    width: min(96vw, 760px);
    min-height: clamp(420px, 60vw, 520px);
  }

  .hero-image-wrap {
    max-width: 520px;
    margin-inline: auto;
  }

  .hero-content {
    text-align: center;
  }

  .hero-content p {
    margin-inline: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .section { padding: 88px 0; }

  .menu-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 96px;
    right: 4%;
    width: min(310px, 92%);
    background: #101010;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px;
    flex-direction: column;
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.45);
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; }
}

@media (max-width: 680px) {
  .section { padding: 68px 0; }
  .logo img { height: 90px; }

  .hero-stats,
  .courses-grid,
  .social-grid,
  .why-grid,
  .testimonials-grid,
  .contact-cards,
  .vision-grid,
  .about-stats {
    grid-template-columns: 1fr;
  }


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

  .future-skills-section {
    padding-top: 44px;
    padding-bottom: 32px;
  }

  .future-orbit {
    --orbit-scale: 0.52;
    width: min(95vw, 390px);
    min-height: clamp(340px, 98vw, 410px);
  }

  .center-frame {
    width: clamp(96px, 24vw, 112px);
    height: clamp(96px, 24vw, 112px);
    padding: 12px;
  }

  .center-frame::before {
    inset: -10px;
  }

  .orbit-item {
    animation-duration: 15s;
  }

  .orbit-item-inner {
    gap: 5px;
    padding: 6px 9px;
    border-radius: 999px;
    box-shadow: 0 7px 16px rgba(0, 0, 0, 0.38), 0 0 14px rgba(212, 175, 55, 0.18);
  }

  .orbit-item-inner:hover {
    transform: rotate(calc(var(--angle) * -1deg)) translateY(-1px);
  }

  .item-icon {
    width: 18px;
    height: 18px;
    font-size: 0.68rem;
  }

  .item-label {
    font-size: 0.62rem;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 10vw, 2.6rem);
  }

  .hero-content span {
    font-size: clamp(1.7rem, 9vw, 2.4rem);
  }

  .footer-inner {
    gap: 9px;
  }

  .footer-logos {
    gap: 14px;
  }

  .footer-logos img {
    max-height: 30px;
  }

  .social-card { padding: 18px 16px; }
  .faq-question {
    padding: 18px 16px;
    min-height: 64px;
    gap: 10px;
    font-size: 0.98rem;
  }
  .faq-answer > p {
    padding-inline: 16px;
    padding-bottom: 16px;
    line-height: 1.8;
  }
  .faq-icon {
    width: 26px;
    height: 26px;
  }
  .trust-badges {
    justify-content: stretch;
  }
  .trust-badge {
    width: 100%;
    text-align: center;
  }
  .contact-card p {
    min-height: auto;
  }
  .icon {
    width: 64px;
    height: 64px;
    margin-bottom: 10px;
  }
  .icon svg {
    width: 30px;
    height: 30px;
  }
}

.commissions-card {
  margin: 14px auto 0;
  max-width: min(760px, 100%);
  padding: clamp(16px, 2.2vw, 22px);
  text-align: center;
  background: linear-gradient(150deg, rgba(212, 175, 55, 0.12), rgba(12, 12, 12, 0.96) 62%);
  border: 1px solid rgba(212, 175, 55, 0.34);
}
.commissions-card h3 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: clamp(1.06rem, 1.9vw, 1.25rem);
}
.commissions-card p {
  margin: 0;
}
.commissions-support {
  color: #e6deca;
  line-height: 1.45;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 700;
}
.commissions-highlight {
  margin-top: 6px !important;
  font-size: clamp(3rem, 10vw, 5.2rem);
  line-height: 0.95;
  font-weight: 900;
  color: var(--gold);
  text-shadow: 0 0 24px rgba(212, 175, 55, 0.32);
}
.commissions-bonus {
  margin-top: 8px !important;
  color: #f6e9b8;
  font-size: clamp(1.05rem, 2.6vw, 1.45rem);
  font-weight: 650;
  line-height: 1.3;
}
.commissions-icon {
  font-size: 1.1em;
}
