*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
:focus-visible {
  outline: 3px solid color-mix(in oklab, var(--accent-a), white 10%);
  outline-offset: 2px;
  border-radius: 12px;
}

:root{
  --container: 1120px;
  --header-container: 1370px;
  --header-h: 72px;

  --bg: #05060a;
  --bg-2: #070a10;
  --bg-elev: rgba(255,255,255,0.04);

  --card: rgba(255,255,255,0.06);
  --card-2: rgba(255,255,255,0.045);

  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.68);
  --faint: rgba(255,255,255,0.50);

  --border: rgba(255,255,255,0.11);
  --border-2: rgba(255,255,255,0.18);

  --surface: rgba(255,255,255,0.06);
  --surface-2: rgba(255,255,255,0.04);

  --accent-a: #6EE7FF;
  --accent-b: #A78BFA;
  --accent: #008099;

  --ok: rgba(34,197,94,.95);
  --warn: rgba(251,191,36,.95);
  --bad: rgba(248,113,113,.95);

  --shadow: 0 10px 30px rgba(0,0,0,0.35);
  --shadow-soft: 0 10px 22px rgba(0,0,0,0.22);

  --focus: rgba(110, 231, 255, 0.85);

  --aqua: rgba(110,231,255,.95);
  --vio: rgba(167,139,250,.92);
  --green: rgba(34,197,94,.95);

  --grad: linear-gradient(135deg, var(--aqua), var(--vio));
  --grad2: linear-gradient(135deg, var(--green), var(--aqua));

  --r-md: 14px;
  --r-lg: 18px;
  --r-xl: 22px;
  --r-2xl: 28px;

  --radius-xl: 18px;
  --radius-2xl: 26px;

  --ease: cubic-bezier(.2,.8,.2,1);
  --ease-out: cubic-bezier(.2,1,.2,1);

  --dur-1: 160ms;
  --dur-2: 240ms;
  --dur-3: 320ms;

  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;

  --card2: var(--card-2);
  --stroke: var(--border);
  --stroke2: var(--border-2);
  --bg0: var(--bg);
  --shadow-md: var(--shadow-soft);
  --chip: rgba(255,255,255,0.05);
  --fainter: var(--faint);

  color-scheme: dark;
}

@media (max-width: 560px){
  :root{ --header-h: 64px; }
}

:root[data-theme="light"]{
  --bg: #f7f9ff;
  --bg-2: #ffffff;
  --bg-elev: rgba(10,20,40,0.04);

  --text: rgba(9,18,35,0.92);
  --muted: rgba(9,18,35,0.72);
  --faint: rgba(9,18,35,0.52);

  --card: rgba(10,20,40,0.05);
  --card-2: rgba(10,20,40,0.035);

  --surface: rgba(11,14,20,0.05);
  --surface-2: rgba(11,14,20,0.035);

  --border: rgba(9,18,35,0.12);
  --border-2: rgba(9,18,35,0.10);

  --shadow: 0 28px 70px rgba(10,20,40,0.16);
  --shadow-soft: 0 14px 30px rgba(10,20,40,0.12);

  --focus: rgba(99, 102, 241, 0.70);

  --chip: rgba(11,14,20,0.05);
  --fainter: var(--faint);

  color-scheme: light;
}

.bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
	radial-gradient(1200px 700px at 18% -10%, color-mix(in oklab, var(--accent-a), transparent 70%) 0%, transparent 60%),
	radial-gradient(1100px 700px at 88% 0%, color-mix(in oklab, var(--accent-b), transparent 72%) 0%, transparent 60%),
	radial-gradient(900px 600px at 50% 120%, color-mix(in oklab, var(--accent-a), transparent 84%) 0%, transparent 55%);
  opacity: 0.95;
  filter: saturate(1.06);
}
.bg::after{
  content:"";
  position:absolute; inset:0;
  background-image:
	linear-gradient(to right, rgba(255,255,255,0.055) 1px, transparent 1px),
	linear-gradient(to bottom, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.08;
  mask-image: radial-gradient(60% 45% at 50% 10%, black 0%, transparent 72%);
}
html[data-theme="light"] .bg::after{ opacity: 0.11; }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

header.site-header .container{ max-width: var(--header-container); }

@media (max-width: 520px){
  .container{ width: min(1120px, calc(100% - 32px)); }
}

.small{ font-size: 13px; line-height: 1.45; color: var(--faint); }
.muted{ color: var(--muted); }
.faint{ color: var(--faint); }
.mono{ font-family: var(--mono); }

.divider{ height:1px; background: var(--border-2); margin: 14px 0; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--card), transparent 18%);
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: transform var(--dur-1) var(--ease-out), background var(--dur-1) var(--ease-out), border-color var(--dur-1) var(--ease-out), box-shadow var(--dur-2) var(--ease-out);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover{
  transform: translateY(-1px);
  border-color: color-mix(in oklab, var(--border), white 12%);
  box-shadow: var(--shadow-soft);
}
.btn:active{ transform: translateY(0px) scale(0.99); }

