@font-face {
  font-family: "Unbounded";
  src: url("/assets/unbounded-cyrillic-wght.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
}

:root {
  --black: #000;
  --ink: #111;
  --white: #fff;
  --off: #f5f5f2;
  --gray: #666;
  --line: #c9c9c9;
  --red: #fd4820;
  --red-ink: #c52a0b;
  --blue: #91adff;
  --mint: #35e8a0;
  --max: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font: 1.0625rem/1.62 Arial, Helvetica, sans-serif;
  overflow-wrap: anywhere;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
h1, h2, h3 { overflow-wrap: normal; hyphens: none; word-break: normal; }
button, summary, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--mint); outline-offset: 4px; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: .75rem 1rem;
  color: var(--black);
  background: var(--mint);
  transform: translateY(-180%);
}
.skip-link:focus { transform: translateY(0); }

.masthead { color: var(--white); background: var(--black); }
.masthead-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.25rem;
  width: min(100% - 48px, var(--max));
  min-height: 88px;
  margin: 0 auto;
  font: 700 .7rem/1.15 "Unbounded", Arial, sans-serif;
}
.wordmark {
  display: inline-flex;
  width: max-content;
  min-height: 48px;
  align-items: center;
  gap: .75rem;
  letter-spacing: .12em;
  text-decoration: none;
}
.wordmark img { width: 38px; height: 38px; border-radius: 12px; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: .55rem; }
.desktop-nav a,
.header-action {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: .75rem 1rem;
  border: 2px solid var(--white);
  border-radius: 15px;
  color: var(--black);
  background: var(--white);
  text-decoration: none;
}
.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] { color: var(--white); background: var(--black); }
.header-action { justify-self: end; border-color: var(--red); background: var(--red); }
.header-action:hover { border-color: var(--mint); background: var(--mint); }
.mobile-menu { display: none; }

