@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/fonts/barlow-condensed-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Atkinson Hyperlegible";
  src: url("assets/fonts/atkinson-hyperlegible-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Atkinson Hyperlegible";
  src: url("assets/fonts/atkinson-hyperlegible-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --paper: #f2f0e9;
  --paper-bright: #fffef8;
  --ink: #111111;
  --red: #e32119;
  --yellow: #f4dc18;
  --muted: #575650;
  --line: rgba(17, 17, 17, 0.72);
  --header-h: 72px;
  --page-pad: clamp(20px, 4vw, 64px);
  --section-gap: clamp(76px, 10vw, 144px);
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Atkinson Hyperlegible", Arial, sans-serif;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.48;
  text-rendering: optimizeLegibility;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

svg {
  display: block;
}

::selection {
  background: var(--yellow);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-160%);
}

.skip-link:focus-visible {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: stretch;
  min-height: var(--header-h);
  background: var(--ink);
  color: #ffffff;
  border-bottom: 1px solid var(--ink);
}

.brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 170px;
  padding: 10px var(--page-pad);
  text-decoration: none;
  line-height: 0.9;
}

.brand span:first-child {
  font-size: 1.2rem;
  font-weight: 700;
}

.brand span:last-child {
  margin-top: 4px;
  color: #d8d5cc;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(20px, 3vw, 48px);
  padding: 0 30px;
}

.primary-nav a {
  color: #eceae3;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--yellow);
}

