/* =========================================================
   TheGrowthLoop — dark, cosmic, CometChat-inspired
   ========================================================= */
:root {
  --bg: #06060a;
  --bg-2: #0a0a14;
  --surface: #0f0f1c;
  --card: rgba(20, 20, 34, .72);
  --border: rgba(255, 255, 255, .08);
  --border-strong: rgba(255, 255, 255, .14);
  --fg: #f3f3f7;
  --muted: #9a9ab0;
  --muted-2: #6b6b82;
  --violet: #8b6bff;
  --violet-2: #a78bff;
  --violet-3: #5a3df0;
  --ember: #ff7a3d;
  --success: #3ddc8c;
  --danger: #ff5c66;
  --radius: 14px;
  --radius-lg: 22px;
  --font: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --shadow: 0 30px 80px -30px rgba(0, 0, 0, .6), 0 10px 40px -20px rgba(139, 107, 255, .25);
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
}

a {
  color: inherit;
  text-decoration: none
}

ul {
  list-style: none
}

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

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px
}

@media(min-width:900px) {
  .container {
    padding: 0 48px
  }
}

/* Typography */
.eyebrow {
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 600;
  margin-bottom: 1rem;
}

.h2 {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.05;
  max-width: 880px;
  margin-bottom: 3rem;
}

.display {
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.02;
}

.grad {
  background: linear-gradient(180deg, #ece6ff 0%, #a78bff 60%, #8b6bff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 620px;
  line-height: 1.7
}

.lead.small {
  font-size: 1rem
}

.muted {
  color: var(--muted)
}

.small {
  font-size: 14px
}

.mt {
  margin-top: 1rem
}

.center {
  justify-content: center
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .75rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s;
}

.btn-primary {
  background: var(--violet);
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(139, 107, 255, .6)
}

.btn-primary:hover {
  background: var(--violet-2);
  transform: translateY(-1px);
  box-shadow: 0 16px 40px -12px rgba(167, 139, 255, .7)
}

.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--border-strong)
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .25)
}

.link-plain {
  font-size: 14px;
  color: var(--fg);
  font-weight: 500
}

.link-plain:hover {
  color: var(--violet-2)
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  transition: background .4s, backdrop-filter .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(6, 6, 10, .75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border)
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px
}

.brand {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -.02em;
  color: var(--fg);
  display: inline-flex;
  align-items: baseline;
}

.brand span {
  color: var(--violet-2);
  font-weight: 800
}

.nav-links {
  display: none;
  gap: 2rem;
  font-size: 14px;
  color: #fcfaf6cf;
  /* color: var(--muted)*/

}

@media(min-width:900px) {
  .nav-links {
    display: flex
  }
}

.nav-links a {
  position: relative;
  transition: color .2s
}

.nav-links a:hover {
  color: var(--fg)
}

.nav-actions {
  display: none;
  align-items: center;
  gap: 1rem
}

@media(min-width:900px) {
  .nav-actions {
    display: flex
  }
}

.menu-btn {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: transparent;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--fg);
  border-radius: 2px
}

.menu-btn span+span {
  margin-top: 5px
}

@media(min-width:900px) {
  .menu-btn {
    display: none
  }
}

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  background: rgba(10, 10, 20, .96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border)
}

.mobile-menu.open {
  max-height: 460px
}

.mobile-menu .container {
  padding-block: 1rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  font-size: 15px;
  color: #fcfaf6cf;
  /* color: var(--muted) */
}

.mobile-menu a.btn {
  align-self: flex-start;
  color: #fff
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 170px 0 90px;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
  min-height: 760px;
}

.planet {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -30%);
  width: 1500px;
  height: 1500px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(139, 107, 255, .55) 0%, rgba(139, 107, 255, .18) 28%, transparent 42%),
    radial-gradient(circle at 50% 90%, rgba(255, 122, 61, .45), transparent 35%);
  filter: blur(20px);
  z-index: -2;
  pointer-events: none;
}

.planet::after {
  content: "";
  position: absolute;
  inset: 30% 0 0 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(6, 6, 10, 0) 0%, rgba(6, 6, 10, .9) 60%, var(--bg) 100%);
}

