:root{
  --font-text: ui-sans-serif, system-ui, -apple-system, "Segoe UI Variable", "Segoe UI", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Meiryo", sans-serif;
  --font-display: ui-sans-serif, system-ui, -apple-system, "SF Pro Display", "Segoe UI Variable Display", "Segoe UI", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;

  --bg: #f6f7f9;
  --bg2:#ffffff;
  --surface: rgba(255,255,255,.78);
  --surface2: rgba(255,255,255,.92);
  --stroke: rgba(15,23,42,.10);
  --stroke2: rgba(15,23,42,.14);

  --text: rgba(15,23,42,.92);     /* slate-900 */
  --muted: rgba(15,23,42,.62);
  --muted2: rgba(15,23,42,.46);

  --brand: #0ea5e9;   /* sky-500 */
  --brand2:#6366f1;   /* indigo-500 */
  --good: #10b981;    /* emerald-500 */
  --warn: #f59e0b;    /* amber-500 */

  --r: 18px;
  --r2: 24px;

  --shadow: 0 18px 60px rgba(2,6,23,.10);
  --shadow2: 0 10px 28px rgba(2,6,23,.08);

  --max: 1120px;
  --pad: 22px;
  --topbar-h: 72px;
}

/* Reset-ish */
*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  background:
    radial-gradient(1200px 600px at 18% -10%, rgba(14,165,233,.18), transparent 60%),
    radial-gradient(900px 540px at 82% 0%, rgba(99,102,241,.14), transparent 62%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 44%, #ffffff 100%);
  color: var(--text);
  font-family: var(--font-text);
  letter-spacing: .02em;
  overflow-x:hidden;
  padding-top: var(--topbar-h);
}
a{ color: inherit; }
img{ max-width:100%; height:auto; }

.container{
  width: min(var(--max), calc(100% - (var(--pad) * 2)));
  margin-inline:auto;
}

.skip{
  position:absolute; left:-9999px; top:auto;
}
.skip:focus{
  left: 16px; top: 16px;
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--surface2);
  outline: 1px solid var(--stroke2);
  z-index: 9999;
}

/* Topbar (glass, light) */
.topbar{
  position: fixed; top:0; z-index: 300;
  background: rgba(255,255,255,.74);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--stroke);

  left:0;
  right:0;
  width:100%;}
.topbar__in{
  display:flex; align-items:center; justify-content:space-between;
  padding: 12px 0;
  gap: 14px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  text-decoration:none;
}
.brand__dot{
  width:10px; height:10px; border-radius:999px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 0 0 6px rgba(14,165,233,.10);
}
.brand__name{ font-weight: 850; letter-spacing:.02em; }
.brand__sub{ font-size:.86rem; color: var(--muted); margin-left:2px; }

.nav{
  display:flex; align-items:center; gap: 16px;
}
.nav a{
  text-decoration:none;
  color: rgba(15,23,42,.82);
  font-weight: 700;
  font-size: .95rem;
}
.nav a:hover{ color: rgba(15,23,42,.92); }
.nav__cta{
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(15,23,42,.04);
  border: 1px solid var(--stroke);
  box-shadow: 0 10px 30px rgba(2,6,23,.06);
}

.navbtn{
  display:none;
  width: 44px; height: 38px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.70);
}
.navbtn span{
  display:block;
  width: 18px; height: 2px;
  background: rgba(15,23,42,.82);
  margin: 4px auto;
  border-radius: 2px;
}