.header-action {
  display: grid;
  place-items: center;
  min-width: 230px;
  padding: 0 24px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

.header-action:hover {
  background: #ffe900;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(540px, 1.08fr);
  min-height: calc(100svh - var(--header-h));
  border-bottom: 1px solid var(--ink);
  overflow: hidden;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(52px, 7vw, 104px) clamp(32px, 5vw, 86px) clamp(44px, 5vw, 72px) var(--page-pad);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 7vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 0.78;
  text-transform: uppercase;
}

h1 span {
  display: block;
}

.hero-intro {
  max-width: 62ch;
  margin: 32px 0 0;
  color: #2c2b27;
  font-size: clamp(1rem, 1.3vw, 1.22rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  min-height: 54px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  background: transparent;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 1.8;
}

.button--signal {
  background: var(--yellow);
}

.button--signal:hover:not(:disabled) {
  background: #ffe900;
}

.button--dark {
  background: var(--ink);
  color: #ffffff;
}

.button--dark:hover {
  background: var(--red);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.text-link,
.text-button {
  border: 0;
  background: transparent;
  color: inherit;
  font-weight: 700;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  cursor: pointer;
}

.text-button {
  padding: 12px 0;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 620px;
  margin: 46px 0 0;
  border-top: 1px solid var(--line);
}

.hero-meta div {
  padding: 14px 12px 0 0;
}

.hero-meta div + div {
  padding-left: 16px;
  border-left: 1px solid var(--line);
}

.hero-meta dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-meta dd {
  margin: 3px 0 0;
  font-weight: 700;
}

.role-console {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(42px, 6vw, 86px) var(--page-pad) 58px 0;
}

.console-status {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ink);
}

.console-status span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.console-status strong {
  color: var(--red);
  font-family: var(--display);
  font-size: 1.5rem;
  text-transform: uppercase;
}

.role-lanes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 430px;
  border-bottom: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.role-signal-stage {
  position: relative;
}

.role-lane {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding: clamp(18px, 2.2vw, 32px);
  border: 0;
  border-right: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: background-color 260ms cubic-bezier(0.16, 1, 0.3, 1), color 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.role-lane:hover {
  background: var(--paper-bright);
}

.role-lane.is-active {
  background: var(--ink);
  color: #ffffff;
}

.lane-code {
  font-family: var(--display);
  font-size: clamp(3.8rem, 5.5vw, 6rem);
  line-height: 0.82;
}

.lane-name {
  margin-top: 24px;
  font-size: clamp(0.86rem, 1vw, 1rem);
  font-weight: 700;
  line-height: 1.15;
}

.lane-verb {
  margin-top: auto;
  color: currentColor;
  font-size: 0.72rem;
  line-height: 1.3;
}

.signal-loop {
  position: absolute;
  z-index: 4;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.signal-loop path,
.signal-loop circle {
  fill: var(--paper);
  stroke: var(--red);
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.signal-loop .signal-track {
  fill: none;
  opacity: 0.62;
}

.signal-loop .signal-live {
  fill: none;
  stroke-dasharray: 18 16;
  animation: signal-travel 2.2s linear infinite;
}

.signal-loop .signal-arrow {
  fill: none;
}

@keyframes signal-travel {
  to { stroke-dashoffset: -68; }
}

.console-note {
  max-width: 54ch;
  margin: 18px 0 0;
  padding-left: clamp(18px, 2vw, 30px);
  color: var(--muted);
  font-size: 0.88rem;
}

.registration {
  position: absolute;
  z-index: 2;
  color: var(--red);
  font-size: 2rem;
  line-height: 1;
}

.registration--top {
  top: 24px;
  left: 50%;
}

.timecode {
  position: absolute;
  right: 18px;
  bottom: 16px;
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
  gap: clamp(36px, 8vw, 120px);
  align-items: end;
  padding-bottom: 30px;
  border-bottom: 1px solid currentColor;
}

.section-heading h2,
.application-intro h2 {
  max-width: 15ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 6vw, 6rem);
  letter-spacing: -0.025em;
  line-height: 0.88;
  text-transform: uppercase;
}

.section-heading p {
  max-width: 54ch;
  margin: 0;
}

.section-heading--light p {
  color: #d9d6cf;
}

.loop-section,
.expectations-section {
  padding: var(--section-gap) var(--page-pad);
  background: var(--ink);
  color: #ffffff;
}

.loop-machine {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.34fr);
  gap: clamp(28px, 5vw, 72px);
  margin-top: 64px;
}

.loop-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #6c6a66;
  border-left: 1px solid #6c6a66;
}

.loop-step {
  position: relative;
  min-height: 136px;
  padding: 18px;
  border: 0;
  border-right: 1px solid #6c6a66;
  border-bottom: 1px solid #6c6a66;
  background: transparent;
  color: #ffffff;
  text-align: left;
  cursor: pointer;
}

.loop-step span {
  display: block;
  color: #aaa7a0;
  font-size: 0.72rem;
}

.loop-step strong {
  display: block;
  margin-top: 32px;
  font-size: 0.95rem;
}

.loop-step::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 4px;
  background: transparent;
  content: "";
}

.loop-step:hover {
  background: #1c1c1c;
}

.loop-step.is-current {
  background: var(--red);
}

.loop-step.is-current span {
  color: #ffffff;
}

.loop-step.is-current::after {
  background: var(--yellow);
}

.loop-readout {
  display: flex;
  flex-direction: column;
  min-height: 273px;
  padding: 24px 0 0;
  border-top: 6px solid var(--red);
}

.loop-readout span {
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.loop-readout h3 {
  margin: 18px 0 12px;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.loop-readout p {
  max-width: 42ch;
  margin: auto 0 0;
  color: #d9d6cf;
}

.principles-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-top: 68px;
  padding-top: 20px;
  border-top: 1px solid #6c6a66;
  color: var(--yellow);
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.6vw, 2.6rem);
  text-transform: uppercase;
}

.principles-strip span:not(:last-child)::after {
  margin-left: 28px;
  color: var(--red);
  content: "+";
}

.roles-section,
.fit-section {
  padding: var(--section-gap) var(--page-pad);
}

.role-dossier {
  display: grid;
  grid-template-columns: minmax(240px, 0.28fr) minmax(0, 1fr);
  margin-top: 64px;
  border: 1px solid var(--ink);
}

.dossier-nav {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--ink);
}

.dossier-tab {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 154px;
  padding: 24px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.dossier-tab:last-child {
  border-bottom: 0;
}

.dossier-tab:hover {
  background: var(--paper-bright);
}

.dossier-tab.is-active {
  background: var(--red);
  color: #ffffff;
}

.dossier-tab span {
  font-family: var(--display);
  font-size: 2.4rem;
  line-height: 0.9;
  text-transform: uppercase;
}

.dossier-tab small {
  margin-top: 24px;
  font-weight: 700;
}

.dossier-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: clamp(28px, 5vw, 72px);
}

.dossier-title {
  grid-column: 1 / -1;
}