.btn-primary{
  border: 0;
  background: linear-gradient(135deg,
	color-mix(in oklab, var(--accent-a), transparent 18%),
	color-mix(in oklab, var(--accent-b), transparent 20%));
  color: rgba(10,14,22,0.92);
  font-weight: 700;
  box-shadow: 0 18px 42px rgba(110,231,255,0.18);
}
html[data-theme="light"] .btn-primary{ color: rgba(10,14,22,0.92); }

.btn-secondary{
  background: transparent;
  border: 1px solid color-mix(in oklab, var(--border), transparent 0%);
}

.btn-ghost{
  background: transparent;
  border: 1px solid transparent;
}
.btn-ghost:hover{
  background: color-mix(in oklab, var(--card), transparent 10%);
  border-color: var(--border-2);
  box-shadow: none;
}

.icon-btn{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  transition: transform 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease);
  position: relative;
}
.icon-btn:hover { transform: translateY(-1px); border-color: var(--border-2); }

.theme-ico[hidden]{ display:none !important; }
.theme-ico{
  position:absolute;
  inset:0;
  margin:auto;
  width:18px;
  height:18px;
  display:block;
}

.skip-link{
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--text);
  transform: translateY(-140%);
  transition: transform 180ms var(--ease);
  z-index: 2000;
}
.skip-link:focus-visible{ transform: translateY(0); }

header.site-header{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 1200;
  transition: background 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(0px);
}
header.site-header.scrolled{
  background: color-mix(in oklab, var(--bg), transparent 18%);
  border-bottom-color: color-mix(in oklab, var(--border), transparent 0%);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.16);
}
header.site-header{ font-size: 14px; }

.header-inner{
  height: var(--header-h);
  display:grid;
  grid-template-columns: auto minmax(0,1fr) auto;
  align-items:center;
  gap: 18px;
}

.brand{
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-width: 140px;
}

.brand-mark{
  width:42px; height:42px;
  border-radius: 14px;
  padding:5px;
  display:grid;
  place-items:center;
  overflow:hidden;
  position:relative;
  isolation:isolate;
  border: 1px solid color-mix(in oklab, var(--border-2), transparent 10%);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.10);
}
.brand-mark::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: 15px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(110,231,255,0.55), rgba(167,139,250,0.38), rgba(34,197,94,0.22));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
		  mask-composite: exclude;
  opacity: 0.55;
  pointer-events:none;
  z-index:0;
}
.brand-mark::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.26), rgba(255,255,255,0.10) 22%, rgba(255,255,255,0.00) 55%);
  mix-blend-mode: screen;
  opacity: 0.55;
  pointer-events:none;
  z-index:1;
}
.brand-logo{
  width:100%; height:100%;
  object-fit: contain;
  z-index:2;
  filter: drop-shadow(0 7px 12px rgba(0,0,0,0.40)) saturate(1.12) contrast(1.08);
}

:root[data-theme="light"] .brand-mark{
  border: 1px solid rgba(11,14,20,0.14);
  background:
	radial-gradient(18px 12px at 28% 22%, rgba(255,255,255,0.55), transparent 70%),
	radial-gradient(26px 20px at 70% 30%, rgba(110,231,255,0.22), transparent 72%),
	radial-gradient(28px 22px at 65% 78%, rgba(167,139,250,0.20), transparent 74%),
	linear-gradient(180deg, rgba(11,14,20,0.04), rgba(11,14,20,0.015));
  box-shadow: 0 12px 24px rgba(10,18,40,0.10), inset 0 1px 0 rgba(255,255,255,0.45);
}
:root[data-theme="light"] .brand-logo{
  filter: drop-shadow(0 8px 14px rgba(10,18,40,0.16)) saturate(1.06) contrast(1.05);
}

.brand-name{ font-weight:650; letter-spacing:-0.02em; }

nav.primary-nav{
  justify-self:center;
  min-width: 0;
  display:inline-flex;
  align-items:center;
  gap: 6px;
  height: 42px;
  padding: 8px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--surface), transparent 0%);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}
:root[data-theme="light"] nav.primary-nav{
  background: var(--surface-2);
  border-color: rgba(11,14,20,0.10);
  box-shadow: 0 10px 22px rgba(10,18,40,0.08);
}

.nav-link, .nav-btn{
  appearance:none;
  border:0;
  background: transparent;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:8px;
  height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: var(--muted);
  white-space: nowrap;
  transition: background 160ms var(--ease), color 160ms var(--ease), transform 160ms var(--ease), box-shadow 160ms var(--ease);
}
.nav-link:hover, .nav-btn:hover{
  background: color-mix(in oklab, var(--surface-2), transparent 0%);
  color: var(--text);
  transform: translateY(-0.5px);
}
.nav-link[aria-current="page"],
.nav-link.is-active,
.nav-btn.is-active{
  background: color-mix(in oklab, var(--surface), transparent 0%);
  color: var(--text);
  box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--border-2), transparent 0%);
}