/* Drawer */
.drawer{ position: fixed; inset:0; display:none; z-index:80; }
.drawer.is-open{ display:block; }
.drawer__panel{
  position:absolute; top:0; right:0;
  width: min(420px, 92vw);
  height: 100%;
  background: rgba(255,255,255,.90);
  backdrop-filter: blur(18px);
  border-left: 1px solid var(--stroke);
  box-shadow: -18px 0 60px rgba(2,6,23,.12);
  transform: translateX(12px);
  animation: slideIn .22s ease-out forwards;
}
@keyframes slideIn{ to{ transform: translateX(0); } }
.drawer__head{
  display:flex; align-items:center; justify-content:space-between;
  padding: 18px 18px 10px;
  border-bottom: 1px solid var(--stroke);
}
.drawer__title{ font-weight: 900; letter-spacing:.03em; }
.drawer__close{
  width: 40px; height: 40px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(15,23,42,.04);
  color: rgba(15,23,42,.86);
  font-size: 22px;
}
.drawer__body{ padding: 10px 12px; }
.drawer__link{
  display:block;
  padding: 14px 14px;
  border-radius: 14px;
  text-decoration:none;
  color: rgba(15,23,42,.92);
  border: 1px solid transparent;
}
.drawer__link:hover{
  background: rgba(15,23,42,.03);
  border-color: var(--stroke);
}
.drawer__link.strong{
  background: linear-gradient(135deg, rgba(14,165,233,.10), rgba(99,102,241,.08));
  border-color: rgba(14,165,233,.22);
}
.drawer__foot{
  padding: 12px 18px 20px;
  color: rgba(15,23,42,.62);
  font-size: .92rem;
}
.drawer__backdrop{
  position:absolute; inset:0;
  background: rgba(2,6,23,.28);
  border:0;
}

/* Hero */
.hero{ position:relative; padding: calc(var(--topbar-h) + 20px) 0 26px; }
.hero__in{
  display:grid;
  grid-template-columns: 1.25fr .9fr;
  gap: 26px;
  align-items: stretch;
}
.hero__bg{
  position:absolute; inset:0;
  background:
    radial-gradient(800px 520px at 18% 30%, rgba(14,165,233,.14), transparent 60%),
    radial-gradient(900px 620px at 70% 10%, rgba(99,102,241,.12), transparent 60%);
  pointer-events:none;
  opacity:.85;
}
.hero__copy{ position:relative; z-index:2; }
.eyebrow{
  display:inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.76);
  border: 1px solid var(--stroke);
  color: rgba(15,23,42,.78);
  font-weight: 800;
  font-size: .86rem;
}
.hero__title{
  margin: 14px 0 10px;
  font-size: clamp(2.0rem, 3.2vw, 3.0rem);
  line-height: 1.12;
  letter-spacing: .01em;
}
.hero__lead{
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.72;
  color: rgba(15,23,42,.76);
}
.hero__lead strong{
  color: rgba(15,23,42,.94);
  font-weight: 900;
}
.hero__meta{
  margin-top: 16px;
  display:flex; flex-wrap:wrap; gap:10px;
}
.pill{
  display:inline-flex; align-items:center; gap:.5em;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.76);
  border: 1px solid var(--stroke);
  color: rgba(15,23,42,.84);
  font-size: .9rem;
}
.pill strong{ font-weight: 900; }
.hero__cta{ margin-top: 18px; display:flex; gap: 12px; flex-wrap:wrap; }
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 900;
  letter-spacing: .02em;
  background: linear-gradient(135deg, rgba(14,165,233,.96), rgba(99,102,241,.92));
  color: rgba(255,255,255,.98);
  box-shadow: 0 14px 48px rgba(14,165,233,.16);
}
.btn.ghost{
  background: rgba(255,255,255,.78);
  color: rgba(15,23,42,.90);
  border: 1px solid var(--stroke);
  box-shadow: none;
}
.notice{
  margin-top: 18px;
  display:flex; gap: 10px; align-items:flex-start;
  padding: 14px 14px;
  border-radius: var(--r);
  background: rgba(255,255,255,.76);
  border: 1px solid var(--stroke);
}
.notice__icon{
  width: 26px; height: 26px; border-radius: 999px;
  display:grid; place-items:center;
  background: rgba(14,165,233,.10);
  border: 1px solid rgba(14,165,233,.22);
  color: rgba(15,23,42,.86);
  font-weight: 900;
}
.notice__txt{ color: rgba(15,23,42,.74); line-height:1.6; font-size: .98rem; }

/* Hero right */
.hero__card{ position:relative; z-index:2; }
.glass{
  padding: 18px 16px;
  border-radius: var(--r2);
  background: rgba(255,255,255,.78);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}
