/* ============================================================
   AVT Tools — 共通デザイン（ニューモーフィズム / Soft UI）
   全ページ共有スタイル（ptn01ベース）
   影の基準値: Blur25 / X12 / Y12 / 15% / #3754AA
   ============================================================ */

/* ---------- design tokens ---------- */
:root {
  /* color */
  --bg: #E8ECF4;             /* 背景: 淡いラベンダーグレー */
  --surface: #EDF0F8;        /* 面: 影で立体を作る */
  --ink: #3E4A66;            /* テキスト主 */
  --ink-soft: #5B6B94;       /* テキスト従（AA確保済み） */
  --accent: #4A6CD4;         /* アクセント: フォーカス・ON状態 */
  --accent-strong: #3D5CBD;  /* アクセント文字用（コントラスト強化） */
  --accent-grad: linear-gradient(135deg, #5B7BE0 0%, #4463C9 100%);
  --danger: #B0334E;

  /* neumorphic shadows */
  --nm-raised: 12px 12px 25px rgba(55, 84, 170, .15), -12px -12px 25px rgba(255, 255, 255, .9);
  --nm-raised-sm: 7px 7px 16px rgba(55, 84, 170, .14), -7px -7px 16px rgba(255, 255, 255, .9);
  --nm-float: 16px 18px 36px rgba(55, 84, 170, .22), -14px -14px 30px rgba(255, 255, 255, .95);
  --nm-inset: inset 6px 6px 14px rgba(55, 84, 170, .14), inset -6px -6px 14px rgba(255, 255, 255, .9);
  --nm-inset-deep: inset 9px 9px 22px rgba(55, 84, 170, .2), inset -8px -8px 18px rgba(255, 255, 255, .85);
  --nm-pressed: inset 5px 5px 12px rgba(55, 84, 170, .2), inset -5px -5px 12px rgba(255, 255, 255, .85);

  /* typography */
  --font-head: "Zen Kaku Gothic New", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  --font-body: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  --font-en: "Inter", "Noto Sans JP", sans-serif;

  /* shape / motion */
  --r-card: 26px;
  --r-pill: 999px;
  --dur-press: 120ms;
  --dur-hover: 220ms;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
/* 空気感: 左上に光・右下にごく淡いブルー */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(900px 620px at 10% -6%, rgba(255, 255, 255, .8), transparent 60%),
    radial-gradient(1100px 800px at 106% 108%, rgba(74, 108, 212, .09), transparent 62%);
}
a { color: inherit; text-decoration: none; }
::selection { background: rgba(74, 108, 212, .22); }

.container { max-width: 1160px; margin-inline: auto; padding-inline: clamp(20px, 4.5vw, 48px); }

/* ---------- focus-visible ---------- */
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

/* ---------- motion（reduce時はこのブロックごと無効） ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; animation: rise .6s var(--ease-out) forwards; animation-delay: var(--d, 0ms); }
  @keyframes rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

  .float { animation: floatY 5.2s ease-in-out infinite alternate; }
  @keyframes floatY { to { transform: translateY(-10px); } }
}

/* ============================================================
   共通ヘッダー（下層ページ）
   ============================================================ */
.site-head { padding: 22px clamp(20px, 4vw, 44px) 0; }
.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand-mark {
  display: grid; place-items: center;
  width: 52px; height: 52px; border-radius: 17px;
  background: var(--surface); box-shadow: var(--nm-raised-sm);
  color: var(--accent-strong);
}
.brand-mark img { width: 26px; height: auto; display: block; }
.brand-name { font-family: var(--font-en); font-weight: 700; font-size: 19px; letter-spacing: .02em; }
.brand-name em { font-style: normal; color: var(--accent-strong); }
.site-head .brand-mark { width: 44px; height: 44px; border-radius: 14px; }
.site-head .brand-mark img { width: 23px; }
.site-head .brand-name { font-size: 14.5px; letter-spacing: .1em; }

/* ============================================================
   TOP（index.html）
   ============================================================ */
.hero { padding: 46px 0 12px; }
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 56px;
  align-items: center;
}
.hero-title {
  margin: 36px 0 0;
  font-size: clamp(40px, 3.2vw + 18px, 62px);
  font-weight: 700; letter-spacing: .05em;
  font-family: var(--font-en); line-height: 1.2;
}
.hero-lead { margin: 18px 0 0; max-width: 34em; font-size: 15.5px; line-height: 2.05; font-family: var(--font-head); }
.badge-list { display: flex; flex-wrap: wrap; gap: 16px; margin: 34px 0 0; padding: 0; list-style: none; }
.badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 22px; border-radius: var(--r-pill);
  box-shadow: var(--nm-inset);
  font-family: var(--font-head); font-weight: 700; font-size: 13.5px; color: var(--ink);
}
.badge-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent-grad); box-shadow: 0 2px 6px rgba(74, 108, 212, .5);
}

