/* ============================================================
     スロ研 公開版「深夜のデータカウンター」
     ダークラボ・計測機器の世界観。煽り系サイトの完全な逆張り。
     ============================================================ */
  :root {
    --ink: #0C1118;          /* 地の墨紺 */
    --panel: #131B26;        /* パネル面 */
    --panel-2: #0F1620;      /* パネル暗め */
    --line: #1E2A38;         /* 罫線 */
    --text: #E8EDF2;         /* 本文 */
    --muted: #8B99A8;        /* 補助文字 */
    --teal: #35D0C5;         /* 燐光ティール（アクセント） */
    --teal-dim: rgba(53, 208, 197, .12);
    --amber: #F0B429;        /* データ琥珀（数字の強調） */
    --loss: #E2654E;         /* 負けの線 */
    --sans: "IBM Plex Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", sans-serif;
    --mono: "IBM Plex Mono", "Consolas", monospace;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--sans);
    background: var(--ink);
    color: var(--text);
    line-height: 1.9;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
  }
  a { color: var(--teal); text-decoration: none; }
  .container { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
  ::selection { background: var(--teal); color: var(--ink); }

  /* ---------- 走査線のような極薄テクスチャ ---------- */
  body::before {
    content: "";
    position: fixed; inset: 0; pointer-events: none; z-index: 0;
    background: repeating-linear-gradient(0deg, rgba(255,255,255,.012) 0 1px, transparent 1px 3px);
  }

  /* ---------- ヘッダー ---------- */
  header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(12,17,24,.82);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
  }
  .header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
  .logo { display: flex; align-items: center; gap: 11px; }
  .logo-face {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid rgba(53,208,197,.5);
    background: #0a1a1f; flex-shrink: 0;
  }
  .logo .name { font-weight: 700; font-size: 17px; letter-spacing: .06em; line-height: 1.1; }
  .logo .mark {
    font-family: var(--mono); font-size: 10px; font-weight: 500;
    color: var(--teal); letter-spacing: .18em; display: block; margin-top: 1px;
  }
  nav { display: flex; gap: 26px; }
  nav a {
    color: var(--muted); font-size: 13px; font-weight: 500; letter-spacing: .03em;
    position: relative; padding: 4px 0;
  }
  nav a::after {
    content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
    background: var(--teal); transition: width .25s;
  }
  nav a:hover { color: var(--text); }
  nav a:hover::after { width: 100%; }

  /* ---------- ヒーロー ---------- */
  .hero { position: relative; padding: 96px 0 72px; overflow: hidden; }
  .hero::before {  /* 方眼 */
    content: ""; position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 20%, #000 30%, transparent 75%);
  }
  .hero::after {  /* ティールの燐光 */
    content: ""; position: absolute; width: 720px; height: 520px;
    right: -180px; top: -160px; pointer-events: none;
    background: radial-gradient(ellipse, rgba(53,208,197,.13), transparent 65%);
  }
  .hero-grid {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
  }
  @media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
  .hero-copy { position: relative; }
  .hero-reina {
    position: absolute; left: -40px; bottom: -22px; width: 134px; z-index: 3;
    filter: drop-shadow(0 10px 22px rgba(0,0,0,.55));
    pointer-events: none;
  }
  @media (max-width: 1040px) { .hero-reina { left: -22px; width: 116px; } }
  @media (max-width: 900px) { .hero-reina { display: none; } }

  .eyebrow {
    font-family: var(--mono); font-size: 11.5px; font-weight: 500;
    color: var(--teal); letter-spacing: .22em; margin-bottom: 22px;
    display: flex; align-items: center; gap: 12px;
  }
  .eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--teal); }

  .hero h1 {
    font-size: clamp(30px, 4.4vw, 46px);
    font-weight: 700; line-height: 1.4; letter-spacing: .01em;
    text-wrap: balance; margin-bottom: 22px;
  }
  .hero h1 .u {
    color: var(--teal);
    text-decoration: underline;
    text-decoration-color: rgba(53,208,197,.35);
    text-decoration-thickness: 2px;
    text-underline-offset: 8px;
  }
  .hero .lead { color: var(--muted); font-size: 16px; max-width: 480px; margin-bottom: 36px; }

  .btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 26px; border-radius: 4px;
    font-size: 14px; font-weight: 700; letter-spacing: .04em;
    transition: transform .15s, box-shadow .15s, background .15s, border-color .15s;
  }
  .btn-primary { background: var(--teal); color: #06211f; }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(53,208,197,.25); }
  .btn-ghost { border: 1px solid var(--line); color: var(--text); }
  .btn-ghost:hover { border-color: var(--teal); color: var(--teal); }

  /* ---------- ヒーロー右：スランプグラフ ---------- */
  .sim-panel {
    background: var(--panel-2);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 20px 20px 14px;
    box-shadow: 0 24px 60px rgba(0,0,0,.45);
    position: relative;
  }
  .sim-head {
    display: flex; justify-content: space-between; align-items: center;
    font-family: var(--mono); font-size: 11px; color: var(--muted);
    letter-spacing: .1em; margin-bottom: 12px;
  }
  .sim-head .live { color: var(--teal); display: flex; align-items: center; gap: 6px; }
  .sim-head .live::before {
    content: ""; width: 6px; height: 6px; border-radius: 50%;
    background: var(--teal); animation: blink 1.6s infinite;
  }
  @keyframes blink { 50% { opacity: .25; } }
  #slump { width: 100%; height: auto; display: block; }
  .sim-legend {
    display: flex; gap: 22px; margin-top: 10px;
    font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: .04em;
  }
  .sim-legend span { display: flex; align-items: center; gap: 8px; }
  .sim-legend i { width: 16px; height: 2px; display: inline-block; }
  .sim-legend .win i { background: var(--teal); }
  .sim-legend .lose i { background: var(--loss); }

  /* ---------- スタットバー ---------- */
  .stats {
    border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
    background: var(--panel-2);
  }
  .stats-inner {
    display: grid; grid-template-columns: repeat(4, 1fr);
  }
  @media (max-width: 760px) { .stats-inner { grid-template-columns: repeat(2, 1fr); } }
  .stat {
    padding: 26px 20px; text-align: center;
    border-left: 1px solid var(--line);
  }
  .stat:first-child { border-left: none; }
  .stat .num {
    font-family: var(--mono); font-size: 26px; font-weight: 600;
    color: var(--amber); font-variant-numeric: tabular-nums; line-height: 1.3;
  }
  .stat .num .unit { font-size: 13px; color: var(--muted); margin-left: 2px; }
  .stat .label { font-size: 12px; color: var(--muted); letter-spacing: .06em; margin-top: 4px; }

  /* ---------- セクション共通 ---------- */
  section { padding: 88px 0; position: relative; }
  .sec-head { margin-bottom: 48px; }
  h2 { font-size: 27px; font-weight: 700; letter-spacing: .02em; text-wrap: balance; margin-bottom: 12px; }
  .sec-desc { color: var(--muted); font-size: 14.5px; max-width: 620px; }

  .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 18px; }

  .card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 28px 26px;
    position: relative;
    transition: border-color .25s, transform .25s, box-shadow .25s;
  }
  .card:hover {
    border-color: rgba(53,208,197,.5);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,.35);
  }
  .card .ic {
    width: 40px; height: 40px; margin-bottom: 18px;
    display: flex; align-items: center; justify-content: center;
    background: var(--teal-dim); border-radius: 5px;
  }
  .card .ic svg { width: 20px; height: 20px; stroke: var(--teal); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .card h3 { font-size: 16.5px; font-weight: 700; margin-bottom: 8px; letter-spacing: .02em; }
  .card p { font-size: 13.5px; color: var(--muted); line-height: 1.85; }
  .card .more {
    font-family: var(--mono); font-size: 12px; font-weight: 500;
    display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; letter-spacing: .05em;
  }
  .card .more::after { content: "→"; transition: transform .2s; }
  .card:hover .more::after { transform: translateX(4px); }

  /* ---------- 警句パネル ---------- */
  .axiom {
    background: var(--panel-2);
    border: 1px solid var(--line);
    border-left: 3px solid var(--amber);
    border-radius: 0 6px 6px 0;
    padding: 22px 26px;
    margin-bottom: 44px;
    display: flex; gap: 18px; align-items: baseline;
  }
  .axiom .tag {
    font-family: var(--mono); font-size: 10.5px; font-weight: 600;
    color: var(--amber); letter-spacing: .18em; white-space: nowrap;
  }
  .axiom p { font-size: 14px; color: var(--text); }
  .axiom p b { color: var(--amber); font-weight: 700; }

  /* ---------- ツール（端末風） ---------- */
  .tools-sec { background: var(--panel-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .badge {
    font-family: var(--mono); font-size: 10.5px; font-weight: 600;
    color: var(--teal); letter-spacing: .14em;
    border: 1px solid rgba(53,208,197,.4); border-radius: 3px;
    padding: 3px 10px; vertical-align: 4px; margin-left: 12px;
  }
  .tool-card { background: var(--ink); }
  .tool-card .status {
    font-family: var(--mono); font-size: 11px; color: var(--muted);
    letter-spacing: .08em; margin-top: 16px;
    display: flex; align-items: center; gap: 8px;
  }
  .tool-card .status::after {
    content: ""; width: 7px; height: 13px; background: var(--teal);
    animation: blink 1.1s steps(1) infinite;
  }

  /* ---------- YouTube ---------- */
  .yt-wrap { display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px; align-items: start; }
  @media (max-width: 860px) { .yt-wrap { grid-template-columns: 1fr; } }
  .yt-frame {
    position: relative; aspect-ratio: 16/9; border-radius: 8px; overflow: hidden;
    border: 1px solid var(--line); background: #000;
  }
  .yt-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
  .yt-feature .cap { margin-top: 14px; font-size: 16px; font-weight: 700; line-height: 1.6; }
  .yt-feature .meta { font-family: var(--mono); font-size: 11.5px; color: var(--muted); margin-top: 5px; letter-spacing: .04em; }
  .yt-list { display: flex; flex-direction: column; gap: 10px; }
  .yt-item {
    display: flex; gap: 12px; text-decoration: none; color: inherit;
    padding: 8px; border-radius: 8px; border: 1px solid transparent; transition: border-color .2s, background .2s;
  }
  .yt-item:hover { border-color: var(--line); background: var(--panel); }
  .yt-thumb {
    width: 124px; aspect-ratio: 16/9; border-radius: 5px; object-fit: cover;
    flex-shrink: 0; background: #000; border: 1px solid var(--line);
  }
  .yt-item .t {
    font-size: 12.5px; font-weight: 500; line-height: 1.5; color: var(--text);
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  }
  .yt-item .m { font-family: var(--mono); font-size: 10.5px; color: var(--muted); margin-top: 5px; letter-spacing: .03em; }
  .yt-sub { margin-top: 30px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
  .btn-yt { background: #FF0033; color: #fff; }
  .btn-yt:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,0,51,.28); }
  .yt-sub .note { color: var(--muted); font-size: 13px; }

  /* ---------- 道具 ---------- */
  .reason {
    margin-top: 18px; padding: 13px 16px;
    background: var(--teal-dim); border-radius: 4px;
    font-size: 12.5px; color: #9fe3de; line-height: 1.7;
  }
  .reason b { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; color: var(--teal); display: block; margin-bottom: 3px; }

  /* 勝ち勝ちくんコレクション */
  .kk-block { margin-bottom: 44px; }
  .kk-head { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 6px; }
  .kk-head h3 { font-size: 18px; font-weight: 700; letter-spacing: .02em; }
  .kk-head .pill {
    font-family: var(--mono); font-size: 10.5px; color: var(--teal);
    border: 1px solid rgba(53,208,197,.4); border-radius: 3px; padding: 2px 9px; letter-spacing: .1em;
  }
  .kk-note { color: var(--muted); font-size: 13.5px; margin-bottom: 24px; max-width: 640px; }
  .kk-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(196px, 1fr)); gap: 16px; }
  .kk-card {
    display: flex; flex-direction: column; background: var(--panel);
    border: 1px solid var(--line); border-radius: 9px; overflow: hidden;
    transition: border-color .25s, transform .25s, box-shadow .25s;
  }
  .kk-card:hover { border-color: rgba(53,208,197,.5); transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,0,0,.35); }
  .kk-tile { aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; font-size: 42px; position: relative; }
  .kk-tile .tag {
    position: absolute; top: 9px; left: 9px; font-family: var(--mono);
    font-size: 9.5px; letter-spacing: .12em; background: rgba(0,0,0,.4);
    color: #fff; padding: 2px 8px; border-radius: 3px;
  }
  .kk-body { padding: 15px 15px 16px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
  .kk-body h4 { font-size: 14.5px; font-weight: 700; letter-spacing: .01em; }
  .kk-body .cmt { font-size: 12.5px; color: var(--muted); line-height: 1.75; flex: 1; }
  .kk-body .cmt .q { color: var(--text); }
  .kk-buy {
    margin-top: auto; display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    padding: 9px; border-radius: 5px; background: var(--teal-dim); color: var(--teal);
    font-size: 12.5px; font-weight: 700; border: 1px solid rgba(53,208,197,.3);
    transition: background .2s, color .2s;
  }
  .kk-buy:hover { background: var(--teal); color: var(--ink); }
  .affiliate-note {
    margin-top: 30px; font-size: 11.5px; color: var(--muted); line-height: 1.75;
    padding: 13px 17px; border: 1px dashed var(--line); border-radius: 6px;
  }

  /* ---------- About ---------- */
  .about-flex { display: flex; gap: 48px; align-items: center; flex-wrap: wrap; }
  .avatar {
    width: 148px; height: 148px; border-radius: 50%; flex-shrink: 0;
    background:
      radial-gradient(circle at 32% 28%, rgba(53,208,197,.5), transparent 55%),
      linear-gradient(150deg, #1a2b33, #0F1620);
    border: 1px solid var(--line);
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }
  .avatar::after {
    content: ""; position: absolute; inset: -8px; border-radius: 50%;
    border: 1px dashed rgba(53,208,197,.3);
  }
  .avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
  .about-text { flex: 1; min-width: 300px; }
  .about-text p { color: var(--muted); font-size: 14.5px; }
  .about-text b { color: var(--text); }
  .sns-row { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }
  .sns {
    font-family: var(--mono); font-size: 12.5px; font-weight: 500; letter-spacing: .04em;
    border: 1px solid var(--line); border-radius: 4px;
    padding: 10px 20px; color: var(--text);
    transition: border-color .2s, color .2s, transform .15s;
  }
  .sns:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }
  .sns-soon { color: var(--muted); opacity: .55; cursor: default; }
  .sns-soon:hover { border-color: var(--line); color: var(--muted); transform: none; }

  /* ---------- フッター ---------- */
  footer {
    border-top: 1px solid var(--line);
    padding: 34px 0; text-align: center;
    font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: .05em;
  }

  /* ---------- スクロール出現 ---------- */
  .reveal { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s ease; }
  .reveal.on { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .sim-head .live::before, .tool-card .status::after { animation: none; }
    html { scroll-behavior: auto; }
  }

/* 公開用の可読性・モバイル・アクセシビリティ */
:root { --muted:#a5b2c2; }
body { font-size:16px; }
img { max-width:100%; }
main { display:block; }
section, #main { scroll-margin-top:100px; }
a:focus-visible { outline:3px solid var(--amber); outline-offset:5px; border-radius:3px; }
.skip-link { position:absolute; left:20px; top:-100px; z-index:100; padding:12px 18px; background:var(--teal); color:var(--ink); }
.skip-link:focus { top:10px; }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.logo .mark { font-size:12px; }
nav a { font-size:14px; padding:12px 0; }
.hero { padding:70px 0; }
.hero-grid { grid-template-columns:1.2fr .8fr; gap:54px; }
.hero h1 { font-size:clamp(30px,3.7vw,44px); line-height:1.5; }
.hero .lead,.sec-desc,.card p,.about-text p { font-size:16px; }
.eyebrow { font-size:12px; }
.card .more,.btn,.sns,.kk-buy,.stat .label { font-size:14px; }
.card .more { min-height:44px; }
.axiom .tag,.kk-head .pill,.yt-feature .meta,.yt-item .m { font-size:12px; }
.axiom p,.kk-note,.kk-body .cmt,.reason,.yt-item .t,.affiliate-note,.yt-sub .note,footer { font-size:14px; }
.reason b { font-size:12px; }
.lab-portrait { margin:0; background:linear-gradient(145deg,#1a2b33,#101923); border:1px solid #2d454d; border-radius:8px; overflow:hidden; position:relative; }
.portrait-top { display:flex; justify-content:space-between; gap:8px; padding:14px 18px; border-bottom:1px solid #2d454d; font-family:var(--mono); font-size:12px; color:var(--teal); }
.lab-portrait>img { display:block; width:auto; height:300px; margin:20px auto 0; object-fit:contain; }
.lab-portrait figcaption { display:flex; align-items:center; justify-content:space-between; gap:12px; padding:18px 20px; font-size:12px; color:var(--muted); background:rgba(12,17,24,.7); }
.portrait-name { font-size:20px; font-weight:700; color:var(--text); }
.stat .num { font-size:24px; color:var(--teal); }
.video-cover { position:relative; display:block; aspect-ratio:16/9; overflow:hidden; border:1px solid var(--line); border-radius:8px; background:var(--panel); }
.video-cover img { width:100%; height:100%; object-fit:cover; transition:transform .2s; }
.video-cover:hover img { transform:scale(1.025); }
.play-label { position:absolute; bottom:14px; right:14px; padding:6px 12px; font-size:14px; color:#fff; background:#b90028; border-radius:4px; }
.yt-item .t { display:block; overflow:visible; }
.yt-thumb { height:auto; object-fit:cover; align-self:flex-start; }
.tool-announcement { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center; }
.availability { display:inline-block; font-size:13px; border:1px solid #48616a; color:var(--teal); padding:3px 10px; border-radius:3px; margin-bottom:16px; }
.tool-note { margin-top:18px; }
.ad-label { display:block; font-size:13px; margin-top:12px; }
.gear-label { min-height:74px; padding:22px 18px; display:flex; align-items:center; background:linear-gradient(120deg,#213b44,#17242f); border-bottom:1px solid var(--line); font-family:var(--mono); letter-spacing:.08em; font-size:13px; color:var(--teal); }
.about-text { min-width:0; flex-basis:300px; }
.footer-links { display:flex; justify-content:center; gap:24px; flex-wrap:wrap; margin-bottom:18px; }
.copyright { margin-top:18px; font-size:12px; }
.article-layout { max-width:800px; margin:auto; padding:54px 28px 90px; }
.breadcrumbs { font-size:14px; color:var(--muted); margin-bottom:32px; }
.article-heading { font-size:clamp(28px,4vw,40px); line-height:1.55; margin:14px 0 20px; }
.article-intro { font-size:18px; color:var(--muted); margin-bottom:36px; }
.article-layout section { padding:24px 0; }
.article-layout h2 { font-size:23px; line-height:1.6; margin-bottom:14px; }
.article-layout p { line-height:2; }
.article-callout { padding:24px; background:var(--panel); border-left:3px solid var(--teal); margin:32px 0; border-radius:0 6px 6px 0; }
.article-callout small { font-size:14px; color:var(--muted); }
.table-scroll { overflow:auto; margin:32px 0; }
table { width:100%; border-collapse:collapse; font-size:15px; }
caption { text-align:left; padding-bottom:12px; color:var(--muted); }
td,th { padding:12px 14px; border:1px solid var(--line); text-align:left; }
th { background:var(--panel); }
.article-end { margin-top:48px; padding-top:28px; border-top:1px solid var(--line); }
.article-end p { color:var(--muted); font-size:14px; margin-bottom:24px; }
@media(max-width:960px) {
  .header-inner { height:auto; min-height:68px; flex-wrap:wrap; gap:8px 24px; padding-top:12px; padding-bottom:10px; }
  nav { gap:20px; flex-wrap:wrap; }
  .hero-grid { gap:30px; }
}
@media(max-width:760px) {
  .container { padding-left:20px; padding-right:20px; }
  .hero { padding:40px 0; }
  .hero-grid,.tool-announcement { grid-template-columns:1fr; }
  .hero .lead { max-width:none; }
  .lab-portrait { max-width:480px; width:100%; margin:auto; }
  .lab-portrait>img { height:250px; }
  nav { gap:4px 18px; }
  nav a { padding:6px 0; }
  section { padding:60px 0; scroll-margin-top:155px; }
  .sec-head { margin-bottom:28px; }
  .grid-3 { grid-template-columns:1fr; }
  .axiom { display:block; padding:20px; }
  .axiom .tag { display:block; margin-bottom:8px; }
  .btn-row { display:grid; }
  .btn { justify-content:center; padding:13px 16px; letter-spacing:0; }
  .kk-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .about-flex { gap:28px; }
  .about-text { flex-basis:100%; }
  .yt-thumb { width:110px; }
  .article-layout { padding:36px 20px 64px; }
  .article-layout section { scroll-margin-top:155px; }
  .article-heading { font-size:28px; }
  .stat { padding:18px 10px; }
}
@media(max-width:380px) {
  .kk-grid { grid-template-columns:1fr; }
  .portrait-top { font-size:11px; letter-spacing:0; }
  .lab-portrait figcaption { flex-wrap:wrap; }
  .hero h1 { font-size:28px; }
}
@media(prefers-reduced-motion:reduce) { *,*::before,*::after { animation:none!important; transition:none!important; } }