.glass:before{
  content:"";
  position:absolute; inset:-2px;
  background:
    radial-gradient(520px 240px at 30% 10%, rgba(14,165,233,.18), transparent 60%),
    radial-gradient(420px 260px at 80% 40%, rgba(99,102,241,.14), transparent 60%);
  opacity:.60;
  pointer-events:none;
}
.glass__kicker{ position:relative; font-weight:900; letter-spacing:.03em; }
.filters{
  position:relative;
  margin-top: 12px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 10px;
}
.filters label{
  display:flex; align-items:center; gap: 10px;
  padding: 10px 10px;
  border-radius: 14px;
  background: rgba(15,23,42,.03);
  border: 1px solid var(--stroke);
  cursor:pointer;
  color: rgba(15,23,42,.86);
  font-weight: 800;
  font-size: .95rem;
}
.filters input{ transform: translateY(-.5px); }
.glass__hint{
  position:relative;
  margin-top: 10px;
  font-size:.9rem;
  color: rgba(15,23,42,.62);
}
.spotlight{
  position:absolute;
  inset: -20px -20px auto auto;
  width: 220px; height: 220px;
  background: radial-gradient(circle at 30% 30%, rgba(14,165,233,.22), transparent 62%);
  filter: blur(2px);
  opacity:.65;
  pointer-events:none;
}

/* Sections */
.section{ padding: 56px 0; position:relative; }
.section.alt{
  background: linear-gradient(180deg, rgba(15,23,42,.02), rgba(255,255,255,0));
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}
.h2{
  margin: 0;
  font-size: clamp(1.45rem, 2.2vw, 2.0rem);
  letter-spacing:.01em;
}
.sub{
  margin: 10px 0 0;
  color: rgba(15,23,42,.66);
  line-height: 1.7;
}
.muted{ color: var(--muted); }

/* Cards list */
.cards{
  margin-top: 18px;
  display:grid;
  gap: 14px;
}
.card{
  border-radius: var(--r2);
  background: rgba(255,255,255,.76);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow2);
  padding: 18px 18px;
  position:relative;
  overflow:hidden;
}
.card:before{
  content:"";
  position:absolute; inset:-1px;
  background:
    radial-gradient(600px 220px at 10% 0%, rgba(14,165,233,.10), transparent 60%),
    radial-gradient(520px 240px at 90% 40%, rgba(99,102,241,.08), transparent 60%);
  opacity:.55;
  pointer-events:none;
}
.card__head{ position:relative; display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap; }
.card__title{
  margin:0;
  font-size: 1.12rem;
  line-height:1.4;

  /* Title emphasis */
  display:inline-flex;
  align-items:center;
  gap:.35em;
  padding: 9px 12px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(14,165,233,.14), rgba(99,102,241,.10));
  border: 1px solid rgba(15,23,42,.12);
  box-shadow: 0 10px 26px rgba(2,6,23,.06), inset 0 1px 0 rgba(255,255,255,.70);
}

@media (max-width: 720px){
  .card__title{
    font-size: 1.04rem;
    padding: 8px 11px;
    border-radius: 14px;
  }
}

.badges{ display:flex; gap: 8px; flex-wrap:wrap; }
.badge{
  padding: 6px 10px;
  border-radius: 999px;
  font-size: .85rem;
  background: rgba(15,23,42,.03);
  border: 1px solid var(--stroke);
  color: rgba(15,23,42,.74);
  font-weight: 850;
}
.badge.strong{
  background: rgba(16,185,129,.10);
  border-color: rgba(16,185,129,.22);
  color: rgba(15,23,42,.80);
}
.card__desc{ position:relative; margin: 10px 0 0; color: rgba(15,23,42,.72); line-height:1.75; }
.card__grid{
  position:relative;
  margin-top: 14px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.kv{
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.86);
  border: 1px solid var(--stroke);
}
.kv__k{ font-size:.86rem; color: rgba(15,23,42,.56); font-weight: 900; }
.kv__v{ margin-top:6px; font-size:.95rem; color: rgba(15,23,42,.84); line-height:1.6; }

