:root{
  --axyn-black: #191919;
  --axyn-ice: #EEEEEE;
  --axyn-lavender: #CFD4FF;
  --axyn-lilac: #B486EA;
  --axyn-mint: #8CD7B4;
  --axyn-yellow: #FEE38A;

  --bg-main: #0f0f12;
  --bg-soft: #15151b;
  --bg-card: rgba(255,255,255,0.06);
  --line: rgba(255,255,255,0.1);
  --line-dark: rgba(25,25,25,0.08);
  --text-main: #f5f7fb;
  --text-soft: rgba(245,247,251,0.72);
  --text-dark: #1a1a1a;
  --text-muted-dark: rgba(26,26,26,0.65);

  --shadow-xl: 0 28px 90px rgba(0,0,0,0.30);
  --shadow-lg: 0 18px 60px rgba(0,0,0,0.20);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.16);

  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 18px;

  --ease: all .35s ease;
}

*{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(180,134,234,0.10), transparent 30%),
    radial-gradient(circle at 85% 10%, rgba(207,212,255,0.11), transparent 28%),
    linear-gradient(180deg, #0d0d11 0%, #13131a 100%);
  color: var(--text-main);
  overflow-x: hidden;
}

a{
  text-decoration: none;
}

.site-loader{
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10,10,12,0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .45s ease, visibility .45s ease;
}

.site-loader.hide{
  opacity: 0;
  visibility: hidden;
}

.loader-core{
  width: min(90vw, 380px);
  text-align: center;
}

.loader-mark{
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.35rem;
  color: #fff;
  margin-bottom: 1rem;
}

.loader-line{
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

.loader-line span{
  display: block;
  height: 100%;
  width: 42%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--axyn-lavender), var(--axyn-lilac), var(--axyn-mint));
  animation: loaderMove 1.25s ease-in-out infinite;
}

.loader-core p{
  margin: 1rem 0 0;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}

@keyframes loaderMove{
  0%{ transform: translateX(-115%); }
  100%{ transform: translateX(260%); }
}

.bg-grid{
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.07;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at center, rgba(0,0,0,1), transparent 80%);
}

.bg-orb{
  position: fixed;
  border-radius: 999px;
  filter: blur(70px);
  pointer-events: none;
  opacity: 0.35;
}

.orb-1{
  width: 280px;
  height: 280px;
  background: var(--axyn-lilac);
  top: -60px;
  right: -50px;
}

.orb-2{
  width: 220px;
  height: 220px;
  background: var(--axyn-lavender);
  left: -60px;
  top: 35%;
}

.site-header{
  position: sticky;
  top: 0;
  z-index: 200;
  backdrop-filter: blur(18px);
  background: rgba(10,10,14,0.56);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.navbar{
  padding: 1rem 0;
}

.brand-mark{
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.16em;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  gap: .75rem;
}

.brand-dot{
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--axyn-lavender), var(--axyn-lilac));
  box-shadow: 0 0 20px rgba(180,134,234,0.7);
}

.nav-link{
  color: rgba(255,255,255,0.72) !important;
  font-weight: 500;
  transition: var(--ease);
}

.nav-link:hover{
  color: #fff !important;
}

.btn{
  border-radius: 999px;
  padding: .88rem 1.25rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: var(--ease);
}

.btn-brand{
  color: #141414;
  background: linear-gradient(135deg, var(--axyn-lavender), var(--axyn-lilac));
  box-shadow: 0 14px 30px rgba(180,134,234,0.22);
}

.btn-brand:hover{
  transform: translateY(-2px);
  color: #111;
  box-shadow: 0 18px 34px rgba(180,134,234,0.28);
}

.btn-ghost{
  color: #fff;
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.09);
}

.btn-ghost:hover,
.btn-soft:hover{
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.btn-soft{
  border-color: rgba(255,255,255,0.16);
}

.hero-section{
  position: relative;
  padding: 5.5rem 0 4rem;
}

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .55rem .95rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .03em;
  margin-bottom: 1.2rem;
}

.eyebrow.dark{
  background: rgba(25,25,25,0.05);
  border-color: rgba(25,25,25,0.08);
  color: var(--text-dark);
}

.hero-copy h1{
  font-size: clamp(2.6rem, 6vw, 5.25rem);
  line-height: .95;
  font-weight: 800;
  letter-spacing: -0.05em;
  margin-bottom: 1.2rem;
}

.hero-copy h1 span{
  display: block;
  color: var(--axyn-lavender);
}

.hero-text{
  max-width: 700px;
  font-size: 1.06rem;
  line-height: 1.75;
  color: var(--text-soft);
  margin-bottom: 1.8rem;
}

.hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

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

.proof-item{
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.proof-item strong{
  display: block;
  font-size: 1rem;
  margin-bottom: .3rem;
}

.proof-item span{
  color: var(--text-soft);
  font-size: .92rem;
  line-height: 1.5;
}

.hero-visual{
  position: relative;
}

.main-panel{
  position: relative;
  padding: 1.15rem;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.main-panel::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(207,212,255,0.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(180,134,234,0.18), transparent 25%);
  pointer-events: none;
}

.panel-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.panel-pill{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .8rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  font-size: .84rem;
}

.panel-status{
  font-size: .85rem;
  color: var(--axyn-mint);
}

.metric-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .9rem;
  position: relative;
  z-index: 1;
}

.metric-card{
  border-radius: 22px;
  padding: 1rem;
  background: rgba(9,9,12,0.42);
  border: 1px solid rgba(255,255,255,0.08);
}

.metric-card small{
  display: block;
  color: rgba(255,255,255,0.62);
  margin-bottom: .45rem;
}

.metric-card h3{
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: .25rem;
}

.metric-card span{
  color: var(--axyn-mint);
  font-size: .88rem;
}

.metric-card.lilac span{
  color: var(--axyn-lavender);
}

.metric-card .up i{
  margin-right: .15rem;
}

.journey-card,
.insight-card{
  position: relative;
  z-index: 1;
  margin-top: .9rem;
  border-radius: 22px;
  padding: 1rem;
  background: rgba(9,9,12,0.42);
  border: 1px solid rgba(255,255,255,0.08);
}

.journey-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .9rem;
}

.journey-head h4{
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.journey-head span{
  color: rgba(255,255,255,0.58);
  font-size: .82rem;
}

.journey-steps{
  display: grid;
  gap: .75rem;
}

.step{
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .88rem 1rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.72);
}

.step.active{
  background: linear-gradient(135deg, rgba(207,212,255,0.12), rgba(180,134,234,0.12));
  color: #fff;
}

.insight-card{
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.insight-copy small{
  display: inline-block;
  color: var(--axyn-yellow);
  margin-bottom: .45rem;
}

.insight-copy p{
  margin: 0;
  color: rgba(255,255,255,0.74);
  line-height: 1.6;
  font-size: .93rem;
}

.insight-icon{
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(180,134,234,0.14);
  color: var(--axyn-lavender);
  font-size: 1.35rem;
  flex: 0 0 auto;
}

.floating-badge{
  position: absolute;
  padding: .9rem 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.92);
  color: #111;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(25,25,25,0.06);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}

.floating-badge i{
  color: #7d61d8;
}

.floating-badge-1{
  top: 8%;
  left: -10%;
}

.floating-badge-2{
  bottom: 7%;
  right: -6%;
}

.trust-strip{
  padding: 1rem 0 0;
}

.trust-wrap{
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.04);
  border-radius: 24px;
  padding: 1.05rem 1.2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.trust-wrap > span{
  color: rgba(255,255,255,0.7);
}

.trust-icons{
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.trust-icons div{
  display: flex;
  align-items: center;
  gap: .45rem;
  color: #fff;
  font-weight: 500;
}

.section-block{
  padding: 6rem 0;
}

.section-heading{
  max-width: 860px;
  margin-bottom: 2.25rem;
}

.section-heading h2{
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.02;
  color: var(--text-dark);
  font-weight: 800;
  letter-spacing: -0.045em;
  margin-bottom: 1rem;
}

.section-heading h2 span{
  color: #6f58d0;
}

.section-heading p{
  color: var(--text-muted-dark);
  font-size: 1.03rem;
  line-height: 1.8;
}

.section-block:not(.section-dark):not(.section-proof){
  background: var(--axyn-ice);
  color: var(--text-dark);
  position: relative;
}

.feature-card,
.module-card,
.proof-card{
  height: 100%;
  border-radius: 24px;
  padding: 1.4rem;
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line-dark);
  box-shadow: 0 12px 28px rgba(25,25,25,0.05);
  transition: var(--ease);
}

.feature-card:hover,
.module-card:hover,
.proof-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(25,25,25,0.08);
}

.feature-icon{
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  color: #6a51ce;
  background: linear-gradient(135deg, rgba(207,212,255,0.7), rgba(180,134,234,0.24));
}

.feature-card h3,
.module-card h3,
.proof-card strong{
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--text-dark);
}

.feature-card p,
.module-card p,
.proof-card p{
  margin: 0;
  color: var(--text-muted-dark);
  line-height: 1.7;
}

