:root {
  color-scheme: dark;
  --bg: #050709;
  --bg-elevated: rgba(8, 15, 18, 0.82);
  --bg-panel: rgba(12, 22, 26, 0.72);
  --line: rgba(156, 203, 190, 0.24);
  --line-strong: rgba(123, 232, 210, 0.46);
  --text: #eef8f4;
  --muted: #a8bcb7;
  --dim: #6f8580;
  --cyan: #66e6d4;
  --green: #7fe083;
  --olive: #a5c46b;
  --amber: #f0b857;
  --red: #ff6b5c;
  --steel: #8da4b5;
  --vanta-opacity: 0.25;
  --max-width: 1180px;
  --header-height: 78px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(5, 7, 9, 0.78), rgba(5, 7, 9, 0.96) 58%, #050709),
    radial-gradient(circle at 50% 0%, rgba(102, 230, 212, 0.08), transparent 48%),
    var(--bg);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

#vanta-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  opacity: var(--vanta-opacity);
  pointer-events: none;
}

#vanta-bg canvas {
  opacity: var(--vanta-opacity) !important;
}

.noise-layer {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: var(--header-height);
  padding: 14px max(22px, calc((100vw - var(--max-width)) / 2));
  border-bottom: 1px solid rgba(102, 230, 212, 0.17);
  background: rgba(5, 8, 11, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--cyan);
  background: linear-gradient(135deg, rgba(102, 230, 212, 0.13), rgba(240, 184, 87, 0.09));
  font-size: 0.78rem;
  font-weight: 800;
}

.brand-text {
  display: grid;
  gap: 0;
  font-size: 0.84rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand-text strong {
  color: var(--cyan);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  gap: 4px;
  border: 1px solid rgba(102, 230, 212, 0.32);
  border-radius: 8px;
  color: var(--cyan);
  background: rgba(102, 230, 212, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-links a,
.nav-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  border-color: rgba(102, 230, 212, 0.24);
  background: rgba(102, 230, 212, 0.08);
}

.nav-action {
  gap: 8px;
  border-color: rgba(240, 184, 87, 0.44);
  color: #ffe2a8;
  background: rgba(240, 184, 87, 0.08);
}

.nav-action svg,
.button svg,
.contact-card svg,
.capability-card svg,
.download-head svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero,
.section,
.mission-band,
.compliance-strip,
.site-footer {
  width: min(var(--max-width), calc(100% - 44px));
  margin: 0 auto;
}

.hero {
  display: grid;
  min-height: 86svh;
  padding: 88px 0 58px;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  gap: 34px;
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 0.83rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  color: #fbfffd;
  font-size: 4.4rem;
  line-height: 0.98;
  font-weight: 900;
}

.hero-lede {
  max-width: 660px;
  margin-bottom: 26px;
  color: #d8e7e3;
  font-size: 1.18rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #03100d;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  box-shadow: 0 14px 34px rgba(102, 230, 212, 0.16);
}

.button-secondary {
  color: var(--text);
  border-color: rgba(102, 230, 212, 0.32);
  background: rgba(102, 230, 212, 0.08);
}

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.signal-row span,
.compliance-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(127, 224, 131, 0.28);
  border-radius: 8px;
  color: #d9ffe1;
  background: rgba(127, 224, 131, 0.07);
  font-size: 0.82rem;
  font-weight: 800;
}

.ops-panel,
.license-panel,
.contact-card,
.identifier-card,
.download-card,
.capability-card,
.eligibility-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-panel);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.ops-panel {
  padding: 18px;
  backdrop-filter: blur(16px);
}

