:root{
  --bg:#050505;
  --line:rgba(255,255,255,0.08);
  --line-soft:rgba(255,255,255,0.03);
  --text:#f5f5f5;
  --muted:rgba(255,255,255,0.52);
  --muted-strong:rgba(255,255,255,0.7);
  --panel:rgba(10,10,10,0.92);
}

*{box-sizing:border-box;}
html,body{margin:0;width:100%;min-height:100%;}
html{height:100%;}

html{
  scrollbar-width:thin;
  scrollbar-color:rgba(255,255,255,0.22) rgba(255,255,255,0.04);
}

::-webkit-scrollbar{width:12px;height:12px;}
::-webkit-scrollbar-track{background:rgba(255,255,255,0.035);}
::-webkit-scrollbar-thumb{
  background:linear-gradient(180deg, rgba(255,255,255,0.22), rgba(255,255,255,0.14));
  border:3px solid rgba(5,5,5,0.98);
  border-radius:999px;
}
::-webkit-scrollbar-thumb:hover{
  background:linear-gradient(180deg, rgba(255,255,255,0.3), rgba(255,255,255,0.18));
}
::-webkit-scrollbar-corner{background:rgba(255,255,255,0.035);}

body{
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  min-height:100vh;
  min-height:100dvh;
  display:flex;
  flex-direction:column;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.015) 18%, rgba(255,255,255,0.008) 28%, transparent 52%),
    linear-gradient(to right, var(--line-soft) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line-soft) 1px, transparent 1px),
    var(--bg);
  background-size:100% 100%, 48px 48px, 48px 48px, auto;
  color:var(--text);
  position:relative;
  overflow-x:hidden;
}
body::after{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:radial-gradient(circle at center, transparent 0%, transparent 28%, rgba(5,5,5,0.14) 46%, rgba(5,5,5,0.38) 62%, rgba(5,5,5,0.76) 82%, rgba(5,5,5,0.96) 100%);
}
a{color:inherit;text-decoration:none;}
.page-home{overflow-x:hidden;display:flex;flex-direction:column;min-height:100vh;min-height:100dvh;}
.page-scroll{min-height:100vh;min-height:100dvh;flex:1;display:block;}
.home-stage,
.center-stage{
  flex:1;
  min-height:calc(100vh - 120px);
  min-height:calc(100dvh - 120px);
  display:grid;
  place-items:center;
  width:100%;
  padding:96px 16px 24px;
}
.wrap{position:relative;z-index:1;width:min(700px,calc(100% - 32px));display:flex;flex-direction:column;align-items:center;justify-content:center;gap:14px;}
.cmd-icon{
  width:56px;height:56px;border:1px solid rgba(255,255,255,0.08);border-radius:10px;display:flex;align-items:center;justify-content:center;
  background:rgba(10,10,10,0.9);box-shadow:inset 0 1px 0 rgba(255,255,255,0.03),0 14px 34px rgba(0,0,0,0.28);position:relative;overflow:hidden;
}
.cmd-icon::before{content:"";position:absolute;inset:0;background:linear-gradient(180deg, rgba(255,255,255,0.04), transparent 55%);pointer-events:none;}
.cmd-glyph{position:relative;width:24px;height:18px;}
.cmd-glyph::before{content:">_";position:absolute;left:0;top:50%;transform:translateY(-50%);font-size:14px;font-weight:600;letter-spacing:0.04em;color:rgba(255,255,255,0.88);animation:cmdPulse 1.4s ease-in-out infinite;}
@keyframes cmdPulse{0%,100%{opacity:.45;transform:translateY(-50%) scale(.98);}50%{opacity:1;transform:translateY(-50%) scale(1);}}
.input-row{position:relative;width:100%;}
.input{
  width:100%;height:52px;padding:0 52px 0 16px;border:1px solid var(--line);border-radius:4px;outline:none;background:rgba(11,11,11,0.92);
  color:var(--text);font-size:15px;letter-spacing:-0.01em;box-shadow:inset 0 1px 0 rgba(255,255,255,0.03),0 10px 30px rgba(0,0,0,0.28);
  transition:border-color .18s ease,box-shadow .18s ease,background .18s ease;
}
.input::placeholder{color:var(--muted);}
.input:focus{border-color:rgba(255,255,255,0.16);box-shadow:inset 0 1px 0 rgba(255,255,255,0.04),0 14px 40px rgba(0,0,0,0.34);background:rgba(14,14,14,0.96);}
.send-btn,.copy-btn{
  position:absolute;top:50%;right:8px;transform:translateY(-50%);width:36px;height:36px;border:0;border-radius:4px;display:flex;align-items:center;
  justify-content:center;background:transparent;color:rgba(255,255,255,0.7);cursor:pointer;transition:color .18s ease,background .18s ease;
}
.send-btn:hover,.copy-btn:hover{color:rgba(255,255,255,0.96);background:rgba(255,255,255,0.04);}
.send-btn svg,.copy-btn svg{width:16px;height:16px;display:block;}
.hint{margin:0;font-size:13px;line-height:1.58;letter-spacing:-0.01em;color:rgba(255,255,255,0.5);text-align:center;max-width:560px;}
.hint p{margin:0;}
.two-lines{display:grid;gap:2px;}
.single-line{max-width:520px;}
.home-browse-row{display:flex;align-items:center;justify-content:center;}
.home-browse-link,.copy-btn-box{
  min-width:120px;height:38px;padding:0 14px;border:1px solid rgba(255,255,255,0.08);border-radius:4px;
  background:rgba(11,11,11,0.92);color:rgba(255,255,255,0.82);display:inline-flex;align-items:center;justify-content:center;
  gap:9px;cursor:pointer;box-shadow:inset 0 1px 0 rgba(255,255,255,0.03),0 10px 24px rgba(0,0,0,0.22);
  font-size:13px;letter-spacing:-0.01em;transition:background .18s ease,color .18s ease,border-color .18s ease;
}
.home-browse-link:hover,.copy-btn-box:hover{background:rgba(15,15,15,0.96);color:rgba(255,255,255,0.96);}
.loading{
  width:100%;max-width:560px;display:none;flex-direction:column;align-items:center;justify-content:center;gap:10px;
}
.loading.active{display:flex;}
.loading-label{margin:0;font-size:13px;letter-spacing:-0.01em;color:rgba(255,255,255,0.7);}
.progress-shell{width:100%;height:6px;border-radius:999px;background:rgba(255,255,255,0.07);overflow:hidden;box-shadow:inset 0 1px 0 rgba(255,255,255,0.03);}
.progress-bar{width:0%;height:100%;border-radius:999px;background:linear-gradient(90deg, rgba(255,255,255,0.72), rgba(255,255,255,0.92));transition:width .08s linear;}
.progress-text{margin:0;font-size:12px;color:rgba(255,255,255,0.48);letter-spacing:0.02em;min-height:18px;}
.progress-text-large{font-size:13px;color:rgba(255,255,255,0.6);}
.standalone-loading{position:relative;inset:auto;max-width:560px;}
.expired-wrap{max-width:760px;}
.expired-card{text-align:center;}
@media (max-width: 720px){
  .home-stage,.center-stage{min-height:auto;padding:104px 16px 24px;}
  .wrap{width:min(100%,calc(100% - 24px));}
}
.site-footer{
  width:100%;
  margin:52px 0 0;
  margin-top:auto;
  padding:14px 24px 12px;
  border-top:1px solid rgba(255,255,255,0.08);
  background:linear-gradient(180deg,rgba(255,255,255,0.03),rgba(255,255,255,0.018));
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.03),0 -18px 38px rgba(0,0,0,0.18);
  backdrop-filter:blur(10px);
}
.page-home .site-footer{
  margin-top:auto;
}
.site-footer__inner{
  width:min(1120px,calc(100% - 32px));
  margin:0 auto;
  display:grid;grid-template-columns:minmax(0,1.2fr) minmax(0,1.8fr);gap:18px;align-items:start;
}
.site-footer__brand{display:flex;flex-direction:column;gap:8px;max-width:420px;}
.site-footer__logo{display:inline-flex;align-self:flex-start;color:rgba(255,255,255,0.96);text-decoration:none;font-size:18px;font-weight:700;letter-spacing:-0.03em;}
.site-footer__text{margin:0;color:rgba(255,255,255,0.58);font-size:12px;line-height:1.6;}
.site-footer__links{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px 14px;align-items:start;}
.site-footer__group{min-width:0;border:1px solid rgba(255,255,255,0.07);border-radius:8px;background:rgba(255,255,255,0.015);overflow:hidden;}
.site-footer__group[open]{background:rgba(255,255,255,0.022);}
.site-footer__summary{list-style:none;display:flex;align-items:center;justify-content:space-between;gap:10px;padding:10px 12px;cursor:pointer;user-select:none;}
.site-footer__summary::-webkit-details-marker{display:none;}
.site-footer__label{font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:rgba(255,255,255,0.5);}
.site-footer__caret{width:8px;height:8px;border-right:1.5px solid rgba(255,255,255,0.42);border-bottom:1.5px solid rgba(255,255,255,0.42);transform:rotate(45deg);transition:transform .18s ease, margin-top .18s ease;}
.site-footer__group[open] .site-footer__caret{transform:rotate(225deg);margin-top:4px;}
.site-footer__panel{display:grid;gap:7px;padding:0 12px 12px;}
.site-footer__panel a{color:rgba(255,255,255,0.7);text-decoration:none;font-size:12.5px;line-height:1.45;transition:color .18s ease, transform .18s ease;}
.site-footer__panel a:hover{color:rgba(255,255,255,0.96);transform:translateX(1px);}
.site-footer__bottom{width:min(1120px,calc(100% - 32px));margin:12px auto 0;padding-top:10px;border-top:1px solid rgba(255,255,255,0.08);display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;color:rgba(255,255,255,0.42);font-size:11px;}
.expired-wrap{max-width:760px;}
.expired-card{text-align:center;}
.legal-card{max-width:860px;margin:0 auto;}