.dropdown{ position:relative; display:inline-flex; align-items:center; }
.chev{ opacity:0.7; transition: transform 160ms var(--ease); }
.dropdown.open .chev{ transform: rotate(180deg); }

.dropdown-menu{
  position:absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--bg-2), transparent 10%);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  padding: 8px;
  display:none;
  z-index: 1600;
}
.dropdown.open .dropdown-menu{ display:block; }

.dropdown-menu a{
  display:block;
  padding: 10px 10px;
  border-radius: 12px;
  color: var(--muted);
  font-size: 14px;
  transition: background 160ms var(--ease), color 160ms var(--ease);
}
.dropdown-menu a:hover{ background: var(--surface-2); color: var(--text); }

.header-actions{
  display:inline-flex;
  align-items:center;
  gap:10px;
  flex-wrap: nowrap;
  justify-self: end;
}
.header-actions > * { flex: 0 0 auto; }

header.site-header .header-actions a.btn,
header.site-header .header-actions button.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:42px;
  padding: 0 16px;
  line-height: 1;
  font-size: 14px;
  white-space: nowrap;
  flex: 0 0 auto;
}
header.site-header .header-actions a.btn span,
header.site-header .header-actions button.btn span{
  font-size: inherit;
  line-height: 1;
}

.lang-dd{ position:relative; }
.lang-dd-btn{
  height:42px;
  padding: 0 12px 0 14px;
  border-radius:999px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--muted);
  gap: 10px;
}
.lang-dd-btn:hover{
  background: color-mix(in oklab, var(--surface-2), transparent 0%);
  color: var(--text);
}
.lang-dd-current{ font-size: 13px; letter-spacing: 0.02em; color: inherit; }
.lang-dd-menu{ min-width: 140px; padding: 8px; }

.lang-dd-item{
  width: 100%;
  text-align:left;
  border:0;
  background: transparent;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 10px 10px;
  border-radius: 12px;
  font-size: 14px;
  color: var(--muted);
  transition: background 160ms var(--ease), color 160ms var(--ease);
}
.lang-dd-item:hover{ background: var(--surface-2); color: var(--text); }
.lang-dd-item[aria-checked="true"]{
  background: linear-gradient(135deg, rgba(110,231,255,0.18), rgba(167,139,250,0.14));
  color: var(--text);
}
.lang-dd-item[aria-checked="true"]::after{
  content:"✓";
  opacity: .9;
}

.burger{
  display:none;
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid var(--border);
  background: var(--surface-2);
  cursor:pointer;
  align-items:center;
  justify-content:center;
}
.burger svg{ opacity:0.9; }

@media (max-width: 1140px){
  nav.primary-nav{ display:none; }
  .burger{ display:inline-flex; }
}

.label-short{ display:none; }
@media (max-width: 560px){
  .label-long{ display:none; }
  .label-short{ display:inline; }
  header.site-header .container{ padding: 0 1px; }
  .header-inner{ gap:12px; }
  header.site-header .header-actions .btn{ height:40px; }
  header.site-header .header-actions .btn-primary{ padding: 0 14px; }
  header.site-header .header-actions .btn-secondary{ padding: 0 12px; }
}

@media (max-width: 768px){
  header.site-header .header-actions #langSwitch{ display:none; }
  header.site-header #themeToggle{ display:none; }
  header.site-header .header-actions{ justify-content:flex-end; }
}

.icon-btn, .burger { min-width: 42px; flex-shrink: 0; }

.drawer-backdrop{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  z-index: 1400;
  opacity: 0;
  transition: opacity 200ms var(--ease);
  pointer-events:none;
}
.drawer-backdrop.open{ opacity:1; pointer-events:auto; }

.drawer{
  position: fixed;
  top:0; right:0; bottom:0;
  width: min(420px, 100vw);
  border-radius: 26px 0 0 26px;
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--bg-2), transparent 6%);
  box-shadow: var(--shadow);
  z-index: 1500;
  transform: translateX(110%);
  transition: transform 240ms var(--ease-out);
  display:grid;
  grid-template-rows: auto 1fr auto;
  overflow:hidden;
}
.drawer.open{ transform: translateX(0); }

.drawer-top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: calc(14px + env(safe-area-inset-top)) 14px 10px;
  border-bottom: 1px solid var(--border);
}
.drawer-title{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:650;
  letter-spacing: -0.02em;
}
.drawer-title .brand-mark{
  width:32px; height:32px;
  padding:4px;
  border-radius:12px;
}
.drawer-body{ padding: 14px; overflow:auto; }

