:root{
  --bg:#0b1220;
  --card:rgba(255,255,255,.08);
  --card2:rgba(255,255,255,.06);
  --text:#eaf2ff;
  --muted:rgba(234,242,255,.72);
  --line:rgba(234,242,255,.12);
  --brand:#0ea5e9;
  --brand2:#22c55e;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 15% 10%, rgba(14,165,233,.25), transparent 55%),
    radial-gradient(1200px 700px at 85% 20%, rgba(34,197,94,.18), transparent 55%),
    linear-gradient(180deg, #071022, #040914 65%, #030611);
  line-height:1.5;
}

a{ color:inherit; text-decoration:none; }
a:hover{ opacity:.9; }
img{ max-width:100%; display:block; }

.container{
  width:min(1100px, 92vw);
  margin-inline:auto;
}

.skip{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip:focus{
  left:16px;
  top:16px;
  width:auto;
  height:auto;
  padding:10px 12px;
  background:#111827;
  border:1px solid var(--line);
  border-radius:12px;
  z-index:9999;
}

.header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(16px);
  background: rgba(3,6,17,.65);
  border-bottom:1px solid var(--line);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  letter-spacing:.2px;
}
.brand__mark{
  display:grid;
  place-items:center;
  width:36px;
  height:36px;
  border-radius:12px;
  background: rgba(14,165,233,.18);
  border:1px solid rgba(14,165,233,.25);
}
.brand__name{ font-size:18px; }
.brand--foot .brand__mark{
  width:34px; height:34px;
}

.nav{
  display:flex;
  align-items:center;
  gap:18px;
  font-weight:600;
  color: rgba(234,242,255,.9);
}
.nav a{
  padding:10px 10px;
  border-radius:12px;
}
.nav a:hover{
  background: rgba(255,255,255,.06);
}

.menu{
  display:none;
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  color: var(--text);
  border-radius:14px;
  padding:10px 12px;
  font-size:16px;
  cursor:pointer;
}

.mobileNav{
  border-top:1px solid var(--line);
  background: rgba(3,6,17,.85);
}
.mobileNav__inner{
  display:grid;
  gap:8px;
  padding:14px 0 18px;
}
.mobileNav__link{
  padding:12px 12px;
  border:1px solid var(--line);
  border-radius:14px;
  background: rgba(255,255,255,.04);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  background: linear-gradient(135deg, rgba(14,165,233,1), rgba(34,197,94,.95));
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: var(--shadow);
  color:#041018;
  font-weight:800;
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0px); }

.btn--ghost{
  background: rgba(255,255,255,.06);
  color: var(--text);
  border:1px solid var(--line);
  box-shadow:none;
}
.btn--sm{ padding:10px 12px; font-weight:800; }

.hero{
  position:relative;
  min-height: 78vh;
  display:grid;
  align-items:center;
  overflow:hidden;
  border-bottom:1px solid var(--line);
}
.hero__bg{
  position:absolute;
  inset:0;
  opacity:.72;
  filter:saturate(1.1) contrast(1.05);
}
.hero__bg img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.hero__bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 500px at 15% 30%, rgba(3,6,17,.55), transparent 60%),
    radial-gradient(900px 500px at 85% 30%, rgba(3,6,17,.55), transparent 60%),
    linear-gradient(180deg, rgba(3,6,17,.65), rgba(3,6,17,.92));
}

.hero__content{
  position:relative;
  padding: 64px 0;
}
.hero__card{
  width:min(680px, 100%);
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  padding: 26px 22px;
  box-shadow: var(--shadow);
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  color: rgba(234,242,255,.9);
  background: rgba(14,165,233,.14);
  border:1px solid rgba(14,165,233,.18);
  padding:8px 12px;
  border-radius:999px;
  margin:0 0 12px;
}
.hero h1{
  margin: 8px 0 10px;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height:1.08;
  letter-spacing:-.5px;
}
.lead{
  margin: 0 0 18px;
  color: rgba(234,242,255,.86);
  font-size: 18px;
}
.hero__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom: 18px;
}
.hero__stats{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:10px;
  margin-top: 12px;
}
.stat{
  padding:12px 12px;
  background: rgba(255,255,255,.05);
  border:1px solid var(--line);
  border-radius: 16px;
}
.stat__num{ font-weight:900; }
.stat__label{ color: var(--muted); font-size: 13px; }

