/* FireDesk LP · tokens do design system (design-firesafety-platform.md) */

:root {
  --ink-950: #071827;
  --ink-900: #0B2239;
  --ink-800: #12304D;
  --ink-700: #1B4568;
  --ink-600: #2B5D82;

  --signal-700: #C94318;
  --signal-600: #E45222;
  --signal-500: #FF6B35;
  --signal-400: #FF875E;
  --signal-100: #FFE5DB;
  --signal-50: #FFF3EE;

  --teal-700: #087A70;
  --teal-500: #13B8A6;
  --teal-100: #CFF5F0;

  --n-950: #101820;
  --n-800: #293642;
  --n-700: #44515D;
  --n-600: #66727D;
  --n-500: #87919A;
  --n-400: #AAB3BB;
  --n-300: #CBD2D8;
  --n-200: #DEE4E9;
  --n-100: #EDF1F4;
  --n-50: #F6F8FA;
  --white: #FFFFFF;

  --info: #2F7DF4;
  --info-bg: #EAF2FF;
  --info-text: #1E58B0;
  --warn-bg: #FFF6DF;
  --warn-text: #8C5A05;
  --error: #D64545;

  /* texto sobre Ink 950 */
  --on-dark: #D7E0E8;
  --on-dark-muted: #93A6B7;

  --font-sans: "Manrope", system-ui, Arial, sans-serif;
  --font-mono: "IBM Plex Mono", Consolas, monospace;

  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;

  --shadow-sm: 0 4px 12px rgba(7, 24, 39, 0.08);
  --shadow-md: 0 12px 28px rgba(7, 24, 39, 0.12);
  --shadow-lg: 0 24px 56px rgba(7, 24, 39, 0.18);

  --ease: cubic-bezier(0.2, 0, 0, 1);
  --t-fast: 120ms;
  --t-default: 180ms;
  --t-slow: 280ms;

  --container: 1200px;

  /* z-index semântico */
  --z-nav: 30;
  --z-chip: 40;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--n-950);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

.mono { font-family: var(--font-mono); }

h1, h2, h3 {
  margin: 0;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.25rem, 5.2vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.5rem); letter-spacing: -0.01em; }

p { margin: 0; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2rem);
}

/* ---------- Botões ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}

/* texto Ink sobre laranja: linguagem de sinalização e contraste AA,
   onde branco sobre Signal 500 não passa */
.btn-primary {
  background: var(--signal-500);
  color: var(--ink-950);
}
.btn-primary:hover { background: var(--signal-400); }
.btn-primary:active { background: var(--signal-600); }

.btn-ghost {
  background: transparent;
  color: var(--on-dark);
  border-color: rgba(215, 224, 232, 0.35);
}
.btn-ghost:hover { border-color: rgba(215, 224, 232, 0.7); color: var(--white); }

.btn:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid var(--info);
  outline-offset: 2px;
}

.btn-full { width: 100%; }

/* ---------- Nav ---------- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: var(--z-nav);
  background: transparent;
  transition: background var(--t-default) var(--ease), box-shadow var(--t-default) var(--ease);
}

.nav.is-solid {
  background: rgba(7, 24, 39, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  box-shadow: 0 1px 0 rgba(215, 224, 232, 0.12);
}

.nav-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 0.9rem clamp(1.25rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--white);
}

.brand-mark { width: 30px; height: 30px; }

.brand-name {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  margin-left: auto;
}

.nav-links a {
  color: var(--on-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--t-fast) var(--ease);
}
.nav-links a:hover { color: var(--white); }

.btn-nav { min-height: 42px; padding: 0.55rem 1.15rem; font-size: 0.95rem; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background: var(--ink-950);
  color: var(--on-dark);
  overflow: clip;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(215, 224, 232, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215, 224, 232, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 80% at 30% 20%, black 30%, transparent 75%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: var(--container);
  margin-inline: auto;
  padding: clamp(8rem, 16vh, 11rem) clamp(1.25rem, 4vw, 2rem) clamp(4rem, 8vh, 6rem);
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero-context {
  font-weight: 600;
  color: var(--signal-400);
  margin-bottom: 1.25rem;
}

.hero h1 {
  color: var(--white);
  max-width: 15ch;
}

.hero h1 em {
  font-style: normal;
  color: var(--signal-400);
}

.hero-sub {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 52ch;
  color: var(--on-dark);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.25rem;
}

.hero-note {
  margin-top: 2.5rem;
  font-size: 0.9rem;
  color: var(--on-dark-muted);
}
.hero-note .mono { color: var(--signal-400); }

/* console: janela do produto, com trilho de sidebar */