.stars {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 10% 20%, #fff 50%, transparent),
    radial-gradient(1px 1px at 80% 14%, #fff 50%, transparent),
    radial-gradient(1px 1px at 30% 70%, rgba(255, 255, 255, .7) 50%, transparent),
    radial-gradient(1px 1px at 90% 60%, #fff 50%, transparent),
    radial-gradient(1px 1px at 55% 30%, rgba(255, 255, 255, .6) 50%, transparent),
    radial-gradient(1px 1px at 22% 50%, #fff 50%, transparent),
    radial-gradient(1px 1px at 70% 80%, rgba(255, 255, 255, .7) 50%, transparent);
  opacity: .55;
}

.hero-inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto
}

.hero .display {
  margin: 0 auto
}

.hero .lead {
  margin: 1.6rem auto 0;
  text-align: center
}

.cmd-label {
  margin-top: 2.4rem;
  color: var(--muted);
  font-size: 13px
}

.cmd {
  margin: .7rem auto 0;
  max-width: 520px;
  display: flex;
  align-items: center;
  gap: .6rem;
  background: rgba(20, 20, 34, .7);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: .65rem .9rem;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--fg);
  backdrop-filter: blur(8px);
}

.cmd-arrow {
  color: var(--violet-2);
  font-weight: 700
}

.cmd code {
  flex: 1;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--muted)
}

.cmd-copy {
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 16px
}

.cmd-copy:hover {
  color: var(--fg)
}

.hero-ctas {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  justify-content: center
}

/* Floating cards */
.float-card {
  position: absolute;
  z-index: 1;
  background: linear-gradient(180deg, rgba(28, 28, 46, .85), rgba(14, 14, 26, .85));
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  padding: 14px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  font-size: 12px;
  text-align: left;
  width: 230px;
  animation: float 7s ease-in-out infinite;
}

.float-card.fc-2 {
  width: 200px;
  animation-delay: -2s
}

.float-card.fc-3 {
  width: 240px;
  animation-delay: -3.5s
}

.float-card.fc-4 {
  width: 220px;
  animation-delay: -1.2s
}

.fc-1 {
  left: 2%;
  top: 34%
}

.fc-2 {
  left: 14%;
  bottom: 8%
}

.fc-3 {
  right: 2%;
  top: 34%
}

.fc-4 {
  right: 10%;
  bottom: 10%
}

@media(max-width:1100px) {
  .float-card {
    display: none
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

.fc-head {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: .7rem
}

.avatar,
.t-av {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--violet-3));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  flex: none;
}

.fc-title {
  font-weight: 600;
  color: var(--fg);
  font-size: 12px
}

.fc-meta {
  color: var(--muted-2);
  font-size: 10px;
  margin-top: 1px
}

.bubble {
  padding: .45rem .65rem;
  border-radius: 12px;
  margin-bottom: .35rem;
  max-width: 80%;
  color: var(--fg);
  font-size: 11px;
  line-height: 1.4
}

.bubble.in {
  background: rgba(255, 255, 255, .06);
  border-bottom-left-radius: 4px
}

.bubble.out {
  background: var(--violet);
  border-bottom-right-radius: 4px;
  margin-left: auto
}

.bubble.small {
  font-size: 10px
}

.fc-mini {
  color: var(--muted-2);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .35rem
}

.fc-title-2 {
  font-weight: 600;
  font-size: 13px;
  margin-bottom: .7rem
}

.fc-actions {
  display: flex;
  gap: .4rem
}

.pill {
  flex: 1;
  padding: .4rem;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  font-size: 11px;
  color: #fff;
  cursor: pointer
}

.pill.danger {
  background: var(--danger)
}

.pill.success {
  background: var(--success);
  color: #062018
}

.spark {
  color: var(--violet-2);
  font-size: 14px
}

.fc-greeting {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  margin: .4rem 0 .6rem
}

.fc-greeting b {
  color: var(--fg);
  font-weight: 600;
  font-size: 14px
}

.chip-row {
  display: flex;
  gap: .35rem;
  margin-bottom: .35rem;
  flex-wrap: wrap
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  padding: .3rem .55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--border);
  font-size: 10px;
  color: var(--fg);
}

.fc-input {
  margin-top: .5rem;
  padding: .45rem .65rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  color: var(--muted-2);
  font-size: 10px;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-bottom: .55rem
}