/* hero 右の装飾（凸円＋凹リング＋浮遊チップ / 装飾のみ） */
.hero-art { position: relative; height: 420px; }
.orb {
  position: absolute; top: 46px; left: 50%; margin-left: -148px;
  width: 296px; height: 296px; border-radius: 50%;
  background: var(--surface); box-shadow: var(--nm-raised);
}
.orb-ring { position: absolute; inset: 30px; border-radius: 50%; box-shadow: var(--nm-inset); }
.orb-core {
  position: absolute; inset: 34px; border-radius: 50%;
  background: var(--surface); box-shadow: var(--nm-raised-sm);
  display: grid; place-items: center; color: var(--accent-strong);
}
.orb-core img { width: 108px; height: auto; }
.hero-art .chip { position: absolute; background: var(--surface); box-shadow: var(--nm-raised-sm); }
.hero-art .chip-slider { left: -6px; bottom: 40px; width: 182px; height: 44px; border-radius: var(--r-pill); padding: 7px; }
.hero-art .chip-track { position: relative; display: block; height: 100%; border-radius: var(--r-pill); box-shadow: var(--nm-inset); }
.hero-art .chip-fill { position: absolute; left: 4px; top: 4px; bottom: 4px; width: 58%; border-radius: var(--r-pill); background: var(--accent-grad); }
.hero-art .chip-knob {
  position: absolute; top: 50%; left: calc(58% - 8px);
  width: 26px; height: 26px; margin-top: -13px; border-radius: 50%;
  background: #FBFCFE; box-shadow: 3px 3px 8px rgba(55, 84, 170, .3);
}
.hero-art .chip-toggle { right: 16px; top: 16px; width: 66px; height: 38px; border-radius: var(--r-pill); padding: 6px; }
.hero-art .chip-toggle .chip-track { background: var(--accent-grad); box-shadow: inset 3px 3px 8px rgba(38, 58, 128, .35); }
.hero-art .chip-toggle .chip-knob { left: auto; right: 3px; top: 3px; margin-top: 0; width: 20px; height: 20px; }
.hero-art .chip-btn {
  right: 2px; bottom: 108px;
  display: grid; place-items: center;
  width: 60px; height: 60px; border-radius: 50%;
  color: var(--accent-strong);
}
.delay-1 { animation-delay: -1.4s; }
.delay-2 { animation-delay: -2.8s; }

/* ---------- 検索 ---------- */
.search-wrap { display: flex; justify-content: center; margin-top: 44px; }
.search-shell {
  display: flex; align-items: center; gap: 12px;
  width: min(480px, 100%); padding: 0 18px;
  border-radius: 16px;
  background: rgba(228, 233, 244, .7);
  box-shadow: var(--nm-inset);
  color: var(--ink-soft);
  transition: box-shadow var(--dur-hover) var(--ease-out);
}
.search-shell:focus-within { box-shadow: var(--nm-inset-deep); }
.search-shell input[type=text] {
  flex: 1 1 auto; min-width: 0;
  border: 0; outline: none;
  background: transparent; box-shadow: none; border-radius: 0;
  padding: 15px 0; font: inherit; font-size: 15px; color: var(--ink);
}
.search-shell input[type=text]:focus { box-shadow: none; }
.search-shell input::placeholder { color: rgba(91, 107, 148, .6); }
.search-shell input:focus-visible { outline: none; }

