/* ChoRd. v5 — Editorial / publishing feel (B)
   - White base, typographic hierarchy, rules, section numbering
   - Subtle grid texture as "paper structure"
   - Minimal accent (warm ink) and minimal motion
*/
:root{
  --bg:#F7F7F6;
  --paper:#F7F7F6;
  --ink:#0B0C10;
  --ink2:#171A22;
  --muted:#565D6E;
  --link:#0B3D91;

  /* "black ink"寄りの規格票感（線は強く、ただし本文の可読性は維持） */
  --line:rgba(11,12,16,.22);
  --line2:rgba(11,12,16,.14);

  --accent:var(--team);          /* warm editorial ink */
  --accentSoft:rgba(var(--team-rgb),.08);

  --shadow:0 18px 48px rgba(11,12,16,.10);
  --shadowSoft:0 10px 22px rgba(11,12,16,.06);
  --r:14px;
  --r2:18px;
  --wrap:1180px;

  --team:#e0a800;
  --team-rgb:224,168,0;
  --teamLine:rgba(var(--team-rgb),.35);
  --teamTint:rgba(var(--team-rgb),.12);}

*{box-sizing:border-box}
html{scroll-behavior:smooth; scroll-padding-top:92px}
body{
  margin:0;
  font-family:"IBM Plex Sans JP",system-ui,-apple-system,"Segoe UI",Roboto,"Hiragino Kaku Gothic ProN","Yu Gothic",sans-serif;
  color:var(--ink);
  background:
    url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='260'%20height='260'%3E%0A%20%20%3Cfilter%20id='n'%3E%0A%20%20%20%20%3CfeTurbulence%20type='fractalNoise'%20baseFrequency='0.75'%20numOctaves='3'%20stitchTiles='stitch'/%3E%0A%20%20%3C/filter%3E%0A%20%20%3Crect%20width='260'%20height='260'%20filter='url(%23n)'%20opacity='0.08'/%3E%0A%3C/svg%3E"),
    radial-gradient(980px 520px at 14% -8%, rgba(var(--team-rgb),.06), transparent 60%),
    radial-gradient(980px 520px at 88% -8%, rgba(0,0,0,.04), transparent 66%),
    linear-gradient(180deg, var(--bg) 0%, var(--paper) 40%, var(--paper) 100%);
  background-repeat: repeat, no-repeat, no-repeat, no-repeat;
  background-size: 320px 320px, auto, auto, auto;
  background-blend-mode: multiply, normal, normal, normal;
}

body:before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-3;
  opacity:.22;
  background-image:
    radial-gradient(1200px 800px at 12% 0%, rgba(var(--team-rgb),.06), transparent 60%),
    radial-gradient(1100px 720px at 88% -10%, rgba(0,0,0,.04), transparent 66%),
    repeating-linear-gradient(0deg, rgba(11,12,16,.028) 0 1px, transparent 1px 6px),
    repeating-linear-gradient(90deg, rgba(11,12,16,.022) 0 1px, transparent 1px 10px);
  background-size: auto, auto, 100% 100%, 100% 100%;
  background-position: 0 0, 0 0, 0 0, 0 0;
  animation: drift 70s linear infinite;
  mix-blend-mode:multiply;
}
@keyframes drift{
  0%{ background-position: 0 0, 0 0, 0 0, 0 0; }
  100%{ background-position: 120px 60px, -160px 80px, 0 0, 0 0; }
}

a{color:inherit;text-decoration:none}
a:hover{text-decoration:underline}
.wrap{width:min(var(--wrap), calc(100% - 44px)); margin-inline:auto}

.skip{position:absolute; left:-9999px; top:12px; background:#fff; border:1px solid var(--line); padding:10px 12px; border-radius:12px; z-index:9999}
.skip:focus{left:12px}

.mono{
  font-family:"Rajdhani","IBM Plex Sans JP",system-ui,sans-serif;
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--muted);
}

.header{
  position:fixed; top:0; left:0; right:0; z-index:100;
  background:rgba(247,247,244,.82);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line2);
}
.header__inner{display:flex; align-items:center; justify-content:flex-start; gap:14px; padding:12px 0}
.brand{display:flex; align-items:center; gap:10px; min-width:160px}
.brand__mark{width:70px; height:70px; display:block}
.brand__name{font-weight:700; letter-spacing:.02em}

.nav{display:flex; gap:14px; color:var(--ink2); font-size:13px; letter-spacing:.08em; margin-left:auto}

.header__meta{
  display:flex;
  gap:8px;
  align-items:center;
  font-size:11px;
  letter-spacing:.16em;
  opacity:.95;
  white-space:nowrap;
  margin-left:8px;
}

/* Doc / system identifiers (stronger “management number” feel) */
.docTag{
  display:inline-flex;
  align-items:baseline;
  gap:6px;
  padding:6px 10px;
  border:1px solid rgba(11,12,16,.18);
  background:rgba(255,255,255,.74);
  border-radius:999px;
  box-shadow:0 1px 0 rgba(11,12,16,.06);
  -webkit-backdrop-filter:blur(6px) saturate(120%);
  backdrop-filter:blur(6px) saturate(120%);
}
.docTag .docLabel{
  font-size:10px;
  letter-spacing:.22em;
  text-transform:uppercase;
  opacity:.70;
}
.docTag .docValue{
  font-size:12px;
  letter-spacing:.12em;
  font-weight:700;
}

.docTag--code{
  border-color:rgba(11,12,16,.32);
  background:rgba(255,255,255,.90);
}
.docTag--code .docValue{letter-spacing:.16em}
.docTag--code::after{
  content:"";
  width:30px;
  height:8px;
  margin-left:8px;
  border-radius:2px;
  background:repeating-linear-gradient(90deg, rgba(11,12,16,.38) 0 1px, transparent 1px 3px);
  opacity:.35;
  transform:translateY(-1px);
}

.docTag--ghost{
  background:rgba(255,255,255,.40);
  border-color:rgba(11,12,16,.18);
  box-shadow:none;
}
.docTag--ghost::after{opacity:.28}