.vt {
  aspect-ratio: 1;
  border-radius: 8px;
  background: linear-gradient(135deg, #2a2a44, #16162a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--violet-2);
  font-size: 14px;
}

.call-bar {
  display: flex;
  gap: .35rem;
  justify-content: center;
  align-items: center
}

.cb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: inline-block
}

.cb.end {
  background: var(--danger);
  color: #fff;
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700
}

/* ============ LOGO STRIP ============ */
.logo-strip {
  padding: 30px 0 50px;
  border-top: 1px dashed var(--border);
  border-bottom: 1px dashed var(--border)
}

.logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  color: var(--muted-2);
  font-weight: 700;
  letter-spacing: .15em;
  font-size: 14px;
  flex-wrap: wrap;
}

.logos span {
  opacity: .6;
  transition: opacity .3s, color .3s
}

.logos span:hover {
  opacity: 1;
  color: var(--fg)
}

/* ============ TRUST ============ */
.trust {
  padding: 80px 0;
  border-bottom: 1px dashed var(--border)
}

.trust-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center
}

@media(min-width:900px) {
  .trust-inner {
    grid-template-columns: 1fr 2fr
  }
}

.h-trust {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.1
}

.badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem
}

@media(min-width:700px) {
  .badges {
    grid-template-columns: repeat(6, 1fr)
  }
}

.badge {
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, rgba(139, 107, 255, .18), transparent 60%), #0f0f1c;
  border: 1px solid var(--border-strong);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  color: var(--fg);
  text-align: center;
  transition: transform .3s, border-color .3s;
}

.badge small {
  font-weight: 500;
  font-size: 9px;
  color: var(--muted);
  margin-top: 2px
}

.badge:hover {
  transform: translateY(-3px);
  border-color: var(--violet)
}

/* ============ SECTIONS ============ */
.section {
  padding: 120px 0;
  position: relative
}

.section+.section {
  border-top: 1px dashed var(--border)
}

/* About */
.about-grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr
}

@media(min-width:900px) {
  .about-grid {
    grid-template-columns: 1.2fr 1fr
  }
}

.prose {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1rem;
  max-width: 560px
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--fg);
  font-size: 1rem;
}

.feature-list li i {
  color: var(--violet-2);
  font-style: normal
}

/* Why */
.why-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr
}

@media(min-width:700px) {
  .why-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(min-width:1024px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

.why-card {
  background: linear-gradient(180deg, rgba(20, 20, 34, .6), rgba(10, 10, 20, .3));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: border-color .35s, transform .35s, background .35s;
}

.why-card:hover {
  border-color: rgba(139, 107, 255, .45);
  transform: translateY(-4px);
  background: linear-gradient(180deg, rgba(30, 24, 56, .6), rgba(14, 14, 26, .4));
}

.card-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--violet-2);
  padding: .25rem .55rem;
  border: 1px solid rgba(139, 107, 255, .3);
  border-radius: 999px;
  margin-bottom: 1.2rem;
}

.why-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -.01em;
  margin-bottom: .6rem
}

.why-card p {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.6
}

/* Programs */
.programs {
  margin-top: 1rem;
  border-top: 1px solid var(--border);
}

.programs li {
  display: grid;
  grid-template-columns: 60px 1fr 40px;
  gap: 1.2rem;
  align-items: center;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--border);
  transition: padding .35s, background .35s;
  position: relative;
}

.programs li:hover {
  padding-left: 1rem;
  background: linear-gradient(90deg, rgba(139, 107, 255, .06), transparent)
}

.p-num {
  font-family: var(--mono);
  font-size: .95rem;
  color: var(--muted-2)
}

.programs h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 600;
  letter-spacing: -.02em
}

.programs li>div p {
  color: var(--muted);
  font-size: .95rem;
  margin-top: .3rem;
  max-width: 680px
}

.p-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--fg);
  transition: all .35s ease;
}

.programs li:hover .p-arrow {
  background: var(--violet);
  border-color: var(--violet);
  color: #fff;
  transform: rotate(-45deg)
}

/* Community */
.community {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr
}

@media(min-width:900px) {
  .community {
    grid-template-columns: 1fr 1fr;
    align-items: center
  }
}

.community-list li {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: -.01em;
  transition: padding .35s, color .35s;
}

.community-list li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  color: var(--violet-2);
  font-size: 14px;
  transition: all .35s;
}