.hero-console {
  display: grid;
  grid-template-columns: 44px 1fr;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  color: var(--n-950);
}

.console-rail {
  background: var(--ink-900);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
}

.rail-dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--ink-700);
}
.rail-dot--active { background: var(--signal-500); }

.console-body { padding: 1.1rem 1.25rem 1rem; }

.console-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--n-100);
}

.console-head strong { font-size: 0.95rem; font-weight: 700; }

.console-stamp { font-size: 0.7rem; color: var(--n-600); }

.console-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.console-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--n-100);
}

.row-main { display: flex; flex-direction: column; gap: 1px; min-width: 0; }

.row-item {
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.row-place { font-size: 0.78rem; color: var(--n-700); }

.console-row--action {
  background: var(--signal-50);
  margin-inline: -1.25rem;
  padding-inline: 1.25rem;
  border-bottom: 1px solid var(--signal-100);
}

.row-hint { font-size: 0.78rem; color: var(--signal-700); }

.row-cta {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink-950);
  background: var(--signal-500);
  border-radius: 6px;
  padding: 0.3rem 0.6rem;
  white-space: nowrap;
}

.badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.3ch;
  height: 24px;
  padding-inline: 0.55rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.badge-signal { background: var(--signal-100); color: var(--signal-700); }
.badge-warn   { background: var(--warn-bg);   color: var(--warn-text); }
.badge-teal   { background: var(--teal-100);  color: var(--teal-700); }
.badge-info   { background: var(--info-bg);   color: var(--info-text); }

.console-foot {
  margin-top: 0.8rem;
  font-size: 0.7rem;
  color: var(--n-600);
}

/* ---------- Seções ---------- */

.section { padding-block: clamp(4.5rem, 10vh, 7.5rem); }

/* A operação hoje */

.section--pain { background: var(--n-50); }

.pain-head {
  max-width: 62ch;
  margin-bottom: clamp(2.5rem, 5vh, 4rem);
}

.pain-head h2 { max-width: 22ch; }

.pain-head p {
  margin-top: 1.25rem;
  font-size: 1.1rem;
  color: var(--n-800);
  max-width: 58ch;
}

.ledger {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--n-950);
}

.ledger-row {
  display: grid;
  grid-template-columns: 8rem minmax(0, 5fr) minmax(0, 4fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: start;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--n-200);
}

.ledger-code {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--signal-700);
  padding-top: 0.4rem;
}

.ledger-text {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.ledger-fix {
  font-size: 0.95rem;
  color: var(--n-700);
  padding-top: 0.35rem;
}

/* Radar / régua D */

.radar-layout {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.radar-copy { position: sticky; top: 110px; }

.radar-copy h2 { max-width: 18ch; }

.radar-copy p {
  margin-top: 1.25rem;
  color: var(--n-800);
  max-width: 52ch;
}

.dladder {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: none;
}

.dstep {
  position: relative;
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1.5rem;
  padding: 1.35rem 0 1.35rem 1.75rem;
}

/* trilho vertical */
.dstep::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--n-200);
}

.dstep::after {
  content: "";
  position: absolute;
  left: -4px;
  top: 1.85rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--ink-600);
}

.dstep:first-child::before { top: 1.85rem; }
.dstep:last-child::before { bottom: auto; height: 1.85rem; }

.dlabel {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink-900);
  padding-top: 0.1rem;
}

.dstep p { color: var(--n-800); }

.dstep--zero::after { background: var(--error); border-color: var(--error); }
.dstep--zero .dlabel { color: var(--error); }
.dstep--zero p { font-weight: 600; color: var(--n-950); }

/* Espinha (banda escura) */

.section--spine {
  background: var(--ink-900);
  color: var(--on-dark);
}

.section--spine h2 {
  color: var(--white);
  max-width: 20ch;
}

.spine-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-top: clamp(2rem, 5vh, 3.5rem);
}