.cover.home-cover {
  display: block;
  width: 100%;
  margin: 0;
  color: var(--white);
  background: var(--black);
}
.home-main {
  position: relative;
  display: grid;
  grid-template-columns: 34% 66%;
  min-height: clamp(650px, calc(100svh - 190px), 820px);
  overflow: hidden;
}
.home-copy {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 34px clamp(28px, 2.7vw, 42px) 40px;
  color: var(--white);
  background: var(--black);
}
.home-pills { display: flex; flex-wrap: nowrap; gap: 14px; }
.home-pills a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: .7rem 1rem;
  border: 2px solid var(--white);
  border-radius: 999px;
  color: var(--black);
  background: var(--white);
  font: 900 .7rem/1 Arial, Helvetica, sans-serif;
  letter-spacing: -.02em;
  text-decoration: none;
}
.home-pills a:hover,
.home-pills a:focus-visible { border-color: #49e4ad; background: #49e4ad; }
.home-copy-body { margin-top: clamp(72px, 9vh, 92px); }
.home-cover h1 {
  max-width: none;
  margin: 0;
  font: 900 clamp(5.5rem, 8.35vw, 8.5rem)/.86 Arial Black, Arial, Helvetica, sans-serif;
  letter-spacing: -.085em;
}
.home-cover h1 span { display: block; }
.home-lines { display: grid; gap: 15px; width: 94%; margin-top: 38px; }
.home-lines i { display: block; width: 100%; height: 17px; background: var(--white); }
.home-lines i:last-child { width: 72%; }
.home-primary {
  display: inline-flex;
  width: min(92%, 365px);
  min-height: 78px;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  padding: 1rem 1.2rem;
  border: 3px solid #d93618;
  border-radius: 18px;
  color: var(--white);
  background: #d93618;
  font: 900 .95rem/1.15 Arial, Helvetica, sans-serif;
  text-align: center;
  text-decoration: none;
}
.home-primary:hover,
.home-primary:focus-visible { color: var(--black); border-color: #49e4ad; background: #49e4ad; }
.home-mint-rule { position: absolute; right: 9%; bottom: 31px; left: clamp(28px, 2.7vw, 42px); height: 4px; background: #49e4ad; }
.home-stage {
  position: relative;
  min-width: 0;
  overflow: visible;
  background: #5367f0;
}
.home-browser-frame {
  position: absolute;
  top: 9%;
  right: 5%;
  width: 70%;
  height: 72%;
  overflow: hidden;
  border: 6px solid var(--black);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 18px 28px rgb(0 0 0 / 22%);
}
.home-browser-bar {
  display: flex;
  height: 68px;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  color: var(--white);
  background: var(--black);
}
.home-browser-bar strong { font: 900 1.65rem/1 Arial Black, Arial, sans-serif; letter-spacing: -.04em; }
.home-browser-bar span { display: flex; gap: 12px; }
.home-browser-bar i { display: block; width: 18px; height: 18px; border-radius: 50%; background: var(--white); }
.home-browser-bar i:first-child { background: #49e4ad; }
.home-browser-canvas { position: relative; height: calc(100% - 68px); overflow: hidden; background: var(--white); }
.home-screen-mark { position: absolute; z-index: 3; display: block; height: auto; border: 3px solid var(--black); box-shadow: 6px 7px 0 rgb(0 0 0 / 18%); }
.home-screen-mark--browser { top: 50%; left: 50%; width: clamp(72px, 11vw, 112px); border-radius: 24%; transform: translate(-50%, -50%); }
.home-phone-frame {
  position: absolute;
  z-index: 3;
  bottom: -3%;
  left: -5%;
  width: 27%;
  height: 64%;
  overflow: hidden;
  border: 7px solid #181818;
  border-radius: 38px;
  color: var(--white);
  background: var(--black);
  box-shadow: 12px 16px 28px rgb(0 0 0 / 34%);
  transform: rotate(-6deg);
  transform-origin: 50% 100%;
}
.home-phone-notch { position: absolute; top: 8px; left: 50%; width: 38%; height: 18px; border-radius: 999px; background: #111; transform: translateX(-50%); }
.home-screen-mark--phone { top: 50%; left: 50%; width: 52%; border-radius: 24%; transform: translate(-50%, -50%); }
.home-manifesto {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 190px;
  margin: 0;
  padding: 0;
  color: var(--black);
  background: var(--white);
  list-style: none;
}
.manifesto-item { min-width: 0; }
.manifesto-item + .manifesto-item { border-left: 3px solid var(--black); }
.manifesto-link { position: relative; display: flex; width: 100%; min-height: 190px; align-items: center; padding: 28px 4vw; text-decoration: none; }
.manifesto-link > span { position: absolute; top: 24px; right: 24px; font: 900 1.1rem/1 Arial, sans-serif; }
.manifesto-link:hover,
.manifesto-link:focus-visible { color: var(--black); background: var(--mint); }
.manifesto-item strong { font: 900 clamp(2rem, 3.25vw, 3.65rem)/.86 Arial Black, Arial, Helvetica, sans-serif; letter-spacing: -.055em; }

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 2rem;
  color: #bdbdbd;
  font: 600 .7rem/1.35 "Unbounded", Arial, sans-serif;
  text-transform: uppercase;
}
.breadcrumbs a,
.breadcrumbs span { display: inline-flex; min-height: 44px; align-items: center; }
.eyebrow,
.source-kicker {
  margin: 0 0 1.15rem;
  color: var(--mint);
  font: 600 .7rem/1.4 "Unbounded", Arial, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1,
.chapter h2,
.source-plate h3,
.footer-lead h2,
.not-found h1 {
  font-family: "Unbounded", Arial, sans-serif;
  font-weight: 800;
}
h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.55rem, 3.8vw, 4.2rem);
  letter-spacing: -.055em;
  line-height: .96;
}
.lede { max-width: 650px; margin: 1.7rem 0 0; color: #d0d0d0; font-size: clamp(1.05rem, 1.4vw, 1.3rem); line-height: 1.48; }
.hero-actions,
.source-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 2rem; }
.button,
.source-link {
  display: inline-flex;
  min-width: 44px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .85rem 1.15rem;
  border: 2px solid currentColor;
  border-radius: 15px;
  font: 700 .72rem/1.25 "Unbounded", Arial, sans-serif;
  text-align: center;
  text-decoration: none;
}
.button.primary { color: var(--black); border-color: var(--red); background: var(--red); }
.button.secondary { color: var(--black); border-color: var(--white); background: var(--white); }
.button:hover,
.source-link:hover { color: var(--black); border-color: var(--mint); background: var(--mint); }
.task-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, .65fr);
  min-height: 570px;
  color: var(--white);
  background: var(--black);
}
.task-hero-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 72px clamp(32px, 6vw, 92px) 78px max(24px, calc((100vw - var(--max)) / 2));
}
.task-hero h1 { max-width: 980px; font-size: clamp(2.45rem, 5vw, 5.45rem); }
.task-hero .lede { max-width: 760px; }
.task-visual {
  position: relative;
  display: grid;
  min-width: 0;
  overflow: hidden;
  place-items: center;
  border-left: 7px solid var(--black);
  background: var(--blue);
}
.task-visual::before {
  content: "";
  position: absolute;
  inset: 12% 12% 18% 16%;
  border: 7px solid var(--black);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 15px 15px 0 var(--black);
}
.task-visual span {
  position: absolute;
  z-index: 3;
  top: 12%;
  right: 10%;
  padding: .65rem .8rem;
  border: 3px solid var(--black);
  border-radius: 12px;
  color: var(--black);
  background: var(--mint);
  font: 700 .7rem/1.25 "Unbounded", Arial, sans-serif;
  text-transform: uppercase;
}
.task-visual-mark {
  position: relative;
  z-index: 2;
  display: block;
  width: clamp(116px, 15vw, 224px);
  height: auto;
  border: 6px solid var(--black);
  border-radius: 26%;
  box-shadow: 10px 10px 0 var(--black);
}
.task-visual i { position: absolute; z-index: 2; width: 35%; height: 14%; border: 5px solid var(--black); background: var(--red); }
.task-visual i:nth-of-type(1) { right: 4%; bottom: 12%; }
.task-visual i:nth-of-type(2) { bottom: 4%; left: 4%; width: 20%; background: var(--mint); }
.task-hero--diagnostic .task-visual,
.task-hero--help-hub .task-visual { background: var(--red); }
.task-hero--reference .task-visual,
.task-hero--faq .task-visual { background: var(--mint); }
.task-hero--setup .task-visual { background: var(--white); }

