:root {
  --ink: #06111f;
  --ink-2: #0b1d31;
  --navy: #08223d;
  --blue: #123d66;
  --paper: #ffffff;
  --soft: #f4f7fb;
  --line: #dce4ed;
  --text: #111827;
  --muted: #526171;
  --orange: #ff6b13;
  --orange-2: #ff8a00;
  --green: #159b62;
  --amber: #f28a15;
  --red: #d73b35;
  --shadow: 0 24px 70px rgba(4, 18, 35, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--ink);
  font-family: Inter, Roboto, Helvetica, Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
select {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(255, 107, 19, 0.45);
  outline-offset: 3px;
}

.site-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
}

.rail {
  position: sticky;
  top: 0;
  height: 100vh;
  z-index: 10;
  display: flex;
  flex-direction: column;
  background: #05101d;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  color: #d9e6f5;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 28px 22px;
  font-size: 1.2rem;
  font-weight: 900;
}

.brand-mark,
.app-logo span,
.machine span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-weight: 1000;
}

.brand-mark {
  width: 24px;
  height: 28px;
  border: 3px solid var(--orange);
  border-radius: 8px 2px 8px 2px;
}

.rail nav {
  display: grid;
  gap: 4px;
  padding: 12px 0;
}

.rail nav a {
  position: relative;
  padding: 15px 20px;
  color: #9fb2c8;
  font-size: 0.86rem;
  font-weight: 700;
}

.rail nav a:hover,
.rail nav a.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.rail nav a.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--orange);
}

.rail-project {
  margin: auto 16px 18px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #c9d7e7;
  font-size: 0.72rem;
}

.rail-project strong {
  display: block;
  margin-top: 4px;
  color: #fff;
}

.rail-cta {
  margin: 0 16px 22px;
  border: 0;
  padding: 12px 14px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #fff;
  cursor: pointer;
  text-align: center;
  font-weight: 900;
}

main {
  min-width: 0;
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 44px;
  padding: 70px 70px 54px 48px;
  color: #fff;
  background:
    radial-gradient(circle at 55% 46%, rgba(255, 107, 19, 0.18), transparent 22%),
    linear-gradient(120deg, #071525 0%, #06111f 58%, #07111c 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.48;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(255, 255, 255, 0.06) 48% 48.2%, transparent 48.2%),
    linear-gradient(145deg, transparent 0 68%, rgba(255, 255, 255, 0.08) 68% 68.2%, transparent 68.2%),
    repeating-linear-gradient(90deg, transparent 0 78px, rgba(255, 255, 255, 0.035) 79px, transparent 80px);
}

.hero::after {
  content: "";
  position: absolute;
  left: 16%;
  bottom: 0;
  width: 38%;
  height: 70%;
  opacity: 0.25;
  background:
    linear-gradient(transparent 0 19%, rgba(255, 255, 255, 0.16) 20%, transparent 21%),
    linear-gradient(90deg, transparent 0 14%, rgba(255, 255, 255, 0.14) 15%, transparent 16%),
    linear-gradient(135deg, transparent 0 50%, rgba(255, 255, 255, 0.16) 50.3%, transparent 50.6%);
  clip-path: polygon(0 100%, 16% 28%, 70% 0, 100% 100%);
}

.hero-copy,
.hero-product {
  position: relative;
  z-index: 1;
}

.hero-copy {
  z-index: 3;
}

.hero h1 {
  margin: 0;
  max-width: 520px;
  font-size: clamp(3.4rem, 5.1vw, 5.9rem);
  line-height: 0.88;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  font-weight: 1000;
  color: #fff;
}

.hero h1 span {
  color: var(--orange);
}

.hero-copy p {
  max-width: 460px;
  margin: 28px 0 0;
  color: #b8d0ec;
  font-size: 1.22rem;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 44px;
}

.btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  padding: 0 30px;
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.btn.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 16px 36px rgba(255, 107, 19, 0.28);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
}

.btn:hover {
  transform: translateY(-1px);
}

.hero-product {
  z-index: 2;
  justify-self: end;
  min-height: 620px;
  display: grid;
  grid-template-columns: 280px minmax(540px, 1fr);
  align-items: center;
  gap: 16px;
}

