/* Base styles for the standalone product site. */
:root{
  --brand:#0b4f8a;
  --brand-2:#0a3b66;
  --page-bg:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --border:#e2e8f0;
  --card:#ffffff;
  --shadow:0 10px 30px rgba(2, 6, 23, .08);
  --radius:14px;
  --container:1200px;
  --header-h:76px;
}

*{box-sizing:border-box;}
html,body{height:100%;}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  color:var(--text);
  background:var(--page-bg);
}

a{color:inherit; text-decoration:none;}
img{max-width:100%; height:auto; display:block;}

.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 20px;
}

.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:20px;
  top:20px;
  width:auto;
  height:auto;
  background:#fff;
  border:1px solid var(--border);
  border-radius:8px;
  padding:10px 12px;
  z-index:9999;
}

/* Header */
.site-header{
  height:var(--header-h);
  position:sticky;
  top:0;
  z-index:50;
  background:#fff;
  border-bottom:1px solid rgba(226,232,240,.75);
}
.header-inner{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand img{
  width:30%;
}
.brand-name{
  font-weight:800;
  letter-spacing:.2px;
}
.nav{
  display:flex;
  align-items:center;
  gap:10px;
}
.nav a{
  padding:10px 12px;
  border-radius:10px;
  color:var(--muted);
  font-weight:600;
}
.nav a:hover{
  background:rgba(11,79,138,.08);
  color:var(--text);
}
.nav .active{
  background:rgba(11,79,138,.12);
  color:var(--text);
}
.nav-divider{
  width:1px;
  height:26px;
  background:var(--border);
  margin:0 4px;
}
.nav-products{
  position:relative;
}
.nav-products button{
  appearance:none;
  border:0;
  background:transparent;
  color:var(--muted);
  font-weight:600;
  padding:10px 12px;
  border-radius:10px;
  cursor:pointer;
}
.nav-products button:hover{
  background:rgba(11,79,138,.08);
  color:var(--text);
}
.dropdown{
  position:absolute;
  top:calc(100% + 10px);
  left:0;
  background:#fff;
  border:1px solid var(--border);
  border-radius:12px;
  box-shadow:var(--shadow);
  min-width:280px;
  padding:10px;
  display:none;
}
.nav-products:hover .dropdown{
  display:block;
}
.dropdown a{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 10px;
  border-radius:10px;
  color:var(--muted);
  font-weight:600;
}
.dropdown a:hover{
  background:rgba(11,79,138,.08);
  color:var(--text);
}
.dropdown .dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:var(--brand);
  flex:0 0 auto;
}

/* Hero */
.hero{
  padding:54px 0 26px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
  align-items:center;
}
.hero-card{
  border:1px solid rgba(226,232,240,.9);
  border-radius:var(--radius);
  background:linear-gradient(180deg, rgba(11,79,138,.06), rgba(255,255,255,1) 46%);
  padding:28px 26px;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--muted);
  font-weight:700;
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:.12em;
}
.kicker .pill{
  background:rgba(11,79,138,.1);
  color:var(--brand-2);
  border:1px solid rgba(11,79,138,.18);
  padding:6px 10px;
  border-radius:999px;
}
.hero h1{
  margin:14px 0 10px;
  font-size:42px;
  line-height:1.1;
  letter-spacing:-.02em;
}
.hero p{
  margin:0;
  color:var(--muted);
  font-size:16px;
  line-height:1.7;
}
.hero-actions{
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:12px;
  font-weight:800;
  border:1px solid var(--border);
  background:#fff;
  cursor:pointer;
}
.btn:hover{transform:translateY(-1px);}
.btn-primary{
  border-color:rgba(11,79,138,.3);
  background:var(--brand);
  color:#fff;
}
.btn-ghost{
  background:rgba(11,79,138,.06);
  border-color:rgba(11,79,138,.18);
  color:var(--brand-2);
}
.hero-media{
  border:1px solid rgba(226,232,240,.9);
  border-radius:var(--radius);
  background:#fff;
  padding:16px;
}
.hero-media img{
  border-radius:12px;
}

/* Sections */
.section{
  padding:26px 0;
}
.section-title{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}
.section-title h2{
  margin:0;
  font-size:22px;
  letter-spacing:-.01em;
}
.section-title p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
  max-width:620px;
}
.grid-3{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}
.grid-2{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:14px;
}
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:0 1px 0 rgba(2,6,23,.02);
}
.card h3{
  margin:0 0 8px;
  font-size:16px;
}
.card p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
  font-size:14px;
}
.feature-list{
  margin:12px 0 0;
  padding:0;
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.feature-list li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:var(--muted);
  font-weight:650;
  font-size:14px;
}
.check{
  width:18px;
  height:18px;
  border-radius:6px;
  background:rgba(11,79,138,.12);
  border:1px solid rgba(11,79,138,.22);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-top:1px;
  flex:0 0 auto;
}
.check svg{
  width:12px;
  height:12px;
  fill:var(--brand-2);
}

/* Product page specifics */
.product-hero{
  padding:42px 0 12px;
}
.breadcrumbs{
  color:var(--muted);
  font-weight:650;
  font-size:13px;
}
.breadcrumbs a{color:var(--muted);}
.breadcrumbs span{opacity:.7;}

.product-layout{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  align-items:start;
  margin-top:14px;
}
.product-media{
  border:1px solid rgba(226,232,240,.9);
  border-radius:var(--radius);
  overflow:hidden;
  background:#fff;
}
.product-media img{
  width:100%;
  max-height:420px;
  object-fit:cover;
}
.product-meta{
  padding:18px;
}
.product-meta h1{
  margin:10px 0 8px;
  font-size:32px;
  letter-spacing:-.02em;
}
.tag-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:12px 0;
}
.tag{
  border:1px solid rgba(11,79,138,.22);
  background:rgba(11,79,138,.08);
  color:var(--brand-2);
  font-weight:800;
  padding:8px 10px;
  border-radius:999px;
  font-size:13px;
}
.two-cols{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.spec{
  display:flex;
  flex-direction:column;
  gap:6px;
}
.spec .label{
  color:var(--muted);
  font-weight:750;
  font-size:13px;
}
.spec .value{
  font-weight:850;
}

/* Footer */
.site-footer{
  padding:26px 0 34px;
  border-top:1px solid rgba(226,232,240,.85);
  margin-top:30px;
}
.footer-inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}
.footer-inner p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
  font-weight:650;
  font-size:13px;
}
.footer-links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.footer-links a{
  color:var(--muted);
  font-weight:700;
  font-size:13px;
}
.footer-links a:hover{color:var(--text);}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr; }
  .hero h1{font-size:34px;}
  .grid-3{grid-template-columns: 1fr;}
  .grid-2{grid-template-columns: 1fr;}
  .product-layout{grid-template-columns: 1fr;}
  .two-cols{grid-template-columns: 1fr;}
}

