html{ scroll-behavior:smooth; }
*{ margin:0; padding:0; box-sizing:border-box; font-family:Arial, sans-serif; }

/* Background (unique inspired, not copied) */
body{
  color:#0f172a;
  background: radial-gradient(1200px 700px at 10% 15%, rgba(59,130,246,.12), transparent 60%),
              radial-gradient(900px 500px at 90% 20%, rgba(249,115,22,.12), transparent 55%),
              linear-gradient(180deg, #f7f9ff 0%, #eef2ff 100%);
}

/* Buttons */
.btn{
  text-decoration:none;
  border:none;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 14px;
  border-radius:12px;
  font-weight:800;
  transition:.2s ease;
}

.btn-lg{ padding:13px 18px; border-radius:14px; font-size:16px; }

.btn-primary{
  color:white;
  background: linear-gradient(90deg, #1e3a8a, #2563eb);
  box-shadow: 0 14px 30px rgba(37,99,235,.18);
}

.btn-ghost{
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(15,23,42,.10);
  backdrop-filter: blur(10px);
  color:#0f172a;
}

.btn-white{
  background:white;
  color:#0f172a;
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
}

/* Navbar */
.navbar{
  position:sticky; top:0; z-index:50;
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 26px;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15,23,42,.06);
}

.brand{
  display:flex; align-items:center; gap:10px;
  font-weight:900; color:#0f172a;
  text-decoration:none;
}

.brand-dot{
  width:10px; height:10px;
  border-radius:999px;
  background: linear-gradient(90deg, #2563eb, #f97316);
  box-shadow: 0 0 0 6px rgba(37,99,235,.10);
}

.nav-links{
  list-style:none;
  display:flex;
  gap:18px;
}

.nav-links a{
  text-decoration:none;
  color:#334155;
  font-weight:800;
  padding:8px 10px;
  border-radius:10px;

  /* ✅ smooth but no jumping */
  transition: background 180ms ease, color 180ms ease;
}

.nav-links a:hover{
  background: rgba(37,99,235,.08);
  color:#1e3a8a;
}

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

/* Hamburger */
.hamburger{
  display:none;
  width:42px; height:42px;
  border-radius:12px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.7);
  cursor:pointer;
}

.hamburger span{
  display:block;
  width:18px; height:2px;
  background:#0f172a;
  margin:4px auto;
  border-radius:99px;
}

/* Mobile menu */
.mobile-menu{
  display:none;
  position:fixed;
  top:72px; right:16px;
  width: 230px;
  padding:12px;
  border-radius:16px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 18px 50px rgba(0,0,0,.14);
  z-index:80;
}

.mobile-menu a{
  display:block;
  text-decoration:none;
  padding:10px 12px;
  border-radius:12px;
  font-weight:900;
  color:#0f172a;
}

.mobile-menu a:hover{
  background: rgba(37,99,235,.10);
}

/* Hero */
.hero{
  position:relative;
  overflow:hidden;
  padding: 58px 22px 10px;
}

.hero-inner{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:28px;
  align-items:center;
}

/* Unique blobs */
.hero::before{
  content:"";
  position:absolute;
  width:480px; height:480px;
  left:-140px; top:-170px;
  background: rgba(37,99,235,.18);
  filter: blur(90px);
}

.hero::after{
  content:"";
  position:absolute;
  width:520px; height:520px;
  right:-160px; bottom:-220px;
  background: rgba(249,115,22,.16);
  filter: blur(100px);
}

.hero-left{ position:relative; z-index:2; }

.pill{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  font-weight:900;
  font-size:12px;
  color:#1e3a8a;
  background: rgba(37,99,235,.10);
  border: 1px solid rgba(37,99,235,.18);
}

.hero-left h1{
  margin-top:14px;
  font-size:48px;
  line-height:1.08;
  letter-spacing:-0.5px;
}

.gradient{
  background: linear-gradient(90deg, #2563eb, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-left p{
  margin-top:14px;
  color:#475569;
  max-width: 560px;
  line-height:1.7;
}

.hero-cta{
  margin-top:20px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* Stats */
.hero-stats{
  margin-top:20px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.stat{
  min-width:130px;
  padding:12px 14px;
  border-radius:16px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(15,23,42,.08);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 40px rgba(0,0,0,.07);
}

.stat h3{ font-size:22px; color:#1e3a8a; }
.stat p{ font-size:13px; color:#64748b; margin-top:2px; font-weight:800; }

/* Right hero */
.hero-right{
  position:relative;
  z-index:2;
  display:grid;
  gap:14px;
}

/* Floating animation */
@keyframes floaty { 0%{transform:translateY(0)} 50%{transform:translateY(-10px)} 100%{transform:translateY(0)} }

.hero-image{
  width:100%;
  border-radius:22px;
  box-shadow: 0 18px 45px rgba(0,0,0,.15);
  animation: floaty 3.2s ease-in-out infinite;
}

.hero-card{
  padding:16px;
  border-radius:20px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(15,23,42,.08);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 50px rgba(0,0,0,.10);
}

.hero-card-top{
  display:flex;
  gap:8px;
  margin-bottom:12px;
}

.chip{
  font-size:12px;
  font-weight:900;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(249,115,22,.14);
  border:1px solid rgba(249,115,22,.22);
  color:#9a3412;
}

.chip-dark{
  background: rgba(37,99,235,.12);
  border:1px solid rgba(37,99,235,.18);
  color:#1e3a8a;
}

.hero-card h3{ font-size:16px; margin-bottom:12px; }

.mini{ display:grid; gap:10px; }
.mini-row{
  display:flex; gap:10px; align-items:flex-start;
}
.mini-dot{
  width:10px; height:10px; border-radius:999px;
  margin-top:5px;
  background: linear-gradient(90deg, #2563eb, #f97316);
}
.mini b{ font-size:13px; }
.mini small{ display:block; font-weight:800; color:#64748b; margin-top:2px; }

.hero-card-bottom{
  margin-top:14px;
  display:flex; gap:8px; flex-wrap:wrap;
}
.tag{
  font-size:12px;
  font-weight:900;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(15,23,42,.06);
  color:#334155;
}

/* Strip */
.strip{
  padding: 14px 18px 10px;
}
.strip-inner{
  max-width:1200px;
  margin:0 auto;
  padding: 14px 18px;
  border-radius:18px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(15,23,42,.08);
  backdrop-filter: blur(12px);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.strip-inner span{ color:#64748b; font-weight:900; font-size:13px; }
.strip-logos{ display:flex; gap:10px; flex-wrap:wrap; }
.logo-pill{
  padding:8px 12px;
  border-radius:999px;
  background: rgba(37,99,235,.08);
  border: 1px solid rgba(37,99,235,.14);
  font-weight:900;
  color:#1e3a8a;
}

/* Sections */
.section{
  max-width:1200px;
  margin:0 auto;
  padding: 60px 22px;
  scroll-margin-top: 90px;
}

.section.alt{
  background: rgba(255,255,255,.55);
  border-top: 1px solid rgba(15,23,42,.06);
  border-bottom: 1px solid rgba(15,23,42,.06);
  border-radius: 26px;
}

.section-head{
  text-align:center;
  max-width: 760px;
  margin:0 auto 26px;
}

.section-head h2{
  font-size:32px;
  letter-spacing:-.3px;
}
.section-head p{
  margin-top:10px;
  color:#64748b;
  line-height:1.7;
  font-weight:800;
}

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

.card{
  padding:18px;
  border-radius:18px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(15,23,42,.08);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
  transition:.2s ease;
}

.icon{
  width:44px; height:44px;
  display:grid; place-items:center;
  border-radius:14px;
  background: rgba(37,99,235,.10);
  border: 1px solid rgba(37,99,235,.16);
  font-size:20px;
  margin-bottom:12px;
}
.card h3{ font-size:16px; }
.card p{ margin-top:8px; color:#64748b; font-weight:800; line-height:1.7; }

/* Two column */
.two-col{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:18px;
  align-items:center;
}

.left h2{ font-size:34px; letter-spacing:-.3px; }
.left p{ margin-top:10px; color:#64748b; font-weight:800; line-height:1.7; max-width: 560px; }

.bullet{
  display:flex;
  gap:12px;
  margin-top:14px;
}
.tick{
  width:40px; height:40px;
  border-radius:14px;
  display:grid; place-items:center;
  background: rgba(249,115,22,.14);
  border: 1px solid rgba(249,115,22,.20);
  font-weight:900;
}
.bullet b{ display:block; }
.bullet p{ margin-top:4px; font-weight:800; color:#64748b; }

.preview{
  border-radius:22px;
  padding:16px;
  background: rgba(15,23,42,.85);
  color:white;
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
}
.preview-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom: 14px;
}
.preview-title{ font-weight:900; }
.preview-badge{
  font-size:12px; font-weight:900;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
}
.preview-list{ display:grid; gap:10px; }
.preview-item{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  padding:12px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.p-left span{ color: rgba(255,255,255,.75); font-weight:900; margin-left:6px; }
.p-chip{
  font-size:12px; font-weight:900;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(249,115,22,.22);
}
.preview-foot{
  margin-top:12px;
  color: rgba(255,255,255,.78);
  font-weight:800;
}

/* Timeline */
.timeline{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}

.t-card{
  padding:16px;
  border-radius:18px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
  transition:.2s ease;
}

.t-num{
  font-weight:1000;
  width:46px; height:46px;
  border-radius:16px;
  display:grid; place-items:center;
  background: rgba(37,99,235,.12);
  border: 1px solid rgba(37,99,235,.18);
  color:#1e3a8a;
  margin-bottom:10px;
}
.t-card h3{ font-size:16px; }
.t-card p{ margin-top:6px; color:#64748b; font-weight:800; line-height:1.7; }

/* CTA */
.cta{
  max-width:1200px;
  margin: 20px auto 60px;
  padding: 60px 22px;
}
.cta-inner{
  padding: 44px 24px;
  border-radius: 26px;
  background: linear-gradient(120deg, #0f172a, #1e3a8a);
  color:white;
  text-align:center;
  box-shadow: 0 25px 80px rgba(0,0,0,.20);
}
.cta-inner p{
  margin: 10px auto 18px;
  max-width: 680px;
  color: rgba(255,255,255,.85);
  font-weight:800;
  line-height:1.7;
}
.cta-actions{ display:flex; gap:10px; justify-content:center; flex-wrap:wrap; }

/* Footer */
.footer{
  text-align:center;
  padding:18px 12px 40px;
  color:#64748b;
  font-weight:800;
}

/* Reveal animation */
.reveal{ opacity:0; transform: translateY(30px); transition: all .85s ease; }
.reveal.show{ opacity:1; transform: translateY(0); }
.reveal.delay-1{ transition-delay:.08s; }
.reveal.delay-2{ transition-delay:.16s; }
.reveal.delay-3{ transition-delay:.24s; }
.reveal.delay-4{ transition-delay:.32s; }

/* Responsive */
@media (max-width: 980px){
  .nav-links{ display:none; }
  .hamburger{ display:inline-block; }
  .hero-inner{ grid-template-columns:1fr; }
  .grid-3{ grid-template-columns: repeat(2, 1fr); }
  .two-col{ grid-template-columns:1fr; }
  .timeline{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px){
  .navbar{ padding:14px 16px; }
  .grid-3{ grid-template-columns:1fr; }
  .timeline{ grid-template-columns:1fr; }
  .hero-left h1{ font-size:38px; }
}

/* ✅ Roles Section */
.roles-wrap{
  margin-top: 20px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
}

.role-chip{
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
  font-weight: 900;
  color:#0f172a;
  transition: .2s ease;
}

.roles-cta{
  text-align:center;
  margin-top: 22px;
}

/* =========================================
   ✅ Ultra Smooth Hover System (HOME)
   ========================================= */

.btn, .card, .t-card, .preview-item, .logo-pill, .role-chip, .stat{
  position: relative;
  transform: translate3d(0,0,0);
  will-change: transform;
  transition: transform 160ms cubic-bezier(.22,1,.36,1);
}

.btn::after, .card::after, .t-card::after, .preview-item::after,
.logo-pill::after, .role-chip::after, .stat::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  pointer-events:none;

  box-shadow: 0 24px 60px rgba(0,0,0,.14);
  opacity:0;
  transform: translate3d(0,10px,0);
  transition: opacity 160ms cubic-bezier(.22,1,.36,1),
              transform 160ms cubic-bezier(.22,1,.36,1);
}

.btn:hover, .card:hover, .t-card:hover, .preview-item:hover,
.logo-pill:hover, .role-chip:hover, .stat:hover{
  transform: translate3d(0,-6px,0);
}

.btn:hover::after, .card:hover::after, .t-card:hover::after, .preview-item:hover::after,
.logo-pill:hover::after, .role-chip:hover::after, .stat:hover::after{
  opacity:1;
  transform: translate3d(0,0,0);
}

/* Primary button glow */
.btn-primary::after{
  box-shadow: 0 28px 70px rgba(37,99,235,.28);
}