@media (max-width: 760px){
  .header__meta{display:flex; gap:6px; opacity:.92; transform:scale(.95); transform-origin:left center}
  .docTag{padding:5px 8px}
  .docTag .docValue{font-size:11px}
  .docTag .docLabel{font-size:9px}
}
.nav a{
  padding:10px 10px;
  border-radius:999px;
  border:1px solid transparent;
}
.nav a:hover{
  background:rgba(11,12,16,.04);
  text-decoration:none;
  border-color:rgba(11,12,16,.06);
}

.header__cta{display:flex; gap:10px; align-items:center}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  font-weight:700; font-size:14px; line-height:1;
  text-decoration:none!important;
  transition:transform .14s ease, box-shadow .14s ease, background .14s ease, border-color .14s ease;
  user-select:none;
}
.btn:hover{transform:translateY(-1px); box-shadow:0 14px 26px rgba(11,12,16,.12)}
.btn:active{transform:translateY(0); box-shadow:none}

/* Larger CTA (used in Contact) */
.btn--xl{
  padding:14px 18px;
  font-size:15px;
}

/* Focus visibility (accessibility; spec-sheet style) */
a:focus-visible,
button:focus-visible,
summary:focus-visible{
  outline:2px solid rgba(var(--team-rgb),.40);
  outline-offset:2px;
}
.btn:focus-visible{
  outline:2px solid rgba(var(--team-rgb),.44);
  outline-offset:3px;
}

.btn--primary{
  background:var(--ink);
  color:#fff;
  border-color:rgba(0,0,0,.22);
}
.btn--outline{background:rgba(255,255,255,.80)}
.btn--ghost{background:rgba(255,255,255,.60)}

.menu{
  display:none;
  width:46px; height:46px;
  border:1px solid rgba(11,12,16,.16);
  border-radius:999px;
  background:rgba(255,255,255,.72);
}
.menu span{display:block; width:18px; height:2px; background:var(--ink); margin:4px auto; border-radius:2px; opacity:.86}

.rule{height:1px; background:rgba(11,12,16,.18); flex:1}