.spine-node {
  font-family: var(--font-mono);
  font-size: clamp(0.85rem, 1.4vw, 1.05rem);
  font-weight: 500;
  color: var(--on-dark);
  border: 1px solid var(--ink-700);
  border-radius: 8px;
  padding: 0.55rem 0.95rem;
  background: var(--ink-950);
}

.spine-node--core {
  background: var(--white);
  color: var(--ink-950);
  border-color: var(--white);
  font-weight: 500;
}

.spine-node--end {
  border-color: var(--signal-500);
  color: var(--signal-400);
}

.spine-link {
  width: clamp(0.9rem, 2.5vw, 2rem);
  height: 1px;
  background: var(--ink-700);
  flex-shrink: 0;
}

.spine-copy {
  margin-top: clamp(2rem, 5vh, 3rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  max-width: 62rem;
}

.spine-copy p { color: var(--on-dark); line-height: 1.75; }

/* Módulos: folha de especificação */

.section--modules { background: var(--white); }

.modules-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 1rem 3rem;
  margin-bottom: clamp(2.5rem, 6vh, 4rem);
}

.modules-head p { color: var(--n-700); font-size: 1.05rem; }

.spec { border-top: 2px solid var(--n-950); }

.spec-group {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(1.75rem, 4vh, 2.75rem) 0;
  border-bottom: 1px solid var(--n-200);
}

.spec-list { margin: 0; }

.spec-row {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 6fr);
  gap: 1rem 2rem;
  padding: 0.85rem 0;
}

.spec-row + .spec-row { border-top: 1px solid var(--n-100); }

.spec-row dt { font-weight: 700; font-size: 0.98rem; }

.spec-row dd {
  margin: 0;
  font-size: 0.95rem;
  color: var(--n-700);
}

/* NC → receita */

.section--revenue { background: var(--n-50); }

.revenue-layout { max-width: var(--container); }

.revenue-copy { max-width: 60ch; }
.revenue-copy h2 { max-width: 24ch; }
.revenue-copy p { margin-top: 1.25rem; font-size: 1.05rem; color: var(--n-800); }

.revenue-flow {
  list-style: none;
  margin: clamp(2.5rem, 6vh, 4rem) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  counter-reset: step;
}

.revenue-flow li {
  counter-increment: step;
  position: relative;
  padding: 1.5rem 1.25rem 1.5rem 0;
  border-top: 2px solid var(--n-300);
}

.revenue-flow li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--n-600);
  position: absolute;
  top: 0.6rem;
  left: 0;
}

.revenue-flow li:last-child { border-top-color: var(--teal-500); }
.revenue-flow li:last-child::before { color: var(--teal-700); }
.revenue-flow li:last-child strong { color: var(--teal-700); }

.revenue-flow strong {
  display: block;
  margin-top: 1.1rem;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.revenue-flow span {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.88rem;
  color: var(--n-700);
  line-height: 1.5;
  max-width: 20ch;
}

/* Para quem */

.icp-layout {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.icp-copy h2 { max-width: 16ch; }

.icp-copy p {
  margin-top: 1.25rem;
  font-size: 1.05rem;
  color: var(--n-800);
  max-width: 54ch;
}

.icp-fine { font-weight: 600; color: var(--n-950); }

.icp-check {
  background: var(--n-50);
  border: 1px solid var(--n-200);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
}

.icp-check h3 { font-size: 1.1rem; }

.checklist {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
}

.checklist li {
  position: relative;
  padding: 0.6rem 0 0.6rem 2rem;
  font-size: 0.98rem;
  color: var(--n-800);
}

.checklist li + li { border-top: 1px solid var(--n-200); }

.checklist li::before {
  content: "";
  position: absolute;
  left: 0.15rem;
  top: 0.95rem;
  width: 14px;
  height: 8px;
  border-left: 2.5px solid var(--teal-700);
  border-bottom: 2.5px solid var(--teal-700);
  transform: rotate(-45deg);
}

/* Piloto */

.section--pilot {
  position: relative;
  background: var(--ink-950);
  color: var(--on-dark);
  overflow: clip;
}

.section--pilot .hero-grid {
  mask-image: radial-gradient(ellipse 80% 90% at 70% 40%, black 25%, transparent 75%);
}

.pilot-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.pilot-copy h2 { color: var(--white); max-width: 16ch; }

.pilot-copy p {
  margin-top: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 50ch;
}

.pilot-terms {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--on-dark-muted);
}

.pilot-terms li { display: flex; align-items: center; gap: 0.6rem; }

.pilot-terms li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--signal-500);
  flex-shrink: 0;
}