.dossier-title h3 {
  max-width: 22ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.6rem, 4.8vw, 5rem);
  letter-spacing: -0.02em;
  line-height: 0.9;
  text-transform: uppercase;
}

.dossier-columns {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 7vw, 100px);
  margin-top: 58px;
  padding-top: 28px;
  border-top: 1px solid var(--ink);
}

.dossier-columns h4,
.challenge-line span {
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dossier-columns ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.dossier-columns li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.22);
}

.challenge-line {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(140px, 0.25fr) 1fr;
  gap: 24px;
  margin-top: 46px;
  padding: 22px 0;
  border-top: 5px solid var(--red);
  border-bottom: 1px solid var(--ink);
}

.challenge-line p {
  margin: 0;
  font-weight: 700;
}

.choose-role {
  grid-column: 2;
  margin-top: 30px;
}

.fit-section {
  background: var(--red);
  color: #ffffff;
}

.fit-section .section-heading p {
  color: #fff4f2;
}

.fit-console {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.55fr);
  gap: clamp(40px, 8vw, 120px);
  margin-top: 64px;
}

#fit-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

#fit-form label {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 14px;
  font-weight: 700;
}

#fit-form output {
  font-family: var(--display);
  font-size: 2.5rem;
  line-height: 1;
}

#fit-form input[type="range"] {
  width: 100%;
  height: 28px;
  margin: 0;
  appearance: none;
  background: transparent;
  cursor: pointer;
}

#fit-form input[type="range"]::-webkit-slider-runnable-track {
  height: 4px;
  background: #ffffff;
}

#fit-form input[type="range"]::-webkit-slider-thumb {
  width: 24px;
  height: 24px;
  margin-top: -10px;
  appearance: none;
  border: 3px solid var(--red);
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 1px #ffffff;
}

#fit-form input[type="range"]::-moz-range-track {
  height: 4px;
  background: #ffffff;
}

#fit-form input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border: 3px solid var(--red);
  border-radius: 50%;
  background: var(--yellow);
}

.fit-result {
  display: flex;
  flex-direction: column;
  min-height: 350px;
  padding: 30px;
  background: var(--paper);
  color: var(--ink);
}

.fit-result > p:first-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.fit-result h3 {
  margin: 22px 0 16px;
  font-family: var(--display);
  font-size: clamp(2.8rem, 4.5vw, 4.8rem);
  line-height: 0.85;
  text-transform: uppercase;
}

.fit-result .button {
  margin-top: auto;
}

.expectations-section {
  border-top: 1px solid #54524e;
}

.expectation-table {
  max-width: 1100px;
  margin: 64px 0 0 auto;
  border-top: 1px solid #77736d;
}

.expectation-row {
  display: grid;
  grid-template-columns: 1fr 0.44fr;
  border-bottom: 1px solid #77736d;
}

.expectation-row span,
.expectation-row strong {
  padding: 18px 20px;
}

.expectation-row strong {
  border-left: 1px solid #77736d;
  color: var(--yellow);
}

.expectation-row--head {
  color: #b9b6af;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.application-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: clamp(60px, 10vw, 150px);
  padding: var(--section-gap) var(--page-pad);
}

.application-intro {
  position: sticky;
  top: calc(var(--header-h) + 40px);
  align-self: start;
}

.application-intro p {
  max-width: 50ch;
  margin-top: 28px;
}

.application-intro ol {
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: checklist;
}

.application-intro li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid var(--ink);
  counter-increment: checklist;
}

.application-intro li::before {
  color: var(--red);
  content: counter(checklist, decimal-leading-zero);
  font-family: var(--display);
}

.application-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 18px;
  padding-top: 12px;
}

.field-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-row--wide,
.form-error,
.form-actions,
.form-status {
  grid-column: 1 / -1;
}

.field-row label {
  font-size: 0.78rem;
  font-weight: 700;
}

.field-row input,
.field-row select,
.field-row textarea {
  width: 100%;
  border: 1px solid var(--ink);
  border-radius: 2px;
  background: var(--paper-bright);
  color: var(--ink);
}

.field-row input,
.field-row select {
  min-height: 54px;
  padding: 0 14px;
}

.field-row textarea {
  min-height: 130px;
  padding: 14px;
  resize: vertical;
}

.field-row input::placeholder,
.field-row textarea::placeholder {
  color: #69675f;
}