.drawer-close{
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid color-mix(in oklab, var(--stroke) 70%, transparent);
  background: color-mix(in oklab, var(--card2) 62%, transparent);
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.drawer-nav{ display:grid; gap:8px; }
.drawer-nav a{
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
  transition: transform 160ms var(--ease), border-color 160ms var(--ease);
}
.drawer-nav a:hover{ transform: translateY(-1px); border-color: var(--border-2); }

.lang{
  display:inline-flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow:hidden;
  background: var(--surface-2);
  height: 42px;
}
.lang button{
  border:0;
  background: transparent;
  cursor:pointer;
  padding: 0 12px;
  font-size: 13px;
  color: var(--muted);
  transition: background 160ms var(--ease), color 160ms var(--ease);
}
.lang button[aria-checked="true"]{
  background: linear-gradient(135deg, rgba(110,231,255,0.18), rgba(167,139,250,0.14));
  color: var(--text);
}

.modal-backdrop{
  position: fixed;
  inset: 0;
  z-index: 1600;
  background: rgba(0,0,0,0.52);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events:none;
  transition: opacity var(--dur-2) var(--ease-out);
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 20px;
}
.modal-backdrop.open{ opacity:1; pointer-events:auto; }

.modal{
  width: min(560px, 100%);
  border-radius: 24px;
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--bg), transparent 6%);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.modal-head{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 16px 16px 12px;
  border-bottom: 1px solid var(--border-2);
}
.modal-title{
  font-weight:800;
  letter-spacing:-0.02em;
  font-size: 16px;
}
.modal-body{ padding:16px; }
.modal-foot{
  padding: 14px 16px 16px;
  border-top: 1px solid var(--border-2);
  display:flex;
  gap:10px;
  justify-content:flex-end;
}
#archiveBackdrop.modal-backdrop{ z-index: 1650; }

.card{
  background: color-mix(in oklab, var(--card) 72%, transparent);
  border: 1px solid color-mix(in oklab, var(--stroke) 70%, transparent);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.card.pad{ padding:18px; }
@media (max-width: 560px){
  .card.pad{ padding:14px; }
}

.dot{
  width:8px; height:8px;
  border-radius:999px;
  background: var(--aqua);
  box-shadow: 0 0 0 4px rgba(110,231,255,.14);
  flex: 0 0 auto;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.05);
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}

main{
  position: relative;
  z-index: 1;
  padding: calc(var(--header-h) + 22px) 0 56px;
}
.page-head{ padding: 14px 0 12px; }

.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 14px;
  border-radius:999px;
  background: color-mix(in oklab, var(--card2) 55%, transparent);
  border: 1px solid color-mix(in oklab, var(--stroke) 65%, transparent);
  color: var(--muted);
  font-weight: 640;
}
.kicker .dot{
  width:8px; height:8px;
  border-radius:99px;
  background: color-mix(in oklab, rgba(110,231,255,.9) 60%, rgba(167,139,250,.9) 40%);
  box-shadow: 0 0 0 4px rgba(110,231,255,.12);
}

h1{
  margin: 14px 0 8px;
  font-size: clamp(28px, 4.0vw, 46px);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.h1-id{
  margin-left: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: color-mix(in oklab, var(--text) 82%, var(--faint) 18%);
}

.sub{
  margin: 0;
  color: var(--muted);
  max-width: 78ch;
  line-height: 1.5;
  font-size: clamp(14px, 1.35vw, 16px);
}

.chips{
  margin-top: 14px;
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}
.chip{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border-radius:999px;
  background: color-mix(in oklab, var(--chip) 70%, transparent);
  border: 1px solid color-mix(in oklab, var(--stroke) 65%, transparent);
  color: var(--muted);
  font-weight:600;
  font-size: 13px;
}
.chip .mini-dot{
  width:8px; height:8px;
  border-radius:99px;
  background: color-mix(in oklab, rgba(110,231,255,.95) 55%, rgba(167,139,250,.95) 45%);
  box-shadow: 0 0 0 4px rgba(167,139,250,.10);
}

.controls{ margin-top: 18px; padding: 16px; }
.controls-grid{
  display:grid;
  grid-template-columns: 1.2fr 1.2fr 0.8fr 0.9fr auto;
  gap: 12px;
  align-items:end;
}
.field label{
  display:block;
  font-size:12px;
  color: var(--faint);
  margin: 0 0 8px;
  font-weight:650;
  letter-spacing:.02em;
  text-transform: uppercase;
}
.input, select{
  width:100%;
  height:44px;
  border-radius:14px;
  background: color-mix(in oklab, var(--card2) 62%, transparent);
  border: 1px solid color-mix(in oklab, var(--stroke) 70%, transparent);
  color: var(--text);
  padding: 0 14px;
  outline:none;
  transition: box-shadow 180ms ease, border-color 180ms ease;
}
.input::placeholder{ color: color-mix(in oklab, var(--fainter) 86%, transparent); }
.input:focus, select:focus{
  border-color: color-mix(in oklab, var(--focus) 65%, var(--stroke) 35%);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--focus) 40%, transparent);
}
.hint{
  margin-top:10px;
  color: var(--fainter);
  font-size: 13px;
  line-height: 1.35;
}