@media (max-width: 1040px){
  .report-layout,.article-layout{grid-template-columns:1fr;}
  .sticky-card{position:static;}
  .report-link-grid,.library-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}

@media (max-width: 720px){
  .top-actions{right:12px;top:12px;}
  .top-link{min-width:auto;padding:0 12px;}
  .content-shell{margin-top:76px;}
  .card-top-row{flex-direction:column;}
  .pill-stack{justify-content:flex-start;}
  .report-link-grid,.library-grid{grid-template-columns:1fr;}
  .glass-card{padding:18px;}
  .home-stage{padding:96px 16px 24px;}
  .page-home .site-footer{position:static;left:auto;right:auto;bottom:auto;z-index:auto;}
  .site-footer{width:100%;padding:18px 14px 12px;margin:28px 0 0;}
  .site-footer__inner{width:min(100%,calc(100% - 8px));grid-template-columns:1fr;gap:14px;}
  .site-footer__brand{gap:7px;max-width:none;}
  .site-footer__text{font-size:12px;line-height:1.5;max-width:34ch;}
  .site-footer__links{grid-template-columns:1fr;gap:10px;}
  .site-footer__summary{padding:9px 11px;}
  .site-footer__panel{padding:0 11px 11px;gap:6px;}
  .site-footer__label{font-size:10px;letter-spacing:.1em;}
  .site-footer__panel a{font-size:12px;line-height:1.35;}
  .site-footer__bottom{width:min(100%,calc(100% - 8px));margin:12px auto 0;padding-top:10px;display:grid;grid-template-columns:1fr;gap:5px;align-items:start;}
  .site-footer__bottom span:last-child{text-align:left;}
}

