:root{
  --bg:#f5f7fb;
  --bg-elevated:#ffffff;
  --bg-muted:#eef2f7;
  --surface:#ffffff;
  --surface-muted:#f8fafc;
  --surface-soft:rgba(37,99,235,.08);
  --alert-surface:#f8fafc;
  --alert-soft:#eef2ff;
  --pending-bg:#eef2ff;
  --pending-text:#64748b;
  --ok-bg:#ecfdf5;
  --warn-bg:#fffbeb;
  --bad-bg:#fef2f2;
  --text:#0f172a;
  --text-soft:#475569;
  --muted:#64748b;
  --line:rgba(15,23,42,.10);
  --border:rgba(15,23,42,.12);
  --shadow:0 10px 30px rgba(15,23,42,.06);
  --shadow-lg:0 20px 50px rgba(15,23,42,.10);
  --radius-xl:24px;
  --radius-lg:18px;
  --radius-md:14px;
  --radius-sm:10px;
  --primary:#2563eb;
  --primary-strong:#1d4ed8;
  --primary-soft:#dbeafe;
  --secondary:#f59e0b;
  --secondary-soft:#fef3c7;
  --success:#059669;
  --warning:#d97706;
  --danger:#dc2626;
}
html[data-theme="dark"]{
  --bg:#050b18;
  --bg-elevated:#0f1724;
  --bg-muted:#111827;
  --surface:#111827;
  --surface-muted:#161f2e;
  --surface-soft:rgba(255,255,255,.06);
  --surface-highlight:rgba(255,255,255,.08);
  --surface-highlight-strong:rgba(255,255,255,.14);
  --surface-strong:#1a2534;
  --alert-surface:#111827;
  --alert-soft:#1f2937;
  --pending-bg:rgba(96,165,250,.12);
  --pending-text:#94a3b8;
  --ok-bg:rgba(34,197,94,.12);
  --warn-bg:rgba(245,158,11,.12);
  --bad-bg:rgba(248,113,113,.14);
  --text:#e5e7eb;
  --text-soft:#cbd5e1;
  --muted:#94a3b8;
  --line:rgba(148,163,184,.16);
  --border:rgba(148,163,184,.12);
  --shadow:0 10px 30px rgba(0,0,0,.24);
  --shadow-lg:0 20px 50px rgba(0,0,0,.38);
  --primary:#60a5fa;
  --primary-strong:#3b82f6;
  --primary-soft:rgba(96,165,250,.16);
  --secondary:#fbbf24;
  --secondary-soft:rgba(251,191,36,.12);
  --success:#34d399;
  --warning:#f59e0b;
  --danger:#f87171;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  min-height:100vh;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(37,99,235,.06), transparent 24%),
    radial-gradient(circle at 90% 10%, rgba(245,158,11,.05), transparent 22%),
    linear-gradient(180deg,var(--bg),var(--bg-muted));
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 50% 16%, rgba(255,255,255,.18), transparent 20%),
    radial-gradient(circle at 20% 80%, var(--primary-soft), transparent 22%);
  opacity:.7;
}
.shell{position:relative;z-index:1;max-width:1280px;margin:0 auto;padding:18px 18px 34px}
.card,.modal-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius-xl);
  box-shadow:var(--shadow);
}
.card{padding:20px;margin-bottom:14px}
.hero{padding:22px}
.reveal{animation:rise .45s ease both}
.hero-topbar,.section-head,.status-row,.pricing-banner,.footer,.table-head,.link-row,.hero-grid{
  display:flex;
  align-items:center;
  gap:12px;
}
.hero-topbar,.section-head,.pricing-banner,.footer,.status-row{justify-content:space-between}
.hero-topbar-actions{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.brand-lockup{display:flex;align-items:center;gap:12px}
.brand-mark{
  width:48px;height:48px;border-radius:16px;
  background:linear-gradient(180deg,var(--surface-highlight),var(--surface-muted));
  border:1px solid var(--border);
  box-shadow:inset 0 1px 0 var(--surface-highlight-strong);
  position:relative;
}
.brand-mark::before{
  content:"";
  position:absolute;
  inset:11px;
  border-radius:12px;
  background:linear-gradient(145deg,#f9d97b,#d4a63f);
}
.brand-cut{
  position:absolute;inset:16px;border-radius:10px;
  border:4px solid rgba(15,23,42,.88);
  border-left-color:transparent;border-top-color:transparent;
  transform:rotate(45deg)
}
.brand-text{display:flex;flex-direction:column;gap:2px}
.eyebrow,.hero-kicker{
  display:inline-flex;align-items:center;gap:8px;
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:11px;
  font-weight:800;
  color:var(--primary);
}
.hero-kicker{margin-bottom:8px}
.brand-sub,.small,.pricing-note,.hint,.lede,.pricing-annual,.link-badge{color:var(--muted)}
.hero-grid{align-items:end;justify-content:space-between;gap:22px;margin-top:12px}
.hero-copy{flex:1 1 60%;max-width:760px}
.hero-aside{flex:0 0 300px;display:flex;flex-direction:column;gap:10px}
.hero-aside-card{
  padding:16px;
  border-radius:20px;
  border:1px solid var(--border);
  background:linear-gradient(180deg,var(--surface-soft),var(--surface-muted));
}
.hero-aside-label{display:inline-flex;font-size:11px;text-transform:uppercase;letter-spacing:.14em;color:var(--muted);margin-bottom:8px}
.hero-aside-card strong{display:block;font-size:15px;line-height:1.45;margin-bottom:6px}
.hero-aside-card p{margin:0;color:var(--muted);font-size:13px;line-height:1.55}
.hero-metrics{display:flex;flex-wrap:wrap}
h1{
  margin:0 0 10px;
  max-width:12ch;
  font-size:clamp(2.4rem,4vw,4.25rem);
  line-height:.95;
  letter-spacing:-.08em;
}
.holo-title{
  color:var(--text);
}
h2,h3{margin:0;letter-spacing:-.03em}
.lede{max-width:66ch;font-size:1rem;line-height:1.65;margin:0 0 16px}
.holo-lede{color:var(--muted)}
.feature-strip,.chip-row,.footer-links,.mini-pills{display:flex;gap:8px;flex-wrap:wrap;align-items:center}
.feature-strip span,.chip,.mini-pills span,.topbar-pill,.footer-pill,.pricing-foot-item{
  display:inline-flex;align-items:center;gap:8px;
  border-radius:999px;
  padding:8px 11px;
  border:1px solid var(--border);
  background:var(--surface-muted);
  color:var(--muted);
  font-size:12px;
  font-weight:700;
}
.feature-strip i{font-style:normal;color:var(--primary)}
.search-card{padding:22px}
.accent-panel{box-shadow:var(--shadow-lg)}
.search-form{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}
.input-wrap{flex:1 1 520px}
input{
  width:100%;min-width:240px;
  padding:16px 18px;
  border-radius:16px;
  border:1px solid var(--border);
  background:var(--surface);
  color:var(--text);
  outline:none;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
  transition:border-color .18s ease,box-shadow .18s ease,transform .18s ease;
}
input:focus{
  border-color:rgba(37,99,235,.35);
  box-shadow:0 0 0 4px rgba(37,99,235,.10);
}
button,.link-btn,.link-action,.collapse-toggle,.pricing-cta,.pricing-select{
  border:0;
  border-radius:16px;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:15px;
  font-weight:800;
  text-decoration:none;
  min-height:50px;
  padding:0 18px;
  line-height:1.2;
  touch-action:manipulation;
  user-select:none;
  -webkit-tap-highlight-color:transparent;
  transition:transform .16s ease,box-shadow .16s ease,background .16s ease,opacity .16s ease;
}
button:hover,.link-btn:hover,.link-action:hover,.collapse-toggle:hover,.pricing-cta:hover,.pricing-select:hover{transform:translateY(-1px);}
button:active,.link-btn:active,.link-action:active,.collapse-toggle:active,.pricing-cta:active,.pricing-select:active{transform:translateY(0);opacity:.92;}
button:focus-visible,.link-btn:focus-visible,.link-action:focus-visible,.collapse-toggle:focus-visible,.pricing-cta:focus-visible,.pricing-select:focus-visible{
  outline:none;
  box-shadow:0 0 0 4px rgba(96,165,250,.18);
}
.primary-btn,.link-action,.collapse-toggle,.pricing-select-primary,.pricing-cta{
  background:linear-gradient(180deg,var(--primary),var(--primary-strong));
  color:#ffffff;
  box-shadow:0 10px 24px rgba(37,99,235,.18);
}
.secondary-btn,.ghost,.link-btn,.pricing-select{
  display:inline-flex;align-items:center;justify-content:center;
  background:linear-gradient(180deg,var(--surface),var(--surface-muted));
  color:var(--text);
  border:1px solid var(--border);
}
.secondary-btn{background:linear-gradient(180deg,var(--surface),var(--surface-muted))}
.icon-btn,.link-btn,.pricing-cta,.pricing-select,.footer-pill{gap:10px}
.btn-icon{
  display:inline-flex;align-items:center;justify-content:center;
  width:28px;height:28px;border-radius:999px;
  background:var(--primary-soft);
  color:var(--primary);
  font-size:14px;
}
.theme-orb{
  display:inline-flex;align-items:center;gap:10px;
  padding:10px 14px;border-radius:999px;
  border:1px solid var(--border);
  background:linear-gradient(180deg,var(--surface-soft),var(--surface-muted));
  color:var(--text);
  box-shadow:var(--shadow);
}
.theme-orb-core{
  width:28px;height:28px;border-radius:50%;
  display:inline-flex;align-items:center;justify-content:center;
  position:relative;
  background:radial-gradient(circle at 35% 35%, var(--surface) 0%, rgba(191,219,254,.3) 45%, rgba(239,246,255,.5) 100%);
}
.theme-orb-sun,.theme-orb-moon{position:absolute;border-radius:50%}
.theme-orb-sun{
  width:12px;height:12px;background:linear-gradient(135deg,#fef3c7,#fbbf24);
}
.theme-orb-moon{
  width:12px;height:12px;right:3px;top:4px;background:var(--surface-highlight);opacity:.75;
}
.progress-shell{
  height:8px;margin:16px 0 10px;border-radius:999px;overflow:hidden;
  background:var(--surface-muted);border:1px solid var(--border);
}
.progress-bar{
  width:0;height:100%;
  background:linear-gradient(90deg,var(--primary),#38bdf8,var(--secondary));
  transition:width .26s ease;
}
.status-row{margin-top:6px;flex-wrap:wrap}
.status-text{font-size:14px;color:var(--muted)}
.hint{margin-top:10px;font-size:13px}
.stats-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}
.stat-card{
  min-height:92px;display:flex;flex-direction:column;justify-content:space-between;
  padding:18px;position:relative;overflow:hidden;
}
.stat-card::before{
  content:"";position:absolute;inset:auto -18px -18px auto;width:88px;height:88px;border-radius:50%;
  background:radial-gradient(circle,rgba(37,99,235,.08),transparent 68%);
}
.stat-card span{font-size:13px;font-weight:700;color:var(--muted)}
.stat-card strong{
  font-size:clamp(1.8rem,3vw,2.5rem);
  line-height:1;
  letter-spacing:-.05em;
}
.ok{color:var(--success)} .warn{color:var(--warning)} .bad{color:var(--danger)}
.summary-grid{padding-bottom:16px}
.section-head{margin-bottom:12px;flex-wrap:wrap}
.small{font-size:13px;line-height:1.6}
.ambient{pointer-events:none;}
.amber-panel{display:inline-flex;align-items:center;gap:10px;min-height:48px;padding:0 16px;border-radius:999px;background:var(--surface-muted);border:1px solid var(--border);color:var(--text);font-weight:700;}
.table-shell{
  border:1px solid var(--border);
  border-radius:18px;
  overflow:hidden;
  background:var(--surface);
}
.table-head,.link-row{
  display:grid;
  grid-template-columns:minmax(0,1fr) 110px 92px;
  gap:12px;
  align-items:center;
}
.table-head{
  padding:12px 16px;
  border-bottom:1px solid var(--border);
  color:var(--muted);
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.12em;
  background:var(--surface-muted);
}
.link-row{
  padding:15px 16px;
  border-bottom:1px solid var(--border);
}
.link-row:last-child{border-bottom:0}
.link-row:hover{background:var(--surface-soft)}
.status-cell{
  justify-self:start;
  min-width:92px;
  text-align:center;
}
.link-badge{
  padding:7px 10px;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.status-pending{background:var(--pending-bg);color:var(--pending-text)}
.status-cell.ok{background:var(--ok-bg);color:var(--success);border:1px solid rgba(5,150,105,.16)}
.status-cell.warn{background:var(--warn-bg);color:var(--warning);border:1px solid rgba(217,119,6,.16)}
.status-cell.bad{background:var(--bad-bg);color:var(--danger);border:1px solid rgba(220,38,38,.16)}
.link-url{
  display:block;
  color:var(--text);
  text-decoration:none;
  font-weight:650;
  line-height:1.5;
  word-break:break-word;
  transition:color .18s ease,opacity .18s ease;
}
.link-url:hover,
.link-url:focus{
  color:var(--primary);
  text-decoration:underline;
  outline:none;
}
.small-action{padding:12px 16px;font-size:13px;min-height:44px;justify-self:end;}
.empty-state,.alert{
  border-radius:18px;padding:14px 16px;border:1px solid var(--border);background:var(--alert-surface);
}
.empty-state{
  display:flex;flex-direction:column;gap:4px;color:var(--muted);
}
.empty-state strong::before{
  content:"◌";
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:28px;height:28px;
  margin-right:10px;
  border-radius:50%;
  background:var(--alert-soft);
  color:var(--muted);
}
.alert-error{color:var(--danger)} .alert-ok{color:var(--success)}
.pricing-wrap{margin-top:2px}
.pricing-head{align-items:end}
.pricing-note{font-size:13px}
.pricing-banner{
  padding:16px 18px;
  border-radius:18px;
  margin:2px 0 12px;
  background:var(--surface-muted);
  border:1px solid var(--border);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.pricing-banner strong{display:block;font-size:15px;margin-bottom:4px}
.pricing-banner p{margin:0;color:var(--muted);font-size:13px;line-height:1.5}
.pricing-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}
.pricing-card{padding:18px;border-radius:22px;overflow:hidden;position:relative}
.pricing-card-muted{background:var(--surface)}
.pricing-card-featured{
  background:var(--surface);
  border-color:rgba(37,99,235,.18);
  box-shadow:0 0 0 1px rgba(37,99,235,.08), 0 18px 40px rgba(37,99,235,.08);
}
.pricing-badge{
  display:inline-flex;align-items:center;padding:6px 10px;border-radius:999px;
  background:var(--primary-soft);color:var(--primary);font-size:11px;font-weight:800;
  letter-spacing:.08em;text-transform:uppercase;margin-bottom:12px;
}
.pricing-name{font-weight:800;color:var(--muted);margin-bottom:8px}
.pricing-price{font-size:2rem;font-weight:900;letter-spacing:-.05em;line-height:1}
.pricing-price span{font-size:14px;font-weight:800;color:var(--muted);margin-left:4px}
.pricing-annual{margin-top:6px;font-size:13px}
.pricing-list{margin:14px 0 0;padding:0;list-style:none;display:flex;flex-direction:column;gap:8px}
.pricing-list li{position:relative;padding-left:18px;line-height:1.5;color:var(--muted)}
.pricing-list li::before{content:"";position:absolute;left:0;top:.55em;width:8px;height:8px;border-radius:50%;background:var(--primary)}
.pricing-select{width:100%;margin-top:16px;padding:12px 14px}
.pricing-cta{
  display:inline-flex;
  width:auto;
  white-space:nowrap;
  padding:11px 16px;
  font-size:14px;
  line-height:1;
  align-self:center;
}
.pricing-foot{
  display:flex;justify-content:space-between;gap:14px;flex-wrap:wrap;
  margin-top:16px;padding-top:14px;border-top:1px solid var(--border);font-size:13px;color:var(--muted)
}
.collapse-card{overflow:hidden}
.collapse-toggle{width:100%;text-align:left;justify-content:space-between}
.raw-cta{
  display:inline-flex;align-items:center;justify-content:space-between;
  width:100%;min-height:52px;
  padding:14px 18px;
  border-radius:22px;
  background:linear-gradient(180deg,var(--surface-soft),var(--secondary-soft));
  color:var(--text);
  box-shadow:0 10px 24px rgba(15,23,42,.06);
  border:1px solid var(--border);
}
.raw-cta:hover{transform:translateY(-1px);}
.raw-cta:focus-visible{outline:none;box-shadow:0 0 0 4px rgba(96,165,250,.18);}
.collapse-panel{margin-top:14px}
.is-hidden{display:none}
pre{
  margin:0;padding:16px;white-space:pre-wrap;word-break:break-word;border-radius:16px;
  background:var(--surface-muted);border:1px solid var(--border)
}
.footer{padding-top:16px;padding-bottom:16px;align-items:center;flex-wrap:wrap}
.footer-title{font-weight:800;margin-bottom:4px}
.footer-links{justify-content:flex-end}
.footer-pill{text-decoration:none;font-size:13px;position:relative;overflow:hidden;padding:10px 14px;display:inline-flex;align-items:center;gap:6px;}
.footer-pill::after{
  content:"";position:absolute;left:12px;right:12px;bottom:6px;height:1px;
  background:linear-gradient(90deg,transparent,var(--primary),transparent);
  transform:scaleX(0);transform-origin:center;transition:transform .18s ease;
}
.footer-pill:hover::after{transform:scaleX(1)}
.footer-pill:focus-visible{outline:none;box-shadow:0 0 0 4px rgba(96,165,250,.18);}
.modal{
  position:fixed;inset:0;display:none;align-items:center;justify-content:center;z-index:20;
  background:rgba(8,13,25,.72);padding:16px
}
.modal.is-open{display:flex;animation:fade .16s ease}
.modal-card{width:min(640px,100%);border-radius:22px;padding:20px;position:relative;background:var(--surface);border:1px solid var(--border)}
.modal-close{
  position:absolute;top:12px;right:12px;width:40px;height:40px;padding:0;
  background:var(--surface-muted);color:var(--text);border:1px solid var(--border)
}
code{padding:2px 6px;border-radius:8px;background:var(--surface-muted);border:1px solid var(--border);color:var(--text)}
@keyframes rise{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}
@keyframes fade{from{opacity:0}to{opacity:1}}
@media (max-width:1024px){
  .hero-grid,.pricing-banner,.footer{flex-direction:column;align-items:stretch}
  .hero-copy{max-width:none}
  .hero-aside{flex-basis:auto;width:100%}
  .stats-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .pricing-grid{grid-template-columns:1fr}
}
@media (max-width:720px){
  .shell{padding:12px}
  .card{padding:15px;border-radius:20px}
  .hero{padding:14px}
  .search-form,.section-head,.status-row,.footer,.hero-topbar{align-items:stretch}
  .table-head,.link-row{grid-template-columns:1fr;gap:8px}
  .status-cell,.small-action{justify-self:start}
  button,.ghost,.link-btn,.pricing-cta,.pricing-select,input{width:100%}
}
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation:none!important;transition:none!important;scroll-behavior:auto}
}
.theme-swap{transition:background-color .22s ease,color .22s ease}