.gateway-directory {
  width: min(100% - 48px, 1220px);
  margin: 0 auto;
  padding: 96px 0 128px;
}
.gateway-heading { display: grid; grid-template-columns: 170px minmax(0, 1fr); gap: 38px; align-items: start; margin-bottom: 42px; }
.gateway-heading p { margin: .7rem 0 0; color: var(--red-ink); font: 700 .7rem/1.4 "Unbounded", Arial, sans-serif; text-transform: uppercase; }
.gateway-heading h2 { max-width: 930px; margin: 0; font: 800 clamp(2.5rem, 5vw, 5rem)/1.02 "Unbounded", Arial, sans-serif; letter-spacing: -.045em; }
.gateway-routes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border: 5px solid var(--black); }
.gateway-routes a { position: relative; display: grid; min-height: 190px; align-content: space-between; gap: 22px; padding: 30px; color: var(--white); background: var(--black); text-decoration: none; }
.gateway-routes a:nth-child(2),
.gateway-routes a:nth-child(3) { color: var(--black); background: var(--blue); }
.gateway-routes a:nth-child(3),
.gateway-routes a:nth-child(4) { border-top: 5px solid var(--black); }
.gateway-routes a:nth-child(even) { border-left: 5px solid var(--black); }
.gateway-routes a span { color: var(--mint); font: 600 .7rem/1.35 "Unbounded", Arial, sans-serif; text-transform: uppercase; }
.gateway-routes a:nth-child(2) span,
.gateway-routes a:nth-child(3) span { color: var(--black); }
.gateway-routes a strong { max-width: 500px; font: 700 clamp(1rem, 2vw, 1.6rem)/1.3 "Unbounded", Arial, sans-serif; }
.gateway-routes a i { position: absolute; right: 24px; bottom: 22px; font-style: normal; }
.gateway-routes a:hover { color: var(--black); background: var(--mint); }
.gateway-directory > .reading-column { margin-top: 108px; }
.gateway-directory .editorial-copy,
.gateway-directory .specimen-plate,
.gateway-directory .registry,
.gateway-directory .steps,
.gateway-directory .faq-list,
.gateway-directory .related nav { margin-left: 108px; }