.strip{
  padding: 14px 0;
  border-bottom:1px solid var(--line);
  background: rgba(255,255,255,.02);
}
.strip__inner{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
}
.strip__item{
  display:flex;
  align-items:center;
  gap:10px;
  color: rgba(234,242,255,.88);
}
.strip__icon{
  display:grid;
  place-items:center;
  width:34px; height:34px;
  border-radius:12px;
  background: rgba(255,255,255,.05);
  border:1px solid var(--line);
}

.section{
  padding: 64px 0;
}
.section--alt{
  background: rgba(255,255,255,.02);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section__head{
  margin-bottom: 22px;
}
.section__head h2{
  margin:0 0 6px;
  font-size: 32px;
  letter-spacing: -.3px;
}
.section__head p{
  margin:0;
  color: var(--muted);
}

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

.card{
  background: rgba(255,255,255,.05);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 16px;
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
}
.card__icon{
  width:44px; height:44px;
  display:grid;
  place-items:center;
  border-radius:16px;
  background: rgba(14,165,233,.14);
  border:1px solid rgba(14,165,233,.18);
  margin-bottom: 10px;
  font-size: 20px;
}
.card h3{ margin: 8px 0 8px; }
.card p{ margin:0; color: rgba(234,242,255,.84); }

.card--img{
  padding:0;
  overflow:hidden;
}
.card--img img{
  height: 170px;
  width:100%;
  object-fit:cover;
}
.card__pad{ padding: 16px 16px 18px; }

.split{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items:center;
  margin-top: 22px;
}
.split--reverse{
  grid-template-columns: .95fr 1.05fr;
}
.split--reverse .split__text{ order:2; }
.split--reverse .split__media{ order:1; }

.split__media img{
  border-radius: 22px;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.checklist{
  list-style:none;
  padding:0;
  margin: 14px 0 16px;
  display:grid;
  gap:10px;
}
.checklist li{
  padding-left: 30px;
  position:relative;
  color: rgba(234,242,255,.9);
}
.checklist li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  width:22px;
  height:22px;
  display:grid;
  place-items:center;
  border-radius:10px;
  background: rgba(34,197,94,.15);
  border:1px solid rgba(34,197,94,.22);
  color: rgba(234,242,255,.95);
}

.feature{
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 14px;
  align-items:stretch;
  background: rgba(255,255,255,.05);
  border:1px solid var(--line);
  border-radius: 22px;
  overflow:hidden;
}
.feature__media img{
  height:100%;
  width:100%;
  object-fit:cover;
  min-height: 250px;
}
.feature__body{ padding: 18px 16px; }
.feature__body h3{ margin: 0 0 8px; }
.feature__body p{ margin: 0 0 10px; color: rgba(234,242,255,.84); }
.bullets{
  margin:0;
  padding-left: 18px;
  color: rgba(234,242,255,.9);
}
.bullets li{ margin: 6px 0; }

.pillRow{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin: 14px 0 16px;
}
.pill{
  padding: 8px 12px;
  border-radius: 999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: rgba(234,242,255,.9);
  font-weight:700;
  font-size: 13px;
}

.cta{
  margin-top: 18px;
  padding: 18px 16px;
  border-radius: 22px;
  border:1px solid rgba(14,165,233,.22);
  background: linear-gradient(135deg, rgba(14,165,233,.12), rgba(34,197,94,.09));
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.cta__text h3{ margin:0 0 6px; }
.cta__text p{ margin:0; color: rgba(234,242,255,.84); }

.contact{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 16px;
  align-items:start;
}
.form{
  background: rgba(255,255,255,.05);
  border:1px solid var(--line);
  border-radius: 22px;
  padding: 16px;
}
.form__row{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}
label{
  display:grid;
  gap: 6px;
  font-weight: 700;
  color: rgba(234,242,255,.92);
}
input, textarea, select{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(234,242,255,.14);
  background: rgba(3,6,17,.45);
  color: var(--text);
  outline:none;
}
input:focus, textarea:focus, select:focus{
  border-color: rgba(14,165,233,.6);
  box-shadow: 0 0 0 4px rgba(14,165,233,.18);
}
textarea{ resize: vertical; }

.form__actions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  margin-top: 12px;
  flex-wrap:wrap;
}
.form__hint{
  margin:0;
  color: var(--muted);
  font-size: 13px;
  max-width: 360px;
}
.notice{
  margin-top: 12px;
  padding: 12px 12px;
  border-radius: 16px;
  border:1px solid rgba(34,197,94,.22);
  background: rgba(34,197,94,.10);
  color: rgba(234,242,255,.92);
  font-weight:700;
}

.panel{
  background: rgba(255,255,255,.05);
  border:1px solid var(--line);
  border-radius: 22px;
  padding: 16px;
}
.panel h3{ margin: 0 0 6px; }
.panel__block{
  margin-top: 14px;
  padding-top: 14px;
  border-top:1px solid var(--line);
}
.panel__block h4{ margin:0 0 6px; font-size: 14px; }
.muted{ color: var(--muted); margin:0; }

.footer{
  padding: 26px 0 36px;
}
.footer__inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  border-top:1px solid var(--line);
  padding-top: 18px;
}
.footer__right{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  align-items:center;
}
.toTop{
  display:grid;
  place-items:center;
  width:36px; height:36px;
  border-radius: 14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
}

