
:root{
  --bg: #fff7ee;
  --card: #ffffff;
  --ink: #1f2937;
  --muted:#6b7280;
  --accent:#f97316;
  --accent2:#fb923c;
  --ring: rgba(249,115,22,.25);
  --line: rgba(31,41,55,.10);
  --shadow: 0 10px 30px rgba(31,41,55,.08);
  --radius: 18px;
  --max: 1200px;
}
*{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(--ink);
  background: #eaf6ff;
  line-height:1.6;
}
a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}
header{
  position:sticky; top:0; z-index:30;
  backdrop-filter: blur(10px);
  background: rgba(255,247,238,.78);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{
  display:flex; align-items:center; gap:12px;
  min-width:260px;
}
.logo{
  width:42px; height:42px; border-radius:14px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 12px 24px rgba(249,115,22,.22);
  display:grid; place-items:center;
}
.logo svg{width:26px; height:26px}
.brand h1{font-size:16px; margin:0; letter-spacing:.2px}
.brand p{margin:0; color:var(--muted); font-size:12px}
.menu{display:flex; flex-wrap:wrap; gap:10px; justify-content:flex-end}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.70);
  box-shadow: 0 6px 18px rgba(31,41,55,.06);
  font-weight:600;
  font-size:13px;
}
.btn:hover{transform:translateY(-1px); transition:.2s; box-shadow:0 10px 26px rgba(31,41,55,.10)}
.btn.primary{
  border:1px solid rgba(249,115,22,.35);
  background: linear-gradient(135deg, rgba(249,115,22,.14), rgba(251,146,60,.12));
}
.hero{padding:42px 0 22px}
.hero-grid{
  display:grid; grid-template-columns: 1.2fr .8fr; gap:18px; align-items:stretch;
}
@media (max-width: 900px){
  .hero-grid{grid-template-columns:1fr}
  .brand{min-width:unset}
}
.kicker{
  display:inline-flex; gap:10px; align-items:center;
  font-size:12px; color:var(--muted);
  background: rgba(255,255,255,.62);
  border:1px solid var(--line);
  padding:8px 12px; border-radius:999px;
}
.kicker b{color:var(--ink)}
h2{margin:14px 0 10px; font-size:34px; line-height:1.15}
.lede{color:var(--muted); font-size:15px; max-width:70ch}
.card{
  background: rgba(255,255,255,.78);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-side{padding:18px}
.statrow{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px}
.stat{
  flex:1 1 160px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.70);
}
.stat .n{font-weight:800; font-size:18px}
.stat .t{color:var(--muted); font-size:12px}
.section{padding:26px 0}
.section h3{font-size:22px; margin:0 0 10px}
.grid{
  display:grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap:14px;
}
@media (max-width: 1000px){.grid{grid-template-columns: repeat(2, minmax(0, 1fr));}}
@media (max-width: 640px){.grid{grid-template-columns: 1fr;}}
.pcard{padding:16px}
.pcard .title{font-weight:800; margin:0 0 6px}
.pcard .sku{font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono","Courier New"; font-size:12px; color:var(--muted)}
.pcard .desc{color:var(--muted); font-size:13px; margin:10px 0 0}
.badges{display:flex; gap:8px; flex-wrap:wrap; margin-top:10px}
.badge{
  font-size:11px; font-weight:700; color:rgba(31,41,55,.85);
  padding:6px 10px; border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.72);
}
.tablewrap{overflow:auto; border-radius: var(--radius); border:1px solid var(--line); background: rgba(255,255,255,.76); box-shadow: var(--shadow);}
table{width:100%; border-collapse:separate; border-spacing:0; min-width:860px}
thead th{
  position:sticky; top:0;
  background: rgba(255,255,255,.92);
  text-align:left;
  font-size:12px; letter-spacing:.02em;
  color:var(--muted);
  padding:12px 14px;
  border-bottom:1px solid var(--line);
}
tbody td{padding:12px 14px; border-bottom:1px solid var(--line); vertical-align:top}
tbody tr:hover td{background: rgba(249,115,22,.06)}
.grouphead{
  background: rgba(249,115,22,.10);
  font-weight:900;
  color: rgba(31,41,55,.92);
}
.grouphead td{padding:14px}
.small{font-size:12px; color:var(--muted)}
.mono{font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono","Courier New"; font-size:12px}
.searchbar{
  display:flex; gap:10px; flex-wrap:wrap; align-items:center;
  padding:14px; margin-bottom:12px;
}
.searchbar input, .searchbar select{
  padding:10px 12px; border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.85);
  outline:none;
}
.searchbar input:focus, .searchbar select:focus{box-shadow: 0 0 0 5px var(--ring); border-color: rgba(249,115,22,.35)}
footer{
  border-top:1px solid var(--line);
  padding:22px 0;
  color:var(--muted);
}
.footergrid{
  display:grid; grid-template-columns: 1.2fr 1fr 1fr; gap:14px;
}
@media (max-width: 900px){.footergrid{grid-template-columns:1fr}}
.footergrid h4{margin:0 0 8px; color:var(--ink)}
.footergrid p{margin:0 0 6px}
.visitorsBox{
  margin-top:8px;
  border:1px solid var(--line);
  border-radius:16px;
  background: rgba(255,255,255,.75);
  padding:12px;
}
.visitorsBox .row{display:flex; justify-content:space-between; gap:10px; font-size:12px}
.visitorsList{
  margin-top:10px;
  max-height:180px;
  overflow:auto;
  border-top:1px dashed var(--line);
  padding-top:10px;
}
.visitorsList div{display:flex; justify-content:space-between; gap:10px; font-size:12px; padding:4px 0}
hr{border:none; border-top:1px solid var(--line); margin:14px 0}
.form{padding:18px}
label{display:block; font-weight:700; font-size:13px; margin:10px 0 6px}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.85);
  outline:none;
}
textarea{min-height:140px; resize:vertical}
input:focus, textarea:focus{box-shadow: 0 0 0 5px var(--ring); border-color: rgba(249,115,22,.35)}
.submit{
  margin-top:12px;
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid rgba(249,115,22,.35);
  background: linear-gradient(135deg, rgba(249,115,22,.16), rgba(251,146,60,.14));
  font-weight:800;
  cursor:pointer;
}
.notice{font-size:12px; color:var(--muted)}


/* USP internal linking (light-touch) */
.badge a{color:inherit;text-decoration:none}
.badge a:focus,.badge a:hover{text-decoration:underline}


/* USP shortcut styling (prominent + color change) */
.uspShortcuts .btn{
  background: #fff5f0;
  color: #c0392b;
  border: 2px solid #e74c3c;
  font-weight: 800;
  letter-spacing: .3px;
  transition: all .15s ease;
}

.uspShortcuts .btn:hover,
.uspShortcuts .btn:focus{
  background: #e74c3c;
  color: #ffffff;
  border-color: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(231,76,60,.35);
  text-decoration: none;
}