.field-layout,
.task-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: clamp(44px, 7vw, 110px);
  width: min(100% - 48px, 1220px);
  margin: 0 auto;
  padding: 100px 0 128px;
}
.chapter-index { position: sticky; top: 24px; align-self: start; padding: 24px; color: var(--white); background: var(--black); }
.chapter-index > p { margin: 0 0 1rem; color: var(--mint); font: 600 .7rem/1.4 "Unbounded", Arial, sans-serif; text-transform: uppercase; }
.chapter-index ol { margin: 0; padding: 0; border-top: 1px solid #444; list-style: none; }
.chapter-index li { border-bottom: 1px solid #444; }
.chapter-index a { display: grid; grid-template-columns: 2rem 1fr; min-height: 54px; align-items: center; gap: .25rem; padding: .6rem 0; color: var(--white); font: 600 .7rem/1.3 "Unbounded", Arial, sans-serif; text-decoration: none; }
.chapter-index a span { color: var(--red); }
.chapter-index a:hover { color: var(--mint); }
.reading-column { min-width: 0; }
.chapter { scroll-margin-top: 28px; padding: 0 0 108px; }
.chapter:last-child { padding-bottom: 0; }
.chapter-head { display: grid; grid-template-columns: 92px minmax(0, 1fr); gap: 1rem; align-items: start; margin-bottom: 38px; }
.chapter-head > h2:only-child { grid-column: 1 / -1; }
.chapter-head > span { margin-top: .6rem; color: var(--red-ink); font: 600 .7rem/1.4 "Unbounded", Arial, sans-serif; text-transform: uppercase; }
.chapter h2 { max-width: 850px; margin: 0; font-size: clamp(2.25rem, 4.6vw, 4.65rem); letter-spacing: -.055em; line-height: 1.02; }
.editorial-copy { max-width: 900px; margin-left: 108px; columns: 2 300px; column-gap: 50px; }
.editorial-copy p { margin: 0 0 1.2rem; }
.specimen-plate {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
  margin: 54px 0 0 108px;
  overflow: hidden;
  border: 6px solid var(--black);
  background: var(--blue);
  box-shadow: 14px 14px 0 var(--red);
}
.route-glyph { position: relative; display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: 1.2fr .8fr; width: min(72%, 510px); aspect-ratio: 3 / 2; border: 6px solid var(--black); background: var(--white); }
.route-glyph span { grid-row: 1 / 3; display: grid; place-items: center; padding: clamp(20px, 4vw, 52px); background: var(--black); }
.route-glyph-mark { display: block; width: min(100%, 192px); height: auto; border-radius: 24%; }
.route-glyph i:nth-child(2) { background: var(--red); }
.route-glyph i:nth-child(3) { background: var(--mint); }
.route-glyph i:nth-child(4) { position: absolute; right: -28px; bottom: -28px; width: 90px; height: 90px; border: 6px solid var(--black); border-radius: 50%; background: var(--white); }
.specimen-plate figcaption { position: absolute; right: 16px; bottom: 16px; max-width: 290px; padding: .7rem .8rem; border: 2px solid var(--black); border-radius: 12px; background: var(--white); font: 600 .7rem/1.4 "Unbounded", Arial, sans-serif; }
.specimen-plate figcaption.specimen-caption--link { padding: 0; }
.specimen-cta { display: flex; min-height: 44px; align-items: center; justify-content: space-between; gap: .65rem; padding: .7rem .8rem; text-decoration: none; }
.specimen-cta span { flex: 0 0 auto; font-size: 1rem; }
.specimen-caption--link:hover,
.specimen-caption--link:focus-within { background: var(--mint); }
.registry,
.steps,
.faq-list,
.related nav { margin: 0 0 0 108px; }
.registry { border-top: 5px solid var(--black); }
.registry > div { display: grid; grid-template-columns: minmax(150px, .72fr) minmax(0, 1.28fr); gap: 28px; padding: 22px 0; border-bottom: 2px solid var(--black); }
.registry dt { font: 700 1rem/1.35 "Unbounded", Arial, sans-serif; }
.registry dd { margin: 0; color: var(--gray); }
.steps { padding: 0; border-top: 5px solid var(--black); list-style: none; }
.steps li { display: grid; grid-template-columns: 76px minmax(0, 1fr); gap: 26px; padding: 24px 0 28px; border-bottom: 2px solid var(--black); }
.steps li > span { display: grid; width: 52px; height: 52px; place-items: center; color: var(--black); background: var(--red); font: 700 .7rem/1 "Unbounded", Arial, sans-serif; }
.steps h3 { margin: 0 0 .45rem; font: 700 1.25rem/1.3 "Unbounded", Arial, sans-serif; }
.steps p { max-width: 650px; margin: 0; color: var(--gray); }
.source-plate { display: grid; grid-template-columns: minmax(0, 1fr) minmax(230px, .72fr); gap: 48px; align-items: end; min-height: 430px; padding: clamp(32px, 6vw, 72px); color: var(--black); background: var(--red); box-shadow: 14px 14px 0 var(--blue); }
.source-plate > * { min-width: 0; }
.source-plate h3 { max-width: 620px; margin: 0 0 1rem; font-size: clamp(1.8rem, 2.9vw, 3.2rem); line-height: 1.03; letter-spacing: -.045em; }
.source-plate p:not(.source-kicker) { max-width: 610px; margin: 0; }
.source-plate .source-kicker { color: var(--black); }
.source-actions { min-width: 0; align-items: stretch; margin: 0; flex-direction: column; }
.source-actions .button,
.source-link { width: 100%; min-width: 0; }
.source-actions .button.primary { border-color: var(--black); background: var(--black); color: var(--white); }
.source-link { color: var(--black); background: var(--white); }
.faq-list { border-top: 5px solid var(--black); }
details { border-bottom: 2px solid var(--black); }
summary { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 1rem; min-height: 68px; align-items: center; padding: 18px 0; cursor: pointer; font: 700 1rem/1.35 "Unbounded", Arial, sans-serif; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary i { color: var(--red); font: normal 1.5rem/1 Arial, sans-serif; }
details[open] summary i { transform: rotate(45deg); }
.faq-list details p { max-width: 690px; margin: 0 0 24px; color: var(--gray); }
.related nav { border-top: 5px solid var(--black); }
.related nav a { display: grid; grid-template-columns: 120px minmax(0, 1fr) 44px; gap: 20px; min-height: 76px; align-items: center; border-bottom: 2px solid var(--black); text-decoration: none; }
.related nav a > span { color: var(--red-ink); font: 600 .7rem/1.35 "Unbounded", Arial, sans-serif; text-transform: uppercase; }
.related nav a strong { font: 600 .94rem/1.4 "Unbounded", Arial, sans-serif; }
.related nav a i { font-style: normal; text-align: center; }
.related nav a:hover { background: var(--off); }

.site-footer { color: var(--white); background: var(--black); }
.footer-lead { display: grid; grid-template-columns: .42fr 1.35fr auto; gap: 38px; align-items: end; width: min(100% - 48px, var(--max)); margin: 0 auto; padding: 84px 0 70px; }
.footer-lead > div { color: var(--mint); font: 600 .7rem/1.4 "Unbounded", Arial, sans-serif; }
.footer-lead > div p { margin: .8rem 0 0; }
.footer-lead img { width: 72px; height: 72px; border-radius: 20px; }
.footer-lead h2 { margin: 0; font-size: clamp(2.5rem, 5vw, 6rem); line-height: .96; letter-spacing: -.045em; }
.footer-lead h2 em { color: var(--red); font-style: normal; }
.footer-lead .button { align-self: end; }
.footer-directory { display: grid; grid-template-columns: 1.05fr 1.4fr 1.05fr .9fr; gap: 40px; padding: 62px max(24px, calc((100% - var(--max)) / 2)) 70px; color: var(--black); background: var(--blue); }
.footer-directory section h2 { margin: 0 0 1.1rem; font: 700 .7rem/1.4 "Unbounded", Arial, sans-serif; text-transform: uppercase; }
.footer-directory nav { display: grid; border-top: 2px solid var(--black); }
.footer-directory a { display: flex; min-height: 54px; align-items: center; padding: .7rem 0; border-bottom: 2px solid var(--black); font-size: .92rem; text-decoration: none; }
.footer-directory a:hover { background: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; width: min(100% - 48px, var(--max)); margin: 0 auto; padding: 22px 0 30px; color: #bcbcbc; font: .7rem/1.4 "Unbounded", Arial, sans-serif; }
.footer-bottom a { display: inline-flex; min-height: 44px; align-items: center; }
.not-found { display: grid; place-items: start; align-content: center; width: min(100% - 32px, 800px); min-height: 100vh; margin: 0 auto; }
.not-found p { color: var(--red-ink); font: 700 .72rem/1.4 "Unbounded", Arial, sans-serif; }
.not-found h1 { margin: 0 0 2rem; color: var(--black); }

@media (max-width: 1080px) {
  .home-pills { gap: 8px; }
  .home-pills a { padding-inline: .75rem; font-size: .7rem; }
  .home-browser-frame { width: 74%; }
  .home-phone-frame { left: -7%; width: 30%; }
  .task-hero { grid-template-columns: minmax(0, 1fr) 390px; }
  .field-layout,
  .task-layout { grid-template-columns: 190px minmax(0, 1fr); gap: 52px; }
  .chapter-head { grid-template-columns: 72px minmax(0, 1fr); }
  .editorial-copy,
  .specimen-plate,
  .registry,
  .steps,
  .faq-list,
  .related nav { margin-left: 88px; }
  .footer-lead { grid-template-columns: 1fr 2fr; }
  .footer-lead .button { grid-column: 2; justify-self: start; }
  .footer-directory { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .masthead-inner { grid-template-columns: 1fr auto; }
  .desktop-nav,
  .header-action { display: none; }
  .mobile-menu { display: block; position: relative; justify-self: end; border: 0; }
  .mobile-menu summary { display: flex; min-width: 84px; min-height: 48px; justify-content: space-between; gap: .65rem; padding: .65rem .75rem; border: 2px solid var(--white); border-radius: 15px; color: var(--black); background: var(--white); font-size: .7rem; }
  .mobile-menu summary i,
  .mobile-menu summary i::before,
  .mobile-menu summary i::after { display: block; width: 16px; height: 2px; background: var(--black); }
  .mobile-menu summary i { position: relative; }
  .mobile-menu summary i::before,
  .mobile-menu summary i::after { content: ""; position: absolute; left: 0; }
  .mobile-menu summary i::before { top: -5px; }
  .mobile-menu summary i::after { top: 5px; }
  .mobile-menu[open] summary i { background: transparent; }
  .mobile-menu[open] summary i::before { top: 0; transform: rotate(45deg); }
  .mobile-menu[open] summary i::after { top: 0; transform: rotate(-45deg); }
  .mobile-menu > nav { position: absolute; z-index: 20; top: calc(100% + 10px); right: 0; display: grid; width: min(88vw, 360px); padding: .7rem; border: 3px solid var(--black); border-radius: 18px; color: var(--black); background: var(--white); }
  .mobile-menu nav a { display: flex; min-height: 50px; align-items: center; padding: .7rem; border-bottom: 1px solid var(--line); text-decoration: none; }
  .mobile-menu nav .mobile-access { margin-top: .5rem; border: 0; border-radius: 12px; background: var(--red); }
  .home-main { grid-template-columns: 1fr; min-height: 0; }
  .home-copy { min-height: 640px; padding-inline: 32px; }
  .home-copy-body { margin-top: 76px; }
  .home-cover h1 { font-size: clamp(5rem, 17vw, 7.5rem); }
  .home-stage { min-height: 540px; }
  .home-browser-frame { top: 9%; right: 4%; width: 76%; height: 72%; }
  .home-phone-frame { bottom: -4%; left: 1%; width: 31%; height: 66%; }
  .home-manifesto { min-height: 166px; }
  .manifesto-item { padding-inline: 3vw; }
  .manifesto-item strong { font-size: clamp(1.7rem, 5vw, 2.5rem); }
  .task-hero { grid-template-columns: 1fr; }
  .task-hero-copy { padding-left: 24px; }
  .task-visual { min-height: 360px; border-top: 7px solid var(--black); border-left: 0; }
  .field-layout,
  .task-layout { display: block; padding-top: 58px; }
  .chapter-index { position: static; margin-bottom: 82px; }
  .chapter-index ol { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .chapter-index li:nth-child(odd) { border-right: 1px solid #444; }
  .chapter-index a { padding: .7rem; }
}

@media (hover: none) and (pointer: coarse) and (orientation: portrait) and (min-width: 821px) and (max-width: 1100px) {
  .home-main { display: block; position: relative; min-height: 970px; overflow: hidden; background: var(--black); }
  .home-copy { position: relative; z-index: 2; min-height: 970px; padding: 32px 30px 470px; background: transparent; }
  .home-pills { gap: 10px; }
  .home-pills a { padding: .85rem .9rem; font-size: .9rem; }
  .home-copy-body { max-width: 640px; margin-top: 45px; }
  .home-cover h1 { font-size: 6.5rem; }
  .home-lines { gap: 8px; width: 80%; margin-top: 24px; }
  .home-lines i { height: 10px; }
  .home-primary { width: 100%; min-height: 78px; margin-top: 24px; font-size: .9rem; }
  .home-mint-rule { display: none; }
  .home-stage { position: absolute; z-index: 1; inset: 500px 0 0; min-height: 0; clip-path: polygon(0 12%, 100% 0, 100% 100%, 0 100%); }
  .home-browser-frame { top: 7%; right: 3%; width: 82%; height: 82%; }
  .home-phone-frame { bottom: -3%; left: 1%; width: 34%; height: 76%; }
}

@media (max-width: 700px) {
  body { font-size: 1rem; }
  .masthead-inner,
  .field-layout,
  .task-layout,
  .gateway-directory,
  .footer-lead,
  .footer-bottom { width: min(100% - 32px, var(--max)); }
  .masthead-inner { min-height: 72px; }
  .wordmark span { font-size: .76rem; }
  .home-main { display: block; position: relative; min-height: 700px; overflow: hidden; background: var(--black); }
  .home-copy { position: relative; z-index: 2; min-height: 700px; padding: 24px 16px 280px; background: transparent; }
  .home-pills { gap: 6px; }
  .home-pills a { padding: .7rem .55rem; font-size: .7rem; }
  .home-copy-body { margin-top: 40px; }
  .home-cover h1 { font-size: clamp(2.4rem, 18vw, 5rem); }
  .home-lines { gap: 8px; width: 94%; margin-top: 20px; }
  .home-lines i { height: 9px; }
  .home-primary { width: 100%; min-height: 60px; margin-top: 22px; font-size: clamp(.7rem, 2.4vw, .86rem); }
  .home-mint-rule { display: none; }
  .home-stage { position: absolute; z-index: 1; inset: 400px 0 0; min-height: 0; clip-path: polygon(0 12%, 100% 0, 100% 100%, 0 100%); }
  .home-browser-frame { top: 10%; right: 3%; width: 80%; height: 78%; border-width: 5px; border-radius: 16px; }
  .home-browser-bar { height: 50px; padding-inline: 15px; }
  .home-browser-bar strong { font-size: 1.1rem; }
  .home-browser-bar span { gap: 7px; }
  .home-browser-bar i { width: 11px; height: 11px; }
  .home-browser-canvas { height: calc(100% - 50px); }
  .home-phone-frame { bottom: -4%; left: 1%; width: 36%; height: 72%; border-width: 5px; border-radius: 26px; }

  .home-manifesto { grid-template-columns: 1fr; min-height: 0; }
  .manifesto-link { min-height: 130px; padding: 18px; }
  .manifesto-link > span { top: 18px; right: 18px; }
  .manifesto-item + .manifesto-item { border-top: 3px solid var(--black); border-left: 0; }
  .manifesto-item strong { font-size: clamp(1rem, 8vw, 2rem); }
  .task-hero-copy { width: min(100% - 32px, 720px); margin: 0 auto; padding: 48px 0 44px; }
  .task-hero h1 { font-size: clamp(1.2rem, 8vw, 2.85rem); line-height: 1.02; }
  .task-visual { min-height: 290px; }
  .task-visual::before { inset: 11% 12% 18% 15%; border-width: 5px; box-shadow: 9px 9px 0 var(--black); }
  .task-visual strong { font-size: clamp(6rem, 36vw, 10rem); text-shadow: 7px 7px 0 var(--black); }
  .gateway-directory { padding: 70px 0 88px; }
  .gateway-heading { display: block; margin-bottom: 30px; }
  .gateway-heading p { margin: 0 0 1rem; }
  .gateway-heading h2 { font-size: clamp(1.25rem, 8vw, 3rem); }
  .gateway-routes { grid-template-columns: 1fr; }
  .gateway-routes a { min-height: 158px; padding: 24px; }
  .gateway-routes a:nth-child(n) { border: 0; border-top: 5px solid var(--black); }
  .gateway-routes a:first-child { border-top: 0; }
  .gateway-directory > .reading-column { margin-top: 82px; }
  .gateway-directory .editorial-copy,
  .gateway-directory .specimen-plate,
  .gateway-directory .registry,
  .gateway-directory .steps,
  .gateway-directory .faq-list,
  .gateway-directory .related nav { margin-left: 0; }
  .breadcrumbs { margin-bottom: 1.4rem; }
  h1 { font-size: clamp(1rem, 10.4vw, 3.35rem); }
  .lede { margin-top: 1.25rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }

  .field-layout,
  .task-layout { padding-bottom: 88px; }
  .chapter-index { margin-bottom: 74px; padding: 20px; }
  .chapter { padding-bottom: 86px; }
  .chapter-head { display: block; margin-bottom: 28px; }
  .chapter-head > span { display: block; margin: 0 0 .75rem; }
  .chapter h2 { font-size: clamp(1rem, 8.8vw, 2.75rem); }
  .editorial-copy { columns: 1; }
  .editorial-copy,
  .specimen-plate,
  .registry,
  .steps,
  .faq-list,
  .related nav { margin-left: 0; }
  .specimen-plate { min-height: 340px; margin-inline: -16px; border-right: 0; border-left: 0; box-shadow: 0 12px 0 var(--red); }
  .route-glyph { width: min(76%, 430px); }
  .route-glyph i:nth-child(4) { right: -16px; bottom: -16px; width: 65px; height: 65px; }
  .specimen-plate figcaption { right: 12px; bottom: 12px; max-width: calc(100% - 24px); }
  .registry > div { grid-template-columns: 1fr; gap: 6px; padding: 20px 0; }
  .steps li { grid-template-columns: 52px minmax(0, 1fr); gap: 14px; }
  .steps h3 { font-size: clamp(.7rem, 4.4vw, 1rem); }
  .source-plate { grid-template-columns: 1fr; min-height: 0; margin-inline: -16px; padding: 42px 16px; box-shadow: 0 12px 0 var(--blue); }
  .source-plate h3 { font-size: clamp(.9rem, 8vw, 2.3rem); }
  .source-actions { margin-top: 1rem; }
  .related nav a { grid-template-columns: 104px minmax(0, 1fr) 24px; gap: 8px; padding: .55rem 0; }
  .footer-lead { grid-template-columns: 1fr; padding: 62px 0 52px; }
  .footer-lead > * { min-width: 0; }
  .footer-lead h2 { font-size: clamp(1rem, 10vw, 3.2rem); }
  .footer-lead .button { grid-column: auto; }
  .footer-directory { grid-template-columns: 1fr; gap: 34px; padding: 50px 16px 58px; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 360px) {
  .home-pills a { padding-inline: .42rem; font-size: .7rem; }
  .chapter-index a { grid-template-columns: 1.6rem minmax(0, 1fr); padding: .65rem .35rem; }
  .related nav a { grid-template-columns: 1fr 34px; }
  .related nav a > span { grid-column: 1 / -1; padding-top: .55rem; }
  .related nav a strong { padding-bottom: .55rem; }
}

@media (prefers-reduced-motion: no-preference) {
  .button,
  .source-link,
  .home-primary,
  .manifesto-link,
  .home-pills a,
  .desktop-nav a,
  .header-action,
  .mobile-menu summary,
  .mobile-menu .mobile-access {
    transition-property: transform, color, background-color, border-color;
    transition-duration: .18s;
    transition-timing-function: cubic-bezier(.2, 0, 0, 1);
  }

  .button:active,
  .source-link:active,
  .home-primary:active,
  .manifesto-link:active,
  .home-pills a:active,
  .desktop-nav a:active,
  .header-action:active,
  .mobile-menu summary:active,
  .mobile-menu .mobile-access:active { transform: scale(.96); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