@media (max-width: 940px){
  .grid--3{ grid-template-columns: 1fr; }
  .grid--2{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .split--reverse .split__text{ order:1; }
  .split--reverse .split__media{ order:2; }
  .feature{ grid-template-columns: 1fr; }
  .feature__media img{ min-height: 210px; }
  .contact{ grid-template-columns: 1fr; }
  .hero__stats{ grid-template-columns: 1fr; }
  .nav{ display:none; }
  .menu{ display:inline-flex; }
}

/* Logo mark image styling (matches site color) */
.brand__mark--img{
  background: rgba(14,165,233,.14);
  border:1px solid rgba(14,165,233,.22);
  overflow:hidden;
}
.brand__mark--img img{
  width:22px;
  height:22px;
  object-fit:contain;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.25));
}

/* New hero layout */
.hero--new .hero__content{ padding: 70px 0; }
.heroGrid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
  align-items:stretch;
}
.heroPanel{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  padding: 18px 16px;
  box-shadow: var(--shadow);
}
.heroPanel__top{
  display:flex;
  align-items:center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom:1px solid var(--line);
  margin-bottom: 12px;
}
.heroPanel__logo{
  width:52px;
  height:52px;
  border-radius:18px;
  background: rgba(14,165,233,.14);
  border:1px solid rgba(14,165,233,.22);
  display:grid;
  place-items:center;
}
.heroPanel__logo img{
  width:30px;
  height:30px;
  object-fit:contain;
}
.heroPanel__title{ font-weight: 900; font-size: 14px; letter-spacing: .2px; }
.heroPanel__subtitle{ color: var(--muted); font-weight: 700; font-size: 13px; }

.heroPanel__list{
  display:grid;
  gap:10px;
  margin: 12px 0 14px;
}
.mini{
  display:flex;
  gap:12px;
  padding: 12px 12px;
  border-radius: 18px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
}
.mini__icon{
  width:40px; height:40px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  background: rgba(34,197,94,.12);
  border:1px solid rgba(34,197,94,.18);
  font-size: 18px;
}
.mini__title{ font-weight: 900; }
.mini__text{ color: var(--muted); font-size: 13px; margin-top: 2px; }

.heroPanel__cta{
  width:100%;
  justify-content:center;
}
.heroPanel__fine{
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align:center;
}

.heroBadges{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:10px;
  margin-top: 14px;
}
.badge{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding: 12px 12px;
  border-radius: 18px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
}
.badge__icon{
  width:34px; height:34px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(14,165,233,.12);
  border:1px solid rgba(14,165,233,.18);
}
.badge__title{ font-weight: 900; font-size: 13px; }
.badge__text{ color: var(--muted); font-size: 12px; margin-top: 2px; }

@media (max-width: 940px){
  .heroGrid{ grid-template-columns: 1fr; }
  .heroBadges{ grid-template-columns: 1fr; }
}


/* Ensure brand name is clickable */
.brand, .brand *{ pointer-events: auto; }
.brand__name{ cursor: pointer; }