.community-list li:hover {
  padding-left: .5rem;
  color: var(--violet-2)
}

.community-list li:hover span {
  background: var(--violet);
  color: #fff;
  border-color: var(--violet)
}

/* Process */
.steps {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1fr;
  margin-top: .5rem
}

@media(min-width:800px) {
  .steps {
    grid-template-columns: repeat(3, 1fr)
  }
}

.step {
  background: linear-gradient(180deg, rgba(20, 20, 34, .5), rgba(10, 10, 20, .2));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform .35s, border-color .35s;
}

.step:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 107, 255, .4)
}

.s-n {
  display: inline-block;
  font-family: var(--mono);
  font-size: 13px;
  background: linear-gradient(135deg, var(--violet), var(--violet-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.step h3 {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -.02em;
  margin-bottom: .5rem
}

.step p {
  color: var(--muted)
}

/* Testimonials */
.testimonials {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1fr
}

@media(min-width:800px) {
  .testimonials {
    grid-template-columns: repeat(3, 1fr)
  }
}

.testimonials figure {
  background: rgba(20, 20, 34, .4);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  transition: border-color .35s, transform .35s;
}

.testimonials figure:hover {
  transform: translateY(-3px);
  border-color: rgba(139, 107, 255, .4)
}

.testimonials blockquote {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--fg);
  margin-bottom: 1.4rem
}

.testimonials figcaption {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--muted);
  font-size: 13px
}

/* CTA */
.cta-section {
  padding-top: 60px;
  padding-bottom: 140px
}

.cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid var(--border-strong);
  background: linear-gradient(180deg, #0c0c1a 0%, #14112a 100%);
  padding: 5rem 2rem;
  text-align: center;
  isolation: isolate;
}

@media(min-width:800px) {
  .cta-card {
    padding: 7rem 4rem
  }
}

.cta-glow {
  position: absolute;
  left: 50%;
  top: -40%;
  width: 800px;
  height: 800px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(139, 107, 255, .45) 0%, transparent 60%);
  z-index: -1;
  filter: blur(20px);
}

.cta-card .display {
  margin: 0 auto 1.4rem;
  max-width: 760px
}

.cta-card .lead {
  margin: 0 auto
}

.cta-card .hero-ctas {
  margin-top: 2.4rem
}

/* Footer */
.footer {
  border-top: 1px dashed var(--border);
  padding: 5rem 0 2rem;
  background: var(--bg-2)
}

.foot-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr
}

@media(min-width:800px) {
  .foot-grid {
    grid-template-columns: 2fr 1fr 1.2fr
  }
}

.foot-head {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 1.2rem;
  font-weight: 600
}

.footer ul li {
  margin-bottom: .7rem
}

.footer ul a {
  font-size: 14px;
  color: var(--muted);
  transition: color .25s
}

.footer ul a:hover {
  color: var(--violet-2)
}

.foot-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px dashed var(--border);
  display: flex;
  flex-direction: column;
  gap: .5rem;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted-2);
}

@media(min-width:700px) {
  .foot-bottom {
    flex-direction: row;
    align-items: center
  }
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.2, .7, .2, 1)
}

.reveal.in {
  opacity: 1;
  transform: none
}

@media (prefers-reduced-motion:reduce) {
  * {
    animation: none !important;
    transition: none !important
  }

  .reveal {
    opacity: 1;
    transform: none
  }
}

/* ============ STATS ============ */
.stats-section {
  padding: 40px 0 90px;
  border-bottom: 1px dashed var(--border)
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: left
}

@media(min-width:800px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr)
  }
}

.stat {
  padding: 1.2rem 0;
  border-left: 1px solid var(--border);
  padding-left: 1.4rem
}

.stat:first-child {
  border-left: none;
  padding-left: 0
}

@media(max-width:799px) {

  .stat,
  .stat:first-child {
    border-left: none;
    padding-left: 0
  }
}

.stat-n {
  display: block;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.05;
  margin-bottom: .4rem
}

.stat p {
  color: var(--muted);
  font-size: .95rem
}

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
  position: relative;
  padding: 170px 0 80px;
  isolation: isolate;
  overflow: hidden;
  text-align: left
}

.page-hero .hero-inner {
  max-width: 920px;
  margin: 0;
  text-align: left
}