footer.site-footer{
  padding: 56px 0 18px;
  border-top: 1px solid var(--border);
  background: color-mix(in oklab, var(--bg-2), transparent 0%);
}
.footer-grid{
  display:grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items:start;
}
@media (max-width: 900px){
  .footer-grid{ grid-template-columns: 1fr; gap: 18px; }
}

.footer-left{ min-width:0; }
.footer-brand{ display:flex; align-items:center; gap:10px; }
.footer-brand-name{ font-weight:750; letter-spacing:-0.01em; }
.footer-tagline{ margin-top:10px; }
.footer-note{
  margin-top:12px;
  padding-top:12px;
  border-top: 1px dashed color-mix(in oklab, var(--border), transparent 30%);
}

.social-row{ display:flex; gap:10px; margin-top: 12px; }
.social{
  width:42px; height:42px;
  border-radius:999px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  display:grid;
  place-items:center;
  transition: transform 160ms var(--ease), border-color 160ms var(--ease), background 160ms var(--ease);
}
.social:hover{
  transform: translateY(-1px);
  border-color: var(--border-2);
  background: color-mix(in oklab, var(--surface), transparent 0%);
}

.footer-links{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 18px;
  align-content:start;
}
@media (max-width: 980px){
  .footer-links{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.footer-col{ min-width:0; }

.footer-h{
  background: transparent;
  border: 0;
  padding: 0;
  width: 100%;
  text-align: left;

  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--faint);
  margin: 4px 0 10px;
}

.footer-links a{
  position:relative;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  min-height: 38px;
  padding: 9px 10px;
  border-radius: 12px;
  color: color-mix(in oklab, var(--muted), white 8%);
  transition: background 160ms var(--ease), color 160ms var(--ease), border-color 160ms var(--ease), transform 160ms var(--ease);
}
.footer-links a::after{
  content:"";
  position:absolute;
  left:10px; right:10px;
  bottom:7px;
  height:1px;
  background: transparent;
  transition: background 160ms var(--ease);
}
.footer-links a:hover{
  background: var(--surface-2);
  color: var(--text);
  transform: translateY(-0.5px);
}
.footer-links a:hover::after{
  background: color-mix(in oklab, var(--accent), transparent 65%);
}

.footer-links a.back-top{
  margin-top:6px;
  border: 1px dashed color-mix(in oklab, var(--border), transparent 20%);
  color: var(--muted);
}
.footer-links a.back-top:hover{
  border-color: color-mix(in oklab, var(--accent), var(--border-2) 60%);
  color: var(--text);
}

@media (max-width: 768px){
  .footer-links{
	display:block;
	grid-template-columns: 1fr;
  }
  .footer-col{
	border-bottom: 1px solid var(--border);
	margin-bottom: 12px;
  }
  .footer-col:last-child{
	border-bottom:none;
	margin-bottom:0;
  }
  .footer-h{
	font-size: 13px;
	font-weight: 650;
	letter-spacing: 0;
	text-transform: none;
	color: var(--text);
	cursor: pointer;
	padding: 14px 0;
	margin: 0;
	user-select: none;
	display:flex;
	align-items:center;
	justify-content: space-between;
	position:relative;
  }
  .footer-h::after{
	content:"↓";
	font-size: 12px;
	color: var(--muted);
	transition: transform 220ms var(--ease);
	margin-left: 8px;
	opacity: 0.7;
  }
  .footer-col.active .footer-h::after{
	transform: rotate(180deg);
	color: var(--accent);
  }

  .footer-links a:not(.back-top){
	display:none;
	padding: 10px 0;
	color: color-mix(in oklab, var(--muted), white 8%);
	border-top: 1px solid var(--surface-2);
	opacity: 0;
	transform: translateY(-5px);
	transition: opacity 220ms var(--ease), transform 220ms var(--ease);
  }
  .footer-col.active a:not(.back-top){
	display:flex;
	opacity: 1;
	transform: translateY(0);
  }

  .footer-links a.back-top{
	display:flex !important;
	margin-top: 16px;
	margin-bottom: 8px;
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 12px 14px;
	width: 100%;
	justify-content:center;
	opacity: 1 !important;
	transform:none !important;
  }

  .footer-col.active a:nth-child(2):not(.back-top) { transition-delay: 50ms; }
  .footer-col.active a:nth-child(3):not(.back-top) { transition-delay: 100ms; }
  .footer-col.active a:nth-child(4):not(.back-top) { transition-delay: 150ms; }
  .footer-col.active a:nth-child(5):not(.back-top) { transition-delay: 200ms; }

  .footer-links a:hover:not(.back-top){ color: var(--text); background: transparent; }
  .footer-links a.back-top:hover{
	border-color: color-mix(in oklab, var(--accent), var(--border-2) 60%);
	background: var(--surface-2);
  }
}

.footer-bar{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-meta{ display:flex; gap:8px; align-items:center; }
.footer-mini{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--muted);
  transition: background 160ms var(--ease), color 160ms var(--ease), border-color 160ms var(--ease);
}
.footer-mini:hover{
  background: var(--surface-2);
  border-color: var(--border);
  color: var(--text);
}

.footer-links a:focus-visible,
.footer-mini:focus-visible,
.social:focus-visible,
.footer-h:focus-visible{
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 12px;
}

.brand-mark--sm{
  width: 28px;
  height: 28px;
  padding: 4px;
  border-radius: 10px;
}
.brand-mark--sm::before{ opacity: 0.45; }
.brand-mark--sm::after{ opacity: 0.40; }

.reveal{
  opacity: 0;
  transform: translateY(10px);
  filter: blur(4px);
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition: opacity 520ms ease, transform 520ms ease, filter 520ms ease;
}
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; filter:none; }
  .reveal.is-visible{ transition:none; }
  html{ scroll-behavior:auto; }
}