.pilot-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2rem);
  color: var(--n-950);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.field { display: flex; flex-direction: column; gap: 0.5rem; }

.field label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--n-800);
}

.field .opt { font-weight: 400; color: var(--n-600); }

.field input {
  height: 48px;
  border: 1px solid var(--n-300);
  border-radius: var(--radius-md);
  padding-inline: 0.9rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--n-950);
  background: var(--white);
  transition: border-color var(--t-fast) var(--ease);
}

.field input::placeholder { color: var(--n-600); }
.field input:hover { border-color: var(--n-400); }

.field.is-invalid input { border-color: var(--error); }

.field-error {
  font-size: 0.82rem;
  color: var(--error);
  font-weight: 600;
}

.form-ok {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--teal-700);
  background: var(--teal-100);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
}

/* ---------- Footer ---------- */

.footer {
  background: var(--ink-950);
  border-top: 1px solid var(--ink-800);
  color: var(--on-dark-muted);
  padding-block: 3rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2.5rem;
}

.brand--footer .brand-name { font-size: 1rem; }

.footer-tag { font-size: 0.9rem; color: var(--on-dark); }

.footer-meta {
  margin-left: auto;
  font-size: 0.75rem;
}

/* ---------- Chip de processo (second-read) ---------- */

.proc-chip {
  position: fixed;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: var(--z-chip);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--ink-950);
  border: 1px solid var(--ink-700);
  border-radius: 999px;
  padding: 0.45rem 0.95rem 0.45rem 0.75rem;
  box-shadow: var(--shadow-md);
  cursor: default;
}

.proc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--info);
  transition: background var(--t-slow) var(--ease);
}

.proc-chip.is-done .proc-dot { background: var(--teal-500); }

.proc-id {
  font-size: 0.7rem;
  color: var(--on-dark-muted);
}

.proc-stage {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}

.proc-chip.is-done .proc-stage { color: var(--teal-500); }

/* ---------- Motion ----------
   Contido, como pede a identidade: uma entrada única no hero (acima da
   dobra, default visível ao fim), count-up no radar e o chip de processo.
   Nenhum conteúdo depende de animação para aparecer. */

@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy > * { animation: rise 560ms var(--ease) backwards; }
  .hero-copy > :nth-child(2) { animation-delay: 70ms; }
  .hero-copy > :nth-child(3) { animation-delay: 140ms; }
  .hero-copy > :nth-child(4) { animation-delay: 210ms; }
  .hero-copy > :nth-child(5) { animation-delay: 280ms; }
  .hero-console { animation: rise 640ms var(--ease) 200ms backwards; }
}

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

/* ---------- Responsivo ---------- */

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 7.5rem; }
  .hero-console { max-width: 560px; }
  .radar-layout { grid-template-columns: 1fr; }
  .radar-copy { position: static; }
  .revenue-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 2rem; }
  .icp-layout, .pilot-layout { grid-template-columns: 1fr; }
  .spine-copy { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }

  .ledger-row { grid-template-columns: 1fr; gap: 0.5rem; padding: 1.5rem 0; }
  .ledger-code { padding-top: 0; }
  .ledger-fix { padding-top: 0.25rem; }

  .spec-group { grid-template-columns: 1fr; gap: 1rem; }
  .spec-row { grid-template-columns: 1fr; gap: 0.25rem; }

  .revenue-flow { grid-template-columns: 1fr; }
  .revenue-flow span { max-width: none; }

  .dstep { grid-template-columns: 4rem 1fr; gap: 1rem; padding-left: 1.35rem; }

  .console-row--action { flex-wrap: wrap; }

  .proc-chip .proc-id { display: none; }

  .footer-meta { margin-left: 0; }
}

@media (max-width: 480px) {
  .hero-actions .btn { width: 100%; }
  .proc-chip { left: 0.75rem; bottom: 0.75rem; }
}