.spec-stack {
  position: relative;
  min-height: 430px;
  display: grid;
  align-content: center;
  gap: 12px;
  transform: rotate(-2deg);
}

.pdf-card,
.section-card {
  width: 230px;
  margin-left: auto;
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  box-shadow: var(--shadow);
}

.pdf-card {
  padding: 18px;
}

.pdf-icon {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 5px;
  padding: 7px 8px;
  background: #e93024;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
}

.pdf-card strong,
.pdf-card small {
  display: block;
}

.pdf-card strong {
  font-size: 0.92rem;
}

.pdf-card small {
  margin-top: 4px;
  color: var(--muted);
}

.section-card {
  padding: 16px;
}

.section-card header {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-card p {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.76rem;
  font-weight: 800;
}

.spec-stack.is-scanning .section-card p {
  animation: scanLine 1.1s ease-in-out infinite;
}

.spec-stack.is-scanning .section-card p:nth-child(3) {
  animation-delay: 0.12s;
}

.spec-stack.is-scanning .section-card p:nth-child(4) {
  animation-delay: 0.24s;
}

.spec-stack.is-scanning .section-card p:nth-child(5) {
  animation-delay: 0.36s;
}

.section-card em {
  min-width: 28px;
  border-radius: 999px;
  background: #eef3f8;
  color: var(--muted);
  text-align: center;
  font-style: normal;
}

.flow-lines {
  position: absolute;
  right: -50px;
  top: 44%;
  width: 120px;
  height: 90px;
  border-top: 4px solid rgba(255, 107, 19, 0.9);
  border-right: 4px solid rgba(255, 107, 19, 0.9);
  transform: skewX(-28deg);
  filter: drop-shadow(0 0 16px rgba(255, 107, 19, 0.8));
}

.app-window {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  box-shadow: var(--shadow);
}

.app-top {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 22px;
  background: #081320;
  color: #fff;
}

.app-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: auto;
}

.app-logo span {
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 6px 2px;
}

.app-top select {
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  padding: 8px 14px;
  background: transparent;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
}

.log-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 26px;
}

.log-head h2 {
  margin: 0;
  color: var(--text);
  font-size: 1.65rem;
  letter-spacing: -0.03em;
}

.log-head h2 span {
  margin-left: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 9px;
  color: var(--muted);
  font-size: 0.88rem;
  vertical-align: middle;
}

.log-head button {
  border: 1px solid #9cb8b1;
  border-radius: 6px;
  padding: 10px 14px;
  background: #f7fffd;
  color: #102d30;
  font-weight: 900;
}

.demo-controls {
  display: flex;
  gap: 8px;
}

.demo-controls button:first-child {
  border-color: transparent;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 107, 19, 0.22);
  animation: pulseStart 1.8s ease-in-out infinite;
}

.demo-controls button:last-child {
  background: #fff;
  color: var(--muted);
}

.pass-status {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f7fafc;
}

.pass-status span {
  position: relative;
  padding: 12px 14px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.pass-status span.active {
  color: var(--orange);
  background: #fff7ed;
}

.pass-status span.done {
  color: var(--green);
}

.table-wrap {
  overflow-x: auto;
}

.log-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 0.78rem;
}

