/* B2B Picker Static — fast, modern, no dependencies */
:root{
  --bg0:#070A12;
  --bg1:#0B1020;
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.08);
  --stroke:rgba(255,255,255,.10);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.70);
  --muted2:rgba(255,255,255,.55);
  --brand:#7C5CFF;
  --brand2:#00D4FF;
  --ok:#27D07D;
  --warn:#FFB020;
  --bad:#FF4D6D;
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --radius: 18px;
  --radius2: 24px;
  --max: 1180px;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--sans);
  color:var(--text);
  background:
    radial-gradient(1000px 500px at 10% -10%, rgba(124,92,255,.35), transparent 60%),
    radial-gradient(900px 600px at 90% 0%, rgba(0,212,255,.25), transparent 55%),
    radial-gradient(900px 700px at 40% 110%, rgba(124,92,255,.18), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1) 40%, #070914);
  overflow-x:hidden;
}
a{color:inherit; text-decoration:none}
a:hover{opacity:.92}
img{max-width:100%; display:block}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}
.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(7,10,18,.78), rgba(7,10,18,.35));
  border-bottom:1px solid var(--stroke);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.logo{
  display:flex; align-items:center; gap:10px;
  font-weight:750; letter-spacing:.2px;
}
.logo-badge{
  width:34px; height:34px; border-radius:12px;
  background: linear-gradient(135deg, rgba(124,92,255,1), rgba(0,212,255,1));
  box-shadow: 0 10px 30px rgba(124,92,255,.20);
  display:grid; place-items:center;
}
.logo-badge svg{filter: drop-shadow(0 8px 18px rgba(0,0,0,.35))}
.navlinks{display:flex; gap:10px; flex-wrap:wrap; align-items:center; justify-content:flex-end}
.pill{
  padding:8px 12px;
  border:1px solid var(--stroke);
  border-radius:999px;
  background: rgba(255,255,255,.04);
  color:var(--muted);
  font-size:14px;
}
.pill:hover{background: rgba(255,255,255,.06); color:var(--text)}
.btn{
  display:inline-flex; gap:10px; align-items:center; justify-content:center;
  padding:10px 14px; border-radius:999px;
  border:1px solid rgba(124,92,255,.35);
  background: linear-gradient(135deg, rgba(124,92,255,.95), rgba(0,212,255,.70));
  box-shadow: 0 10px 28px rgba(124,92,255,.22);
  color:#071021;
  font-weight:700;
  transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
}
.btn:hover{transform: translateY(-1px); box-shadow: 0 14px 34px rgba(124,92,255,.28)}
.btn.secondary{
  background: rgba(255,255,255,.06);
  color:var(--text);
  border-color: var(--stroke);
  box-shadow:none;
}
.btn.secondary:hover{background: rgba(255,255,255,.08)}
.hero{
  padding:42px 0 22px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:stretch;
}
@media (max-width: 940px){
  .hero-grid{grid-template-columns:1fr}
  .navlinks{display:none}
}
.h-title{
  font-size: clamp(30px, 3.4vw, 52px);
  line-height:1.04;
  margin:0 0 12px;
  letter-spacing:-.5px;
}
.h-sub{
  margin:0 0 16px;
  color:var(--muted);
  font-size:16px;
  line-height:1.55;
  max-width: 60ch;
}
.badges{display:flex; flex-wrap:wrap; gap:8px; margin:10px 0 18px}
.badge{
  padding:8px 10px; border-radius:999px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.05);
  color:var(--muted);
  font-size:13px;
}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  border:1px solid var(--stroke);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
}
.card.pad{padding:16px}
.card h3{margin:0 0 8px}
.card p{margin:0; color:var(--muted); line-height:1.55}
.kit{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
  margin-top:14px;
}
@media (max-width: 520px){
  .kit{grid-template-columns:1fr}
}
.kpi{
  border:1px solid var(--stroke);
  border-radius: var(--radius);
  padding:12px 12px;
  background: rgba(255,255,255,.04);
}
.kpi b{display:block; font-size:18px; margin-bottom:4px}
.kpi span{color:var(--muted2); font-size:13px}
.section{padding:22px 0}
.section-head{
  display:flex; align-items:flex-end; justify-content:space-between; gap:12px;
  margin-bottom:12px;
}
.section h2{
  margin:0;
  font-size: clamp(22px, 2.2vw, 32px);
  letter-spacing:-.3px;
}
.section .hint{color:var(--muted); font-size:14px; line-height:1.45; max-width: 70ch}
.grid3{display:grid; grid-template-columns: repeat(3,1fr); gap:12px}
@media(max-width: 940px){.grid3{grid-template-columns:1fr}}
.feature{
  padding:14px;
  border-radius: var(--radius2);
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.04);
}
.feature h4{margin:0 0 6px; font-size:16px}
.feature p{margin:0; color:var(--muted); line-height:1.55}
.tabs{
  display:flex; gap:8px; flex-wrap:wrap;
  margin-bottom:10px;
}
.tab{
  cursor:pointer;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.04);
  padding:8px 10px;
  border-radius:999px;
  font-size:14px;
  color:var(--muted);
}
.tab[aria-selected="true"]{
  background: rgba(124,92,255,.18);
  border-color: rgba(124,92,255,.45);
  color: var(--text);
}
.form{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:10px;
}
.field{grid-column: span 6}
.field.full{grid-column: 1 / -1}
@media(max-width: 760px){
  .field{grid-column: 1 / -1}
}
label{
  display:block;
  margin:0 0 6px;
  color:var(--muted2);
  font-size:13px;
}
input, select, textarea{
  width:100%;
  padding:11px 12px;
  border-radius: 14px;
  border:1px solid var(--stroke);
  background: rgba(8,12,24,.55);
  color:var(--text);
  outline:none;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(124,92,255,.55);
  box-shadow: 0 0 0 4px rgba(124,92,255,.15);
}
.actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px}
.results{
  margin-top:12px;
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:12px;
}
@media(max-width: 940px){.results{grid-template-columns:1fr}}
.offer{
  padding:14px;
  border-radius: var(--radius2);
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.04);
}
.offer-top{display:flex; justify-content:space-between; gap:10px; align-items:flex-start}
.offer h4{margin:0; font-size:16px}
.offer .tagline{margin-top:6px; color:var(--muted); line-height:1.5; font-size:14px}
.offer .meta{display:flex; gap:8px; flex-wrap:wrap; margin-top:10px}
.chip{
  padding:6px 8px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.04);
  font-size:12px;
  color:var(--muted);
}
.score{
  font-family: var(--mono);
  font-size:12px;
  padding:6px 8px;
  border-radius: 999px;
  background: rgba(39,208,125,.14);
  border:1px solid rgba(39,208,125,.25);
  color: rgba(200,255,228,.92);
  white-space:nowrap;
}
.offer .foot{display:flex; gap:10px; margin-top:12px; align-items:center; justify-content:space-between}
.small{font-size:12px; color:var(--muted2); line-height:1.45}
.hr{
  height:1px; background: var(--stroke); margin:16px 0;
}
.tablewrap{
  overflow:auto;
  border-radius: var(--radius2);
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.03);
}
table{width:100%; border-collapse:separate; border-spacing:0; min-width: 860px}
th,td{padding:12px 12px; border-bottom:1px solid rgba(255,255,255,.08); text-align:left; vertical-align:top}
th{font-size:12px; color:var(--muted2); text-transform:uppercase; letter-spacing:.08em; position:sticky; top:0; background: rgba(10,14,28,.82); backdrop-filter: blur(10px)}
tr:hover td{background: rgba(255,255,255,.03)}
.ok{color: rgba(200,255,228,.95)}
.no{color: rgba(255,150,170,.95)}
footer{
  padding:28px 0;
  color:var(--muted2);
  border-top:1px solid var(--stroke);
  margin-top: 18px;
}
footer .fgrid{
  display:grid; grid-template-columns: 1.1fr .9fr;
  gap:14px;
}
@media(max-width: 900px){footer .fgrid{grid-template-columns:1fr}}
.footer-links{display:flex; gap:10px; flex-wrap:wrap}
.kbd{
  font-family: var(--mono);
  border:1px solid var(--stroke);
  padding:2px 6px;
  border-radius:8px;
  background: rgba(255,255,255,.04);
  color:var(--muted);
}
.toast{
  position: fixed;
  left:50%; transform: translateX(-50%);
  bottom: 18px;
  padding: 10px 12px;
  border-radius: 999px;
  border:1px solid var(--stroke);
  background: rgba(10,14,28,.85);
  backdrop-filter: blur(12px);
  color: var(--text);
  box-shadow: var(--shadow);
  display:none;
  max-width: calc(100% - 24px);
}
.toast.show{display:block}