@media (max-width: 768px) {
  .back-top.mobile-back-top {
	display: none;
  }
  
  .footer-links .back-top.mobile-back-top {
	display: flex !important;
	margin-top: 20px;
	margin-bottom: 10px;
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 14px 16px;
	width: 100%;
	justify-content: center;
	font-weight: 500;
	background: var(--surface-2);
	color: var(--text);
	transition: all 160ms var(--ease);
  }
  
  .footer-links .back-top.mobile-back-top:hover {
	border-color: var(--accent);
	background: color-mix(in oklab, var(--surface), transparent 0%);
	transform: translateY(-1px);
  }
  
  .footer-col .back-top:not(.mobile-back-top) {
	display: none !important;
  }
}

@media (min-width: 769px) {
  .back-top.mobile-back-top {
	display: none !important;
  }
  
  .footer-col .back-top:not(.mobile-back-top) {
	display: flex;
  }
}

.segmented{
  display:inline-flex;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  border-radius: 999px;
  overflow:hidden;
  flex: 0 0 auto;
}
.seg-btn{
  height: 40px;
  padding: 0 12px;
  font-size: 13px;
  color: var(--muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
  white-space: nowrap;
}
.seg-btn:hover{ background: rgba(255,255,255,.06); }
.seg-btn.is-active{
  background: rgba(255,255,255,.10);
  color: var(--text);
}


.read-progress{
  position:absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: rgba(255,255,255,.08);
  overflow:hidden;
}
.read-progress > i{
  display:block;
  height:100%;
  width:0%;
  background: var(--grad);
  transition: width 120ms linear;
}
html[data-theme="light"] .read-progress{ background: rgba(10,14,26,.10); }

main{
  padding-top: calc(var(--header-h) + 22px);
  padding-bottom: 72px;
}

section[id]{ scroll-margin-top: calc(var(--header-h) + 18px); }

.hero{
  padding: 22px 0 8px;
}
.kicker-row{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items:center;
  margin-bottom: 14px;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.05);
  color: var(--muted);
  font-size: 13px;
}
.kicker .dot{ width: 7px; height: 7px; }

