
:root{
  --deep:#020617;
  --navy:#06152b;
  --royal:#1f4ed8;
  --sky:#38bdf8;
  --gold:#f6d365;
  --white:#ffffff;
  --silver:#dbeafe;
  --light:#f8fafc;
}

/* PAGE RESET */
.home-page{
  overflow:hidden;
}

/* HERO */
.hero{
  position:relative;
  padding:90px 25px 80px;
  background:
    radial-gradient(circle at top left, rgba(56,189,248,.15), transparent 35%),
    radial-gradient(circle at bottom right, rgba(246,211,101,.18), transparent 30%),
    linear-gradient(135deg,#020617,#06152b,#0f172a,#1e3a8a);
  color:#fff;
}

.hero-wrap{
  max-width:1400px;
  margin:auto;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:50px;
  align-items:center;
}

.hero h1{
  font-size:58px;
  line-height:1.1;
  margin-bottom:22px;
  font-weight:900;
}

.hero h1 span{
  background:linear-gradient(90deg,#fff,#38bdf8,#f6d365);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.hero p{
  font-size:19px;
  color:#dbeafe;
  max-width:700px;
  line-height:1.7;
  margin-bottom:30px;
}

.hero-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.hero-buttons a{
  text-decoration:none;
  padding:15px 22px;
  border-radius:14px;
  font-weight:700;
  transition:.3s;
}

.btn-main{
  background:linear-gradient(135deg,#38bdf8,#1f4ed8);
  color:#fff;
}

.btn-alt{
  border:1px solid rgba(255,255,255,.15);
  color:#fff;
  background:rgba(255,255,255,.06);
}

.hero-buttons a:hover{
  transform:translateY(-3px);
}

/* MOCKUP */
.mockup{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
  border-radius:28px;
  padding:24px;
  backdrop-filter:blur(14px);
  box-shadow:0 30px 60px rgba(0,0,0,.25);
}

.mockup-top{
  display:flex;
  gap:8px;
  margin-bottom:20px;
}

.dot{
  width:12px;
  height:12px;
  border-radius:50%;
  background:#fff;
  opacity:.6;
}

.portal-box{
  background:#fff;
  border-radius:22px;
  padding:25px;
  color:#111827;
}

.portal-box h3{
  font-size:22px;
  margin-bottom:18px;
}

.portal-row{
  padding:14px 16px;
  border-radius:14px;
  background:#f1f5f9;
  margin-bottom:12px;
  font-weight:700;
}

/* FEATURES */
.section{
  padding:80px 25px;
}

.wrap{
  max-width:1350px;
  margin:auto;
}

.title{
  text-align:center;
  margin-bottom:50px;
}

.title h2{
  font-size:42px;
  color:#06152b;
  margin-bottom:10px;
}

.title p{
  color:#475569;
  font-size:18px;
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.card{
  background:#fff;
  border-radius:24px;
  padding:28px;
  box-shadow:0 15px 35px rgba(0,0,0,.06);
  transition:.3s;
}

.card:hover{
  transform:translateY(-8px);
}

.icon{
  width:60px;
  height:60px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  margin-bottom:18px;
  background:linear-gradient(135deg,#38bdf8,#1f4ed8);
  color:#fff;
}

.card h3{
  margin-bottom:12px;
  color:#06152b;
  font-size:23px;
}

.card p{
  color:#475569;
  line-height:1.7;
}

/* STATS */
.stats{
  background:linear-gradient(135deg,#06152b,#1e3a8a);
  color:#fff;
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.stat{
  background:rgba(255,255,255,.08);
  border-radius:22px;
  padding:30px;
  text-align:center;
}

.stat h3{
  font-size:42px;
  color:#f6d365;
}

.stat p{
  margin-top:10px;
  color:#dbeafe;
}

/* CTA */
.cta{
  text-align:center;
}

.cta-box{
  background:linear-gradient(135deg,#38bdf8,#1f4ed8);
  border-radius:28px;
  padding:55px 30px;
  color:#fff;
}

.cta-box h2{
  font-size:42px;
  margin-bottom:14px;
}

.cta-box p{
  font-size:18px;
  margin-bottom:25px;
}

.cta-box a{
  display:inline-block;
  text-decoration:none;
  background:#fff;
  color:#1f4ed8;
  font-weight:800;
  padding:16px 28px;
  border-radius:14px;
}

/* RESPONSIVE */
@media(max-width:1100px){

  .hero-wrap{
    grid-template-columns:1fr;
  }

  .hero h1{
    font-size:48px;
  }

  .grid-3{
    grid-template-columns:1fr 1fr;
  }

  .stats-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:700px){

  .hero{
    padding:70px 18px 60px;
  }

  .hero h1{
    font-size:36px;
  }

  .hero p{
    font-size:17px;
  }

  .title h2{
    font-size:32px;
  }

  .grid-3,
  .stats-grid{
    grid-template-columns:1fr;
  }

  .cta-box h2{
    font-size:30px;
  }

  .hero-buttons a{
    width:100%;
    text-align:center;
  }
}

.portal-slider{
  position:relative;
  min-height:320px;
}

.slide{
  position:absolute;
  inset:0;
  opacity:0;
  transform:translateX(40px);
  transition:all .7s ease;
  pointer-events:none;
}

.slide.active{
  opacity:1;
  transform:translateX(0);
  pointer-events:auto;
  position:relative;
}

.slider-dot{
  transition:.3s;
}

.slider-dot.active{
  background:#38bdf8;
  transform:scale(1.25);
  opacity:1;
}