.card__foot{
  position:relative;
  margin-top: 12px;
  display:flex; align-items:center; gap: 10px; flex-wrap:wrap;
}
.link{
  color: rgba(15,23,42,.88);
  text-decoration:none;
  font-weight: 900;
  border-bottom: 1px solid rgba(15,23,42,.22);
}
.link:hover{ border-bottom-color: rgba(14,165,233,.60); }
.dot{ color: rgba(15,23,42,.32); }

/* Panels / grids */
.grid3{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.grid2{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.panel{
  border-radius: var(--r2);
  padding: 18px 16px;
  background: rgba(255,255,255,.76);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow2);
}
.panel h3{ margin:0 0 8px; font-size: 1.08rem; }
.panel p, .panel ul{ margin:0; color: rgba(15,23,42,.72); line-height:1.75; }
.panel ul{ padding-left: 1.2em; }
.panel li{ margin: .25em 0; }

.warn{
  margin-top: 16px;
  padding: 16px 16px;
  border-radius: var(--r2);
  background: rgba(245,158,11,.10);
  border: 1px solid rgba(245,158,11,.22);
}
.warn__title{ font-weight: 950; margin-bottom: 8px; color: rgba(15,23,42,.90); }
.warn ul{ margin:0; padding-left: 1.2em; color: rgba(15,23,42,.78); }
.warn li{ margin: .25em 0; }

.cta{
  margin-top: 18px;
  display:flex; gap: 12px; flex-wrap:wrap;
}

/* Footer */
.footer{
  padding: 44px 0 22px;
  border-top: 1px solid var(--stroke);
  background: rgba(255,255,255,.70);
}
.footer__in{
  display:flex; align-items:flex-start; justify-content:space-between;
  gap: 16px;
}
.footer__brand{ font-weight: 950; letter-spacing:.02em; }
.footer__txt{ margin:10px 0 0; color: rgba(15,23,42,.66); line-height:1.7; }
.footer__right{ display:flex; gap: 14px; flex-wrap:wrap; }
.footer__bottom{
  margin-top: 18px;
  text-align:center;
  color: rgba(15,23,42,.52);
  font-size: .9rem;
}


/* Typography emphasis (メリハリ) */
.hero__title,
.h2,
.card__title,
.panel h3{
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}
.hero__title{
  font-weight: 950;
}
.h2{ font-weight: 950; }
.card__title{ font-weight: 900; }
.eyebrow{
  font-family: var(--font-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.kv__k{
  font-family: var(--font-mono);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.pill strong, .brand__name, .warn__title{ font-weight: 950; }

/* Reveal */
.reveal{ opacity:0; transform: translateY(10px); }
.reveal.is-in{ opacity:1; transform:none; transition: opacity .55s ease, transform .55s ease; }

/* Responsive */
.pc{ display:inline; }
@media (max-width: 960px){
  .hero__in{ grid-template-columns: 1fr; }
  .card__grid{ grid-template-columns: 1fr; }
  .filters{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px){
  :root{ --topbar-h: 66px; }
  .nav{ display:none; }
  .navbtn{ display:block; }
  .pc{ display:none; }
  .filters{ grid-template-columns: 1fr; }
  .grid3{ grid-template-columns: 1fr; }
  .grid2{ grid-template-columns: 1fr; }
  .topbar__in{ padding: 10px 0; }
}

/* --- Portal-like enhancements --- */
.newsstrip{
  margin-top: 18px;
  display:flex;
  align-items:flex-start;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  border: 1px solid var(--stroke);
  box-shadow: 0 10px 26px rgba(2,6,23,.06);
  overflow:hidden;
}
.newsstrip__tag{
  flex:0 0 auto;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(245,158,11,.12);
  border: 1px solid rgba(245,158,11,.22);
  font-weight: 950;
  color: rgba(15,23,42,.86);
  font-size: .9rem;
}
.newsstrip__items{
  display:flex;
  gap: 14px;
  flex-wrap:wrap;
  align-items:center;
}
.newsstrip__item{
  text-decoration:none;
  font-weight: 900;
  color: rgba(15,23,42,.80);
  border-bottom: 1px solid rgba(15,23,42,.18);
}
.newsstrip__item:hover{ border-bottom-color: rgba(14,165,233,.60); }

.searchbox{
  position:relative;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--stroke);
}
.searchbox__label{
  display:block;
  font-family: var(--font-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(15,23,42,.60);
  font-size: .78rem;
  font-weight: 900;
}
.searchbox__row{
  margin-top: 8px;
  display:flex; gap: 8px; align-items:center;
}
.searchbox__input{
  flex:1;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.92);
  padding: 0 14px;
  font-size: .98rem;
  color: rgba(15,23,42,.88);
  outline: none;
}
.searchbox__input:focus{
  border-color: rgba(14,165,233,.42);
  box-shadow: 0 0 0 6px rgba(14,165,233,.10);
}
.searchbox__btn{
  width: 44px; height: 44px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(15,23,42,.04);
  color: rgba(15,23,42,.82);
  font-size: 20px;
}

.chips{ margin-top: 10px; display:flex; gap: 8px; flex-wrap:wrap; }
.chip{
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.78);
  font-weight: 900;
  color: rgba(15,23,42,.78);
  cursor:pointer;
}
.chip:hover{ border-color: rgba(14,165,233,.35); }
.chip.is-on{
  background: linear-gradient(135deg, rgba(14,165,233,.12), rgba(99,102,241,.10));
  border-color: rgba(14,165,233,.26);
  color: rgba(15,23,42,.90);
}

.viewtoggle{
  margin-top: 10px;
  display:flex;
  gap: 8px;
}
.vt{
  flex: 1;
  height: 40px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.70);
  font-weight: 950;
  cursor:pointer;
}
.vt.is-on{
  background: rgba(15,23,42,.04);
  border-color: rgba(15,23,42,.12);
}

.tablewrap{
  margin-top: 18px;
  border-radius: var(--r2);
  background: rgba(255,255,255,.76);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow2);
  overflow:hidden;
}
.tablehead{ padding: 16px 16px 10px; border-bottom: 1px solid var(--stroke); }
.tablehead__title{ font-family: var(--font-display); font-weight: 950; }
.tablehead__sub{ margin-top: 6px; color: rgba(15,23,42,.62); font-size: .92rem; line-height:1.6; }
.table{ width:100%; }
.tr{
  display:grid;
  grid-template-columns: 1.55fr .9fr .9fr .45fr;
  gap: 10px;
  padding: 12px 16px;
  align-items:center;
  border-top: 1px solid rgba(15,23,42,.06);
}
.tr.th{
  border-top: 0;
  background: rgba(15,23,42,.02);
  font-family: var(--font-mono);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(15,23,42,.62);
  font-weight: 900;
  font-size: .78rem;
}
.td{ color: rgba(15,23,42,.86); }
.tr.row{ cursor:pointer; }
.tr.row:hover{ background: rgba(14,165,233,.06); }
.td a{ color: rgba(15,23,42,.86); text-decoration:none; border-bottom: 1px solid rgba(15,23,42,.20); }
.td a:hover{ border-bottom-color: rgba(14,165,233,.60); }

.stepper{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.step{
  display:flex;
  gap: 12px;
  padding: 16px 16px;
  border-radius: var(--r2);
  background: rgba(255,255,255,.76);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow2);
}
.step__n{
  width: 32px; height: 32px;
  border-radius: 999px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(14,165,233,.18), rgba(99,102,241,.14));
  border: 1px solid rgba(14,165,233,.26);
  font-weight: 950;
}
.step__t{ font-weight: 950; }
.step__d{ margin-top: 6px; color: rgba(15,23,42,.70); line-height:1.6; font-size: .95rem; }