.content-shell-report{width:min(920px,calc(100% - 32px));}
.report-shell{max-width:760px;margin:0 auto;display:flex;flex-direction:column;gap:14px;}
.report-top-action{display:flex;justify-content:flex-end;}
.report-panel{display:flex;flex-direction:column;gap:14px;}
.report-kicker-row{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;}
.report-hero-card{padding:18px 20px;border:1px solid rgba(255,255,255,0.08);border-radius:4px;background:rgba(10,10,10,0.92);box-shadow:inset 0 1px 0 rgba(255,255,255,0.03),0 14px 36px rgba(0,0,0,0.28);}
.report-hero-title{font-size:clamp(26px,4vw,38px);}
.report-hero-lead{max-width:none;}
.command-surface{display:flex;flex-direction:column;gap:6px;}
.command-card-wrap{align-items:flex-start;padding:14px 10px 14px 18px;min-height:72px;}
.command-text-wrap{white-space:pre-wrap;overflow:visible;text-overflow:initial;}
.report-grid-sections{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;}
.report-section-card{padding:18px;border-radius:4px;}
.report-section-card p,.report-section-card li{font-size:14px;line-height:1.72;color:rgba(255,255,255,0.74);}
.report-section-card h2{margin:0 0 10px;}
.report-section-card ol,.report-section-card ul{margin:0;padding-left:20px;}
.report-section-card li+li{margin-top:8px;}
.script-card .code-box{margin-top:2px;}
.no-margin{margin:0;}
.legal-card h2{margin:22px 0 10px;font-size:18px;letter-spacing:-0.02em;color:rgba(255,255,255,0.94);}

@media (max-width: 720px){
  .content-shell-report{width:min(100%,calc(100% - 24px));}
  .report-grid-sections{grid-template-columns:1fr;}
  .report-kicker-row{align-items:flex-start;}
}

body::after{position:fixed;}
.report-inline-links{font-size:13px;line-height:1.9;color:rgba(255,255,255,0.58)}
.report-inline-links a{color:rgba(255,255,255,0.82);text-decoration:none;border-bottom:1px solid transparent;transition:color .18s ease,border-color .18s ease}
.report-inline-links a:hover{color:rgba(255,255,255,0.96);border-color:rgba(255,255,255,0.28)}
.command-card{position:relative;display:flex;align-items:center;gap:10px;border:1px solid rgba(255,255,255,0.08);border-radius:4px;background:rgba(10,10,10,0.92);box-shadow:inset 0 1px 0 rgba(255,255,255,0.03),0 14px 36px rgba(0,0,0,0.28)}
.command-text{margin:0;flex:1;font-family:ui-monospace,SFMono-Regular,Consolas,monospace;font-size:12.5px;line-height:1.7;color:rgba(255,255,255,0.9)}
.report-panel>.glass-card,.report-panel>.report-hero-card,.report-panel>.command-surface{width:100%}
.report-section-card{background:rgba(10,10,10,0.92)}
.library-card{min-height:156px}

.hero-block{
  border:1px solid rgba(255,255,255,0.08);
  border-radius:10px;
  background:rgba(10,10,10,0.92);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.03),0 14px 36px rgba(0,0,0,0.28);
  padding:24px;
}
.hero-block-compact{padding:24px;}
.icon-badge{
  width:46px;height:46px;display:inline-flex;align-items:center;justify-content:center;
  border:1px solid rgba(255,255,255,0.08);border-radius:10px;background:rgba(255,255,255,0.02);
  color:rgba(255,255,255,0.84);font-size:12px;letter-spacing:.12em;margin-bottom:14px;
}
.library-shell-wide{width:min(1220px,calc(100% - 32px));}
.library-hero-block{max-width:100%;}

.library-list-grid{display:grid;grid-template-columns:1fr;gap:14px;margin-top:18px;}
.library-row-card{
  display:grid;grid-template-columns:minmax(0,1fr) auto;gap:20px;align-items:start;
  border:1px solid rgba(255,255,255,0.08);border-radius:4px;background:rgba(10,10,10,0.92);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.03),0 14px 36px rgba(0,0,0,0.28);padding:18px 18px 18px 20px;
}
.library-row-main h2{margin:2px 0 10px;font-size:22px;line-height:1.18;letter-spacing:-0.03em;}
.library-row-main h2 a:hover{color:rgba(255,255,255,0.96);}
.library-row-main p{margin:0;color:rgba(255,255,255,0.72);font-size:14px;line-height:1.72;max-width:860px;}
.library-row-bullets{margin:12px 0 0;padding-left:18px;color:rgba(255,255,255,0.72);font-size:13px;line-height:1.68;}
.library-row-bullets li+li{margin-top:6px;}
.library-row-side{display:flex;flex-direction:column;align-items:flex-end;gap:14px;min-width:180px;}
.library-open-btn{
  min-width:124px;height:40px;padding:0 16px;border:1px solid rgba(255,255,255,0.08);border-radius:4px;
  background:rgba(11,11,11,0.92);color:rgba(255,255,255,0.82);display:inline-flex;align-items:center;justify-content:center;
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.03),0 10px 24px rgba(0,0,0,0.22);font-size:13px;transition:background .18s ease,color .18s ease,border-color .18s ease;
}
.library-open-btn:hover{background:rgba(15,15,15,0.96);color:rgba(255,255,255,0.96);}
.pager-down{margin-bottom:32px;}

@media (max-width: 860px){
  .library-row-card{grid-template-columns:1fr;}
  .library-row-side{align-items:flex-start;min-width:0;}
  .library-row-tags{justify-content:flex-start;max-width:none;}
}


.command-card-top-action-wrap{padding-top:52px;}
.command-text-padded{padding-right:8px;}
.copy-btn-top,
.icon-action-btn-top{
  position:absolute;
  top:14px;
  right:10px;
}
.copy-btn,
.icon-action-btn{
  width:34px;
  height:34px;
  border:1px solid rgba(255,255,255,0.08);
  border-radius:4px;
  background:rgba(255,255,255,0.02);
  color:rgba(255,255,255,0.82);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:background .18s ease,color .18s ease,border-color .18s ease;
}
.copy-btn:hover,
.icon-action-btn:hover{background:rgba(255,255,255,0.06);color:rgba(255,255,255,0.96);}
.copy-btn svg,
.icon-action-btn svg{width:17px;height:17px;}
.code-box-wrap{position:relative;}
.code-box-padded{padding-top:54px;}
.library-hero-simple{max-width:920px;margin:0 auto;}
.library-hero-simple .page-title{margin-bottom:16px;}
.library-search-row{max-width:none;}
.library-row-side{justify-content:center;}