/* ---------- カテゴリ・ツール一覧 ---------- */
.cat-sec { margin-top: 74px; }
.sec-head { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; margin-bottom: 42px; }
.sec-title { font-size: 20px; font-weight: 700; letter-spacing: .14em; margin: 0; font-family: var(--font-head); }
.sec-sub { color: var(--ink-soft); font-size: 12.5px; letter-spacing: .06em; margin: 0; }
.sec-rule { width: 64px; height: 8px; border-radius: var(--r-pill); box-shadow: var(--nm-inset); margin-top: 10px; }

.tool-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 42px 38px; padding: 0; margin: 0; list-style: none; }
.tool-card {
  display: flex; flex-direction: column; align-items: center;
  height: 100%; padding: 36px 26px 22px;
  border-radius: var(--r-card); background: var(--surface);
  box-shadow: var(--nm-raised);
  text-align: center; cursor: pointer;
  transition: transform var(--dur-hover) var(--ease-out), box-shadow var(--dur-hover) var(--ease-out);
}
.tool-icon {
  display: grid; place-items: center;
  width: 92px; height: 92px; border-radius: 50%;
  background: var(--surface); box-shadow: var(--nm-raised-sm);
  transition: box-shadow var(--dur-hover) var(--ease-out);
}
.tool-icon-ring {
  display: grid; place-items: center;
  width: 68px; height: 68px; border-radius: 50%;
  box-shadow: var(--nm-inset); color: var(--ink-soft);
  transition: box-shadow var(--dur-hover) var(--ease-out), color var(--dur-hover) var(--ease-out);
}
.tool-icon-ring svg { display: block; }
.tool-name { margin: 18px 0 0; font-size: 16.5px; font-weight: 700; letter-spacing: .04em; font-family: var(--font-head); }
.tool-desc { margin: 9px 0 0; font-size: 12.6px; line-height: 1.95; letter-spacing: .02em; color: var(--ink-soft); }
.tool-open {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: auto; padding-top: 16px;
  font-family: var(--font-head); font-size: 12.5px; font-weight: 700;
  color: var(--accent-strong);
  opacity: 0; transform: translateY(4px);
  transition: opacity var(--dur-hover) var(--ease-out), transform var(--dur-hover) var(--ease-out);
}
.tool-open svg { display: inline-block; vertical-align: middle; }

@media (hover: hover) {
  .tool-card:hover { transform: translateY(-4px); box-shadow: var(--nm-float); }
  .tool-card:hover .tool-icon {
    box-shadow: 7px 7px 16px rgba(55, 84, 170, .14), -7px -7px 16px rgba(255, 255, 255, .9),
      0 12px 26px rgba(74, 108, 212, .22);
  }
  .tool-card:hover .tool-icon-ring {
    color: var(--accent-strong);
    box-shadow: inset 5px 5px 12px rgba(74, 108, 212, .24), inset -5px -5px 12px rgba(255, 255, 255, .95);
  }
  .tool-card:hover .tool-open { opacity: 1; transform: none; }
}
@media (hover: none) { .tool-open { opacity: 1; transform: none; } }

/* click: 影が inset に反転して「沈む」 */
.tool-card:active {
  transform: translateY(-1px) scale(.985);
  box-shadow: var(--nm-pressed);
  transition-duration: var(--dur-press), var(--dur-press);
}
.tool-card:active .tool-icon { box-shadow: var(--nm-inset); transition-duration: var(--dur-press); }

.noresult { display: none; text-align: center; color: var(--ink-soft); font-size: 15px; margin-top: 60px; line-height: 1.9; }

