
:root{
  --navy:#041B3D;
  --navy2:#082B63;
  --yellow:#FFC400;
  --yellow2:#FFE08A;
  --text:#0E2038;
  --muted:#607086;
  --bg:#F5F8FC;
  --white:#FFFFFF;
  --line:#E4EAF2;
  --shadow:0 24px 70px rgba(4,27,61,.12);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--text);
  background:var(--bg);
  overflow-x:hidden;
}
a{text-decoration:none;color:inherit}
.header{
  position:sticky;
  top:0;
  z-index:50;
  height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 clamp(18px,5vw,78px);
  background:rgba(245,248,252,.82);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(4,27,61,.08);
}
.logo img{
  height:44px;
  max-width:300px;
  object-fit:contain;
  display:block;
}
.nav{
  display:flex;
  align-items:center;
  gap:28px;
  color:var(--navy);
  font-size:14px;
  font-weight:800;
}
.nav a{
  position:relative;
  opacity:.78;
}
.nav a:hover{opacity:1;color:var(--navy)}
.nav a:after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  height:3px;
  width:0;
  border-radius:99px;
  background:var(--yellow);
  transition:.25s;
}
.nav a:hover:after{width:100%}
.kcore-btn{
  padding:11px 18px;
  border-radius:999px;
  background:var(--navy);
  color:white!important;
  box-shadow:0 12px 30px rgba(4,27,61,.18);
}
.kcore-btn:after{display:none}
.menu{
  display:none;
  border:0;
  background:transparent;
  color:var(--navy);
  font-size:30px;
}
.hero{
  position:relative;
  min-height:calc(100vh - 78px);
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:48px;
  align-items:center;
  padding:clamp(52px,8vw,110px) clamp(18px,5vw,78px);
  overflow:hidden;
}
.hero:before{
  content:"";
  position:absolute;
  right:-220px;
  top:70px;
  width:680px;
  height:680px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(255,196,0,.26),transparent 62%);
  animation:floatGlow 6s ease-in-out infinite;
}
.hero:after{
  content:"";
  position:absolute;
  left:-180px;
  bottom:-200px;
  width:520px;
  height:520px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(8,43,99,.16),transparent 65%);
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 13px;
  border:1px solid #DCE5F0;
  border-radius:999px;
  background:white;
  color:var(--navy);
  font-size:12px;
  font-weight:900;
  letter-spacing:1.3px;
  text-transform:uppercase;
}
.eyebrow span{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--yellow);
  box-shadow:0 0 0 6px rgba(255,196,0,.16);
}
h1{
  margin:22px 0 20px;
  max-width:820px;
  font-size:clamp(44px,6.2vw,92px);
  line-height:.94;
  letter-spacing:-3.2px;
  color:var(--navy);
}
h2{
  margin:0 0 16px;
  font-size:clamp(32px,4vw,58px);
  line-height:1;
  letter-spacing:-1.8px;
  color:var(--navy);
}
h3{
  margin:0 0 10px;
  font-size:22px;
  color:var(--navy);
}
p{line-height:1.7}
.lead{
  max-width:730px;
  color:var(--muted);
  font-size:19px;
}
.actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:30px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  padding:15px 22px;
  font-weight:900;
  transition:.25s;
}
.btn.primary{
  background:var(--yellow);
  color:#0D2038;
  box-shadow:0 16px 35px rgba(255,196,0,.28);
}
.btn.secondary{
  background:white;
  color:var(--navy);
  border:1px solid var(--line);
}
.btn:hover{transform:translateY(-4px)}
.logo-showcase{
  position:relative;
  z-index:2;
  background:white;
  border:1px solid var(--line);
  border-radius:34px;
  padding:34px;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.logo-showcase:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(135deg,transparent 0 55%,rgba(255,196,0,.18) 56%,transparent 72%),
    radial-gradient(circle at 90% 10%,rgba(255,196,0,.20),transparent 28%);
}
.logo-board{
  position:relative;
  z-index:1;
  min-height:300px;
  display:grid;
  place-items:center;
  border-radius:26px;
  background:linear-gradient(145deg,#031631,#082B63);
  border:1px solid rgba(255,196,0,.35);
}
.logo-board img{
  width:min(850px,98%);
  height:auto;
  display:block;
}
.hero-points{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:16px;
}
.hero-point{
  padding:16px;
  border-radius:20px;
  background:#F7FAFE;
  border:1px solid var(--line);
}
.hero-point b{
  display:block;
  color:var(--navy);
  margin-bottom:4px;
}
.hero-point span{color:var(--muted);font-size:14px}
.section{
  padding:90px clamp(18px,5vw,78px);
}
.section-head{
  max-width:780px;
  margin-bottom:34px;
}
.section-head p{
  color:var(--muted);
  font-size:18px;
}
.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.card{
  background:white;
  border:1px solid var(--line);
  border-radius:30px;
  padding:30px;
  min-height:260px;
  box-shadow:0 14px 45px rgba(4,27,61,.07);
  transition:.28s;
  position:relative;
  overflow:hidden;
}
.card:before{
  content:"";
  position:absolute;
  right:-70px;
  top:-70px;
  width:160px;
  height:160px;
  border-radius:50%;
  background:rgba(255,196,0,.15);
  transition:.28s;
}
.card:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow);
}
.card:hover:before{transform:scale(1.35)}
.card p{
  position:relative;
  color:var(--muted);
}
.icon{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border-radius:18px;
  background:var(--navy);
  color:var(--yellow);
  font-size:25px;
  margin-bottom:20px;
}
.split{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:28px;
  align-items:stretch;
}
.panel{
  background:var(--navy);
  color:white;
  border-radius:34px;
  padding:36px;
  position:relative;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.panel:before{
  content:"";
  position:absolute;
  right:-80px;
  bottom:-90px;
  width:300px;
  height:300px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(255,196,0,.34),transparent 66%);
  animation:floatGlow 5s ease-in-out infinite;
}
.panel h2,.panel h3{color:white}
.panel p{color:#D7E3F4;position:relative}
.panel .btn{position:relative}
.list{
  display:grid;
  gap:14px;
}
.list-item{
  background:white;
  border:1px solid var(--line);
  border-radius:24px;
  padding:22px;
  display:flex;
  gap:16px;
  align-items:flex-start;
  box-shadow:0 14px 45px rgba(4,27,61,.055);
  transition:.25s;
}
.list-item:hover{
  transform:translateX(8px);
}
.dot{
  width:14px;
  height:14px;
  flex:0 0 14px;
  border-radius:50%;
  background:var(--yellow);
  margin-top:6px;
  box-shadow:0 0 0 7px rgba(255,196,0,.16);
}
.footer{
  padding:42px clamp(18px,5vw,78px);
  background:white;
  border-top:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  gap:22px;
  flex-wrap:wrap;
  color:var(--muted);
}
.footer img{
  height:42px;
  filter:drop-shadow(0 6px 14px rgba(4,27,61,.12));
}
.footer a{
  margin-left:18px;
  color:var(--navy);
  font-weight:800;
}
.reveal{
  opacity:0;
  transform:translateY(26px);
  transition:.75s ease;
}
.reveal.show{
  opacity:1;
  transform:translateY(0);
}
@keyframes floatGlow{
  0%,100%{transform:translateY(0) scale(.96);opacity:.75}
  50%{transform:translateY(-18px) scale(1.04);opacity:1}
}
@media(max-width:1080px){
  .hero,.split{grid-template-columns:1fr}
  .grid{grid-template-columns:1fr}
}
@media(max-width:760px){
  .nav{display:none}
  .menu{display:block}
  .nav.open{
    display:grid;
    position:absolute;
    left:0;
    right:0;
    top:78px;
    padding:22px clamp(18px,5vw,78px);
    background:rgba(245,248,252,.98);
    border-bottom:1px solid var(--line);
  }
  .logo img{height:34px;max-width:220px}
  h1{letter-spacing:-1.5px}
  .hero-points{grid-template-columns:1fr}
  .logo-showcase{padding:18px}
  .footer a{display:block;margin:10px 0 0}
}