/* 2026 precision/library refresh */
.topbar{position:fixed;top:16px;left:18px;right:18px;z-index:12;display:flex;align-items:center;justify-content:space-between;gap:16px;pointer-events:none;}
.brand-mark,.top-actions{pointer-events:auto;}
.brand-mark{display:inline-flex;align-items:center;gap:10px;padding:10px 14px;border:1px solid rgba(255,255,255,0.08);border-radius:4px;background:rgba(9,9,9,0.88);box-shadow:inset 0 1px 0 rgba(255,255,255,0.03),0 14px 34px rgba(0,0,0,0.24);}
.brand-dot{width:9px;height:9px;border-radius:999px;background:rgba(255,255,255,0.88);box-shadow:0 0 0 5px rgba(255,255,255,0.06);}
.brand-text{font-size:13px;letter-spacing:.01em;color:rgba(255,255,255,0.9);}
.top-actions{position:static;display:flex;align-items:center;gap:8px;padding:4px;border:1px solid rgba(255,255,255,0.08);border-radius:4px;background:rgba(9,9,9,0.88);box-shadow:inset 0 1px 0 rgba(255,255,255,0.03),0 14px 34px rgba(0,0,0,0.24);}
.top-link{min-width:96px;height:36px;border:0;background:transparent;box-shadow:none;color:rgba(255,255,255,0.74);}
.top-link:hover{background:rgba(255,255,255,0.05);}
.content-shell{margin-top:106px;}
.report-shell{width:min(1040px,calc(100% - 32px));margin:0 auto;}
.report-panel{display:grid;gap:16px;}
.report-hero-card{padding:26px 24px 22px;border:1px solid rgba(255,255,255,0.08);border-radius:10px;background:rgba(10,10,10,0.9);box-shadow:inset 0 1px 0 rgba(255,255,255,0.03),0 16px 40px rgba(0,0,0,0.28);}
.report-hero-title{font-size:clamp(30px,4vw,46px);line-height:1.02;max-width:900px;}
.report-hero-lead{font-size:15px;line-height:1.8;color:rgba(255,255,255,0.7);max-width:920px;}
.report-section-card p,.report-section-card li{font-size:14px;line-height:1.82;color:rgba(255,255,255,0.76);}
.report-section-card ol,.report-section-card ul{padding-left:20px;}
.report-section-card li+li{margin-top:7px;}
.library-shell-wide{width:min(1260px,calc(100% - 36px));}
.library-hero-plain{max-width:980px;margin:0 0 18px 0;display:grid;gap:16px;text-align:left;}
.library-page-title{margin:0;text-align:left;}
.library-search-left{max-width:920px;margin:0;}
.library-list-grid-spaced{margin-top:10px;}
.library-row-card-wide{grid-template-columns:minmax(0,1fr) 170px;min-height:0;padding:22px 24px;border-radius:10px;background:rgba(10,10,10,0.88);}
.library-row-main h2{font-size:24px;line-height:1.14;max-width:900px;}
.library-row-main p{font-size:14px;line-height:1.78;max-width:900px;color:rgba(255,255,255,0.72);}
.library-row-bullets{max-width:900px;}
.library-open-btn{min-width:128px;height:40px;}
.pager-left{justify-content:flex-start;}
@media (max-width: 900px){
  .topbar{left:12px;right:12px;top:12px;gap:10px;}
  .brand-mark{padding:9px 12px;}
  .brand-text{font-size:12px;}
  .top-link{min-width:84px;}
  .library-row-card-wide{grid-template-columns:1fr;}
}
@media (max-width: 640px){
  .topbar{flex-direction:column;align-items:stretch;}
  .top-actions{justify-content:flex-end;}
  .brand-mark{width:fit-content;}
}


.topbar-navonly{justify-content:flex-end;left:24px;right:24px;top:18px;}
.top-nav{pointer-events:auto;display:flex;align-items:center;justify-content:flex-end;gap:22px;padding:10px 16px 10px 22px;margin-left:auto;margin-right:10px;border:none;border-radius:0;background:transparent;backdrop-filter:none;box-shadow:none;}
.nav-text-link,.nav-icon-link{display:inline-flex;align-items:center;justify-content:center;color:rgba(255,255,255,0.72);font-size:13px;letter-spacing:.02em;text-decoration:none;transition:color .18s ease, opacity .18s ease, transform .18s ease;}
.nav-text-link{padding:2px 0;position:relative;}
.nav-text-link:hover,.nav-icon-link:hover{color:rgba(255,255,255,0.97);background:none;transform:translateY(-1px);} 
.nav-text-link::after{content:"";position:absolute;left:0;right:0;bottom:-6px;height:1px;background:rgba(255,255,255,0.34);transform:scaleX(0);transform-origin:right;transition:transform .18s ease;}
.nav-text-link:hover::after{transform:scaleX(1);transform-origin:left;}
.nav-icon-link{opacity:.82;}
.nav-icon-link svg{width:17px;height:17px;display:block;}
.lang-menu{position:relative;}
.lang-menu__summary{list-style:none;display:inline-flex;align-items:center;gap:8px;color:rgba(255,255,255,0.78);cursor:pointer;user-select:none;transition:color .18s ease,transform .18s ease;}
.lang-menu__summary::-webkit-details-marker{display:none;}
.lang-menu__summary:hover{color:rgba(255,255,255,0.97);transform:translateY(-1px);}
.lang-menu__icon{width:15px;height:15px;display:inline-flex;align-items:center;justify-content:center;}
.lang-menu__icon svg{width:15px;height:15px;display:block;}
.lang-menu__code{font-size:12px;letter-spacing:.08em;text-transform:uppercase;}
.lang-menu__caret{width:7px;height:7px;border-right:1.4px solid currentColor;border-bottom:1.4px solid currentColor;transform:rotate(45deg);margin-top:-2px;transition:transform .18s ease,margin-top .18s ease;}
.lang-menu[open] .lang-menu__caret{transform:rotate(225deg);margin-top:2px;}
.lang-menu__dropdown{position:absolute;top:calc(100% + 10px);right:0;min-width:156px;padding:8px;border:1px solid rgba(255,255,255,0.08);border-radius:8px;background:rgba(10,10,10,0.96);box-shadow:0 18px 36px rgba(0,0,0,0.34);display:grid;gap:4px;z-index:60;}
.lang-menu__item{display:grid;grid-template-columns:36px 1fr;align-items:center;gap:10px;padding:9px 10px;border-radius:6px;color:rgba(255,255,255,0.72);font-size:12.5px;transition:background .18s ease,color .18s ease;}
.lang-menu__item:hover,.lang-menu__item.is-active{background:rgba(255,255,255,0.05);color:rgba(255,255,255,0.96);}
.lang-menu__item span:first-child{font-size:11px;letter-spacing:.08em;text-transform:uppercase;color:rgba(255,255,255,0.5);}

