
:root {
  color-scheme: dark;
  --bg: #030914;
  --bg-soft: #06101d;
  --panel: rgba(7, 20, 35, 0.78);
  --panel-solid: #081522;
  --panel-light: #0d1c2c;
  --line: rgba(94, 178, 255, 0.19);
  --line-strong: rgba(94, 188, 255, 0.34);
  --text: #f5f9ff;
  --muted: #a9b8ca;
  --muted-2: #798ca3;
  --blue: #13b7ff;
  --blue-soft: #79d8ff;
  --blue-dark: #087fc0;
  --green: #52d59a;
  --amber: #ffc768;
  --danger: #ff7e86;
  --shadow: rgba(0, 0, 0, 0.46);
  --radius: 24px;
  --radius-sm: 14px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { min-height: 100%; scroll-behavior: smooth; background: var(--bg); }
body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -10%, rgba(0, 151, 255, 0.20), transparent 34rem),
    linear-gradient(145deg, #020711 0%, #071321 52%, #020812 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .22;
  background-image:
    linear-gradient(rgba(78,165,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78,165,255,.08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 82%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 0 35%, rgba(18,183,255,.07), transparent 28rem),
    radial-gradient(circle at 100% 80%, rgba(18,183,255,.06), transparent 30rem);
}

img, svg { max-width: 100%; }
a { color: var(--blue-soft); text-decoration: none; }
a:hover { color: #fff; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid rgba(18,183,255,.62); outline-offset: 3px; }

.skip-link {
  position: fixed; left: 14px; top: -80px; z-index: 999;
  padding: 10px 14px; border-radius: 10px; background: #fff; color: #05111d; font-weight: 800;
}
.skip-link:focus { top: 14px; }

.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.site-header {
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid rgba(94,178,255,.13);
  background: rgba(3, 9, 20, .79);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 13px; color: var(--text); min-width: 0; }
.brand:hover { color: var(--text); }
.brand-logo { width: 205px; height: auto; max-height: 62px; flex: 0 1 auto; object-fit: contain; filter: drop-shadow(0 0 15px rgba(18,183,255,.13)); }
.nav-menu { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav-menu a {
  display: inline-flex; align-items: center; min-height: 42px; padding: 8px 12px;
  border-radius: 10px; color: #c3cfdd; font-size: .92rem; font-weight: 700;
}
.nav-menu a:hover, .nav-menu a[aria-current="page"] { color: #fff; background: rgba(255,255,255,.055); }
.nav-menu .nav-cta { margin-left: 5px; border: 1px solid var(--line-strong); color: #d7f3ff; background: rgba(18,183,255,.08); }
.nav-toggle {
  display: none; width: 44px; height: 44px; padding: 0; border: 1px solid var(--line);
  border-radius: 12px; color: #fff; background: rgba(255,255,255,.04); cursor: pointer;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: ""; display: block; width: 20px; height: 2px; margin: 4px auto; border-radius: 9px; background: currentColor;
}

main { display: block; }
.hero { padding: 78px 0 42px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); align-items: center; gap: 54px; }
.eyebrow, .badge {
  display: inline-flex; align-items: center; gap: 9px; min-height: 32px; padding: 6px 11px;
  border: 1px solid rgba(64,188,255,.28); border-radius: 999px;
  color: #c8edff; background: rgba(7,24,41,.72); font-size: .72rem; font-weight: 850;
  letter-spacing: .15em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 18px rgba(18,183,255,.55); }
h1, h2, h3 { margin-top: 0; line-height: 1.08; letter-spacing: -.035em; text-wrap: balance; }
h1 { margin: 22px 0 19px; font-size: clamp(2.7rem, 6.6vw, 5.7rem); line-height: .96; }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); }
h3 { font-size: 1.24rem; }
.accent { color: var(--blue-soft); text-shadow: 0 0 28px rgba(18,183,255,.25); }
.hero-lead { max-width: 690px; margin: 0; color: var(--muted); font-size: clamp(1.02rem, 1.8vw, 1.22rem); line-height: 1.75; }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 29px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 48px; padding: 11px 18px;
  border: 1px solid var(--line); border-radius: 12px; color: #d9e7f4; background: rgba(255,255,255,.035);
  font-weight: 800; cursor: pointer; transition: transform .16s ease, border-color .16s ease, background .16s ease;
}
.btn:hover { transform: translateY(-1px); color: #fff; border-color: rgba(121,216,255,.48); background: rgba(255,255,255,.06); }
.btn-primary { color: #03111c; border-color: transparent; background: linear-gradient(135deg, #80ddff, #13b7ff); box-shadow: 0 12px 32px rgba(18,183,255,.18); }
.btn-primary:hover { color: #03111c; background: linear-gradient(135deg, #a0e7ff, #35c1ff); }
.btn-small { min-height: 40px; padding: 8px 13px; font-size: .88rem; }

.hero-art {
  position: relative; min-height: 500px; overflow: hidden; border: 1px solid var(--line); border-radius: 30px;
  background:
    radial-gradient(circle at 50% 48%, rgba(18,183,255,.18), transparent 34%),
    linear-gradient(160deg, rgba(255,255,255,.055), transparent 33%),
    rgba(6,16,29,.72);
  box-shadow: 0 36px 90px var(--shadow), 0 0 70px rgba(0,153,255,.07);
  isolation: isolate;
}
.hero-art::before, .hero-art::after { content: ""; position: absolute; border: 1px solid rgba(18,183,255,.17); border-radius: 50%; }
.hero-art::before { width: 380px; height: 380px; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.hero-art::after { width: 255px; height: 255px; left: 50%; top: 50%; transform: translate(-50%,-50%); box-shadow: 0 0 60px rgba(18,183,255,.08); }
.circuit-lines { position: absolute; inset: 0; opacity: .55; background:
    linear-gradient(90deg, transparent 49.8%, rgba(18,183,255,.18) 50%, transparent 50.2%),
    linear-gradient(transparent 49.8%, rgba(18,183,255,.18) 50%, transparent 50.2%); }
.circuit-lines::before, .circuit-lines::after { content:""; position:absolute; background: var(--blue); border-radius:50%; box-shadow: 0 0 18px rgba(18,183,255,.55); }
.circuit-lines::before { width: 9px; height: 9px; left: 49.1%; top: 18%; }
.circuit-lines::after { width: 11px; height: 11px; right: 18%; top: 49%; }
.hero-lockup { position: absolute; inset: 0; z-index: 2; display: grid; place-content: center; justify-items: center; padding: 42px; text-align: center; }
.hero-lockup img { width: min(390px, 82%); height: auto; }
.hero-lockup p { max-width: 330px; margin: 22px 0 0; color: #aebed0; }
.signal { position: absolute; width: 11px; height: 11px; border: 2px solid var(--blue); border-radius: 50%; background: #071321; box-shadow: 0 0 17px rgba(18,183,255,.4); }
.signal.s1 { left: 12%; top: 16%; } .signal.s2 { right: 13%; bottom: 14%; background: var(--blue); } .signal.s3 { right: 22%; top: 20%; width: 7px; height: 7px; }

.trust-strip { padding: 18px 0 36px; }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.trust-item { padding: 15px 17px; border: 1px solid rgba(148,190,232,.13); border-radius: 13px; background: rgba(255,255,255,.026); }
.trust-item strong { display: block; color: #eef8ff; font-size: .93rem; }
.trust-item span { display: block; margin-top: 3px; color: var(--muted-2); font-size: .82rem; }

.section { padding: 76px 0; }
.section-tight { padding: 48px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 29px; }
.section-head p { max-width: 610px; margin: 0; color: var(--muted); }
.kicker { margin: 0 0 10px; color: var(--blue-soft); font-size: .75rem; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }

.card-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 17px; }
.card {
  position: relative; overflow: hidden; min-height: 100%; padding: 24px;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(255,255,255,.042), transparent 40%), var(--panel);
  box-shadow: 0 18px 42px rgba(0,0,0,.19);
}
.card::after { content:""; position:absolute; width:110px; height:110px; top:-70px; right:-55px; border:1px solid rgba(18,183,255,.14); border-radius:50%; }
.card p { color: var(--muted); }
.card .card-link { display: inline-flex; margin-top: 8px; font-weight: 800; }
.card-icon { display: grid; place-items: center; width: 47px; height: 47px; margin-bottom: 19px; border: 1px solid rgba(18,183,255,.25); border-radius: 13px; background: rgba(18,183,255,.08); color: var(--blue-soft); font-size: 1.15rem; font-weight: 900; }
.product-card { display: flex; flex-direction: column; }
.product-card .actions { margin-top: auto; padding-top: 10px; }
.product-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 13px 0 16px; }
.pill { display:inline-flex; align-items:center; min-height:28px; padding:4px 9px; border:1px solid rgba(148,190,232,.15); border-radius:999px; color:#b9c9d9; background:rgba(255,255,255,.03); font-size:.72rem; font-weight:780; letter-spacing:.04em; }
.pill-blue { color:#c8edff; border-color:rgba(18,183,255,.26); background:rgba(18,183,255,.07); }
.pill-green { color:#baf4da; border-color:rgba(82,213,154,.24); background:rgba(82,213,154,.07); }
.pill-amber { color:#ffe2a9; border-color:rgba(255,199,104,.23); background:rgba(255,199,104,.07); }

.band { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background:
    linear-gradient(100deg, rgba(18,183,255,.10), transparent 48%),
    rgba(7,20,35,.75); box-shadow: 0 26px 70px rgba(0,0,0,.22); }
.band-grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 28px; }
.band h2 { margin-bottom: 10px; font-size: clamp(1.7rem,3vw,2.6rem); }
.band p { max-width: 730px; margin: 0; color: var(--muted); }

.page-hero { padding: 70px 0 42px; }
.page-hero .hero-lead { max-width: 780px; }
.breadcrumbs { display:flex; flex-wrap:wrap; gap:7px; margin-bottom:18px; color:var(--muted-2); font-size:.84rem; }
.breadcrumbs a { color:#b9cbe0; }
.breadcrumbs span::before { content:"/"; margin-right:7px; color:#586c82; }
.page-hero h1 { max-width: 950px; font-size: clamp(2.65rem,6vw,5rem); }

.split { display:grid; grid-template-columns:minmax(0,1fr) minmax(330px,.78fr); gap:28px; align-items:start; }
.panel { padding:28px; border:1px solid var(--line); border-radius:var(--radius-sm); background:var(--panel); }
.panel h2 { font-size:1.7rem; }
.panel p:last-child { margin-bottom:0; }
.feature-list { display:grid; gap:12px; margin:0; padding:0; list-style:none; }
.feature-list li { position:relative; padding-left:28px; color:#cad6e3; }
.feature-list li::before { content:""; position:absolute; left:0; top:.55em; width:12px; height:7px; border-left:2px solid var(--blue); border-bottom:2px solid var(--blue); transform:rotate(-45deg); }
.detail-list { display:grid; gap:0; margin:0; }
.detail-row { display:grid; grid-template-columns:145px 1fr; gap:20px; padding:13px 0; border-bottom:1px solid rgba(148,190,232,.10); }
.detail-row:last-child { border-bottom:0; }
.detail-row dt { color:var(--muted-2); font-weight:750; }
.detail-row dd { margin:0; color:#d7e2ed; }

.product-visual { position:relative; display:grid; place-items:center; min-height:360px; overflow:hidden; border:1px solid var(--line); border-radius:var(--radius); background:
 radial-gradient(circle at center, rgba(18,183,255,.18), transparent 34%),
 linear-gradient(145deg,rgba(255,255,255,.05),transparent),#06101d; }
.product-visual::before { content:""; position:absolute; width:260px; height:260px; border:1px solid rgba(18,183,255,.16); border-radius:50%; }
.product-window { position:relative; z-index:1; width:min(480px,86%); overflow:hidden; border:1px solid rgba(137,201,255,.25); border-radius:16px; background:#081522; box-shadow:0 25px 60px rgba(0,0,0,.48); }
.window-bar { display:flex; align-items:center; gap:7px; height:38px; padding:0 13px; border-bottom:1px solid rgba(148,190,232,.12); background:#0b1a29; }
.window-bar i { width:8px;height:8px;border-radius:50%;background:#546779; }
.window-body { padding:19px; }
.window-brand { display:flex; align-items:center; gap:9px; color:#ecf7ff; font-weight:820; }
.window-brand img { width:28px; height:34px; object-fit:contain; }
.metric-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:9px; margin-top:18px; }
.metric { padding:12px; border:1px solid rgba(148,190,232,.12); border-radius:10px; background:rgba(255,255,255,.025); }
.metric b { display:block; color:var(--blue-soft); font-size:1.14rem; }
.metric span { color:var(--muted-2); font-size:.72rem; }

.support-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:17px; }
.faq { border-top:1px solid var(--line); }
details { border-bottom:1px solid var(--line); }
summary { cursor:pointer; padding:19px 5px; color:#e7f1fa; font-weight:800; }
details p { margin:0; padding:0 5px 20px; color:var(--muted); }

.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.field { display:grid; gap:7px; }
.field-full { grid-column:1/-1; }
label { color:#d8e5f0; font-size:.9rem; font-weight:750; }
input, textarea, select { width:100%; border:1px solid rgba(148,190,232,.21); border-radius:11px; color:#eef8ff; background:#07131f; padding:12px 13px; }
textarea { min-height:150px; resize:vertical; }
.form-note { color:var(--muted-2); font-size:.82rem; }
.notice { padding:15px 17px; border:1px solid rgba(255,199,104,.22); border-radius:12px; color:#f4dbad; background:rgba(255,199,104,.065); }
.notice-blue { border-color:rgba(18,183,255,.22); color:#cfefff; background:rgba(18,183,255,.06); }

.legal { max-width:860px; }
.legal h2 { margin-top:40px; font-size:1.7rem; }
.legal p, .legal li { color:#b8c6d5; }
.legal li + li { margin-top:8px; }

.site-footer { margin-top:74px; border-top:1px solid rgba(94,178,255,.13); background:rgba(2,8,17,.64); }
.footer-grid { display:grid; grid-template-columns:1.4fr repeat(3,.65fr); gap:38px; padding:50px 0 34px; }
.footer-brand p { max-width:380px; color:var(--muted); }
.footer-title { margin:0 0 13px; color:#eef7ff; font-size:.87rem; letter-spacing:.05em; text-transform:uppercase; }
.footer-links { display:grid; gap:8px; }
.footer-links a { color:#98aabd; font-size:.89rem; }
.footer-links a:hover { color:#fff; }
.footer-bottom { display:flex; justify-content:space-between; gap:20px; padding:20px 0 27px; border-top:1px solid rgba(148,190,232,.10); color:#71859a; font-size:.82rem; }
.footer-bottom a { color:#94a8bb; }

.not-found { min-height:68vh; display:grid; place-content:center; text-align:center; padding:60px 20px; }
.not-found strong { display:block; color:rgba(121,216,255,.27); font-size:clamp(6rem,20vw,14rem); line-height:.8; letter-spacing:-.08em; }
.not-found h1 { margin-top:28px; font-size:clamp(2rem,5vw,4rem); }

@media (max-width: 980px) {
  .hero-grid, .split { grid-template-columns:1fr; }
  .hero-art { min-height:430px; }
  .card-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .trust-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1.2fr repeat(2,.7fr); }
  .footer-grid > :last-child { grid-column:2/-1; }
}
@media (max-width: 780px) {
  .container { width:min(100% - 26px,var(--max)); }
  .nav-wrap { min-height:68px; }
  .nav-toggle { display:block; }
  .nav-menu {
    position:absolute; left:13px; right:13px; top:calc(100% + 8px); display:none; align-items:stretch; flex-direction:column;
    padding:10px; border:1px solid var(--line); border-radius:15px; background:rgba(4,13,24,.97); box-shadow:0 24px 60px rgba(0,0,0,.48);
  }
  .nav-menu[data-open="true"] { display:flex; }
  .nav-menu a { width:100%; }
  .nav-menu .nav-cta { margin-left:0; }
  .hero { padding-top:54px; }
  .hero-grid { gap:34px; }
  .hero-art { min-height:365px; border-radius:22px; }
  .section { padding:58px 0; }
  .section-head { display:block; }
  .section-head p { margin-top:12px; }
  .card-grid, .support-grid { grid-template-columns:1fr; }
  .band { padding:25px; }
  .band-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .footer-grid > :first-child, .footer-grid > :last-child { grid-column:1/-1; }
  .footer-bottom { flex-direction:column; }
  .detail-row { grid-template-columns:1fr; gap:3px; }
}
@media (max-width: 540px) {
  .brand-logo { width:170px; }
  h1 { font-size:clamp(2.45rem,13vw,4rem); }
  .hero-art { min-height:320px; }
  .trust-grid, .form-grid { grid-template-columns:1fr; }
  .field-full { grid-column:auto; }
  .card { padding:21px; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-grid > * { grid-column:auto !important; }
  .metric-grid { grid-template-columns:1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
}


/* Drive Eraser product page: extends the established Blackwire site system. */
.product-hero { padding-bottom: 58px; }
.product-hero-grid { grid-template-columns:minmax(0,.92fr) minmax(440px,1.08fr); align-items:center; gap:38px; }
.product-hero h1 { max-width:720px; }
.screenshot-card { margin:0; overflow:hidden; border:1px solid var(--line); border-radius:var(--radius-sm); background:var(--panel); box-shadow:0 18px 42px rgba(0,0,0,.23); }
.screenshot-link { display:block; overflow:hidden; background:#050b12; }
.screenshot-link img { display:block; width:100%; height:auto; transition:transform .18s ease, filter .18s ease; }
.screenshot-link:hover img { transform:scale(1.006); filter:brightness(1.05); }
.screenshot-card figcaption { padding:12px 15px; border-top:1px solid rgba(148,190,232,.10); color:var(--muted-2); font-size:.82rem; }
.hero-screenshot { border-radius:var(--radius); }
.hero-screenshot .screenshot-link { padding:10px; }
.hero-screenshot img { border-radius:14px; }
.section-soft { border-top:1px solid rgba(94,178,255,.09); border-bottom:1px solid rgba(94,178,255,.09); background:rgba(4,13,24,.36); }
.edition-grid { align-items:stretch; }
.edition-card { overflow:visible; }
.edition-card h3 { margin-bottom:2px; font-size:1.6rem; }
.edition-price { margin:0 0 8px; color:var(--blue-soft) !important; font-size:2.35rem; font-weight:900; letter-spacing:-.045em; }
.edition-featured, .edition-business { border-color:var(--line-strong); box-shadow:0 20px 55px rgba(0,0,0,.24),0 0 36px rgba(18,183,255,.06); }
.edition-ribbon { margin:-24px -24px 20px; padding:8px 16px; border-radius:var(--radius-sm) var(--radius-sm) 0 0; color:#dff6ff; background:rgba(18,183,255,.14); font-size:.72rem; font-weight:850; letter-spacing:.08em; text-align:center; text-transform:uppercase; }
.edition-business .edition-ribbon { color:#ffe6b7; background:rgba(255,199,104,.11); }
.compact-list { gap:9px; }
.compact-list li { font-size:.9rem; }
.safety-band { border-color:rgba(82,213,154,.23); background:linear-gradient(100deg,rgba(82,213,154,.08),transparent 50%),rgba(7,20,35,.75); }
.comparison-wrap { overflow-x:auto; border:1px solid var(--line); border-radius:var(--radius-sm); background:rgba(7,20,35,.72); box-shadow:0 18px 42px rgba(0,0,0,.17); }
.comparison-table { width:100%; min-width:850px; border-collapse:collapse; font-size:.86rem; }
.comparison-table th, .comparison-table td { padding:13px 15px; border-bottom:1px solid rgba(148,190,232,.10); vertical-align:top; text-align:left; }
.comparison-table thead th { position:sticky; top:0; color:#edf8ff; background:#0a1928; font-size:.78rem; letter-spacing:.05em; text-transform:uppercase; }
.comparison-table tbody th { width:28%; color:#dbe8f3; background:rgba(255,255,255,.018); }
.comparison-table tbody tr:last-child th, .comparison-table tbody tr:last-child td { border-bottom:0; }
.comparison-table td { color:#aebed0; }
.table-yes { color:#baf4da !important; font-weight:750; }
.table-no { color:#e0a6aa !important; }
.feature-screenshot-split { grid-template-columns:minmax(0,.88fr) minmax(430px,1.12fr); align-items:center; }
.feature-list-two { grid-template-columns:1fr 1fr; column-gap:24px; }
.wide-screenshot { margin-top:24px; }
.assurance-band { margin-top:18px; }
.assurance-band h2 { max-width:850px; }
.safety-split { grid-template-columns:minmax(0,1.15fr) minmax(350px,.85fr); align-items:center; }
.portrait-shot { width:min(100%,620px); justify-self:center; }
.feature-grid-four { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:17px; }
.info-split { margin-top:18px; }
.report-gallery { display:grid; grid-template-columns:1.25fr .75fr .75fr; gap:17px; margin-top:18px; align-items:start; }
.document-shot .screenshot-link { padding:10px; background:#d8dde2; }
.document-shot img { border-radius:5px; }
.report-note { margin-top:18px; }
.compact-feature-grid { margin-top:18px; }
.compact-feature-grid .card { padding:21px; }
.compact-feature-grid h3 { font-size:1.05rem; }
.download-band { display:block; }
.download-band .section-head { margin-bottom:22px; }
.download-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:14px; }
.download-option { padding:19px; border:1px solid rgba(148,190,232,.13); border-radius:12px; background:rgba(255,255,255,.026); }
.download-option h3 { margin-bottom:6px; }
.download-option p { color:var(--muted); }
.download-option .actions { margin-top:16px; }
.btn[aria-disabled="true"], span.btn[aria-disabled="true"] { opacity:.62; cursor:not-allowed; transform:none; }
.lightbox { width:min(96vw,1450px); max-width:none; max-height:94vh; padding:0; border:1px solid var(--line-strong); border-radius:18px; color:var(--text); background:#020812; box-shadow:0 35px 100px rgba(0,0,0,.78); }
.lightbox::backdrop { background:rgba(0,5,12,.88); backdrop-filter:blur(7px); }
.lightbox-shell { display:grid; grid-template-rows:auto minmax(0,1fr) auto; max-height:94vh; }
.lightbox-toolbar { display:flex; justify-content:space-between; gap:10px; padding:10px; border-bottom:1px solid var(--line); background:#071321; }
.lightbox-button, .lightbox-close { min-height:40px; padding:8px 13px; border:1px solid var(--line); border-radius:10px; color:#d9e7f4; background:rgba(255,255,255,.04); cursor:pointer; font-weight:800; }
.lightbox-close { border-color:var(--line-strong); color:#dff6ff; }
.lightbox img { display:block; max-width:100%; max-height:calc(94vh - 126px); margin:auto; object-fit:contain; }
.lightbox p { margin:0; padding:11px 16px 14px; color:var(--muted); text-align:center; }

@media (max-width:1100px) {
  .product-hero-grid, .feature-screenshot-split, .safety-split { grid-template-columns:1fr; }
  .hero-screenshot { max-width:820px; }
  .feature-grid-four { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .report-gallery { grid-template-columns:1fr 1fr; }
  .report-gallery > :first-child { grid-column:1/-1; }
}
@media (max-width:780px) {
  .product-hero { padding-top:50px; }
  .product-hero-grid { gap:28px; }
  .feature-list-two { grid-template-columns:1fr; }
  .feature-grid-four, .download-grid { grid-template-columns:1fr; }
  .report-gallery { grid-template-columns:1fr; }
  .report-gallery > :first-child { grid-column:auto; }
  .comparison-table th, .comparison-table td { padding:11px 12px; }
  .lightbox { width:98vw; max-height:96vh; }
  .lightbox img { max-height:calc(96vh - 132px); }
}

/* Blackwire Hardware Diagnostics product page */
.hardware-product-page .product-hero-grid { grid-template-columns:minmax(0,.9fr) minmax(500px,1.1fr); }
.hardware-product-page .hero-screenshot { max-width:none; }
.secure-boot-band {
  display:grid;
  grid-template-columns:minmax(0,1.35fr) minmax(300px,.65fr);
  gap:30px;
  border-color:rgba(255,199,104,.32);
  background:
    linear-gradient(100deg,rgba(255,126,134,.075),transparent 48%),
    linear-gradient(135deg,rgba(255,199,104,.08),transparent 62%),
    rgba(18,18,24,.82);
}
.secure-boot-band h2 { max-width:900px; color:#fff1cf; }
.secure-boot-band p { color:#d4c7b0; }
.secure-boot-list { display:grid; align-content:center; gap:11px; margin:0; padding:0; list-style:none; }
.secure-boot-list li { position:relative; padding:11px 13px 11px 36px; border:1px solid rgba(255,199,104,.15); border-radius:10px; color:#f0dcb7; background:rgba(255,255,255,.025); }
.secure-boot-list li::before { content:"!"; position:absolute; left:13px; top:10px; color:var(--amber); font-weight:900; }
.profile-table tbody th { color:#cdefff; }
.hardware-product-page .feature-grid-four .card { padding:22px; }
.hardware-product-page .feature-grid-four .card p { margin-bottom:0; }
.hardware-product-page .feature-grid-four .card-icon { margin-bottom:15px; }
.active-gallery { grid-template-columns:1fr 1fr .72fr; }
.active-gallery > :first-child { grid-column:auto; }
.hardware-report-gallery { grid-template-columns:1.25fr .58fr .62fr; align-items:stretch; }
.hardware-report-gallery > :first-child { grid-column:auto; }
.hardware-report-gallery .document-shot { height:100%; }
.hardware-report-gallery .document-shot .screenshot-link { height:calc(100% - 48px); display:grid; place-items:center; }
.hardware-report-gallery .document-shot img { max-height:620px; width:auto; margin:auto; }
.report-format-card { height:100%; }
.status-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:15px; }
.status-card { position:relative; min-height:128px; padding:21px 20px 20px 24px; border:1px solid var(--line); border-radius:13px; background:var(--panel); box-shadow:0 16px 36px rgba(0,0,0,.16); }
.status-card::before { content:""; position:absolute; inset:0 auto 0 0; width:5px; border-radius:13px 0 0 13px; background:#687b8e; }
.status-card strong { display:block; margin-bottom:8px; color:#f1f7fd; font-size:1.05rem; }
.status-card span { display:block; color:var(--muted); font-size:.9rem; }
.status-pass::before { background:var(--green); }
.status-warning::before { background:var(--amber); }
.status-fail::before { background:var(--danger); }
.status-pass strong { color:#c8f7df; }
.status-warning strong { color:#ffe2a9; }
.status-fail strong { color:#ffc3c7; }
.step-grid { counter-reset:steps; display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:15px; margin:0; padding:0; list-style:none; }
.step-grid li { counter-increment:steps; position:relative; min-height:155px; padding:24px 22px 22px 68px; border:1px solid var(--line); border-radius:14px; background:var(--panel); }
.step-grid li::before { content:counter(steps); position:absolute; left:20px; top:21px; display:grid; place-items:center; width:34px; height:34px; border:1px solid rgba(18,183,255,.32); border-radius:10px; color:var(--blue-soft); background:rgba(18,183,255,.08); font-weight:900; }
.step-grid strong { display:block; margin-bottom:8px; color:#eef8ff; }
.step-grid span { display:block; color:var(--muted); font-size:.9rem; }
.capability-limits { grid-template-columns:1fr 1fr; }
.can-panel { border-color:rgba(82,213,154,.23); }
.cannot-panel { border-color:rgba(255,126,134,.22); }
.can-panel .kicker { color:#a9efcd; }
.cannot-panel .kicker { color:#ffc3c7; }
.hardware-product-page .faq details p { max-width:980px; }

@media (max-width:1100px) {
  .hardware-product-page .product-hero-grid,
  .secure-boot-band,
  .capability-limits { grid-template-columns:1fr; }
  .active-gallery { grid-template-columns:1fr 1fr; }
  .active-gallery > :last-child { grid-column:1/-1; }
  .hardware-report-gallery { grid-template-columns:1fr 1fr; }
  .hardware-report-gallery > :first-child { grid-column:1/-1; }
  .status-grid, .step-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width:780px) {
  .active-gallery,
  .hardware-report-gallery,
  .status-grid,
  .step-grid { grid-template-columns:1fr; }
  .active-gallery > :last-child,
  .hardware-report-gallery > :first-child { grid-column:auto; }
  .secure-boot-band { padding:26px; }
  .step-grid li { min-height:0; }
}