@media (max-width: 960px){
  .newsstrip{ border-radius: var(--r2); flex-direction:column; align-items:stretch; }
  .stepper{ grid-template-columns: 1fr; }
  .tr{ grid-template-columns: 1.4fr .9fr .9fr .5fr; }
}
@media (max-width: 720px){
  .tr{ grid-template-columns: 1.4fr .8fr; }
  .tr .td:nth-child(3), .tr.th .td:nth-child(3),
  .tr .td:nth-child(4), .tr.th .td:nth-child(4){ display:none; }
}

/* Readability tweaks */
.sub{ max-width: 74ch; }
.hero__lead{ max-width: 72ch; }
.card__desc{ max-width: 78ch; }
.panel p{ max-width: 70ch; }

/* Term tooltip */
.term{
  position: relative;
  display: inline;
  font-weight: 900;
  color: rgba(15,23,42,.90);
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  cursor: help;
}
.term:after{
  content: attr(data-def);
  position: absolute;
  left: 0;
  bottom: calc(100% + 10px);
  min-width: 220px;
  max-width: 360px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(15,23,42,.14);
  box-shadow: 0 18px 50px rgba(2,6,23,.14);
  color: rgba(15,23,42,.86);
  font-weight: 700;
  font-size: .92rem;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  z-index: 30;
}
.term:before{
  content:"";
  position:absolute;
  left: 14px;
  bottom: calc(100% + 2px);
  width: 10px; height: 10px;
  background: rgba(255,255,255,.96);
  border-left: 1px solid rgba(15,23,42,.14);
  border-top: 1px solid rgba(15,23,42,.14);
  transform: rotate(45deg);
  opacity: 0;
  pointer-events:none;
  z-index: 31;
}
.term:hover:after, .term:hover:before,
.term.is-open:after, .term.is-open:before{
  opacity: 1;
  transform: translateY(0);
}