/* ---------- トップのフッター ---------- */
.site-footer { padding: 90px 0 48px; overflow: hidden; }
.footer-card {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 44px 36px 40px; border-radius: 28px;
  box-shadow: var(--nm-inset); text-align: center;
}
.footer-icon {
  display: grid; place-items: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--surface); box-shadow: var(--nm-raised-sm);
  color: var(--accent-strong); margin-bottom: 6px;
}
.footer-note { font-size: 13.5px; color: var(--ink-soft); max-width: 46em; margin: 0; }
.footer-strong { font-family: var(--font-head); font-weight: 700; font-size: 15.5px; margin: 0; }
.footer-copy {
  margin: 34px 0 0; text-align: center;
  font-family: var(--font-en); font-weight: 600; font-size: 12px;
  letter-spacing: .18em; color: var(--ink-soft);
}

/* 会社情報 */
.company { margin-top: 72px; text-align: center; }
.fcompany { font-family: var(--font-head); font-size: 23px; font-weight: 700; letter-spacing: .08em; margin: 0; }
.fcorp { margin-top: 20px; font-size: 13.5px; color: var(--accent-strong); }
.fcorp img { width: 20px; height: auto; }
.fcorp svg { display: inline-block; }
.offices { display: flex; justify-content: center; align-items: stretch; gap: 34px; flex-wrap: wrap; margin-top: 44px; text-align: left; }
.office { flex: 1 1 300px; max-width: 430px; padding: 26px 28px 24px; border-radius: 22px; background: var(--surface); box-shadow: var(--nm-raised); }
.office .otag {
  display: inline-block; padding: 5px 18px; border-radius: var(--r-pill);
  box-shadow: var(--nm-inset);
  font-family: var(--font-head); font-weight: 700; font-size: 13px; color: var(--ink);
}
.office .addr { margin-top: 14px; font-size: 13.5px; line-height: 1.9; letter-spacing: .02em; }
.office .map {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 12px;
  font-size: 12.5px; font-weight: 600; color: var(--accent-strong);
}
.office .map svg { display: inline-block; }

