:root{
  --bg:#070b17;
  --bg-soft:#0d1326;
  --panel:rgba(255,255,255,0.08);
  --panel-strong:rgba(255,255,255,0.12);
  --border:rgba(255,255,255,0.16);
  --text:#f5f7ff;
  --muted:#b9c1d9;
  --primary:#7c5cff;
  --primary-2:#5eead4;
  --pink:#ff5ec4;
  --cyan:#5ad7ff;
  --shadow:0 20px 60px rgba(0,0,0,0.35);
  --radius:24px;
  --radius-md:18px;
  --radius-sm:14px;
  --container:1200px;
}

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:
    radial-gradient(circle at top left, rgba(124,92,255,0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(90,215,255,0.10), transparent 30%),
    linear-gradient(180deg, #060914 0%, #0a1020 40%, #09111f 100%);
  color:var(--text);
  line-height:1.7;
  overflow-x:hidden;
}

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

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

.container{
  width:min(var(--container), calc(100% - 40px));
  margin:0 auto;
}

.narrow{
  max-width:900px;
}

.glass-card{
  background:linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.06));
  border:1px solid var(--border);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  box-shadow:var(--shadow);
  border-radius:var(--radius);
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(7,11,23,0.55);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,0.08);
}

.header-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:78px;
}

.logo{
  font-size:1.5rem;
  font-weight:800;
  letter-spacing:-0.03em;
}

.logo span{
  color:var(--primary-2);
}

.nav{
  display:flex;
  align-items:center;
  gap:26px;
}

.nav a{
  color:var(--muted);
  font-weight:600;
  transition:0.25s ease;
}

.nav a:hover{
  color:#fff;
}

.nav-cta{
  padding:12px 18px;
  border-radius:999px;
  background:linear-gradient(90deg, var(--primary), var(--pink));
  color:#fff !important;
  box-shadow:0 10px 30px rgba(124,92,255,0.3);
}

.hero{
  position:relative;
  padding:90px 0 70px;
  overflow:hidden;
}

.hero-grid{
  position:relative;
  z-index:3;
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:30px;
  align-items:center;
}

.hero-copy,
.hero-panel{
  padding:34px;
}

.eyebrow,
.section-tag,
.panel-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  border-radius:999px;
  font-size:0.85rem;
  font-weight:700;
  color:#fff;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.12);
  margin-bottom:18px;
}

.hero-copy h1{
  font-size:clamp(2.3rem, 5vw, 4.4rem);
  line-height:1.08;
  letter-spacing:-0.04em;
  margin-bottom:18px;
}

.hero-copy p{
  color:var(--muted);
  font-size:1.05rem;
  max-width:680px;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:28px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:15px 24px;
  border-radius:999px;
  font-weight:700;
  transition:0.28s ease;
  border:1px solid transparent;
}

.btn:hover{
  transform:translateY(-2px);
}

.btn-primary{
  background:linear-gradient(90deg, var(--primary), var(--pink));
  color:#fff;
  box-shadow:0 12px 35px rgba(124,92,255,0.32);
}

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

.btn-full{
  width:100%;
}

.hero-stats{
  margin-top:28px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}

.stat-box{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  padding:18px;
  border-radius:18px;
}

.stat-box strong{
  display:block;
  font-size:0.98rem;
  margin-bottom:5px;
}

.stat-box span{
  color:var(--muted);
  font-size:0.9rem;
}

.panel-top h2{
  font-size:2rem;
  margin-bottom:10px;
}

.panel-top p{
  color:var(--muted);
  margin-bottom:24px;
}

.match-form{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.input-group label{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
  font-weight:700;
  color:#fff;
}

.input-group label i{
  color:var(--primary-2);
}

.select-wrap{
  position:relative;
}

.select-wrap select{
  width:100%;
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.12);
  color:#fff;
  padding:16px 18px;
  border-radius:16px;
  outline:none;
  font-size:0.98rem;
  transition:0.25s ease;
}

.select-wrap::after{
  content:"\f107";
  font-family:"Font Awesome 6 Free";
  font-weight:900;
  position:absolute;
  right:18px;
  top:50%;
  transform:translateY(-50%);
  pointer-events:none;
  color:#dbe3ff;
}

.select-wrap select:focus{
  border-color:rgba(124,92,255,0.6);
  box-shadow:0 0 0 4px rgba(124,92,255,0.12);
}

.features-section,
.content-section,
.cta-section,
.faq-section{
  padding:90px 0;
}