.brand-mark,.top-actions,.brand-text,.brand-dot{display:none !important;}
.library-shell-wide{max-width:1180px;padding-top:124px;}
.library-hero-plain{max-width:none;margin:0 0 22px 0;gap:14px;}
.library-search-left{max-width:860px;margin:0;}
.library-list-grid-spaced{gap:14px;}
.library-row-card-wide{grid-template-columns:minmax(0,1fr) 136px;padding:24px 26px;border-radius:6px;background:rgba(8,8,8,0.9);border:1px solid rgba(255,255,255,0.06);}
.library-row-main h2{font-size:24px;line-height:1.14;margin:4px 0 10px;}
.library-row-main p{max-width:860px;}
.library-open-btn{min-width:112px;height:38px;border-radius:0;background:transparent;border:1px solid rgba(255,255,255,0.16);}
.library-open-btn:hover{border-color:rgba(255,255,255,0.3);background:rgba(255,255,255,0.02);}
.pager-left{justify-content:flex-start;margin-top:18px;}
.legal-shell{max-width:1000px;padding-top:132px;}
.legal-card{padding:28px 28px 30px;}
.legal-block p{margin:0 0 12px;}
@media (max-width: 900px){
  .topbar-navonly{justify-content:flex-end;left:24px;right:24px;top:18px;}
  .top-nav{gap:14px;flex-wrap:wrap;padding:8px 6px 8px 14px;margin-right:0;}
  .library-shell-wide{padding-top:132px;}
}
@media (max-width: 640px){
  .top-nav{justify-content:flex-end;}
  .lang-menu__dropdown{right:0;left:auto;}
  .nav-text-link{padding:2px 0;position:relative;}
  .library-row-card-wide{grid-template-columns:1fr;}
  .library-row-side{margin-top:8px;}
}


.library-row-card-wide{grid-template-columns:1fr;}
.library-row-main{display:flex;flex-direction:column;align-items:flex-start;}
.library-row-footer{margin-top:16px;display:flex;justify-content:flex-start;}
.library-open-btn{position:relative;left:0;align-self:flex-start;}