.panel-topline,
.screen-header,
.screen-readout,
.readout-list div,
.download-head,
.copy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.panel-topline {
  margin-bottom: 14px;
  color: var(--dim);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.panel-topline strong {
  color: var(--green);
}

.classification-preview {
  overflow: hidden;
  border: 1px solid rgba(141, 164, 181, 0.28);
  border-radius: 8px;
  background: rgba(4, 8, 10, 0.82);
}

.screen-frame {
  padding: 18px;
}

.screen-header,
.screen-readout {
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 800;
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.display-card {
  position: relative;
  display: grid;
  min-height: 92px;
  overflow: hidden;
  border: 1px solid rgba(102, 230, 212, 0.26);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(102, 230, 212, 0.12), rgba(127, 224, 131, 0.03)),
    rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 24px rgba(102, 230, 212, 0.08);
}

.display-card::before {
  content: "";
  position: absolute;
  inset: 24px 9px 24px;
  border: 1px solid rgba(156, 203, 190, 0.16);
  border-radius: 4px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    rgba(2, 7, 8, 0.42);
  background-size: 18px 18px;
}

.display-band,
.display-status {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 20px;
  place-items: center;
  padding: 0 6px;
  font-size: 0.58rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.display-band {
  color: #020302;
}

.band-cui {
  color: #ffffff;
  background: linear-gradient(90deg, #502b85, #7650b4, #502b85);
}

.band-unclassified {
  color: #ffffff;
  background: linear-gradient(90deg, #007a33, #11a957, #007a33);
}

.band-confidential {
  color: #ffffff;
  background: linear-gradient(90deg, #0033a0, #4a86ff, #0033a0);
}

.band-secret {
  color: #ffffff;
  background: linear-gradient(90deg, #c8102e, #ff4d61, #c8102e);
}

.band-top-secret {
  background: linear-gradient(90deg, #ff8c00, #ffbe57, #ff8c00);
}

.band-ts-sci {
  background: linear-gradient(90deg, #fce83a, #fff6a8, #fce83a);
}

.display-body {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  gap: 2px;
  min-height: 52px;
  padding: 4px 6px;
  text-align: center;
}

.display-body strong,
.display-body span {
  display: block;
  line-height: 1.1;
}

.display-body strong {
  color: #eef8f4;
  font-size: 0.66rem;
  font-weight: 900;
}

.display-body span {
  color: var(--steel);
  font-size: 0.58rem;
  font-weight: 900;
}

.display-status {
  color: #ccefe8;
  background: rgba(7, 18, 21, 0.9);
}

.readout-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
}

.readout-list div {
  min-height: 38px;
  padding: 0 2px 8px;
  border-bottom: 1px solid rgba(156, 203, 190, 0.15);
}

.readout-list dt,
.readout-list dd {
  margin: 0;
}

.readout-list dt {
  color: var(--dim);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.readout-list dd {
  color: var(--text);
  text-align: right;
  font-size: 0.92rem;
  font-weight: 700;
}

.mission-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
  margin-bottom: 36px;
  padding: 28px;
  border-top: 1px solid rgba(102, 230, 212, 0.26);
  border-bottom: 1px solid rgba(240, 184, 87, 0.24);
  background: rgba(5, 9, 12, 0.58);
}

.mission-band h2,
.section-heading h2 {
  margin-bottom: 12px;
  font-size: 2.2rem;
  line-height: 1.08;
}

.mission-band p:last-child,
.section-heading p {
  margin-bottom: 0;
  color: var(--muted);
}

.section {
  padding: 72px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 26px;
}

.section-heading.compact {
  max-width: 680px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.capability-card {
  min-height: 226px;
  padding: 22px;
}

.capability-card svg,
.contact-card > svg {
  width: 28px;
  height: 28px;
  margin-bottom: 18px;
  color: var(--cyan);
}

.capability-card h3,
.download-card h3,
.contact-card h3,
.identifier-card h3,
.eligibility-grid h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.capability-card p,
.download-card p,
.contact-card p,
.eligibility-grid li,
.process-list span {
  color: var(--muted);
}

.compliance-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 24px 0 18px;
  border-top: 1px solid rgba(156, 203, 190, 0.18);
  border-bottom: 1px solid rgba(156, 203, 190, 0.18);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: 22px;
  align-items: start;
}

.license-panel {
  overflow: auto;
}

table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

th,
td {
  padding: 16px;
  border-bottom: 1px solid rgba(156, 203, 190, 0.15);
  text-align: left;
  white-space: nowrap;
}

th {
  color: var(--amber);
  font-size: 0.78rem;
  text-transform: uppercase;
}

td {
  color: var(--text);
  font-weight: 700;
}

.eligibility-grid {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.eligibility-grid article {
  padding: 22px;
}

.eligibility-grid ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.software-section {
  border-top: 1px solid rgba(102, 230, 212, 0.16);
}

.software-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.download-card {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.download-card span {
  color: var(--green);
  font-weight: 800;
}

.download-card .button {
  width: fit-content;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.process-list li {
  position: relative;
  min-height: 152px;
  padding: 54px 18px 18px;
  border: 1px solid rgba(240, 184, 87, 0.22);
  border-radius: 8px;
  background: rgba(240, 184, 87, 0.06);
  counter-increment: steps;
}

.process-list li::before {
  content: counter(steps, decimal-leading-zero);
  position: absolute;
  top: 16px;
  left: 18px;
  color: var(--amber);
  font-weight: 900;
}

.process-list strong,
.process-list span {
  display: block;
}

.contact-section {
  padding-bottom: 56px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  gap: 16px;
}

.contact-card,
.identifier-card {
  padding: 22px;
}

.copy-row {
  width: 100%;
  min-height: 54px;
  margin-top: 10px;
  padding: 0 12px;
  border: 1px solid rgba(156, 203, 190, 0.18);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  font: inherit;
  cursor: pointer;
}

.copy-row:hover {
  border-color: rgba(102, 230, 212, 0.4);
  background: rgba(102, 230, 212, 0.08);
}

.copy-row span {
  color: var(--dim);
  font-size: 0.8rem;
  font-weight: 900;
}

.copy-row strong {
  margin-left: auto;
  color: var(--cyan);
}

.copy-row svg {
  width: 17px;
  height: 17px;
  color: var(--amber);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 0 38px;
  border-top: 1px solid rgba(156, 203, 190, 0.16);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--cyan);
  font-weight: 800;
}

.email-dialog {
  width: min(640px, calc(100% - 28px));
  max-height: min(860px, calc(100svh - 28px));
  padding: 0;
  overflow: auto;
  border: 1px solid rgba(102, 230, 212, 0.4);
  border-radius: 8px;
  color: var(--text);
  background: rgba(7, 14, 17, 0.98);
  box-shadow: 0 28px 86px rgba(0, 0, 0, 0.62);
}

.email-dialog::backdrop {
  background: rgba(1, 4, 6, 0.78);
  backdrop-filter: blur(8px);
}

.dialog-panel {
  padding: 24px;
}

.dialog-header,
.dialog-actions,
.captcha-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dialog-header {
  margin-bottom: 20px;
}

.dialog-header h2 {
  margin: 0;
  font-size: 1.65rem;
}

.dialog-close {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(156, 203, 190, 0.22);
  border-radius: 8px;
  color: var(--cyan);
  background: rgba(102, 230, 212, 0.08);
  cursor: pointer;
}

.dialog-close svg,
.captcha-refresh svg,
.dialog-actions svg {
  width: 18px;
  height: 18px;
}

.email-form,
.form-field {
  display: grid;
  gap: 8px;
}

.email-form {
  gap: 14px;
}

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

.form-field span,
.form-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(156, 203, 190, 0.22);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  font: inherit;
  outline: none;
}

.form-field input {
  min-height: 46px;
  padding: 0 12px;
}

.form-field textarea {
  min-height: 132px;
  padding: 12px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(102, 230, 212, 0.58);
  box-shadow: 0 0 0 3px rgba(102, 230, 212, 0.1);
}

.captcha-panel {
  align-items: end;
  padding: 14px;
  border: 1px solid rgba(240, 184, 87, 0.24);
  border-radius: 8px;
  background: rgba(240, 184, 87, 0.06);
}

.captcha-panel > div {
  display: grid;
  flex: 1;
  gap: 8px;
}

.captcha-code {
  position: relative;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(240, 184, 87, 0.38);
  border-radius: 8px;
  color: #04120f;
  background:
    radial-gradient(circle at 18% 28%, rgba(4, 18, 15, 0.24) 0 2px, transparent 2px 100%),
    radial-gradient(circle at 74% 62%, rgba(255, 255, 255, 0.34) 0 1px, transparent 1px 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(135deg, var(--amber), #ffe28c, var(--green));
  background-size: 34px 30px, 28px 26px, 18px 18px, 18px 18px, auto;
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 1.2rem;
  font-weight: 900;
  user-select: none;
}

.captcha-code::before,
.captcha-code::after {
  position: absolute;
  inset: -16%;
  z-index: 1;
  pointer-events: none;
  content: "";
}

.captcha-code::before {
  background:
    repeating-linear-gradient(102deg, rgba(4, 18, 15, 0.22) 0 1px, transparent 1px 12px),
    repeating-linear-gradient(18deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 15px);
  opacity: 0.56;
  transform: rotate(-2deg);
}

.captcha-code::after {
  background:
    radial-gradient(circle, rgba(4, 18, 15, 0.28) 0 1px, transparent 1px 100%),
    radial-gradient(circle, rgba(255, 255, 255, 0.38) 0 1px, transparent 1px 100%);
  background-position: 0 0, 7px 10px;
  background-size: 12px 10px, 17px 14px;
  opacity: 0.48;
  mix-blend-mode: multiply;
}

.captcha-canvas {
  position: relative;
  z-index: 3;
  display: block;
  width: 100%;
  height: 76px;
}

.captcha-refresh {
  min-width: 132px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--amber);
  font-size: 0.9rem;
  font-weight: 800;
}

.form-status.is-error {
  color: #ffb0a6;
}

.dialog-actions {
  justify-content: flex-end;
  margin-top: 2px;
}

@media (max-width: 980px) {
  .site-header {
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
    padding: 12px 14px;
  }

  .menu-toggle {
    display: inline-grid;
    order: 3;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 14px;
    left: 14px;
    display: grid;
    gap: 8px;
    flex: none;
    padding: 10px;
    border: 1px solid rgba(102, 230, 212, 0.22);
    border-radius: 8px;
    background: rgba(5, 8, 11, 0.94);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-header.menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    justify-content: flex-start;
    width: 100%;
    min-height: 44px;
  }

  .nav-action {
    order: 2;
    margin-left: auto;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .hero-grid,
  .mission-band,
  .split-section,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .capability-grid,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .license-panel {
    grid-column: 1;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  .hero,
  .section,
  .mission-band,
  .compliance-strip,
  .site-footer {
    width: min(100% - 28px, var(--max-width));
  }

  .brand-text {
    display: none;
  }

  .nav-action {
    min-height: 38px;
    padding: 0 10px;
  }

  h1 {
    font-size: 2.8rem;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .mission-band h2,
  .section-heading h2 {
    font-size: 1.72rem;
  }

  .hero-actions,
  .contact-actions,
  .software-grid,
  .capability-grid,
  .process-list,
  .eligibility-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .button,
  .download-card .button {
    width: 100%;
  }

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

  .readout-list div,
  .screen-readout,
  .site-footer,
  .captcha-panel,
  .dialog-actions {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .captcha-refresh,
  .dialog-actions .button {
    width: 100%;
  }
}

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