.section-dark{
  background:
    radial-gradient(circle at top left, rgba(180,134,234,0.18), transparent 25%),
    linear-gradient(180deg, #111116 0%, #16161d 100%);
  color: #fff;
}

.section-dark .content-stack h2{
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.045em;
  margin-bottom: 1rem;
}

.section-dark .content-stack h2 span{
  color: var(--axyn-lavender);
}

.section-dark .content-stack p{
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin-bottom: 1.4rem;
}

.benefit-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .95rem;
}

.benefit-list li{
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  color: #fff;
}

.benefit-list i{
  color: var(--axyn-mint);
  margin-top: .15rem;
}

.benefit-panel{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.mini-stat{
  padding: 1.25rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  min-height: 150px;
}

.mini-stat span{
  display: block;
  color: rgba(255,255,255,0.64);
  margin-bottom: .6rem;
}

.mini-stat strong{
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.35;
}

.module-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.module-top i{
  font-size: 1.25rem;
  color: #6f58d0;
}

.module-top span{
  color: rgba(25,25,25,0.45);
  font-weight: 700;
}

.section-proof{
  background: linear-gradient(180deg, #f5f5f7 0%, #ececf1 100%);
  color: var(--text-dark);
}

.quote-icon{
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(180,134,234,0.14);
  color: #6f58d0;
  margin-bottom: 1rem;
  font-size: 1.15rem;
}

.cta-section{
  padding: 0 0 6rem;
  background:
    linear-gradient(180deg, #ececf1 0%, #e7e7ed 100%);
}

.cta-box{
  border-radius: 34px;
  padding: 2rem;
  background:
    linear-gradient(135deg, #1b1b22 0%, #23202c 50%, #6c53ce 150%);
  color: #fff;
  box-shadow: 0 28px 70px rgba(76, 48, 145, 0.18);
  overflow: hidden;
  position: relative;
}

.cta-box::before{
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: rgba(207,212,255,0.16);
  top: -80px;
  right: -80px;
  filter: blur(10px);
}

.cta-box h2{
  font-size: clamp(2rem, 4.3vw, 3rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-box p,
.cta-box .eyebrow{
  position: relative;
  z-index: 1;
}

.cta-box p{
  color: rgba(255,255,255,0.78);
  margin: 0;
  line-height: 1.8;
}

.cta-actions{
  display: grid;
  gap: .8rem;
  position: relative;
  z-index: 1;
}

.site-footer{
  background: #111116;
  padding: 2.2rem 0 3rem;
}

.footer-box{
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: grid;
  grid-template-columns: 1.6fr .8fr .8fr;
  gap: 1.5rem;
}

.footer-box p{
  color: rgba(255,255,255,0.66);
  max-width: 520px;
  line-height: 1.8;
  margin: 0;
}

.footer-links,
.footer-contact{
  display: grid;
  gap: .7rem;
  align-content: start;
}

.footer-links a,
.footer-contact a{
  color: rgba(255,255,255,0.76);
  transition: var(--ease);
}

.footer-links a:hover,
.footer-contact a:hover{
  color: #fff;
}

.reveal{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.in-view{
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay{
  transition-delay: .08s;
}

.reveal-delay-2{
  transition-delay: .16s;
}

.reveal-delay-3{
  transition-delay: .24s;
}

@media (max-width: 1199.98px){
  .floating-badge-1{
    left: -2%;
    top: -2%;
  }

  .floating-badge-2{
    right: -2%;
    bottom: -3%;
  }
}

@media (max-width: 991.98px){
  .hero-section{
    padding-top: 4rem;
  }

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

  .floating-badge{
    position: static;
    margin-top: 1rem;
  }

  .benefit-panel,
  .footer-box{
    grid-template-columns: 1fr;
  }

  .trust-wrap{
    align-items: flex-start;
  }
}

@media (max-width: 767.98px){
  .navbar{
    padding: .9rem 0;
  }

  .hero-copy h1{
    font-size: 2.55rem;
  }

  .hero-text{
    font-size: .98rem;
  }

  .hero-actions{
    flex-direction: column;
  }

  .hero-actions .btn{
    width: 100%;
  }

  .metric-grid{
    grid-template-columns: 1fr;
  }

  .section-block{
    padding: 4.25rem 0;
  }

  .section-heading h2,
  .section-dark .content-stack h2,
  .cta-box h2{
    font-size: 2rem;
  }

  .cta-box{
    padding: 1.45rem;
    border-radius: 26px;
  }

  .feature-card,
  .module-card,
  .proof-card{
    padding: 1.2rem;
  }

  .mini-stat{
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce){
  html{
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after{
    animation: none !important;
    transition: none !important;
  }

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