.report-shell-advanced{max-width:980px;}
.report-hero-card-advanced{padding:28px 28px 24px;}
.operation-family{
  display:inline-flex;
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(255,255,255,.56);
  margin-bottom:10px;
}
.operation-overview-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
  margin:18px 0 22px;
}
.overview-card{padding:18px 18px 16px;min-height:104px;display:flex;flex-direction:column;justify-content:space-between;}
.overview-value{font-size:20px;line-height:1.15;font-weight:600;color:rgba(255,255,255,.96);}
.report-section-card-strong{border-color:rgba(255,255,255,.14);background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.03));}
.command-card-tight pre{min-height:auto;}
.code-box-mid{min-height:220px;}
.top-gap-16{margin-top:16px;}
@media (max-width:900px){
  .operation-overview-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media (max-width:640px){
  .operation-overview-grid{grid-template-columns:1fr;}
}


.report-switcher{padding:10px 12px;}
.report-switcher-row{display:flex;align-items:center;gap:10px;flex-wrap:wrap;}
.report-switch{
  min-width:88px;height:38px;padding:0 14px;border:1px solid rgba(255,255,255,0.08);border-radius:4px;
  background:rgba(255,255,255,0.02);color:rgba(255,255,255,0.72);display:inline-flex;align-items:center;justify-content:center;
  font-size:13px;letter-spacing:-0.01em;cursor:pointer;transition:background .18s ease,color .18s ease,border-color .18s ease,transform .18s ease;
}
.report-switch:hover{background:rgba(255,255,255,0.04);color:rgba(255,255,255,0.9);}
.report-switch.is-active{background:rgba(255,255,255,0.08);color:rgba(255,255,255,0.96);border-color:rgba(255,255,255,0.14);}
.tab-panel{display:none;flex-direction:column;gap:14px;}
.tab-panel.is-active{display:flex;}
@media (max-width: 720px){
  .report-switcher{padding:8px;}
  .report-switcher-row{gap:8px;}
  .report-switch{min-width:72px;flex:1;}
}


.report-top-action{display:flex;align-items:center;margin-bottom:4px;}
.back-icon-link{
  width:34px;height:34px;display:inline-flex;align-items:center;justify-content:center;
  color:rgba(255,255,255,0.72);border:1px solid rgba(255,255,255,0.08);border-radius:4px;
  background:rgba(255,255,255,0.02);transition:background .18s ease,color .18s ease,border-color .18s ease,transform .18s ease;
}
.back-icon-link:hover{background:rgba(255,255,255,0.05);color:rgba(255,255,255,0.96);border-color:rgba(255,255,255,0.14);transform:translateY(-1px);}
.back-icon-link svg{width:16px;height:16px;display:block;}
.operation-overview-grid,.overview-card,.overview-value{display:none !important;}
.report-switcher{padding:0;background:transparent;border:none;box-shadow:none;}
.report-switcher-row{gap:8px;}
.report-switch{
  min-width:0;height:36px;padding:0 12px;border:0;border-radius:4px;background:transparent;
  color:rgba(255,255,255,0.62);gap:8px;justify-content:center;
}
.report-switch svg{width:15px;height:15px;display:block;flex:0 0 auto;}
.report-switch span{display:inline-block;line-height:1;}
.report-switch:hover{background:rgba(255,255,255,0.04);color:rgba(255,255,255,0.92);}
.report-switch.is-active{background:rgba(255,255,255,0.08);color:rgba(255,255,255,0.98);border:none;}
@media (max-width: 720px){
  .report-switch{flex:0 0 auto;min-width:0;padding:0 10px;}
  .report-switch span{font-size:12px;}
}


/* report centering fix */
.content-shell.content-shell-report{
  width:100%;
  max-width:1120px;
  margin:106px auto 0;
  padding:0 16px 40px;
}
.report-shell,
.report-shell.report-shell-advanced{
  width:100%;
  max-width:980px;
  margin-left:auto;
  margin-right:auto;
}
@media (max-width: 720px){
  .content-shell.content-shell-report{
    margin-top:76px;
    padding:0 12px 28px;
  }
  .report-shell,
  .report-shell.report-shell-advanced{
    max-width:100%;
  }
}


/* article library centering fix */
.content-shell.library-shell-wide{
  width:100%;
  max-width:1180px;
  margin:106px auto 0;
  padding-left:18px;
  padding-right:18px;
}
.content-shell.library-shell-wide .library-hero-plain,
.content-shell.library-shell-wide .library-list-grid,
.content-shell.library-shell-wide .pager{
  width:100%;
  margin-left:auto;
  margin-right:auto;
}
@media (max-width: 720px){
  .content-shell.library-shell-wide{
    margin-top:76px;
    padding-left:12px;
    padding-right:12px;
  }
}


/* overflow fixes for fix / undo report pages */
.report-panel,
.tab-panel,
.report-section-card,
.command-surface,
.command-card,
.command-card pre,
.code-box-wrap,
.code-box,
.code-box code {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.command-card {
  width: 100%;
  overflow: hidden;
}

.command-text,
.command-text-wrap,
.code-box,
.code-box code {
  white-space: pre-wrap;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.code-box-wrap {
  width: 100%;
  overflow: hidden;
}

.code-box {
  width: 100%;
  overflow-x: auto;
}

@media (max-width: 720px) {
  .report-panel,
  .tab-panel,
  .report-section-card,
  .command-surface,
  .command-card,
  .code-box-wrap,
  .code-box {
    width: 100%;
    max-width: 100%;
  }

  .command-card-wrap,
  .command-card-top-action-wrap {
    padding-left: 14px;
    padding-right: 14px;
  }

  .command-text,
  .code-box,
  .code-box code {
    font-size: 12px;
    line-height: 1.65;
  }
}


/* legal pages centered as a whole, not text-centered */
body.legal-page .content-shell.legal-shell,
body.legal-page .content-shell.content-shell-narrow{
  width:min(980px, calc(100% - 32px));
  margin:126px auto 0;
  padding:0 0 32px;
}
body.legal-page .legal-card{
  width:100%;
  max-width:880px;
  margin:0 auto;
}
body.legal-page .legal-card .small-kicker,
body.legal-page .legal-card .page-title,
body.legal-page .legal-card .page-lead,
body.legal-page .legal-card h2,
body.legal-page .legal-card p,
body.legal-page .legal-card ul,
body.legal-page .legal-card ol,
body.legal-page .legal-card li{
  text-align:left;
}
body.legal-page .legal-card .page-title{
  max-width:760px;
  margin-left:0;
  margin-right:0;
}
body.legal-page .legal-card .page-lead{
  max-width:720px;
  margin-left:0;
  margin-right:0;
}
body.legal-page .legal-card p,
body.legal-page .legal-card ul,
body.legal-page .legal-card ol{
  max-width:760px;
  margin-left:0;
  margin-right:0;
}
body.legal-page .legal-card p + p{
  margin-top:10px;
}
body.legal-page .legal-block{
  display:grid;
  gap:8px;
  margin-top:26px;
}
body.legal-page .legal-card a{
  overflow-wrap:anywhere;
}
@media (max-width: 720px){
  body.legal-page .content-shell.legal-shell,
  body.legal-page .content-shell.content-shell-narrow{
    width:min(100%, calc(100% - 20px));
    margin:104px auto 0;
    padding-bottom:22px;
  }
  body.legal-page .legal-card{
    padding:20px 16px 22px;
  }
  body.legal-page .legal-card p,
  body.legal-page .legal-card ul,
  body.legal-page .legal-card ol,
  body.legal-page .legal-card .page-title,
  body.legal-page .legal-card .page-lead{
    max-width:100%;
  }
}


.apps-stage{
  padding-top:106px;
  padding-bottom:42px;
}
.apps-wrap-wide{
  width:min(860px,calc(100% - 32px));
  gap:16px;
}
.apps-page-title{
  margin:0;
  max-width:560px;
  text-align:center;
}
.apps-page-subtitle{
  max-width:620px;
  margin:0;
  text-align:center;
  color:rgba(255,255,255,0.58);
  font-size:14px;
  line-height:1.58;
}
.apps-grid-two{
  width:100%;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
  margin-top:6px;
  max-width:820px;
  margin-left:auto;
  margin-right:auto;
}
.app-card{
  min-height:226px;
  border:1px solid rgba(255,255,255,0.08);
  border-radius:1px;
  background:rgba(11,11,11,0.94);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.03),0 14px 34px rgba(0,0,0,0.22);
  padding:14px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:12px;
}
.app-card__toprow{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}
.app-card__badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:58px;
  height:24px;
  padding:0 8px;
  border-radius:1px;
  border:1px solid rgba(255,255,255,0.08);
  background:rgba(255,255,255,0.03);
  color:rgba(255,255,255,0.7);
  font-size:10px;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.app-card__corner-icon{
  width:28px;
  height:28px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,0.08);
  border-radius:1px;
  background:rgba(255,255,255,0.03);
  color:rgba(255,255,255,0.84);
  flex:0 0 auto;
}
.app-card__corner-icon svg{
  width:14px;
  height:14px;
  display:block;
}
.app-card h2{
  margin:0 0 7px;
  font-size:18px;
  line-height:1.18;
  letter-spacing:-0.03em;
  max-width:270px;
}
.app-card p{
  margin:0;
  color:rgba(255,255,255,0.62);
  font-size:13px;
  line-height:1.58;
}
.app-card__list{
  margin:10px 0 0;
  padding-left:16px;
  color:rgba(255,255,255,0.7);
  display:grid;
  gap:6px;
  font-size:12px;
  line-height:1.5;
}
.app-card__bottom{
  display:grid;
  gap:7px;
}
.app-download-btn{
  width:100%;
  height:34px;
  border:1px solid rgba(255,255,255,0.96);
  border-radius:1px;
  background:#fff;
  color:#070707;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-size:12.5px;
  font-weight:600;
  transition:transform .18s ease,box-shadow .18s ease,opacity .18s ease;
  box-shadow:0 10px 24px rgba(0,0,0,0.22);
}
.app-download-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 12px 26px rgba(0,0,0,0.28);
}
.app-download-btn__icon{
  width:14px;
  height:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.app-download-btn__icon svg{
  width:14px;
  height:14px;
  display:block;
}
.app-download-btn.is-disabled,
.app-download-btn:disabled{
  cursor:not-allowed;
  opacity:.62;
  transform:none;
  background:rgba(255,255,255,0.12);
  color:rgba(255,255,255,0.45);
  border-color:rgba(255,255,255,0.08);
  box-shadow:none;
}
.app-card__filename{
  text-align:left;
  color:rgba(255,255,255,0.46);
  font-size:11px;
  line-height:1.45;
  word-break:break-word;
}
@media (max-width: 860px){
  .apps-grid-two{
    grid-template-columns:1fr;
    max-width:520px;
  }
  .app-card h2{
    font-size:19px;
    max-width:none;
  }
}


.library-switcher{margin-top:2px;}
.library-switcher .report-switch{text-decoration:none;}
.library-mode-summary{display:grid;gap:6px;margin-top:2px;}
.library-mode-summary p{margin:0;color:rgba(255,255,255,0.72);font-size:14px;line-height:1.6;}

.report-meta-row{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:14px;}
.report-badge{display:inline-flex;align-items:center;min-height:28px;padding:0 10px;border:1px solid rgba(255,255,255,.08);border-radius:999px;background:rgba(255,255,255,.03);font-size:12px;letter-spacing:.01em;color:rgba(255,255,255,.78);}
.report-badge-low{border-color:rgba(255,255,255,.16);background:rgba(255,255,255,.05);}
.report-badge-medium{border-color:rgba(255,255,255,.12);}
.report-badge-high{border-color:rgba(255,255,255,.18);background:rgba(255,255,255,.06);}
.report-hero-note{margin:10px 0 0;font-size:13px;line-height:1.7;color:rgba(255,255,255,.78);max-width:920px;}
.report-hero-note-soft{color:rgba(255,255,255,.64);}
.alt-link-list{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;margin-top:14px;}
.alt-link-card{display:flex;flex-direction:column;gap:8px;padding:14px;border:1px solid rgba(255,255,255,.08);border-radius:8px;background:rgba(255,255,255,.025);text-decoration:none;color:inherit;transition:transform .18s ease,background .18s ease,border-color .18s ease;}
.alt-link-card:hover{transform:translateY(-1px);background:rgba(255,255,255,.04);border-color:rgba(255,255,255,.14);}
.alt-link-title{font-size:14px;line-height:1.45;color:rgba(255,255,255,.94);}
.alt-link-meta{font-size:12px;color:rgba(255,255,255,.58);}
@media (max-width:900px){.alt-link-list{grid-template-columns:1fr;}}

.report-hero-card-advanced{position:relative;}
.report-risk-dot{position:absolute;top:18px;right:18px;width:12px;height:12px;border-radius:999px;box-shadow:0 0 0 4px rgba(255,255,255,.04),0 0 22px rgba(255,255,255,.08);}
.report-risk-dot-low{background:#22c55e;box-shadow:0 0 0 4px rgba(34,197,94,.12),0 0 20px rgba(34,197,94,.35);}
.report-risk-dot-medium{background:#f59e0b;box-shadow:0 0 0 4px rgba(245,158,11,.12),0 0 20px rgba(245,158,11,.35);}
.report-risk-dot-high{background:#ef4444;box-shadow:0 0 0 4px rgba(239,68,68,.12),0 0 20px rgba(239,68,68,.35);}


.info-grid-2{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;margin-top:14px}
.info-grid-2 h3,.faq-item h3{margin:0 0 8px;font-size:14px;line-height:1.4;color:rgba(255,255,255,.92)}
.cause-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
.cause-card,.faq-item{padding:14px;border:1px solid rgba(255,255,255,.08);background:rgba(255,255,255,.025)}
.cause-card__top{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:8px}
.cause-card__top strong{font-size:14px;line-height:1.4;color:#fff}
.cause-confidence{display:inline-flex;align-items:center;justify-content:center;min-width:54px;padding:4px 8px;border:1px solid rgba(255,255,255,.12);font-size:12px;color:rgba(255,255,255,.86)}
.cause-confidence--high{background:rgba(71,149,255,.12)}
.cause-confidence--medium{background:rgba(255,201,71,.12)}
.cause-confidence--low{background:rgba(255,114,94,.12)}
.faq-stack{display:grid;gap:12px}
@media (max-width: 820px){.cause-grid,.info-grid-2{grid-template-columns:1fr}}

/* 2026 memorable product refresh */
.nav-brand{display:inline-flex;align-items:center;gap:10px;margin-right:auto;color:rgba(255,255,255,0.92);text-decoration:none;min-width:0;}
.nav-brand__mark{width:10px;height:10px;border-radius:999px;background:rgba(255,255,255,0.92);box-shadow:0 0 0 6px rgba(255,255,255,0.05);flex:0 0 auto;}
.nav-brand__text{font-size:13px;letter-spacing:.02em;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:220px;}

.home-stage-rich{display:block;padding:138px 16px 36px;}
.wrap-home-rich{width:min(1120px,calc(100% - 32px));gap:18px;align-items:stretch;}
.hero-badge-row{display:flex;flex-wrap:wrap;gap:10px;justify-content:center;}
.hero-badge{display:inline-flex;align-items:center;justify-content:center;height:32px;padding:0 12px;border:1px solid rgba(255,255,255,0.08);border-radius:999px;background:rgba(255,255,255,0.03);color:rgba(255,255,255,0.82);font-size:12px;letter-spacing:.04em;text-transform:uppercase;}
.hero-badge-soft{background:rgba(255,255,255,0.02);color:rgba(255,255,255,0.66);}
.home-hero-copy{text-align:center;display:grid;gap:14px;max-width:920px;margin:0 auto;}
.hero-title{margin:0;font-size:clamp(42px,8vw,82px);line-height:.95;letter-spacing:-.055em;}
.hero-lead{margin:0 auto;max-width:860px;font-size:17px;line-height:1.82;color:rgba(255,255,255,0.72);}
.input-row-hero{max-width:860px;margin:0 auto;}
.input-hero{height:60px;padding-left:18px;padding-right:58px;font-size:16px;}
.hero-prompt-grid{display:flex;flex-wrap:wrap;gap:10px;justify-content:center;max-width:980px;margin:0 auto;}
.prompt-chip{height:36px;padding:0 14px;border:1px solid rgba(255,255,255,0.08);border-radius:999px;background:rgba(255,255,255,0.02);color:rgba(255,255,255,0.72);font-size:13px;cursor:pointer;transition:border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease;}
.prompt-chip:hover{border-color:rgba(255,255,255,0.16);background:rgba(255,255,255,0.05);color:rgba(255,255,255,0.96);transform:translateY(-1px);}
.hero-trust-row{display:flex;flex-wrap:wrap;gap:10px;justify-content:center;max-width:860px;margin:0 auto;}
.trust-pill{height:34px;padding:0 12px;border-radius:4px;background:rgba(255,255,255,0.03);border:1px solid rgba(255,255,255,0.06);display:inline-flex;align-items:center;color:rgba(255,255,255,0.76);font-size:12.5px;}
.home-browse-row-rich{gap:10px;flex-wrap:wrap;}
.home-browse-link-soft{background:transparent;}
.home-stats-grid,.home-feature-grid,.home-grid-duo{display:grid;gap:14px;grid-template-columns:repeat(4,minmax(0,1fr));}
.home-feature-grid,.home-grid-duo{grid-template-columns:repeat(2,minmax(0,1fr));}
.home-stat-card,.home-feature-card,.home-list-card{padding:20px;border:1px solid rgba(255,255,255,0.08);border-radius:10px;background:rgba(10,10,10,0.88);box-shadow:inset 0 1px 0 rgba(255,255,255,0.03),0 18px 40px rgba(0,0,0,0.22);}
.home-stat-card{display:grid;gap:8px;align-content:start;min-height:112px;}
.home-stat-card strong{font-size:34px;line-height:1;letter-spacing:-.04em;}
.home-stat-card span{font-size:13px;color:rgba(255,255,255,0.64);line-height:1.5;}
.home-feature-card h2,.home-list-card h2{margin:6px 0 10px;font-size:26px;line-height:1.05;letter-spacing:-.04em;}
.home-feature-card p,.home-feature-card li,.home-list-card p{font-size:14px;line-height:1.8;color:rgba(255,255,255,0.72);}
.home-feature-card ul{margin:0;padding-left:18px;display:grid;gap:6px;}
.home-link-list{display:grid;gap:10px;}
.home-link-row{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:12px 0;border-top:1px solid rgba(255,255,255,0.07);color:rgba(255,255,255,0.84);transition:color .18s ease, transform .18s ease;}
.home-link-row:first-child{border-top:none;padding-top:0;}
.home-link-row:hover{color:rgba(255,255,255,0.98);transform:translateX(2px);}
.home-link-row span{font-size:14px;line-height:1.5;}
.home-link-row small{color:rgba(255,255,255,0.5);font-size:12px;white-space:nowrap;}
.legal-config-note{margin:14px 0 18px;padding:12px 14px;border:1px solid rgba(255,255,255,0.1);border-radius:6px;background:rgba(255,255,255,0.03);color:rgba(255,255,255,0.74);font-size:13px;line-height:1.65;}
.report-meta-strip{display:flex;flex-wrap:wrap;gap:10px;margin:0 0 14px;}
.report-meta-pill{display:inline-flex;align-items:center;gap:6px;min-height:34px;padding:0 12px;border-radius:999px;border:1px solid rgba(255,255,255,0.08);background:rgba(255,255,255,0.03);font-size:12.5px;color:rgba(255,255,255,0.78);}
.faq-list{display:grid;gap:10px;}
.faq-item{border:1px solid rgba(255,255,255,0.08);border-radius:8px;background:rgba(255,255,255,0.02);overflow:hidden;}
.faq-item summary{list-style:none;cursor:pointer;padding:14px 16px;color:rgba(255,255,255,0.88);font-size:14px;}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item p{margin:0;padding:0 16px 16px;color:rgba(255,255,255,0.7);}

@media (max-width: 980px){
  .home-stats-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
  .home-feature-grid,.home-grid-duo{grid-template-columns:1fr;}
}
@media (max-width: 700px){
  .top-nav{gap:12px;padding-left:8px;}
  .nav-brand{width:100%;margin-right:0;justify-content:flex-start;}
  .nav-brand__text{max-width:none;}
  .home-stage-rich{padding-top:124px;}
  .hero-title{font-size:clamp(34px,12vw,54px);line-height:1;}
  .hero-lead{font-size:15px;line-height:1.72;}
  .input-hero{height:54px;font-size:15px;}
  .home-stats-grid{grid-template-columns:1fr;}
  .home-stat-card strong{font-size:28px;}
  .home-feature-card h2,.home-list-card h2{font-size:22px;}
  .home-link-row{flex-direction:column;align-items:flex-start;gap:4px;}
}
