:root{
  --bg:#ffffff;
  --ink:#0b1220;
  --muted:rgba(11,18,32,.70);
  --muted2:rgba(11,18,32,.56);
  --navy:#1F4E78;
  --accent:#7B61FF;
  --line:rgba(11,18,32,.12);
  --soft:rgba(31,78,120,.08);
  --card:#ffffff;
  --shadow: 0 18px 60px rgba(2,10,22,.10);

  --max: 1160px;
  --pad: clamp(18px, 3vw, 34px);
  --section: clamp(56px, 7vw, 92px);
  --r-xl: 28px;
  --r-lg: 22px;
  --r-md: 16px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  background:
    radial-gradient(960px 520px at 10% 10%, rgba(123,97,255,.10), transparent 60%),
    radial-gradient(900px 560px at 90% 12%, rgba(31,78,120,.10), transparent 62%),
    linear-gradient(180deg, #ffffff 0%, #fbfcff 45%, #f7f9ff 100%);
  color: var(--ink);
  font-family: Calibri, Arial, "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 16.5px;
  line-height: 1.55;
  overflow-x:hidden;
}

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

.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

/* Header */
.header{
  position: sticky;
  top:0;
  z-index:50;
  background: rgba(255,255,255,.82);
  border-bottom: 1px solid rgba(11,18,32,.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.header-inner{
  min-height: 74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
}
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 220px;
}
.brand img, .brand svg{ width: 40px; height: 40px; }
.brand strong{
  display:block;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.brand span{
  display:block;
  font-size: 12px;
  color: var(--muted2);
  margin-top: 2px;
}

.nav{
  display:flex;
  align-items:center;
  gap: 8px;
}
.nav a{
  display:inline-flex;
  align-items:center;
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(11,18,32,.84);
}
.nav a:hover{ background: var(--soft); color: rgba(11,18,32,.95); }
.cta{
  display:flex;
  align-items:center;
  gap: 10px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(11,18,32,.14);
  background: rgba(255,255,255,.9);
  color: rgba(11,18,32,.92);
  font-weight: 800;
}
.btn:hover{
  border-color: rgba(31,78,120,.22);
  box-shadow: 0 16px 60px rgba(31,78,120,.10);
}
.btn.primary{
  background: linear-gradient(135deg, rgba(31,78,120,.16), rgba(123,97,255,.10)), rgba(255,255,255,.95);
  border-color: rgba(31,78,120,.20);
}
.btn.small{ padding: 10px 12px; border-radius: 12px; }

.menu-btn{
  display:none;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(11,18,32,.14);
  background: rgba(255,255,255,.9);
  font: inherit;
  cursor:pointer;
  font-weight: 800;
}

/* Mobile */
.mobile{
  display:none;
  border-top: 1px solid rgba(11,18,32,.10);
  background: rgba(255,255,255,.92);
}
body.nav-open .mobile{ display:block; }
.mobile .inner{
  padding: 14px var(--pad) 18px;
  display:grid;
  gap: 10px;
}
.mrow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(11,18,32,.10);
  background: rgba(255,255,255,.88);
}
.mrow a{ color: rgba(11,18,32,.90); font-weight: 800; }
.mrow button{
  border:0;
  background:none;
  font: inherit;
  cursor:pointer;
  font-weight: 800;
}
.maccordion{
  display:none;
  padding: 0 12px 12px;
  margin-left: 10px;
  border-left: 1px solid rgba(11,18,32,.10);
}
.maccordion a{
  display:block;
  padding: 10px 0;
  color: rgba(11,18,32,.78);
  font-weight: 700;
}
.maccordion a:hover{ color: rgba(11,18,32,.94); }

/* Sections */
section{ padding: var(--section) 0; }
.divider{
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(11,18,32,.14), transparent);
}
.section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap: 16px;
  margin-bottom: 18px;
}
.section-head p{
  margin:0;
  color: var(--muted);
  max-width: 68ch;
}
.h2{
  margin:0;
  font-size: clamp(24px, 3.2vw, 36px);
  letter-spacing: -0.02em;
  line-height: 1.08;
  font-weight: 900;
}

/* Hero */
.hero{
  padding: calc(var(--section) - 10px) 0 var(--section);
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items:start;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(11,18,32,.12);
  background: rgba(255,255,255,.88);
  color: rgba(11,18,32,.72);
  font-size: 13px;
  font-weight: 800;
}
.eyebrow i{
  width:9px;height:9px;
  border-radius:50%;
  background: linear-gradient(135deg, var(--navy), var(--accent));
  box-shadow: 0 0 0 6px rgba(123,97,255,.10);
}
.h1{
  margin: 14px 0 10px;
  font-size: clamp(38px, 4.8vw, 60px);
  letter-spacing: -0.03em;
  line-height: 1.02;
  font-weight: 950;
}
.lede{
  margin: 0 0 18px;
  font-size: 18px;
  color: var(--muted);
  max-width: 62ch;
}
.meta{
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(11,18,32,.10);
  background: rgba(255,255,255,.88);
  color: rgba(11,18,32,.72);
}
.meta b{ color: rgba(11,18,32,.90); }