.page-hero .display {
  margin: 1rem 0
}

.page-hero .lead {
  margin: 1.4rem 0 0;
  text-align: left
}

.page-hero .hero-ctas {
  justify-content: flex-start;
  margin-top: 2rem
}

/* ============ PROGRAM DETAIL ============ */
.program-stack {
  display: flex;
  flex-direction: column;
  gap: 1.2rem
}

.program-detail {
  background: linear-gradient(180deg, rgba(20, 20, 34, .55), rgba(10, 10, 20, .25));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 2.2rem;
  transition: border-color .35s, transform .35s;
}

.program-detail:hover {
  border-color: rgba(139, 107, 255, .4);
  transform: translateY(-3px)
}

.pd-head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: .8rem;
  flex-wrap: wrap
}

.pd-head h2 {
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  font-weight: 600;
  letter-spacing: -.02em
}

.pd-head .p-num {
  font-family: var(--mono);
  color: var(--violet-2);
  font-size: 1rem
}

.learn-label {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted-2);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 1.2rem 0 .6rem
}

.program-detail .chip-row {
  gap: .45rem
}

.program-detail .chip {
  font-size: 12px;
  padding: .4rem .75rem;
  background: rgba(139, 107, 255, .08);
  border-color: rgba(139, 107, 255, .25);
  color: var(--fg)
}

/* ============ 4-COL TESTIMONIALS ============ */
@media(min-width:1024px) {
  .testimonials.testimonials-4 {
    grid-template-columns: repeat(4, 1fr)
  }
}

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem
}

@media(min-width:900px) {
  .contact-grid {
    grid-template-columns: 1.4fr 1fr
  }
}

.contact-form {
  background: linear-gradient(180deg, rgba(20, 20, 34, .55), rgba(10, 10, 20, .25));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: .4rem
}

.field label {
  font-size: 12px;
  color: var(--muted-2);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600
}

.field input,
.field textarea {
  width: 100%;
  padding: .85rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border-strong);
  color: var(--fg);
  font: inherit;
  font-size: 14px;
  transition: border-color .25s, background .25s;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--violet);
  background: rgba(139, 107, 255, .06)
}

.field textarea {
  resize: vertical;
  min-height: 120px
}

.contact-form .btn {
  align-self: flex-start
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.6rem
}

.info-block {
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--border)
}

.info-block:last-child {
  border-bottom: none
}

.info-link {
  display: inline-block;
  color: var(--fg);
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: .3rem;
  transition: color .25s
}

.info-link:hover {
  color: var(--violet-2)
}


/* correction */
.Logonav img {
  height: 50px;
  width: auto;
  display: block;
}

.footer-logo {
  width: 220px;
  max-width: 100%;
  height: auto;
  display: block;
}

.testimonials-slider {
  width: 100%;
  overflow: hidden;
  margin-top: 50px;
  position: relative;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scrollTestimonials 25s linear infinite;
}

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

.testimonial-card {
  width: 340px;
  min-width: 340px;
  padding: 28px;
  background: rgba(20, 20, 34, 0.4);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
}

.testimonial-card blockquote {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--fg);
  margin-bottom: 1.4rem;
}

.testimonial-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #111;
}

.t-av {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: rgb(255, 255, 255);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--violet-3));
  flex: 0 0 auto;
}

@keyframes scrollTestimonials {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Fade edges */

.testimonials-slider::before,
.testimonials-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
}

.testimonials-slider::before {
  left: 0;
  /* background: linear-gradient(to right, #fff, transparent); */
}

.testimonials-slider::after {
  right: 0;
  /* background: linear-gradient(to left, #fff, transparent); */
}

/* Tablet */

@media (max-width: 991px) {
  .testimonial-card {
    width: 300px;
    min-width: 300px;
  }
}

/* Mobile */

@media (max-width: 768px) {
  .testimonial-card {
    width: 260px;
    min-width: 260px;
    padding: 22px;
  }

  .testimonials-track {
    animation-duration: 18s;
  }

  .testimonials-slider::before,
  .testimonials-slider::after {
    transform: translateY(-3px);
    border-color: rgba(139, 107, 255, 0.4);
    width: 40px;
  }
}
.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: rgba(139, 107, 255, 0.4);
  box-shadow: 0 16px 40px rgba(139, 107, 255, 0.15);
}