.section-heading{
  text-align:center;
  margin-bottom:36px;
}

.section-heading h2{
  font-size:clamp(2rem, 4vw, 3rem);
  line-height:1.15;
  letter-spacing:-0.03em;
  margin-bottom:12px;
}

.section-heading p{
  color:var(--muted);
  max-width:760px;
  margin:0 auto;
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}

.feature-card{
  padding:28px;
}

.feature-icon{
  width:62px;
  height:62px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.35rem;
  margin-bottom:18px;
  color:#fff;
}

.icon-purple{
  background:linear-gradient(135deg, #7c5cff, #a855f7);
}

.icon-pink{
  background:linear-gradient(135deg, #ff4db8, #ff7a59);
}

.icon-cyan{
  background:linear-gradient(135deg, #06b6d4, #3b82f6);
}

.feature-card h3{
  font-size:1.25rem;
  margin-bottom:10px;
}

.feature-card p{
  color:var(--muted);
}

.content-block{
  padding:34px;
}

.content-block h3{
  font-size:1.45rem;
  margin-bottom:12px;
  margin-top:18px;
}

.content-block h3:first-child{
  margin-top:0;
}

.content-block p{
  color:var(--muted);
  margin-bottom:8px;
}

.cta-box{
  padding:42px;
  text-align:center;
}

.cta-box h2{
  font-size:clamp(2rem, 4vw, 2.8rem);
  margin-bottom:14px;
}

.cta-box p{
  color:var(--muted);
  max-width:760px;
  margin:0 auto 24px;
}

.faq-list{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.faq-item{
  border:1px solid rgba(255,255,255,0.10);
  background:rgba(255,255,255,0.05);
  border-radius:20px;
  overflow:hidden;
  transition:0.3s ease;
}

.faq-item.active{
  background:rgba(255,255,255,0.08);
  border-color:rgba(124,92,255,0.35);
  box-shadow:0 20px 40px rgba(0,0,0,0.18);
}

.faq-question{
  width:100%;
  border:none;
  background:none;
  color:#fff;
  display:flex;
  align-items:center;
  gap:16px;
  justify-content:space-between;
  padding:22px 22px;
  text-align:left;
  font-size:1rem;
  font-weight:700;
  cursor:pointer;
}

.faq-question > span:nth-child(2){
  flex:1;
}

.faq-icon{
  min-width:46px;
  width:46px;
  height:46px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, rgba(124,92,255,0.35), rgba(255,94,196,0.35));
  border:1px solid rgba(255,255,255,0.10);
}

.faq-toggle{
  min-width:32px;
  text-align:right;
  transition:0.25s ease;
}

.faq-item.active .faq-toggle{
  transform:rotate(45deg);
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.35s ease;
}

.faq-answer p{
  color:var(--muted);
  padding:0 22px 22px 84px;
}

.faq-item.active .faq-answer{
  max-height:300px;
}

.site-footer{
  padding:34px 0;
  border-top:1px solid rgba(255,255,255,0.08);
  background:rgba(255,255,255,0.02);
}

.footer-wrap{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:24px;
}

.footer-brand{
  max-width:520px;
}

.footer-brand p{
  color:var(--muted);
  margin-top:10px;
}

.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
}

.footer-links a{
  color:var(--muted);
  transition:0.25s ease;
}

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

/* ORBS */

.hero-orbs{
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
}

.orb{
  position:absolute;
  border-radius:50%;
  filter:blur(10px);
  opacity:0.5;
  animation:floatOrb linear infinite;
}

.orb-1{
  width:240px;
  height:240px;
  background:radial-gradient(circle, rgba(124,92,255,0.8), rgba(124,92,255,0));
  top:8%;
  left:4%;
  animation-duration:14s;
}

.orb-2{
  width:180px;
  height:180px;
  background:radial-gradient(circle, rgba(255,94,196,0.8), rgba(255,94,196,0));
  top:18%;
  right:8%;
  animation-duration:18s;
}

.orb-3{
  width:300px;
  height:300px;
  background:radial-gradient(circle, rgba(94,234,212,0.55), rgba(94,234,212,0));
  bottom:8%;
  left:12%;
  animation-duration:20s;
}

.orb-4{
  width:150px;
  height:150px;
  background:radial-gradient(circle, rgba(90,215,255,0.75), rgba(90,215,255,0));
  bottom:18%;
  right:18%;
  animation-duration:16s;
}

.orb-5{
  width:120px;
  height:120px;
  background:radial-gradient(circle, rgba(255,255,255,0.25), rgba(255,255,255,0));
  top:42%;
  left:50%;
  animation-duration:12s;
}

@keyframes floatOrb{
  0%{ transform:translate3d(0,0,0) scale(1); }
  25%{ transform:translate3d(20px,-18px,0) scale(1.04); }
  50%{ transform:translate3d(-15px,12px,0) scale(0.98); }
  75%{ transform:translate3d(18px,20px,0) scale(1.03); }
  100%{ transform:translate3d(0,0,0) scale(1); }
}

/* PARTICLES */

.particles{
  position:absolute;
  inset:0;
  z-index:1;
  overflow:hidden;
  pointer-events:none;
}

.particles span{
  position:absolute;
  width:6px;
  height:6px;
  border-radius:50%;
  background:rgba(255,255,255,0.45);
  box-shadow:0 0 14px rgba(255,255,255,0.45);
  animation:particleMove 12s linear infinite;
}

.particles span:nth-child(1){ top:14%; left:10%; animation-duration:14s; animation-delay:0s; }
.particles span:nth-child(2){ top:22%; left:30%; animation-duration:16s; animation-delay:2s; }
.particles span:nth-child(3){ top:10%; left:62%; animation-duration:12s; animation-delay:1s; }
.particles span:nth-child(4){ top:34%; left:82%; animation-duration:15s; animation-delay:0.5s; }
.particles span:nth-child(5){ top:48%; left:18%; animation-duration:18s; animation-delay:3s; }
.particles span:nth-child(6){ top:56%; left:44%; animation-duration:13s; animation-delay:1.5s; }
.particles span:nth-child(7){ top:64%; left:72%; animation-duration:17s; animation-delay:4s; }
.particles span:nth-child(8){ top:76%; left:8%; animation-duration:14s; animation-delay:2.5s; }
.particles span:nth-child(9){ top:70%; left:55%; animation-duration:19s; animation-delay:1.2s; }
.particles span:nth-child(10){ top:82%; left:90%; animation-duration:12s; animation-delay:2.2s; }
.particles span:nth-child(11){ top:26%; left:52%; animation-duration:16s; animation-delay:3.4s; }
.particles span:nth-child(12){ top:39%; left:6%; animation-duration:15s; animation-delay:1.6s; }
.particles span:nth-child(13){ top:52%; left:88%; animation-duration:18s; animation-delay:0.8s; }
.particles span:nth-child(14){ top:86%; left:36%; animation-duration:20s; animation-delay:2.8s; }
.particles span:nth-child(15){ top:18%; left:92%; animation-duration:13s; animation-delay:4.2s; }

@keyframes particleMove{
  0%{
    transform:translateY(0) scale(0.8);
    opacity:0.2;
  }
  25%{
    opacity:0.65;
  }
  50%{
    transform:translateY(-30px) translateX(10px) scale(1);
    opacity:0.9;
  }
  75%{
    opacity:0.45;
  }
  100%{
    transform:translateY(-60px) translateX(-8px) scale(0.75);
    opacity:0.1;
  }
}

/* RESPONSIVE */

@media (max-width: 1100px){
  .hero-grid{
    grid-template-columns:1fr;
  }

  .hero-copy,
  .hero-panel{
    padding:28px;
  }

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

@media (max-width: 768px){
  .nav{
    display:none;
  }

  .hero{
    padding:70px 0 50px;
  }

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

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

  .panel-top h2{
    font-size:1.6rem;
  }

  .content-block,
  .cta-box{
    padding:24px;
  }

  .faq-question{
    padding:18px;
    gap:12px;
  }

  .faq-answer p{
    padding:0 18px 18px 18px;
  }

  .footer-wrap{
    flex-direction:column;
  }

  .section-heading h2{
    font-size:2rem;
  }

  .container{
    width:min(var(--container), calc(100% - 24px));
  }
}

@media (max-width: 480px){
  .btn{
    width:100%;
  }

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

  .hero-copy,
  .hero-panel{
    padding:22px;
    border-radius:20px;
  }

  .faq-icon{
    min-width:40px;
    width:40px;
    height:40px;
  }
}
@media (max-width: 1100px){

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

.hero-panel{
order:1;
}

.hero-copy{
order:2;
}

}

.responsive-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 20px auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15); 
  object-fit: cover;
}

@media (max-width: 600px) {
  .responsive-image {
    max-width: 100%;
    border-radius: 8px;
    margin: 15px 0;
  }
}