.log-table th,
.log-table td {
  padding: 15px 14px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.log-table th {
  color: #334155;
  background: #f7fafc;
  font-size: 0.65rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.log-table td:nth-child(1),
.log-table td:nth-child(2) {
  font-weight: 900;
}

.log-table tr[data-flag-row] {
  cursor: pointer;
}

.log-table tbody tr {
  transition: opacity 0.34s ease, transform 0.34s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.log-table tr[data-flag-row] td:first-child {
  border-left: 4px solid var(--orange);
}

.log-table tr[data-flag-row].row-visible {
  background: #fffaf0;
}

.log-table tr[data-flag-row].flag-attention {
  background: #fff3df;
  box-shadow: inset 5px 0 0 var(--orange);
}

.log-table tr[data-flag-row].flag-attention td {
  border-top-color: rgba(255, 107, 19, 0.35);
}

.app-window.demo-ready .log-table tbody tr {
  opacity: 0;
  transform: translateX(-12px);
}

.app-window.demo-ready .log-table tbody tr.row-visible {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.34s ease, transform 0.34s ease;
}

.flow-lines.is-active {
  animation: flowPulse 0.9s ease-in-out infinite;
}

.demo-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(180px, 0.8fr);
  gap: 1px;
  background: var(--line);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.demo-metrics strong,
.demo-metrics button {
  padding: 15px 16px;
  border: 0;
  background: #fbfdff;
  color: var(--blue);
  font-size: 0.9rem;
}

.demo-metrics button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #fff;
  cursor: pointer;
  font-weight: 1000;
  text-align: center;
}

.app-window.is-complete .demo-metrics {
  opacity: 1;
  transform: translateY(0);
}

.flag-drawer {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(330px, calc(100% - 36px));
  border: 1px solid rgba(255, 107, 19, 0.28);
  border-radius: 10px;
  padding: 18px;
  background: #071525;
  color: #fff;
  box-shadow: 0 18px 48px rgba(4, 18, 35, 0.36);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.flag-drawer.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.flag-drawer span {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.flag-drawer h3 {
  margin: 8px 0 8px;
  color: #fff;
}

.flag-drawer p {
  margin: 0;
  color: #b8d0ec;
  line-height: 1.45;
}

.dot {
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 7px;
  border-radius: 50%;
}

.dot.high {
  background: var(--green);
}

.dot.med {
  background: var(--amber);
}

.dot.low {
  background: var(--red);
}

.section-light,
.local {
  background: var(--paper);
  color: var(--text);
}

.pass,
.local,
.flags,
.pilot {
  display: grid;
  gap: 42px;
  padding: 72px 70px;
}

.pass {
  grid-template-columns: minmax(260px, 0.42fr) minmax(560px, 1fr);
  align-items: start;
}

.pass-copy {
  grid-column: 1;
  max-width: 360px;
}

.section-kicker {
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pass h2,
.local h2,
.flags h2,
.pilot h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.pass ul,
.local ul {
  display: grid;
  gap: 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: #1f2937;
  line-height: 1.4;
}

.pass li,
.local li {
  position: relative;
  padding-left: 36px;
}

.pass li::before,
.local li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 1000;
}

.pass-board {
  grid-column: 2;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 14px;
  padding-top: 14px;
}

.pass-board::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 42px;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  opacity: 0.3;
}

.pass-board article {
  position: relative;
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px 18px 18px;
  background: #fbfdff;
  box-shadow: 0 12px 28px rgba(10, 30, 55, 0.08);
}

.pass-board span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-bottom: 20px;
  border: 2px solid rgba(255, 107, 19, 0.2);
  border-radius: 6px;
  padding: 0 10px;
  background: #fff7ed;
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.pass-board strong {
  display: block;
}

.pass-board small,
.pass-board p {
  display: block;
  margin: 10px 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.pass-board em {
  float: right;
  color: var(--green);
  font-style: normal;
  font-weight: 900;
}

.flags,
.pilot {
  grid-template-columns: 300px minmax(0, 1fr);
  align-items: center;
  background: #06111f;
  color: #fff;
}

.flags h2,
.pilot h2 {
  color: #fff;
}

.flag-grid,
.pilot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.flag-grid article,
.pilot-grid article {
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
}

.flag-grid span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 2px solid currentColor;
  border-radius: 10px;
  color: var(--orange);
  font-size: 1.25rem;
  font-weight: 1000;
}

.flag-grid strong,
.pilot-grid strong {
  display: block;
  color: #fff;
}

.flag-grid p,
.pilot-grid p {
  margin: 10px 0 0;
  color: #a9bfd6;
  line-height: 1.45;
}

.local {
  grid-template-columns: 320px minmax(0, 1fr);
  align-items: center;
}

.local-flow {
  display: grid;
  grid-template-columns: 0.9fr 1fr 0.72fr;
  align-items: center;
  gap: 28px;
}

.machine,
.folder,
.approved {
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 26px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(10, 30, 55, 0.08);
}

.machine {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #06111f, #10233a);
  color: #fff;
  text-align: center;
}

.machine span {
  width: 58px;
  height: 58px;
  border: 3px solid currentColor;
  border-radius: 16px 4px;
  font-size: 2rem;
}

.machine strong {
  margin-top: 12px;
  font-size: 1.6rem;
}

.folder strong,
.folder p,
.approved p {
  display: block;
  margin: 0 0 12px;
}

.folder p {
  color: var(--muted);
  font-size: 0.9rem;
}

.approved {
  display: flex;
  align-items: center;
  gap: 18px;
}

.approved span {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 1000;
}

.pilot {
  border-bottom: 5px solid var(--orange);
}

.pilot .final {
  grid-column: 2;
  width: fit-content;
}

.pilot-modal {
  width: min(720px, calc(100% - 28px));
  border: 1px solid rgba(255, 107, 19, 0.44);
  border-radius: 10px;
  padding: 0;
  background: #071525;
  color: #fff;
  box-shadow: 0 34px 90px rgba(4, 18, 35, 0.48);
}

.pilot-modal::backdrop {
  background: rgba(4, 12, 23, 0.72);
  backdrop-filter: blur(7px);
}

.modal-panel {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 34px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}

.modal-panel h2 {
  max-width: 520px;
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.modal-panel p {
  max-width: 560px;
  margin: 0;
  color: #b8d0ec;
  line-height: 1.5;
}

.beehiiv-form {
  min-height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
}

@keyframes pulseStart {
  0%,
  100% {
    box-shadow: 0 10px 24px rgba(255, 107, 19, 0.2);
  }
  50% {
    box-shadow: 0 10px 34px rgba(255, 107, 19, 0.48);
  }
}

@keyframes flowPulse {
  0%,
  100% {
    opacity: 0.55;
    filter: drop-shadow(0 0 8px rgba(255, 107, 19, 0.5));
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 0 22px rgba(255, 107, 19, 0.95));
  }
}

@keyframes scanLine {
  0%,
  100% {
    background: transparent;
    color: inherit;
  }
  50% {
    background: rgba(255, 107, 19, 0.12);
    color: var(--ink);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1200px) {
  .site-shell {
    grid-template-columns: 1fr;
  }

  .rail {
    position: sticky;
    height: auto;
    flex-direction: row;
    align-items: center;
    overflow-x: auto;
  }

  .brand {
    padding: 14px 18px;
  }

  .rail nav {
    display: flex;
    padding: 0;
  }

  .rail nav a {
    white-space: nowrap;
  }

  .rail-project,
  .rail-cta {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 54px 28px;
  }

  .hero-product {
    grid-template-columns: 240px minmax(520px, 1fr);
    overflow-x: auto;
  }
}

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

  .pass-copy,
  .pass-board {
    grid-column: auto;
  }

  .pass-copy {
    max-width: 620px;
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 16vw, 5.8rem);
  }

  .hero-copy p {
    font-size: 1.06rem;
  }

  .hero-product {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .spec-stack {
    min-height: 0;
    grid-template-columns: repeat(2, minmax(190px, 1fr));
    transform: none;
  }

  .pdf-card,
  .section-card {
    width: auto;
    margin-left: 0;
  }

  .flow-lines {
    display: none;
  }

  .app-window {
    width: 100%;
  }

  .pass,
  .flags,
  .local,
  .pilot {
    grid-template-columns: 1fr;
    padding: 54px 22px;
  }

  .pass-board,
  .flag-grid,
  .pilot-grid,
  .local-flow {
    grid-template-columns: 1fr;
  }

  .pilot .final {
    grid-column: auto;
    width: 100%;
  }
}

@media (max-width: 520px) {
  .brand strong {
    display: none;
  }

  .rail nav a {
    padding: 14px 12px;
    font-size: 0.78rem;
  }

  .hero {
    padding: 42px 16px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .log-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .pass-status,
  .demo-metrics {
    grid-template-columns: 1fr;
  }

  .flag-drawer {
    position: static;
    width: auto;
    margin: 0 12px 12px;
  }
}