/* HERO */
.hero{
  /* Tighten vertical rhythm to reduce unnecessary scroll */
  padding:54px 0 32px;
  border-bottom:1px solid var(--line2);
  position:relative;
}
.hero:before{
  content:"";
  position:absolute; inset:0;
  background-image:
    linear-gradient(to right, rgba(11,12,16,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(11,12,16,.05) 1px, transparent 1px);
  background-size:72px 72px;
  opacity:.10;
  pointer-events:none;
  mask-image:radial-gradient(720px 520px at 50% 16%, #000 36%, transparent 78%);
}
.hero__grid{display:grid; grid-template-columns:1.05fr .95fr; gap:28px; align-items:start; position:relative}

/* HERO kinetic scroll stage (JS only) ------------------------------------ */
.hero__stage{position:relative}
html.has-kinetic .hero__stage{min-height:auto}
html.has-kinetic .hero__grid{position:relative; top:auto}


/* --- Spec plate (POP-AID / 規格票・製品ラベルの文脈) ---------------------- */
.specPlate{
  position:relative;
  margin:10px 0 18px;
  padding:12px 14px 12px;
  border:1px solid rgba(11,12,16,.30);
  border-radius:16px;
  background:rgba(255,255,255,.78);
  box-shadow:0 18px 54px rgba(0,0,0,.06);
  overflow:hidden;
}
.specPlate:before{
  content:"";
  position:absolute; inset:10px;
  border:1px solid rgba(11,12,16,.10);
  border-radius:12px;
  pointer-events:none;
}
.specPlate:after{
  content:"";
  position:absolute; left:10px; top:10px;
  width:14px; height:14px;
  border-left:2px solid rgba(11,12,16,.55);
  border-top:2px solid rgba(11,12,16,.55);
  opacity:.22;
  pointer-events:none;
}
.specPlate__grid{
  position:absolute; inset:0;
  background:
    linear-gradient(0deg, rgba(11,12,16,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,12,16,.06) 1px, transparent 1px),
    repeating-linear-gradient(135deg, rgba(11,12,16,.10) 0 1px, transparent 1px 9px);
  background-size:72px 72px, 72px 72px, auto;
  opacity:.35;
  mix-blend-mode:multiply;
  pointer-events:none;
  mask-image:radial-gradient(520px 240px at 70% 0%, #000 20%, transparent 78%);
}
.specPlate__row{position:relative; z-index:1; display:flex; flex-wrap:wrap; align-items:baseline; gap:8px 12px}
.specPlate__row--minor{margin-top:6px; font-size:11px; color:rgba(11,12,16,.72)}
.specPlate__k{font-size:10px; letter-spacing:.18em; color:rgba(11,12,16,.62)}
.specPlate__v{font-weight:700; letter-spacing:.08em; color:rgba(11,12,16,.92)}
.specPlate__sp{flex:1 1 80px; border-bottom:1px dashed rgba(11,12,16,.22); transform:translateY(-2px)}
.specPlate__barcode{
  position:relative; z-index:1;
  margin-top:10px;
  height:10px;
  border-radius:10px;
  border:1px solid rgba(11,12,16,.14);
  background:
    repeating-linear-gradient(90deg,
      rgba(11,12,16,.85) 0 2px,
      transparent 2px 4px,
      rgba(11,12,16,.55) 4px 5px,
      transparent 5px 8px);
  opacity:.55;
}

/* Spec plate as a rotated rail in the hero background (flavor, not navigation). */
.specPlate--rail{
  position:absolute;
  left:clamp(-360px,-18vw,-220px);
  top:clamp(92px,10vw,150px);
  width:min(760px,88vh);
  transform:rotate(-90deg);
  transform-origin:left top;
  margin:0;
  padding:10px 0;
  border:none;
  border-radius:0;
  background:transparent;
  box-shadow:none;
  overflow:visible;
  opacity:.70;
  pointer-events:none;
  z-index:0;
  mix-blend-mode:multiply;
}
.specPlate--rail:before,
.specPlate--rail:after{display:none;}
.specPlate--rail .specPlate__grid{
  opacity:.18;
  mask-image:linear-gradient(90deg,#000 12%, transparent 86%);
}
.specPlate--rail .specPlate__row{padding:0 14px;}
.specPlate--rail .specPlate__barcode{
  margin:8px 14px 0;
  border-radius:0;
  height:8px;
  opacity:.70;
}

@media (max-width: 920px){
  .specPlate--rail{display:none;}
}

.hero__title{
  margin:0 0 12px;
  font-family:"Zen Kaku Gothic New","IBM Plex Sans JP",system-ui,sans-serif;
  font-weight:700;
  font-size:clamp(34px,4.0vw,54px);
  line-height:1.18;
  letter-spacing:-.01em;
}
.hero__em{
  position:relative;
}
.hero__em:after{
  content:"";
  position:absolute; left:0; right:0; bottom:-6px;
  height:10px;
  background:linear-gradient(90deg, var(--accentSoft), rgba(11,12,16,.05));
  border-radius:999px;
  z-index:-1;
}

.hero__lead{
  margin:0 0 18px;
  color:var(--ink2);
  line-height:1.85;
  max-width:58ch;
}
.hero__actions{display:flex; gap:12px; flex-wrap:wrap; margin:10px 0 18px}


.hero__brand{
  width:min(560px, 92%);
  height:auto;
  display:block;
  margin:14px 0 10px;
}
.hero__desc{
  margin:0 0 18px;
  color:var(--ink2);
  line-height:1.55;
  max-width:60ch;
}

.hero__meta{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  padding-top:18px;
  border-top:1px solid var(--line2);
}
.meta{
  border:1px solid var(--line2);
  background:rgba(255,255,255,.70);
  border-radius:14px;
  padding:14px;
}
.meta__k{margin-bottom:6px}
.meta__v{color:var(--ink2); font-size:14px; line-height:1.75; font-weight:500}


/* HERO diagonal kinetic (no window/card) -------------------------------- */
.hero__kineticCol{
  position:relative;
  min-height:clamp(240px, 24vw, 360px);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:visible;
}
.hero__kineticDiag{
  position:relative;
  width:min(560px, 100%);
  height:clamp(260px, 26vw, 380px);
  pointer-events:none;
}
.kdiag{
  position:absolute;
  left:50%;
  top:52%;
  transform-origin:left center;
  font-family:"IBM Plex Sans JP",system-ui,sans-serif;
  font-weight:700;
  letter-spacing:.01em;
  color:rgba(11,12,16,.60);
  font-size:clamp(18px,2.35vw,40px);
  line-height:1.02;
  white-space:nowrap;
  --bx:-170px;
  --by:0px;
  --tx:0px;
  --ty:0px;
  opacity:1;
  transform: translate(calc(var(--bx) + var(--tx)), calc(var(--by) + var(--ty))) rotate(-28deg);
  will-change: transform, opacity;
}
/* Vertical stacking offsets */
.kdiag[data-i="0"]{--by:-150px}
.kdiag[data-i="1"]{--by:-102px}
.kdiag[data-i="2"]{--by:-54px}
.kdiag[data-i="3"]{--by:-6px}
.kdiag[data-i="4"]{--by:42px}
.kdiag[data-i="5"]{--by:90px}

/* Progressive enhancement: JS enables kinetic mode */
html.has-kinetic .kdiag{
  opacity:0;
  --tx:-96px;
  --ty:96px;
  transition:
    transform 620ms cubic-bezier(.2,.8,.2,1),
    opacity 420ms cubic-bezier(.2,.8,.2,1);
}
html.has-kinetic .kdiag.is-in{
  opacity:1;
  --tx:0px;
  --ty:0px;
}
html.has-kinetic .kdiag.is-out{
  opacity:0;
  --tx:132px;
  --ty:-132px;
}

@media (prefers-reduced-motion: reduce){
  html.has-kinetic .hero__stage{min-height:auto}
  html.has-kinetic .hero__grid{position:static}
  html.has-kinetic .kdiag{opacity:1 !important; --tx:0px !important; --ty:0px !important; transform: translate(calc(var(--bx) + 0px), calc(var(--by) + 0px)) rotate(-28deg) !important}
}
/* Plate (editorial cover) */
.hero__plate{
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.18);
  background:rgba(255,255,255,.82);
  box-shadow:var(--shadow);
  /* Keep the plate substantial, but avoid empty “dead air” at the bottom */
  min-height:clamp(220px, 22vw, 300px);
  position:relative;
}
.plate{position:absolute; inset:0}
.plate__grid{
  position:absolute; inset:-2px;
  background-image:
    linear-gradient(to right, rgba(11,12,16,.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(11,12,16,.08) 1px, transparent 1px);
  background-size:56px 56px;
  opacity:.16;
}
.plate__frame{
  position:absolute; inset:18px;
  border:1px solid rgba(11,12,16,.18);
  border-radius:18px;
}
.plate__big{
  position:absolute;
  left:28px; right:28px; top:30px;
  display:grid;
  grid-template-columns:1fr;
  row-gap:8px;
  font-family:"IBM Plex Sans JP",system-ui,sans-serif;
  font-weight:700;
  letter-spacing:.01em;
  color:rgba(11,12,16,.86);
}
.plate__bigLine{
  /* Conservative sizing so long labels never spill outside the card */
  font-size:clamp(14px,1.55vw,22px);
  line-height:1.02;
  padding-bottom:4px;
  border-bottom:1px solid rgba(11,12,16,.14);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* Kinetic list (replaces the static window labels in HERO) */
.plate__kinetic{
  position:absolute;
  left:28px; right:28px; top:30px; bottom:24px;
  display:flex;
  flex-direction:column;
  gap:10px;
  pointer-events:none;
}
.plate__kinetic .kitem{
  font-family:"IBM Plex Sans JP",system-ui,sans-serif;
  font-weight:700;
  letter-spacing:.01em;
  color:rgba(11,12,16,.86);
  font-size:clamp(14px,1.55vw,22px);
  line-height:1.02;
  padding-bottom:4px;
  border-bottom:1px solid rgba(11,12,16,.14);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  opacity:1;
  transform:none;
  will-change:transform,opacity;
}
.plate__kinetic .kitem:last-child{border-bottom-color:transparent}

/* Progressive enhancement: only hide/animate when JS enables kinetic mode */
html.has-kinetic .plate__kinetic .kitem{
  opacity:0;
  transform:translateY(16px);
}

@media (prefers-reduced-motion: reduce){
  html.has-kinetic .hero__stage{min-height:auto}
  html.has-kinetic .hero__grid{position:static}
  html.has-kinetic .plate__kinetic .kitem{opacity:1 !important; transform:none !important}
}
.plate__side{
  position:absolute;
  right:16px;
  top:18px;
  writing-mode:vertical-rl;
  text-orientation:mixed;
  color:rgba(11,12,16,.42);
}
.plate__stamp{
  position:absolute;
  left:24px;
  bottom:24px;
  width:120px;
  border:1px solid rgba(11,12,16,.16);
  border-radius:18px;
  background:rgba(255,255,255,.70);
  padding:12px 12px 10px;
  box-shadow:none;
}
.stamp__mid{
  font-family:"Zen Kaku Gothic New","IBM Plex Sans JP",system-ui,sans-serif;
  font-weight:700;
  font-size:34px;
  margin:6px 0;
  color:var(--ink);
}

/* Sections */
.section{padding:86px 0}
/* First section on standalone pages (e.g. privacy) needs extra top space
   because the header is fixed and slightly taller than the default section padding. */
.section--pageTop{padding-top:116px}
.section--tint{
  background:
    radial-gradient(980px 520px at 12% 0%, rgba(var(--team-rgb),.05), transparent 62%),
    linear-gradient(180deg, rgba(11,12,16,.02) 0%, rgba(11,12,16,.00) 100%);
}
.section--contact{padding:90px 0}

.sectionHead{
  display:grid;
  grid-template-columns:64px auto;
  grid-template-rows:auto auto;
  column-gap:18px;
  row-gap:8px;
  align-items:baseline;
  margin-bottom:20px;
}
.sectionHead__no{
  grid-row:1 / span 2;
  font-size:12px;
  color:rgba(11,12,16,.58);
  border:1px solid rgba(11,12,16,.20);
  background:rgba(255,255,255,.72);
  width:46px; height:46px;
  border-radius:999px;
  display:flex; align-items:center; justify-content:center;
}
.h2{
  margin:0;
  font-family:"IBM Plex Sans JP",system-ui,sans-serif;
  font-size:28px;
  letter-spacing:.10em;
  text-transform:uppercase;
}
.sub{margin:0; color:var(--ink2); line-height:1.85; max-width:80ch}
.h3{
  margin:0 0 10px;
  font-family:"Zen Kaku Gothic New","IBM Plex Sans JP",system-ui,sans-serif;
  font-weight:700;
  font-size:18px;
  letter-spacing:.01em;
}
.lede{margin:0 0 12px; color:var(--ink2); line-height:1.85; max-width:70ch}
.muted{color:var(--muted)}
.fine{margin:16px 0 0; color:var(--muted); font-size:12px; line-height:1.85}

/* Tabs (editorial layout: left nav, right content) */
.tabs{
  border-radius:var(--r2);
  border:1px solid rgba(0,0,0,.18);
  background:rgba(255,255,255,.82);
  box-shadow:none;
  overflow:hidden;
}
.tabs.editorial{
  display:grid;
  grid-template-columns:320px 1fr;
}

/* Right side panel padding (avoid cramped typography against the panel edge) */
.tabs.editorial .tabs__panes{
  padding:20px 24px 22px;
}
.tabs__nav{
  padding:18px 16px;
  border-right:1px solid rgba(0,0,0,.12);
  background:rgba(247,247,244,.74);
  display:flex;
  flex-direction:column;
  gap:8px;
}
.tab{
  appearance:none;
  border:none;
  background:transparent;
  color:var(--ink2);
  padding:12px 10px;
  border-radius:14px;
  cursor:pointer;
  text-align:left;
  font-weight:700;
  font-size:14px;
  letter-spacing:.02em;
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:10px;
  border:1px solid transparent;
}
.tab__note{font-size:11px; color:rgba(11,12,16,.48)}
.tab:hover{
  background:rgba(11,12,16,.03);
  border-color:rgba(11,12,16,.06);
}
.tab.is-active{
  background:rgba(var(--team-rgb),.08);
  border-color:rgba(var(--team-rgb),.22);
  color:var(--ink);
}


/* Genre tabs (minimal, label-focused)
   Purpose: communicate only the active genres.
   Remove numeric badges / capability matrix to avoid a "toy" impression.
*/
.tabsMatrix{
  display:flex;
  flex-direction:column;
  border-top:1px solid var(--line);
}

/* Legacy / optional elements (hidden) */
.tabsMatrix__head,
.tabsMatrix__legend,
.tabRow__meta,
.tabRow__cell{
  display:none !important;
}

.tabRow{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 14px 14px 16px;
  background:transparent;
  border:0;
  border-bottom:1px solid var(--line);
  cursor:pointer;
  text-align:left;
  position:relative;
}

.tabRow::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:3px;
  background:transparent;
}

.tabRow:hover{
  background:rgba(0,0,0,0.018);
}

.tabRow.is-active{
  background:linear-gradient(90deg, rgba(224,168,0,0.16), rgba(224,168,0,0.04) 56%, rgba(0,0,0,0));
}

.tabRow.is-active::before{
  background:var(--accent);
}
/* P1 (v30): Service left column as a "spec-table selection" */
.tabs.editorial .tabs__nav.tabsMatrix{
  gap:0;                /* continuity */
  padding:12px 0;       /* table edge-to-edge */
}
.tabs.editorial .tabsMatrix{
  border-bottom:1px solid var(--line);
}
.tabs.editorial .tabRow{
  border-radius:0;      /* de-cardify */
}
.tabs.editorial .tabRow:last-child{
  border-bottom:0;      /* avoid double line with container */
}

/* right-edge marker (no legend needed) */
.tabs.editorial .tabRow::after{
  content:"";
  width:10px; height:10px;
  border:1px solid rgba(0,0,0,.22);
  background:transparent;
  flex:0 0 auto;
  margin-left:12px;
  transform:translateY(1px);
}
.tabs.editorial .tabRow.is-active::after{
  border-color:rgba(var(--team-rgb),.55);
  background:rgba(var(--team-rgb),.85);
}

/* focus as an in-panel spec highlight */
.tabs.editorial .tabRow:focus-visible{
  outline:2px solid rgba(var(--team-rgb),.40);
  outline-offset:-2px;
  background:rgba(var(--team-rgb),.06);
}


.tabRow__name{
  display:flex;
  flex-direction:column;
  gap:4px;
  min-width:0;
}

.tabRow__title{
  font-weight:700;
  letter-spacing:0.01em;
  color:var(--ink);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.tabRow__sub{
  font-size:12px;
  color:var(--muted);
  letter-spacing:0.08em;
  text-transform:uppercase;
}

/*
  Tabs panels
  - Without JS, panels remain visible (fallback)
  - With JS enabled, script.js adds `html.has-tabs` and we switch panels
*/
html.has-tabs .pane{display:none}
html.has-tabs .pane.is-active{display:block}

@media (max-width: 680px){
  .tabRow{ padding:12px 12px 12px 14px; }
  .tabRow__title{ font-size:14px; }
}
@media (max-width: 980px){
  .nav{display:none}
  .menuBtn{display:inline-flex}
  .hero__grid{grid-template-columns:1fr;gap:24px}
  .hero__left{padding-right:0}
  .serviceCard{grid-template-columns:1fr}
  .serviceCard__left{border-right:none;border-bottom:1px solid var(--line);padding-bottom:14px;margin-bottom:14px}
  .serviceCard__genre{min-height:auto}
  .serviceCard__head{grid-template-columns:1fr auto auto;gap:10px}
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .tabIndicator:before{transition:none}

  html{scroll-behavior:auto}
  body:before{animation:none}
  .btn{transition:none}
  .btn:hover{transform:none; box-shadow:none}
  .reveal{transition:none}
}


/* Mobile menu */
.mobile{
  position:fixed; inset:64px 0 auto 0;
  background:rgba(247,247,244,.96);
  border-bottom:1px solid var(--line2);
  display:none; z-index:99;
}
.mobile .wrap{display:flex; flex-direction:column; gap:6px; padding:12px 0 16px}
.mobile a{padding:12px 10px; border-radius:999px; color:var(--ink2); letter-spacing:.08em}
.mobile a:hover{background:rgba(11,12,16,.04); text-decoration:none}

/* Hero service shortcuts (RR4/decals) */
.hero__tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}
.tagchip{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(11,12,16,.18);
  background:rgba(255,255,255,.74);
  cursor:pointer;
  transition:transform .2s ease, background .2s ease, border-color .2s ease;
}
.tagchip:hover{transform:translateY(-1px); background:rgba(255,255,255,.86); border-color:rgba(11,12,16,.26)}
.tagchip__code{
  font-family:"Rajdhani","IBM Plex Sans JP",system-ui,sans-serif;
  font-weight:700;
  letter-spacing:.14em;
  font-size:12px;
  color:rgba(11,12,16,.70);
}

/* Tab intro template */
.tab-intro{
  border-top:1px solid rgba(0,0,0,.16);
  border-bottom:1px solid rgba(0,0,0,.16);
  padding:14px 0;
  margin-bottom:14px;
  display:grid;
  gap:10px;
}
.tab-intro__row{
  display:grid;
  grid-template-columns:88px 1fr;
  gap:12px;
  align-items:start;
}
.tab-intro__value{color:rgba(11,12,16,.86); font-weight:500; line-height:1.7}
.deliver{
  margin:0;
  padding-left:18px;
}
.deliver li{margin:4px 0}

/* Works decals */
.work{position:relative}
.work__code{
  position:absolute;
  left:12px;
  top:18px;
  font-size:12px;
  letter-spacing:.12em;
  color:rgba(11,12,16,.70);
}
.work .pill{margin-left:52px}

/* WORKS: list (placeholder-style) + genre pills */
.worksTabs__nav{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:10px;
  margin-bottom:12px;
}
.tabPill{
  appearance:none;
  border:1px solid rgba(0,0,0,.14);
  background:rgba(255,255,255,.72);
  border-radius:999px;
  padding:10px 12px;
  font-family:"Rajdhani","IBM Plex Sans JP",system-ui,sans-serif;
  font-weight:700;
  letter-spacing:.12em;
  font-size:12px;
  color:rgba(11,12,16,.78);
  cursor:pointer;
}
.tabPill.is-active{
  border-color:rgba(var(--team-rgb),.55);
  background:rgba(var(--team-rgb),.10);
  color:rgba(11,12,16,.86);
}

.works{
  margin-top:8px;
  border-top:0;
}
.works .work{
  position:relative;
  padding:18px 12px 18px 12px;
  border-bottom:1px solid rgba(0,0,0,.10);
  background:transparent;
  border-radius:0;
}
.works .work:last-child{ border-bottom:1px solid rgba(0,0,0,.14); }
.works .work .work__title{
  margin:8px 0 4px 52px;
  font-size:15px;
  line-height:1.35;
  color:rgba(11,12,16,.90);
}


.works .work .work__meta{
  margin:0 0 6px 52px;
  font-size:12px;
  letter-spacing:.08em;
  color:rgba(11,12,16,.70);
  display:flex;
  gap:10px;
  align-items:baseline;
  flex-wrap:wrap;
}
.works .work .work__meta a{
  color:var(--link);
  text-decoration:underline;
  text-underline-offset:2px;
}

/* WORKS: refs are shown as raw URLs (discoverable + copyable) */
.works .work .work__refs{
  margin:8px 0 0 52px;
  font-size:12px;
  line-height:1.65;
  color:rgba(11,12,16,.70);
  max-width:72ch;
  text-transform:none;
  letter-spacing:0;
  overflow-wrap:anywhere;
}
.work__refsLabel{
  display:block;
  font-size:11px;
  letter-spacing:.08em;
  text-transform:none;
  color:rgba(11,12,16,.70);
  margin:0 0 6px 0;
}
.work__refs a{
  display:block;
  font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
  color:var(--link);
  text-decoration:underline;
  text-underline-offset:2px;
}
.work__refs a + a{ margin-top:4px; }
.work__refs a:hover{ text-decoration-thickness:2px; }
.work__refs a:focus-visible{
  outline:2px solid rgba(var(--team-rgb),.55);
  outline-offset:2px;
  border-radius:6px;
}

.works .work .work__refs a{
  color:var(--link);
  text-decoration:underline;
  text-underline-offset:2px;
  overflow-wrap:anywhere;
}
.works .work .work__refs a:hover{
  text-decoration-thickness:2px;
}
.works .work .work__refs a:focus-visible{
  outline:2px solid rgba(var(--team-rgb),.55);
  outline-offset:2px;
}
@media (max-width: 720px){
  .works .work{ padding:16px 10px 16px 10px; }
  .work__code{ left:10px; top:16px; }
  .work .pill{ margin-left:44px; }

  .works .work .work__title{ margin-left:44px; font-size:14px; }
  .works .work .work__meta{ margin-left:44px; font-size:12px; }
  .works .work p{ margin-left:44px; font-size:13px; }
  .works .work .work__refs{ margin-left:44px; font-size:12px; }
}

/* Active tab indicator (subtle slant) */
.tab-btn[aria-selected="true"]{
  position:relative;
}
.tab-btn[aria-selected="true"]:after{
  content:"";
  position:absolute;
  left:10px;
  right:10px;
  bottom:-1px;
  height:3px;
  background:rgba(var(--team-rgb),.75);
  transform:skewX(-16deg);
  border-radius:2px;
}
@media (max-width: 720px){
  .tab-intro__row{grid-template-columns:76px 1fr}
}


/* Game-UI touch: bilingual hero chips + decision/detail */
.tagchip{
  display:grid;
  grid-template-columns:auto 1fr;
  grid-template-rows:auto auto;
  row-gap:2px;
}
.tagchip__code{grid-row:1 / span 2}
.tagchip__main{
  font-family:"Rajdhani","IBM Plex Sans JP",system-ui,sans-serif;
  font-weight:700;
  letter-spacing:.10em;
  font-size:14px;
  color:rgba(11,12,16,.86);
}
.tagchip__sub{
  font-size:12px;
  color:rgba(11,12,16,.52);
  letter-spacing:.02em;
}

/* Buttons */
.btn--sm{padding:10px 12px; font-size:13px}
.tab-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:12px 0 14px;
}

/* Collapsible details inside SERVICE panes */
.more{
  max-height:0;
  overflow:hidden;
  opacity:0;
  transition:max-height .35s ease, opacity .25s ease;
}
.more.is-open{
  max-height:420px;
  opacity:1;
}
.more[aria-hidden="true"]{pointer-events:none}
.more.is-open[aria-hidden="false"]{pointer-events:auto}

/* Selected genre HUD in contact */
.picked{
  margin:10px 0 10px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(11,12,16,.16);
  background:rgba(255,255,255,.70);
  width:fit-content;
}


/* Animated tab indicator (one moving element, RR4 feel) */
.tabs__nav{position:relative}
.tabIndicator{
  position:absolute;
  left:0;
  top:0;
  height:100%;
  pointer-events:none;
}
.tabIndicator:before{
  content:"";
  position:absolute;
  left:var(--x, 10px);
  top:8px;
  width:var(--w, 120px);
  height:calc(100% - 16px);
  border-radius:14px;
  background:rgba(var(--team-rgb),.10);
  border:1px solid rgba(var(--team-rgb),.22);
  transform:skewX(-10deg);
  transition:left .22s ease, width .22s ease;
}

/* Button press feedback (subtle) */
.btn, .tagchip, .tab-btn{
  will-change:transform;
}
.btn:active, .tagchip:active, .tab-btn:active{
  transform:translateY(0) scale(.99);
}





/* Brand watermark (aggressive crop; aspect-ratio stable) */
body:after{
  content:"";
  position:fixed;
  inset:-18vmax;
  pointer-events:none;
  z-index:-2;
  opacity:.082;
  background-image:
    radial-gradient(1040px 720px at 34% 16%, rgba(255,255,255,.94), transparent 72%),
    radial-gradient(820px 560px at 70% 78%, rgba(255,255,255,.58), transparent 64%),
    url("assets/chord-logo-square.svg");
  background-repeat:no-repeat, no-repeat, no-repeat;
  /* use pixel offsets for consistent crop across aspect ratios */
  background-position:
    34% 16%,
    66% 80%,
    calc(100% + 240px) calc(100% + 260px);
  /* vmax = stable when viewport becomes tall */
  background-size:
    auto,
    auto,
    clamp(980px, 118vmax, 1780px);
  filter:grayscale(1) contrast(1.08);
  mix-blend-mode:multiply;
  transform:rotate(-6deg);
  transform-origin:72% 66%;
}
@media (max-width: 720px){
  body:after{
    opacity:.068;
    background-position:
      34% 16%,
      60% 84%,
      calc(100% + 180px) calc(100% + 200px);
    background-size:
      auto,
      auto,
      clamp(760px, 132vmax, 1380px);
    transform:rotate(-5deg);
    transform-origin:72% 70%;
  }
}
/* v12 overrides (industrial / spec-sheet) */
.hero__plate{
  border:1px solid rgba(11,12,16,.20);
  background:rgba(255,255,255,.66);
  box-shadow:0 28px 90px rgba(0,0,0,.05);
  transform:translateY(0);
}
.hero__plate::before{
  content:"";
  position:absolute;
  inset:18px 18px 18px 52%;
  border-left:1px solid rgba(11,12,16,.14);
  border-radius:18px;
  pointer-events:none;
  background-image:
    repeating-linear-gradient(-12deg, rgba(11,12,16,.12) 0 1px, transparent 1px 9px),
    radial-gradient(circle at 20% 30%, rgba(11,12,16,.10), transparent 55%);
  opacity:.40;
  mix-blend-mode:multiply;
  mask-image:linear-gradient(90deg, rgba(0,0,0,.35), rgba(0,0,0,.95));
}
.plate__grid{opacity:.14; mix-blend-mode:multiply}
.plate__frame{border-color:rgba(11,12,16,.18)}
.plate__big{color:rgba(11,12,16,.60)}
.plate__bigLine{border-bottom-color:rgba(11,12,16,.14)}
.plate__side{color:rgba(11,12,16,.42)}
.plate__issue{
  border-color:rgba(11,12,16,.18);
  background:rgba(255,255,255,.70);
}

/* Representative cases (Service panes) */
.cases{
  margin-top:18px;
  padding-top:14px;
  border-top:1px solid rgba(0,0,0,.14);
}
.cases__head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  margin:0 0 10px 0;
}
.cases__k{
  letter-spacing:.22em;
  color:rgba(11,12,16,.55);
}
.cases__v{
  font-size:12px;
  color:var(--muted);
}
.caseGrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.caseCard{
  display:flex;
  gap:12px;
  padding:12px;
  border:1px solid rgba(0,0,0,.14);
  border-radius:var(--r2);
  background:rgba(255,255,255,.78);
}
.caseThumb{
  width:112px;
  height:76px;
  border:1px solid rgba(0,0,0,.14);
  border-radius:10px;
  background:
    linear-gradient(135deg, rgba(0,0,0,.05) 0 18%, transparent 18% 36%, rgba(0,0,0,.05) 36% 54%, transparent 54% 72%, rgba(0,0,0,.05) 72% 100%),
    radial-gradient(circle at 20% 30%, rgba(0,0,0,.06), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(0,0,0,.04), transparent 60%);
  position:relative;
  flex:0 0 auto;
  overflow:hidden;
}
/* Optional: replace the thumb background with an image later
   e.g. <div class="caseThumb" style="background-image:url(assets/your.png)"></div> */
.caseThumb::after{
  content:attr(data-code);
  position:absolute;
  left:8px;
  bottom:6px;
  font-size:11px;
  letter-spacing:.18em;
  padding:2px 6px;
  border:1px solid rgba(0,0,0,.18);
  border-radius:999px;
  background:rgba(255,255,255,.7);
  color:rgba(11,12,16,.72);
}
.caseBody{min-width:0}
.caseTitle{
  font-weight:700;
  color:var(--ink);
  line-height:1.25;
}
.caseMeta{
  margin-top:4px;
  font-size:11px;
  letter-spacing:.08em;
  color:rgba(11,12,16,.70);
  text-transform:uppercase;
}
.caseDesc{
  margin:8px 0 0 0;
  font-size:13px;
  color:var(--muted);
  line-height:1.55;
}
.cases__note{
  margin-top:8px;
  font-size:11px;
  color:rgba(11,12,16,.52);
}

@media (max-width: 920px){
  .caseGrid{grid-template-columns:1fr}
  .caseThumb{width:104px;height:70px}
}



/* ===== Cover (logo -> copy) ===== */
body.is-cover .header{
  opacity:0;
  pointer-events:none;
  transform:translateY(-120%);
}

body.is-main .header{
  opacity:1;
  pointer-events:auto;
  transform:translateY(0);
  transition:opacity .24s ease, transform .24s ease;
}

.cover{
  /* Keep the “cover” feel but reduce excessive scroll */
  min-height:72vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:56px 20px;
}

.cover--logo{
  min-height:78vh;
  padding-top:72px;
  padding-bottom:72px;
}

.cover--copy{
  min-height:56vh;
}

.cover__inner{
  width:min(980px, 100%);
  text-align:center;
}

.cover__logo{
  width:min(820px, 92vw);
  height:auto;
  display:block;
  margin:0 auto;
  filter:drop-shadow(0 1px 0 rgba(0,0,0,.08));
}

.cover__copy{
  font-size:clamp(18px, 2.2vw, 24px);
  letter-spacing:.01em;
  margin:0 0 10px;
  line-height:1.45;
}

.cover__sub{
  font-size:clamp(14px, 1.6vw, 16px);
  margin:0;
  opacity:.86;
  line-height:1.65;
}

@media (max-width: 560px){
  .cover{ padding:44px 16px; }
  .cover__sub{ opacity:.9; }
}




/* v36 — Footer & Contact (reduce flavor, add practical info) */
.contact{
  display:grid;
  grid-template-columns: 1fr;
  gap:18px;
  align-items:start;
}
@media (max-width: 900px){
  .contact{grid-template-columns:1fr}
}
.contact__box, .contact__card{
  border:1px solid var(--line);
  background:rgba(255,255,255,.78);
  padding:16px 16px 14px;
}
.contact__box--primary{
  padding:18px 18px 16px;
}
.contact__lead{
  margin:8px 0 12px;
  line-height:1.65;
  color:rgba(11,12,16,.82);
}
.contact__btns{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px}
.contact__list{
  list-style:none;
  padding:0; margin:10px 0 0;
  display:grid;
  gap:8px;
}
.contact__list li{
  display:grid;
  grid-template-columns: 110px auto;
  gap:12px;
  align-items:baseline;
  padding-top:8px;
  border-top:1px solid rgba(11,12,16,.12);
}
.contact__list li:first-child{border-top:0; padding-top:0}
.contact__label{color:rgba(11,12,16,.58); letter-spacing:.10em; text-transform:uppercase; font-size:11px}

.footer{
  border-top:1px solid var(--line);
  padding:26px 0;
  background:rgba(255,255,255,.72);
}
.footer__inner{
  display:grid;
  grid-template-columns: 1fr auto;
  grid-template-rows:auto auto;
  gap:14px 18px;
  align-items:center;
}
@media (max-width: 760px){
  .footer__inner{grid-template-columns:1fr; grid-template-rows:auto auto auto; align-items:start}
}
.footer__brand{display:flex; gap:12px; align-items:center}
.footer__mark{width:90px; height:90px}
.footer__name{
  font-family:"IBM Plex Sans JP",system-ui,sans-serif;
  font-weight:700;
  letter-spacing:.08em;
}
.footer__tag{color:rgba(11,12,16,.60); font-size:13px; margin-top:2px}
.footer__links{
  display:flex;
  gap:14px;
  align-items:center;
  justify-content:flex-end;
  flex-wrap:wrap;
}
.footer__links a{
  font-family:"IBM Plex Sans JP",system-ui,sans-serif;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  text-decoration:none;
  color:rgba(11,12,16,.72);
}
.footer__links a:hover{text-decoration:underline}
.footer__meta{
  grid-column:1 / -1;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  color:rgba(11,12,16,.58);
  font-size:12px;
}
.footer__sep::before{content:"·"; margin:0 2px}


/* v37: hero cleanup (remove redundant logo from hero) */
.hero__copy .hero__desc{margin-top:14px;}


/* v48: Service panes — remove cases block, tighten typography and balance */
.pane__grid{
  /* Stack "main" and "examples" to keep readable line-length on desktop */
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  align-items:start;
}
.pane__main .bullets{ margin-bottom:14px; }
.aside{
  margin-top:0;
  padding-top:12px;
  border-top:1px solid var(--line2);
}
.aside__k{
  letter-spacing:.14em;
  font-size:11px;
  color:var(--muted);
  margin-bottom:8px;
}
.aside__v{ margin:6px 0; }
@media (max-width: 980px){
  .tabs.editorial{ grid-template-columns:1fr; }
  .tabs.editorial .tabs__nav{ border-right:0; border-bottom:1px solid rgba(0,0,0,.12); }
  .tabs.editorial .tabs__panes{ padding:18px 18px 20px; }
  .aside{ margin-top:14px; }
}


/* WORKS: grouped by heading (no tabs) */
.worksGroups{ margin-top:14px; }
.worksGroup{ margin-top:26px; }
.worksGroup:first-child{ margin-top:0; }
.worksGroup__title{
  margin:0;
  padding:8px 12px;
  border:1px solid rgba(0,0,0,.14);
  border-radius:12px;
  background:rgba(255,255,255,.64);
  font-weight:700;
  letter-spacing:.08em;
  font-size:13px;
  color:rgba(11,12,16,.78);
}

/* WORKS: remove divider line directly under group heading */
.worksGroup > .works{ border-top:0; margin-top:12px; }

/* WORKS noise cleanup */
.work__code{display:none !important}
.work__refsLabel{display:none !important}


/* --- Works template (facts + description) --- */
.work__facts{
  display:grid;
  grid-template-columns: 1fr;
  gap: .25rem;
  margin: .4rem 0 .5rem;
  padding: .5rem .6rem;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.work__fact{
  display:grid;
  grid-template-columns: 6.5rem 1fr;
  gap: .5rem;
  align-items: baseline;
}
.work__fact dt{
  opacity:.75;
  letter-spacing:.06em;
  font-size: .78rem;
}
.work__fact dd{
  margin:0;
  font-size: .92rem;
}
.work__desc{
  margin: 0 0 1rem;
}

/* --- External link affordance --- */
a.extlink{
  text-decoration: underline;
  text-underline-offset: .22em;
  text-decoration-thickness: .08em;
}
a.extlink::after{
  content: "↗";
  margin-left: .25em;
  font-size: .9em;
  opacity: .75;
}
a.extlink:hover{
  text-decoration-thickness: .14em;
}


/* --- WORKS ledger rows (2026-01) --- */
.works .workRow{
  display:grid;
  grid-template-columns: 12ch 1fr;
  grid-template-areas:
    "period main"
    "period refs";
  column-gap: 12px;
  row-gap: 6px;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.works .workRow:first-child{ border-top: 0; padding-top: 0; }
.works .workRow__period{
  grid-area: period;
  white-space: nowrap;
  color: rgba(11,12,16,.78);
  font-weight: 500;
}
.works .workRow__main{
  grid-area: main;
  min-width: 0;
  display:flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.works .workRow__title{
  font-weight:700;
  letter-spacing: .01em;
}
.works .workRow__role{
  white-space: nowrap;
  color: rgba(11,12,16,.78);
  font-weight: 500;
}
.works .workRow__scope{
  flex-basis: 100%;
  line-height: 1.5;
  font-size: .95em;
  color: rgba(11,12,16,.78);
}
.works .workRow__refs{
  grid-area: refs;
  display:flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}

/* Collapsible reference list for long link sets */
.works .refsMore{
  margin-top: 2px;
}
.works .refsMore__summary{
  cursor: pointer;
  text-decoration: underline;
  opacity: .72;
  font-size: .92em;
  user-select: none;
}
.works .refsMore__summary::-webkit-details-marker{ display:none; }
.works .refsMore[open] .refsMore__summary{ opacity: .9; }
.works .refsMore__list{
  margin-top: 6px;
  display:flex;
  flex-direction: column;
  gap: 6px;
}

@media (max-width: 860px){
  .works .workRow{
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "period"
      "refs";
    gap: 6px;
    padding: 12px 0;
  }
  .works .workRow__refs{
    gap: 8px;
  }
  .works .workRow__role{
    white-space: normal;
  }
}


/* Flow block (pre-contact) */
.flowCard{max-width:760px; margin:0 auto}
.flowSteps{
  margin:0; padding:0;
  list-style:none;
  display:grid;
  gap:0;
}
.flowSteps li{
  display:grid;
  grid-template-columns:64px 1fr;
  gap:12px;
  align-items:baseline;
  padding:10px 0;
  border-top:1px solid var(--line2);
}
.flowSteps li:first-child{border-top:none}
.flowKey{display:inline-block}
.flowNote{margin-top:10px}