/* Glossary */
.glossary{ margin:0; padding-left: 1.2em; }
.glossary li{ margin: .35em 0; }
.subnote{
  margin: 10px 0 0;
  color: rgba(15,23,42,.60);
  font-size: .92rem;
  line-height: 1.65;
}
@media (max-width: 720px){
  .term:after{ left: -8px; right: 0; max-width: min(92vw, 360px); }
}

/* Accordion */
.accordion{
  border-radius: var(--r2);
  background: rgba(255,255,255,.76);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow2);
  overflow:hidden;
}
.accordion__sum{
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 16px 16px;
  cursor:pointer;
  user-select:none;
}
.accordion__sum::-webkit-details-marker{ display:none; }
.accordion__title{
  font-family: var(--font-display);
  font-weight: 950;
}
.accordion__meta{
  margin-top: 6px;
  color: rgba(15,23,42,.62);
  font-size: .92rem;
  line-height:1.55;
}
.accordion__icon{
  width: 42px; height: 42px;
  border-radius: 14px;
  display:grid; place-items:center;
  border: 1px solid var(--stroke);
  background: rgba(15,23,42,.03);
  font-size: 20px;
  color: rgba(15,23,42,.82);
  flex:0 0 auto;
  transition: transform .18s ease;
}
.accordion[open] .accordion__icon{ transform: rotate(45deg); }
.accordion__body{
  padding: 14px 16px 16px;
  border-top: 1px solid var(--stroke);
}
.glossarytools{ margin-bottom: 12px; }
.chips--glossary{ margin-top: 10px; }
.chip--mini{
  padding: 7px 10px;
  font-size: .9rem;
}
.glossarywrap .subnote{ margin-top: 10px; }
.glossary li mark{
  background: rgba(14,165,233,.16);
  border-radius: 8px;
  padding: 0 .18em;
}


/* Close window link */
.link--danger{
  color: rgba(220,38,38,.86);
  border-bottom-color: rgba(220,38,38,.35);
}
.link--danger:hover{
  border-bottom-color: rgba(220,38,38,.72);
}

/* CTA layout */
.cta__break{
  flex-basis: 100%;
  height: 10px; /* space between rows */
}
.btn-close{
  border-color: rgba(220,38,38,.22);
  color: rgba(220,38,38,.88);
}
.btn-close:hover{
  border-color: rgba(220,38,38,.42);
  background: rgba(220,38,38,.06);
}