.field-row input[aria-invalid="true"],
.field-row select[aria-invalid="true"],
.field-row textarea[aria-invalid="true"] {
  border-width: 2px;
  border-color: var(--red);
}

.form-error {
  margin: 0;
  padding: 14px;
  background: #ffe2df;
  color: #7a0b07;
  font-weight: 700;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 8px;
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  color: #2e6c35;
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: end;
  padding: 42px var(--page-pad);
  background: var(--yellow);
  border-top: 1px solid var(--ink);
}

.site-footer > div {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.site-footer strong {
  margin-top: 8px;
  font-family: var(--display);
  font-size: 2rem;
  text-transform: uppercase;
}

.site-footer p {
  max-width: 62ch;
  margin: 0;
  font-size: 0.82rem;
}

.site-footer a {
  font-weight: 700;
}

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

  .role-console {
    padding: 24px var(--page-pad) 64px;
    border-top: 1px solid var(--ink);
  }

  .role-lanes {
    min-height: 360px;
  }

  .timecode,
  .registration {
    display: none;
  }

  .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .loop-machine,
  .fit-console {
    grid-template-columns: 1fr;
  }

  .loop-readout {
    min-height: 220px;
  }

  .fit-result {
    min-height: 300px;
  }
}

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

  body {
    font-size: 17px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .brand {
    min-width: 0;
  }

  .primary-nav {
    display: none;
  }

  .header-action {
    min-width: 0;
    padding: 0 16px;
    font-size: 0.76rem;
  }

  .hero-copy {
    min-height: calc(100svh - var(--header-h));
    padding-right: var(--page-pad);
  }

  h1 {
    font-size: clamp(3.5rem, 18vw, 5.5rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .text-link {
    width: fit-content;
  }

  .role-lanes {
    grid-template-columns: 1fr;
    min-height: 0;
    border-bottom: 0;
  }

  .role-lane {
    display: grid;
    grid-template-columns: 62px 1fr;
    min-height: 132px;
    border-bottom: 1px solid var(--ink);
  }

  .lane-code {
    grid-row: 1 / 3;
    font-size: 4rem;
  }

  .lane-name {
    margin-top: 0;
  }

  .lane-verb {
    margin-top: 10px;
  }

  .signal-loop {
    display: none;
  }

  .console-note {
    min-height: 72px;
    padding-left: 0;
  }

  .loop-rail {
    grid-template-columns: repeat(2, 1fr);
  }

  .role-dossier {
    grid-template-columns: 1fr;
  }

  .dossier-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .dossier-tab {
    min-height: 116px;
    padding: 16px 10px;
    border-right: 1px solid var(--ink);
    border-bottom: 0;
  }

  .dossier-tab:last-child {
    border-right: 0;
  }

  .dossier-tab span {
    font-size: 1.55rem;
  }

  .dossier-tab small {
    font-size: 0.66rem;
    line-height: 1.2;
  }

  .dossier-panel {
    grid-template-columns: 1fr;
  }

  .dossier-columns {
    grid-template-columns: 1fr;
  }

  .challenge-line {
    grid-template-columns: 1fr;
  }

  .choose-role {
    grid-column: 1;
  }

  .expectation-row {
    grid-template-columns: 1fr 0.62fr;
  }

  .application-section {
    grid-template-columns: 1fr;
  }

  .application-intro {
    position: static;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 560px) {
  .hero-meta {
    grid-template-columns: 1fr;
  }

  .hero-meta div + div {
    padding-left: 0;
    border-left: 0;
  }

  .role-console {
    padding-bottom: 42px;
  }

  .loop-step {
    min-height: 110px;
    padding: 14px;
  }

  .loop-step strong {
    margin-top: 20px;
    font-size: 0.82rem;
  }

  .dossier-panel {
    padding: 24px 18px 30px;
  }

  .dossier-tab span {
    font-size: 1.2rem;
  }

  .dossier-tab small {
    display: none;
  }

  .expectation-row {
    grid-template-columns: 1fr;
  }

  .expectation-row strong {
    padding-top: 0;
    border-left: 0;
  }

  .expectation-row--head {
    display: none;
  }

  .application-form {
    grid-template-columns: 1fr;
  }

  .field-row,
  .field-row--wide,
  .form-error,
  .form-actions,
  .form-status {
    grid-column: 1;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