h1{
  margin: 0;
  font-size: clamp(30px, 4.2vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.subhead{
  margin-top: 10px;
  max-width: 80ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.pipeline-card{ margin-top: 16px; }
.pipeline-head{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.pipeline-head .left{
  display:flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.pipeline-head h2{
  margin:0;
  font-size: 18px;
  letter-spacing: -.01em;
}
.pipeline-head p{
  margin:0;
  color: var(--faint);
  font-size: 13px;
  line-height: 1.45;
  max-width: 72ch;
}
.chip{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}
.chip .dot{ width:7px; height:7px; background: var(--green); box-shadow: 0 0 0 4px rgba(34,197,94,.14); }

.steps{
  display:grid;
  grid-template-columns: repeat(6, minmax(0,1fr));
  gap: 10px;
  align-items: stretch;
}
@media (max-width: 1100px){
  .steps{ grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (max-width: 640px){
  .steps{ grid-template-columns: 1fr; }
}

.step{
  position: relative;
  padding: 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  min-height: 110px;
  display:flex;
  flex-direction: column;
  gap: 10px;
  overflow:hidden;
}
html[data-theme="light"] .step{ background: rgba(255,255,255,.72); border: 1px solid rgba(10,14,26,.12); }
.step::before{
  content:"";
  position:absolute;
  inset: -2px;
  border-radius: inherit;
  background: radial-gradient(260px 90px at 10% 10%, rgba(110,231,255,.16), transparent 60%),
			  radial-gradient(240px 90px at 90% 10%, rgba(167,139,250,.14), transparent 60%);
  opacity:.65;
  filter: blur(18px);
  pointer-events:none;
}
.step > *{ position: relative; z-index:1; }

.step-top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
}
.step-num{
  width: 30px; height: 30px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 850;
  color: rgba(7,16,25,.92);
  background: var(--grad);
  flex: 0 0 auto;
}
.step-ico{
  width: 34px; height: 34px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 auto;
  color: var(--text);
}
html[data-theme="light"] .step-ico{ background: rgba(255,255,255,.78); border-color: rgba(10,14,26,.12); }
.step-ico svg{ width: 18px; height: 18px; stroke: currentColor; stroke-width:2; fill: none; }

.step-title{
  font-weight: 850;
  letter-spacing: -.01em;
}
.step-text{
  margin:0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.content-layout{
  margin-top: 14px;
  display:grid;
  grid-template-columns: 280px 1fr;
  gap: 14px;
  align-items:start;
}
@media (max-width: 980px){
  .content-layout{ grid-template-columns: 1fr; }
}

.toc{
  position: sticky;
  top: calc(var(--header-h) + 18px);
  padding: 14px;
  border-radius: var(--radius-xl);
}
.toc h3{
  margin:0;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--faint);
}
.toc a{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 16px;
  color: var(--muted);
  border: 1px solid transparent;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease;
  margin-top: 8px;
  font-size: 14px;
}
.toc a:hover{ background: rgba(255,255,255,.06); color: var(--text); }
.toc a.active{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
  color: var(--text);
}
.toc .mini{
  font-size: 12px;
  color: var(--faint);
}

.toc-mobile{
  display:none;
  margin-top: 12px;
}
@media (max-width: 980px){
  .toc{ display:none; }
  .toc-mobile{ display:block; }
}
.toc-mobile .panel{
  margin-top: 10px;
  display:none;
  padding: 10px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}
html[data-theme="light"] .toc-mobile .panel{ background: rgba(255,255,255,.75); border-color: rgba(10,14,26,.12); }
.toc-mobile.open .panel{ display:block; }
.toc-mobile a{ display:block; padding: 10px 10px; border-radius: 14px; color: var(--muted); }
.toc-mobile a:hover{ background: rgba(255,255,255,.06); color: var(--text); }

.section-card{ padding: 18px; }
@media (max-width: 560px){ .section-card{ padding: 14px; } }

.section-title{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.section-title h2{
  margin:0;
  font-size: 20px;
  letter-spacing: -.01em;
}
.section-title p{
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;


  line-height: 1.55;
  max-width: 78ch;
}
.section-badges{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content:flex-end;
}

.split{
  display:grid;
  gap: 14px;
  align-items:start;
  margin-top: 12px;
}


@media (max-width: 980px){
  .split{ grid-template-columns: 1fr; }
}

.bullets{
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display:flex;
  flex-direction: column;
  gap: 10px;
}
.bullets li{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  color: var(--muted);
  line-height: 1.5;
  font-size: 14px;
}
.bullets li .dot{
  margin-top: 7px;
  width: 8px; height: 8px;
  background: var(--aqua);
  box-shadow: 0 0 0 4px rgba(110,231,255,.14);
  flex: 0 0 auto;
}

.callout{
  margin-top: 12px;
  padding: 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
html[data-theme="light"] .callout{ background: rgba(255,255,255,.75); border-color: rgba(10,14,26,.12); }

pre.code{
  margin: 0;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.22);
  overflow:auto;
  color: rgba(255,255,255,.88);
  font-family: var(--mono);
  font-size: 12.5px;
  line-height: 1.55;
  min-height: 160px;
}
html[data-theme="light"] pre.code{
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(10,14,26,.12);
  color: rgba(10,14,26,.88);
}

.code-head{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.code-head .title{
  font-weight: 850;
  letter-spacing: -.01em;
  color: var(--text);
}

.copy-mini{
  width: 40px; height: 40px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  flex: 0 0 auto;
  color: var(--text);
}
.copy-mini:hover{ background: rgba(255,255,255,.06); }
.copy-mini svg{ width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; }

details{
  margin-top: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  border-radius: 18px;
  padding: 12px;
}
details summary{
  cursor:pointer;
  font-weight: 800;
  color: var(--text);
  outline:none;
}
details p{
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
details code{
  font-family: var(--mono);
  font-size: 12.5px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
  padding: 2px 6px;
  border-radius: 8px;
}
html[data-theme="light"] details code{
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(10,14,26,.12);
}

.faq{
  margin-top: 10px;
  display:flex;
  flex-direction: column;
  gap: 10px;
}

.cta-block{
  margin-top: 14px;
  padding: 18px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-block h2{ margin:0; font-size: 20px; letter-spacing: -.01em; }
.cta-block p{ margin: 8px 0 0; color: var(--muted); max-width: 70ch; }
.cta-actions{ display:flex; gap: 10px; flex-wrap: wrap; }
@media (max-width: 560px){
  .cta-actions{ width: 100%; }
  .cta-actions .btn{ width: 100%; }
}

.sheet{
  position: fixed;
  inset: 0;
  z-index: 1300;
  pointer-events:none;
}
.sheet.open{ pointer-events:auto; }
.sheet-backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.58);
  opacity:0;
  transition: opacity 180ms ease;
}
.sheet.open .sheet-backdrop{ opacity:1; }
.sheet-panel{
  position:absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(560px, 96vw);
  background: rgba(8,10,16,.84);
  border-left: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
  transform: translateX(14px);
  opacity:0;
  transition: transform 220ms ease, opacity 220ms ease;
  padding: calc(16px + env(safe-area-inset-top)) 16px calc(16px + env(safe-area-inset-bottom)) 16px;
  overflow:auto;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
html[data-theme="light"] .sheet-panel{
  background: rgba(255,255,255,.92);
  border-left: 1px solid rgba(10,14,26,.12);
}
.sheet.open .sheet-panel{ transform: translateX(0); opacity:1; }
.sheet-head{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
html[data-theme="light"] .sheet-head{ border-bottom: 1px solid rgba(10,14,26,.10); }
.sheet-head h3{ margin:0; font-size: 16px; }
.sheet-head .meta{ margin-top: 6px; color: var(--faint); font-size: 13px; line-height: 1.45; }
.sheet-body{ padding-top: 12px; }
.sheet-actions{ display:flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.sheet-actions .btn{ flex: 1 1 auto; }

.fab{
  position: fixed;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 1400;
  display:none;
}
.fab button{
  height: 46px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.50);
  color: var(--text);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display:inline-flex;
  align-items:center;
  gap: 10px;
  cursor:pointer;
}
html[data-theme="light"] .fab button{
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(10,14,26,.12);
  color: rgba(10,14,26,.88);
}
.fab svg{ width: 18px; height: 18px; stroke: currentColor; stroke-width:2; fill: none; }

.toast{
  position: fixed;
  left: 50%;
  bottom: calc(18px + env(safe-area-inset-bottom));
  transform: translateX(-50%);
  background: rgba(0,0,0,.72);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.92);
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events:none;
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 2000;
  font-size: 13px;
}
html[data-theme="light"] .toast{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(10,14,26,.12);
  color: rgba(10,14,26,.88);
}
.toast.show{ opacity:1; transform: translateX(-50%) translateY(-2px); }


.sr-only{
  position:absolute!important;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

.content-layout,
.split,
.steps,
.section-title,
.pipeline-head {
  min-width: 0;
}

.content-layout > *,
.split > *,
.steps > *,
.section-title > *,
.pipeline-head > * {
  min-width: 0; 
}

.content-layout{
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
}
.split{
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.mono, code, pre, .pill, .chip, .tag, .kv, .small {
  overflow-wrap: anywhere;
  word-break: break-word;
}

pre.code{
  max-width: 100%;
  min-width: 0;
}

@media (max-width: 980px){
  .content-layout{ grid-template-columns: minmax(0,1fr); }
  .split{ grid-template-columns: minmax(0,1fr); }
}

@supports (-webkit-touch-callout: none){
  .content-layout > *,
  .split > *{
	min-width: 0;
  }
}

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

.step-num{
  flex: 0 0 auto;
}

.step-title{
  flex: 1 1 auto;    
  min-width: 0;       
  font-weight: 850;
  letter-spacing: -.01em;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; 
}

.step-ico{
  flex: 0 0 auto;
  margin-left: auto;
}

.pipeline-head{
  min-width: 0;
}
.pipeline-head .left{
  min-width: 0;
}

.pipeline-head .chip{
  flex: 0 0 auto;
  white-space: nowrap;
  padding: 7px 10px;
  font-size: 12.5px;
  border-radius: 999px;
}

@media (max-width: 520px){
  .pipeline-head{
	position: relative;
	padding-right: 86px; 
  }
  .pipeline-head .chip{
	position: absolute;
	top: 0;
	right: 0;
	transform: translateY(2px);
  }
}

.step-top{
  display:flex;
  align-items:center;
  justify-content:flex-start !important;
  gap: 10px;
}

.step-title{
  flex: 1 1 auto;
  min-width: 0;
  text-align: left !important;
  margin-left: 2px;
}

.step-title{ margin-left: 2px !important; }

.pipeline-head .chip{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  color: var(--muted);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: none;
}

.pipeline-head .chip .dot{
  width: 7px;
  height: 7px;
  box-shadow: 0 0 0 3px rgba(34,197,94,.12);
  background: var(--green);
}

@media (max-width: 520px){
  .pipeline-head{
	position: relative;
	padding-right: 86px;
  }
  .pipeline-head .chip{
	position: absolute;
	top: 0;
	right: 0;
	transform: translateY(2px);
  }
}