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

:root {
  --bg:        #060608;
  --surface:   #0e0e13;
  --surface-2: #151520;
  --border:    rgba(255,255,255,0.08);
  --text:      #f0f0f8;
  --muted:     rgba(240,240,248,0.5);
  --light-bg:  #f6f6fb;
  --lt:        #09090f;
  --lt-muted:  rgba(9,9,15,0.55);
  --accent:    #7c6df5;
  --grad:      linear-gradient(135deg, #7c6df5 0%, #b06cf9 55%, #f06292 100%);
  --radius:    18px;
  --nav-h:     68px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Alexandria', -apple-system, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
}
.btn-primary-glow {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 0 0 rgba(124,109,245,0);
}
.btn-primary-glow:hover {
  box-shadow: 0 0 40px rgba(124,109,245,0.45), 0 0 80px rgba(176,108,249,0.2);
  transform: translateY(-2px);
}
.btn-glow {
  background: rgba(255,255,255,0.07);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
}
.btn-glow:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.28);
}
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(255,255,255,0.18);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}
.btn-lg { padding: 16px 40px; font-size: 16px; }

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}
.nav.scrolled {
  background: rgba(6,6,8,0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border);
}
.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo { text-decoration: none; display: flex; align-items: center; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: color 0.2s ease;
}
.nav-link:hover { color: #fff; }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.16;
}
.orb-1 {
  width: 620px; height: 620px;
  background: radial-gradient(circle, #7c6df5, transparent 70%);
  top: -200px; right: -80px;
  animation: drift1 14s ease-in-out infinite;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #b06cf9, transparent 70%);
  bottom: -80px; left: -80px;
  animation: drift2 18s ease-in-out infinite;
}
.orb-3 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, #f06292, transparent 70%);
  top: 45%; left: 42%;
  animation: drift3 11s ease-in-out infinite;
}
.grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 64px 64px;
}
@keyframes drift1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-60px,50px) scale(1.1)} }
@keyframes drift2 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(55px,-55px) scale(1.08)} }
@keyframes drift3 { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(28px,-18px) scale(1.06)} 66%{transform:translate(-18px,28px) scale(0.94)} }

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--nav-h) + 72px);
  padding-bottom: 96px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.11);
  background: rgba(255,255,255,0.04);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--grad);
  flex-shrink: 0;
  animation: pulseDot 2.4s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,100% { transform:scale(1); box-shadow:0 0 0 0 rgba(124,109,245,0.6); }
  50%      { transform:scale(1.1); box-shadow:0 0 0 5px rgba(124,109,245,0); }
}
.hero-title {
  font-size: clamp(50px, 7.5vw, 96px);
  font-weight: 900;
  line-height: 1.01;
  letter-spacing: -2.5px;
  color: #fff;
  margin-bottom: 28px;
}
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.72;
  color: rgba(255,255,255,0.58);
  max-width: 580px;
  margin-bottom: 44px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
}
.proof-avatars { display: flex; }
.avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -10px;
}
.avatar:first-child { margin-left: 0; }
.av1 { background: linear-gradient(135deg,#7c6df5,#b06cf9); }
.av2 { background: linear-gradient(135deg,#f06292,#7c6df5); }
.av3 { background: linear-gradient(135deg,#b06cf9,#f06292); }
.av4 { background: linear-gradient(135deg,#6ee7b7,#7c6df5); }
.hero-proof p   { font-size: 14px; color: rgba(255,255,255,0.45); }
.hero-proof strong { color: rgba(255,255,255,0.8); }

.scroll-indicator {
  position: absolute;
  bottom: 44px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-mouse {
  width: 24px; height: 38px;
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}
.scroll-dot {
  width: 3px; height: 8px;
  background: rgba(255,255,255,0.35);
  border-radius: 2px;
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim { 0%{opacity:1;transform:translateY(0)} 100%{opacity:0;transform:translateY(14px)} }

/* ─── TICKER ─── */
.ticker-wrap {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 16px 0;
}
.ticker-track { overflow: hidden; }
.ticker-inner {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: tickerScroll 28s linear infinite;
}
.ticker-inner span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.ticker-inner .sep { color: rgba(255,255,255,0.12) !important; letter-spacing: 0 !important; }
@keyframes tickerScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ─── STATS ─── */
.section-stats {
  padding: 80px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.stat { text-align: center; flex: 1; }
.stat-num {
  font-size: clamp(40px, 4.5vw, 60px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 8px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.3px;
}
.stat-div { width: 1px; height: 56px; background: var(--border); flex-shrink: 0; }

/* ─── SECTIONS ─── */
.section { padding: 110px 0; }
.section-dark  { background: var(--bg); }
.section-light { background: var(--light-bg); }

.section-head { max-width: 640px; margin: 0 auto 68px; text-align: center; }
.section-head h2 {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.07;
  margin-bottom: 18px;
  color: #fff;
}
.dark-h2  { color: var(--lt) !important; }
.section-sub { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.52); }
.dark-sub    { color: var(--lt-muted) !important; }

.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  margin-bottom: 18px;
}
.eyebrow.dark { color: rgba(9,9,15,0.38); }

/* ─── SERVICE CARDS ─── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.card.glass {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.card.glass::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--grad);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.card.glass:hover {
  transform: translateY(-7px);
  border-color: rgba(124,109,245,0.35);
  box-shadow: 0 24px 64px rgba(124,109,245,0.12), 0 0 0 1px rgba(124,109,245,0.12);
}
.card.glass:hover::after { opacity: 0.04; }
.card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(124,109,245,0.1);
  border: 1px solid rgba(124,109,245,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}
.card h3 { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.card p  { font-size: 15px; line-height: 1.65; color: rgba(255,255,255,0.48); }

/* ─── HOW IT WORKS ─── */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  padding: 36px 28px;
  background: #fff;
  border: 1px solid rgba(9,9,15,0.08);
  border-radius: var(--radius);
  transition: box-shadow 0.28s ease, transform 0.28s ease;
}
.step:hover {
  box-shadow: 0 16px 48px rgba(124,109,245,0.1);
  transform: translateY(-4px);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 20px;
}
.step h3 { font-size: 19px; font-weight: 800; color: var(--lt); margin-bottom: 10px; }
.step p  { font-size: 15px; line-height: 1.65; color: var(--lt-muted); }
.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  color: rgba(124,109,245,0.45);
  flex-shrink: 0;
  align-self: center;
}

/* ─── WHY US FEATURES ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.feature {
  background: var(--surface);
  padding: 36px 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: background 0.25s ease;
}
.feature:hover { background: var(--surface-2); }
.feature-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(124,109,245,0.1);
  border: 1px solid rgba(124,109,245,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.feature h4 { font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.feature p  { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.42); }

/* ─── CTA SECTION ─── */
.section-cta {
  position: relative;
  padding: 128px 0;
  overflow: hidden;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.cta-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.14;
}
.cta-orb-1 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, #7c6df5, transparent 70%);
  top: -120px; left: -60px;
  animation: drift1 16s ease-in-out infinite;
}
.cta-orb-2 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, #f06292, transparent 70%);
  bottom: -120px; right: -60px;
  animation: drift2 20s ease-in-out infinite;
}
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta-content h2 {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 18px;
  color: #fff;
}
.cta-content .section-sub { margin-bottom: 40px; }

/* ─── FOOTER ─── */
.footer {
  background: #030304;
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.18); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(32px); }
  to   { opacity:1; transform:translateY(0); }
}
.anim {
  opacity: 0;
  animation: fadeUp 0.85s cubic-bezier(0.2,0.8,0.2,1) forwards;
  animation-delay: var(--d, 0s);
}
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity  0.72s cubic-bezier(0.2,0.8,0.2,1) var(--rd, 0s),
    transform 0.72s cubic-bezier(0.2,0.8,0.2,1) var(--rd, 0s);
}
.reveal.in { opacity:1; transform:translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 920px) {
  .nav-links { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero-content { padding-top: calc(var(--nav-h) + 48px); }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
  }
  .stat { background: var(--surface); padding: 28px 20px; }
  .stat-div { display: none; }
  .steps { flex-direction: column; gap: 16px; }
  .step-arrow { transform: rotate(90deg); align-self: flex-start; padding-left: 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .cards { grid-template-columns: 1fr; }
  .btn-lg { width: 100%; justify-content: center; }
}