.hero-media{
  border-radius: var(--r-xl);
  overflow:hidden;
  border: 1px solid rgba(11,18,32,.10);
  box-shadow: var(--shadow);
  background: #0b1220;
}
.hero-media img{
  width:100%;
  height: 420px;
  object-fit: cover;
  display:block;
  filter: contrast(1.05) saturate(1.02);
}
.hero-media .cap{
  padding: 14px 16px;
  background: rgba(255,255,255,.92);
  border-top: 1px solid rgba(11,18,32,.10);
  color: rgba(11,18,32,.78);
  font-size: 13px;
}

/* Product cards */
.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.card{
  grid-column: span 4;
  border-radius: 22px;
  border: 1px solid rgba(11,18,32,.10);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
  overflow:hidden;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.card:hover{
  transform: translateY(-4px);
  border-color: rgba(31,78,120,.18);
  box-shadow: 0 22px 70px rgba(2,10,22,.12);
}
.card .media{
  height: 160px;
  background: #0b1220;
}
.card .media img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  filter: contrast(1.05) saturate(1.02);
}
.card .in{
  padding: 16px;
  display:grid;
  gap: 10px;
}
.kicker{
  display:flex;
  align-items:center;
  gap: 10px;
  color: rgba(11,18,32,.70);
  font-size: 13px;
  font-weight: 800;
}
.kicker i{ width:9px;height:9px;border-radius:50%; background: linear-gradient(135deg, var(--navy), var(--accent)); }
.card h3{
  margin:0;
  font-size: 20px;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-weight: 950;
}
.card p{ margin:0; color: var(--muted); }
.chips{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}
.chip{
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(11,18,32,.10);
  background: rgba(31,78,120,.06);
  color: rgba(11,18,32,.76);
  font-size: 13px;
  font-weight: 700;
}
.card .foot{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 12px;
  margin-top: 4px;
}
.link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight: 900;
  color: rgba(11,18,32,.92);
}
.link:hover{ text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.pill{
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(11,18,32,.10);
  background: rgba(255,255,255,.92);
  color: rgba(11,18,32,.70);
  font-size: 12px;
  font-weight: 800;
}

/* Testimonials */
.tgrid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.quote{
  grid-column: span 6;
  border-radius: 22px;
  border: 1px solid rgba(11,18,32,.10);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
  padding: 16px;
}
.quote p{
  margin:0;
  color: rgba(11,18,32,.86);
  font-size: 16.5px;
}
.by{
  margin-top: 12px;
  color: var(--muted2);
  font-size: 13px;
  font-weight: 900;
}

/* Product pages */
.page-hero{ padding: calc(var(--section) - 8px) 0 calc(var(--section) - 10px); }
.crumb{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(11,18,32,.10);
  background: rgba(255,255,255,.92);
  color: rgba(11,18,32,.76);
  font-weight: 900;
}
.crumb:hover{ box-shadow: 0 16px 60px rgba(31,78,120,.10); }
.page{
  border-radius: var(--r-xl);
  border: 1px solid rgba(11,18,32,.10);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.page .heroimg{
  height: 260px;
  background: #0b1220;
}
.page .heroimg img{ width:100%; height:100%; object-fit: cover; display:block; }
.page .top{
  padding: 16px;
  border-bottom: 1px solid rgba(11,18,32,.10);
}
.page h1{
  margin: 10px 0 8px;
  font-size: clamp(32px, 4.2vw, 48px);
  letter-spacing:-0.03em;
  line-height: 1.03;
  font-weight: 950;
}
.page .top p{ margin:0; color: var(--muted); max-width: 78ch; font-size: 17.5px; }
.page .body{
  padding: 16px;
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 14px;
}
.panel{
  border-radius: 18px;
  border: 1px solid rgba(11,18,32,.10);
  background: rgba(255,255,255,.92);
  padding: 14px;
}
.panel h2{
  margin:0 0 10px;
  font-size: 18px;
  letter-spacing:-0.01em;
  font-weight: 950;
}
.panel ul{ margin:0; padding-left: 18px; color: var(--muted); }
.panel li{ margin: 7px 0; }
.callout{
  border-radius: 18px;
  border: 1px solid rgba(31,78,120,.16);
  background: rgba(31,78,120,.06);
  padding: 14px;
}
.callout strong{ font-weight: 950; }
.callout p{ margin: 8px 0 0; color: var(--muted); }

/* Footer */
footer{ padding: calc(var(--section) - 12px) 0 56px; }
.footer-card{
  border-radius: var(--r-xl);
  border: 1px solid rgba(11,18,32,.10);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
  padding: 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
}
.footer-card h2{
  margin:0;
  font-size: 20px;
  letter-spacing:-0.02em;
  font-weight: 950;
}
.footer-card p{ margin: 8px 0 0; color: var(--muted); max-width: 68ch; }
.footbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 12px;
  margin-top: 16px;
  color: var(--muted2);
  font-size: 13px;
}
.footbar a{ color: rgba(11,18,32,.72); font-weight: 900; }
.footbar a:hover{ text-decoration: underline; text-underline-offset: 3px; }

/* Reveal */
.reveal{ opacity:0; transform: translateY(10px); transition: opacity .45s ease, transform .45s ease; }
.reveal.in{ opacity:1; transform: translateY(0); }

@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .card{ grid-column: span 12; }
  .quote{ grid-column: span 12; }
  .page .body{ grid-template-columns: 1fr; }
  .hero-media img{ height: 360px; }
}
@media (max-width: 760px){
  .nav{ display:none; }
  .menu-btn{ display:inline-flex; }
  .footer-card{ flex-direction:column; align-items:flex-start; }
}
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
  *{ scroll-behavior:auto !important; }
}

