:root{
  --bg:#fbfbfe;
  --ink:#0b1220;
  --muted:#546074;
  --line: rgba(11,18,32,.10);
  --card:#ffffff;
  --shadow: 0 20px 60px rgba(11,18,32,.10);
  --gradA: #6d28d9;
  --gradB: #0ea5e9;
  --gradC: #14b8a6;
  --accent:#6d28d9;
  --accent2:#0ea5e9;
  --accent3:#14b8a6;
}

*{box-sizing:border-box;}
html,body{height:100%;}
body{
  font-size:16px;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(900px 500px at 10% 10%, rgba(109,40,217,.12), transparent 60%),
    radial-gradient(900px 500px at 92% 16%, rgba(14,165,233,.12), transparent 55%),
    radial-gradient(900px 500px at 55% 92%, rgba(20,184,166,.12), transparent 55%),
    var(--bg);
}

a{color:inherit;}
a:hover{opacity:.92;}

.navbar{
  background: rgba(251,251,254,.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.brand{
  display:flex; align-items:center; gap:.6rem;
  font-weight: 900;
  letter-spacing:.2px;
}
.logo-mark{
  width:34px; height:34px; border-radius:14px;
  background: linear-gradient(135deg, var(--gradA), var(--gradB), var(--gradC));
  box-shadow: 0 10px 22px rgba(109,40,217,.18);
}

.section{padding: 78px 0;}
.section-sm{padding: 56px 0;}

.hero{
  padding: 92px 0 70px;
}
.hero-shell{
  border:1px solid var(--line);
  background: rgba(255,255,255,.70);
  border-radius: 26px;
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero-left{padding: 40px;}
.hero-eyebrow{
  display:inline-flex; align-items:center; gap:.55rem;
  padding:.45rem .75rem;
  border-radius: 999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.8);
  color: var(--muted);
  font-weight:700;
}
.hero-title{
  margin: 16px 0 12px;
  font-weight: 950;
  line-height: 1.03;
  font-size: clamp(34px, 4.2vw, 56px);
}
.hero-sub{
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 60ch;
}
.hero-actions{margin-top: 22px; display:flex; gap:12px; flex-wrap: wrap;}

.btnx{
  border-radius: 16px;
  padding: .85rem 1.05rem;
  font-weight: 850;
  border: 1px solid var(--line);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btnx-primary{
  border:0;
  color:white;
  background: linear-gradient(135deg, var(--gradA), var(--gradB));
  box-shadow: 0 14px 30px rgba(14,165,233,.18);
}
.btnx-primary:hover{transform: translateY(-1px);}
.btnx-soft{
  background: rgba(109,40,217,.08);
  border-color: rgba(109,40,217,.16);
  color: var(--ink);
}
.btnx-ghost{
  background: rgba(255,255,255,.85);
}

.hero-right{
  position: relative;
  min-height: 460px;
}
.hero-right img{
  width:100%; height:100%;
  object-fit: cover;
  display:block;
}
.hero-right:after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(251,251,254,.92), rgba(251,251,254,.35), rgba(251,251,254,.10));
}

.kpi{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.kpi .tile{
  border:1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.80);
  padding: 14px 14px;
}
.kpi .num{
  font-weight: 950;
  font-size: 1.15rem;
  display:flex;
  align-items:center;
  gap:.6rem;
}
.kpi .txt{color: var(--muted); font-size: .96rem; margin-top: 6px;}

.cardx{
  border: 1px solid var(--line);
  background: rgba(255,255,255,.82);
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.cardx .card-body{padding: 22px;}
.muted{color: var(--muted);}

.icon-bubble{
  width: 44px; height: 44px;
  border-radius: 18px;
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, rgba(109,40,217,.14), rgba(14,165,233,.12));
  border: 1px solid rgba(11,18,32,.08);
}

.split-media{
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.split-media img{width:100%; height:100%; object-fit:cover; display:block;}

.timeline{
  position: relative;
  padding-left: 22px;
}
.timeline:before{
  content:"";
  position:absolute;
  left: 8px; top: 2px; bottom: 2px;
  width: 2px;
  background: linear-gradient(var(--gradA), var(--gradB), var(--gradC));
  border-radius: 99px;
  opacity:.75;
}
.step{
  position: relative;
  padding: 14px 14px 14px 18px;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.86);
}
.step:before{
  content:"";
  position:absolute;
  left:-22px; top: 18px;
  width: 14px; height: 14px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--gradA), var(--gradB));
  box-shadow: 0 10px 20px rgba(109,40,217,.18);
}
.step h6{margin:0 0 6px; font-weight: 900;}
.step p{margin:0; color: var(--muted);}

.badge-soft{
  display:inline-flex; align-items:center; gap:.45rem;
  padding: .42rem .72rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.85);
  color: var(--muted);
  font-weight: 800;
}

.quote{
  position: relative;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.88);
  padding: 22px;
  box-shadow: var(--shadow);
}
.quote .who{font-weight:900;}
.quote .role{color: var(--muted); font-size:.95rem;}
.quote p{color: var(--muted); margin: 10px 0 0;}

.accordion .accordion-item{
  border:1px solid var(--line);
  border-radius: 18px !important;
  overflow:hidden;
  background: rgba(255,255,255,.88);
  box-shadow: 0 10px 26px rgba(11,18,32,.08);
  margin-bottom: 10px;
}
.accordion-button{font-weight:900;}
.accordion-button:focus{box-shadow:none;}

.form-control, .form-select{
  border-radius: 16px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(11,18,32,.14);
  color: var(--ink);
}
.form-control:focus, .form-select:focus{
  box-shadow: 0 0 0 .25rem rgba(109,40,217,.18);
  border-color: rgba(109,40,217,.35);
}
.form-control::placeholder{color: rgba(84,96,116,.70);}

footer{
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.62);
}
.footer-link{color: var(--muted);}
.footer-link:hover{color: var(--ink);}

.popup-overlay{
  position:fixed; inset:0;
  background: rgba(11,18,32,.55);
  display:none;
  align-items:center;
  justify-content:center;
  padding: 18px;
  z-index: 9999;
}
.popup{
  width:min(620px, 100%);
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: 0 30px 80px rgba(11,18,32,.25);
  padding: 22px;
}
.popup h3{margin:0; font-weight: 950;}
.popup p{margin: 10px 0 0; color: var(--muted);}
.popup .close{
  border-radius: 16px;
  padding: .72rem 1rem;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.92);
  font-weight: 900;
}

.cookie-wrap{
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 9998;
  display:none;
}
.cookie-box{
  border:1px solid var(--line);
  background: rgba(255,255,255,.94);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 16px;
  display:flex;
  gap: 14px;
  align-items:flex-start;
  justify-content: space-between;
}
.cookie-box p{margin:0; color: var(--muted);}
.cookie-actions{display:flex; gap:10px; flex-wrap: wrap;}

@media (max-width: 992px){
  .hero-left{padding: 26px;}
  .kpi{grid-template-columns: 1fr; }
}
/* Alternating section background (every other block) */
.stripe{
  background:
    radial-gradient(800px 380px at 20% 20%, rgba(109,40,217,.10), transparent 60%),
    radial-gradient(700px 360px at 85% 35%, rgba(14,165,233,.10), transparent 60%),
    radial-gradient(700px 360px at 55% 90%, rgba(20,184,166,.10), transparent 60%),
    rgba(255,255,255,.55);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* Background media blocks (no <img>) */
.bg-photo{
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 260px;
}
.bg-photo.tall{min-height: 340px;}
.bg-photo.hero{
  min-height: 460px;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}