/* ウォーターマーク（スクロールでふわっと） */
.wm {
  font-family: var(--font-en); font-weight: 700;
  font-size: clamp(64px, 11.5vw, 158px);
  letter-spacing: -.01em; line-height: .78; white-space: nowrap;
  text-align: center; user-select: none; pointer-events: none;
  margin: 56px 0 0; color: #dde3f0;
}
@supports ((-webkit-text-stroke: 1px #ddd) or (text-stroke: 1px #ddd)) {
  .wm { color: transparent; -webkit-text-stroke: 1px #c9d2e6; }
}
.fade { opacity: 0; transform: translateY(18px); transition: opacity .8s ease, transform .8s ease; }
.fade.show { opacity: 1; transform: none; }

/* ============================================================
   下層ページ共通アダプタ（各ツールページの既存クラスを再着色）
   ※各ページの <style> の後に読み込むこと
   ============================================================ */

/* 見出し・ナビ */
.wrap h1 { font-family: var(--font-head); font-weight: 700; letter-spacing: .04em; color: var(--ink); }
.nav { color: var(--ink-soft); }
.nav a { color: var(--accent-strong); font-weight: 600; }
.sub { color: var(--ink-soft); }

/* カード（凸面） */
.card { background: var(--surface); border: 0; border-radius: 22px; box-shadow: var(--nm-raised); }
.card .title { font-family: var(--font-head); font-weight: 700; color: var(--ink); }

/* 入力（凹面） */
textarea, select,
input[type=text], input[type=number], input[type=date], input[type=datetime-local] {
  background: rgba(228, 233, 244, .7);
  border: 0; border-radius: 14px;
  box-shadow: var(--nm-inset);
  color: var(--ink);
}
textarea:focus, select:focus,
input[type=text]:focus, input[type=number]:focus, input[type=date]:focus, input[type=datetime-local]:focus {
  outline: none;
  box-shadow: var(--nm-inset-deep);
  border: 0;
}
textarea:focus-visible, select:focus-visible,
input[type=text]:focus-visible, input[type=number]:focus-visible,
input[type=date]:focus-visible, input[type=datetime-local]:focus-visible { outline: none; }
textarea::placeholder, input::placeholder { color: rgba(91, 107, 148, .6); }
input[type=color] { border: 0; border-radius: 10px; background: var(--surface); box-shadow: var(--nm-raised-sm); }
input[type=range] { accent-color: var(--accent); background: transparent; border: 0; box-shadow: none; }
label.fld, .fld, .label { color: var(--ink-soft); }

/* 主ボタン（アクセント凸ピル） */
.btn {
  background: var(--accent-grad); color: #fff;
  border: 0; border-radius: var(--r-pill);
  font-family: var(--font-head); font-weight: 700; letter-spacing: .04em;
  box-shadow: 8px 8px 20px rgba(74, 108, 212, .35), -7px -7px 16px rgba(255, 255, 255, .85);
  transition: transform var(--dur-hover) var(--ease-out), box-shadow var(--dur-hover) var(--ease-out), filter var(--dur-hover) var(--ease-out);
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn:active {
  transform: none; filter: none;
  box-shadow: inset 5px 5px 12px rgba(30, 48, 110, .45), inset -4px -4px 10px rgba(140, 166, 240, .5);
  transition-duration: var(--dur-press), var(--dur-press), var(--dur-press);
}
.btn:disabled {
  background: #bcc6e2; color: #fff; cursor: default;
  box-shadow: var(--nm-raised-sm); transform: none; filter: none;
}
.btn.dark {
  background: linear-gradient(135deg, #58658c 0%, #3E4A66 100%);
  box-shadow: 8px 8px 20px rgba(62, 74, 102, .3), -7px -7px 16px rgba(255, 255, 255, .85);
}

/* 副ボタン（凸ピル小） */
.mini {
  background: var(--surface); border: 0; border-radius: var(--r-pill);
  box-shadow: var(--nm-raised-sm); color: var(--ink);
  transition: color var(--dur-hover) var(--ease-out), transform var(--dur-hover) var(--ease-out), box-shadow var(--dur-hover) var(--ease-out);
}
.mini:hover { color: var(--accent-strong); transform: translateY(-1px); background: var(--surface); }
.mini:active { box-shadow: var(--nm-pressed); transform: none; }
.mini.on, .mini.blue { background: var(--accent-grad); color: #fff; box-shadow: 6px 6px 14px rgba(74, 108, 212, .35), -5px -5px 12px rgba(255, 255, 255, .8); }

/* タブ切替（凹トラック＋凸ピル） */
.seg { background: rgba(224, 229, 241, .55); border: 0; border-radius: var(--r-pill); box-shadow: var(--nm-inset); padding: 5px; }
.seg button { border-radius: var(--r-pill); color: var(--ink-soft); font-family: var(--font-head); background: transparent; border: 0; }
.seg button.on { background: var(--surface); color: var(--ink); font-weight: 700; box-shadow: var(--nm-raised-sm); }

/* ドロップゾーン（大きな凹面） */
.dropzone {
  background: transparent;
  border: 2px dashed rgba(91, 107, 148, .4);
  border-radius: 24px;
  box-shadow: var(--nm-inset);
  transition: box-shadow var(--dur-hover) var(--ease-out), border-color var(--dur-hover) var(--ease-out), background var(--dur-hover) var(--ease-out);
}
.dropzone:hover, .dropzone.on {
  border-color: var(--accent);
  box-shadow: var(--nm-inset-deep);
  background: rgba(74, 108, 212, .05);
}
.dropzone .t { color: var(--ink); font-weight: 600; }
.dropzone .s { color: var(--ink-soft); }

/* ファイル行（凸バー） */
.filerow { background: var(--surface); border: 0; border-radius: 18px; box-shadow: var(--nm-raised-sm); }
.filerow .meta, .filerow .mt { color: var(--ink-soft); }
.save {
  background: var(--surface); border: 0; border-radius: var(--r-pill);
  box-shadow: var(--nm-raised-sm); color: var(--accent-strong); font-weight: 600;
  transition: transform var(--dur-hover) var(--ease-out), box-shadow var(--dur-hover) var(--ease-out);
}
.save:hover { transform: translateY(-1px); }
.save:active { box-shadow: var(--nm-pressed); transform: none; }
.x { background: var(--surface); border: 0; box-shadow: var(--nm-raised-sm); color: var(--ink-soft); border-radius: 50%; }
.x:hover { color: var(--danger); }
.x:active { box-shadow: var(--nm-pressed); }

/* バッジ・結果・通知 */
.tag { border: 0; border-radius: var(--r-pill); box-shadow: var(--nm-inset); background: transparent; color: var(--ink-soft); }
.tag.bad { color: var(--danger); }
.note, .info, .est, .summary, .statusline { color: var(--ink-soft); }
.err { background: rgba(176, 51, 78, .08); border: 0; border-radius: 14px; color: var(--danger); }
.res { background: transparent; border: 0; border-radius: 16px; box-shadow: var(--nm-inset); }
.res b { color: var(--accent-strong); }
.stat { background: var(--surface); border: 0; border-radius: 16px; box-shadow: var(--nm-raised-sm); }
.stat .v { color: var(--accent-strong); font-family: var(--font-en); }

/* 各ページ固有の面 */
.pane, .result, .tblwrap, .pvbox, .cell, .canvasbox { background: var(--surface); border: 0; box-shadow: var(--nm-raised); border-radius: 20px; }
.cell { box-shadow: var(--nm-raised-sm); border-radius: 16px; }
.canvasbox { border-radius: 18px; }
pre.preview { background: rgba(228, 233, 244, .55); border: 0; box-shadow: var(--nm-inset); border-radius: 14px; }
th { background: #e4e9f4; color: var(--ink); }
.prog { background: rgba(224, 229, 241, .7); border: 0; border-radius: var(--r-pill); box-shadow: var(--nm-inset); }
.sw { border: 0; box-shadow: var(--nm-raised-sm); }
.sw.on { outline: 3px solid var(--accent); outline-offset: 2px; }

/* 下層フッター */
.foot { color: var(--ink-soft); }
.back-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 24px; border-radius: var(--r-pill);
  background: var(--surface); box-shadow: var(--nm-raised-sm);
  font-family: var(--font-head); font-weight: 600; font-size: 13.5px; color: var(--ink);
  transition: transform var(--dur-hover) var(--ease-out), box-shadow var(--dur-hover) var(--ease-out);
}
.back-pill:hover { transform: translateY(-2px); box-shadow: var(--nm-float); }
.back-pill:active { transform: none; box-shadow: var(--nm-pressed); transition-duration: var(--dur-press), var(--dur-press); }
.foot-logo { width: 36px; height: auto; margin-top: 26px; }
.foot-link { color: var(--accent-strong); font-weight: 600; font-size: 12.5px; }

/* ============================================================
   responsive
   ============================================================ */
@media (max-width: 1024px) {
  .tool-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 28px; }
  .hero-inner { grid-template-columns: minmax(0, 1fr) 320px; gap: 36px; }
  .hero-art { height: 360px; }
  .orb { width: 250px; height: 250px; margin-left: -125px; }
  .orb-core img { width: 92px; }
}
@media (max-width: 880px) {
  .hero { padding-top: 36px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { display: none; }
}
@media (max-width: 600px) {
  .tool-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-title { font-size: clamp(34px, 9vw, 44px); }
  .cat-sec { margin-top: 60px; }
  .offices { gap: 22px; }
}

/* ============================================================
   prefers-reduced-motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .tool-card:hover, .back-pill:hover, .btn:hover, .mini:hover, .save:hover { transform: none; }
}
