:root {
  color-scheme: dark;
  --bg: #050914;
  --panel: #0a101d;
  --panel-2: #0f1728;
  --line: rgba(148, 163, 184, .16);
  --text: #f7f8fb;
  --muted: #8fa0bb;
  --blue: #3b82f6;
  --blue-2: #0ea5e9;
  --green: #22c55e;
  --red: #ef4444;
  --shadow: 0 24px 80px rgba(0, 0, 0, .38);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 12%, rgba(37, 99, 235, .22), transparent 28rem),
    radial-gradient(circle at 75% 58%, rgba(14, 165, 233, .12), transparent 34rem),
    linear-gradient(rgba(148, 163, 184, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, .055) 1px, transparent 1px),
    var(--bg);
  background-size: auto, auto, 60px 60px, 60px 60px, auto;
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 0 clamp(18px, 6vw, 96px);
  background: rgba(5, 9, 20, .86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand span, .sidebar-logo {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #174ea6, #061b45);
  color: #dbeafe;
  box-shadow: inset 0 0 0 1px rgba(96, 165, 250, .34);
}

.brand strong::after { content: "Digital"; color: var(--blue); }
.brand strong { font-size: 17px; }

.nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex: 1;
}

.nav a, .ghost-btn, .cart-link, .outline-btn, .primary-btn, .filter {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  padding: 0 16px;
  color: var(--muted);
  font-weight: 750;
}

.nav a:hover, .nav a.is-active {
  color: #60a5fa;
  background: rgba(59, 130, 246, .13);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ghost-btn, .outline-btn, .cart-link {
  border-color: var(--line);
  background: rgba(15, 23, 42, .72);
  color: var(--text);
}

.cart-link strong {
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  border-radius: 99px;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
}

.primary-btn {
  border: 0;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
  box-shadow: 0 16px 34px rgba(59, 130, 246, .26);
}

.primary-btn:hover, .outline-btn:hover, .ghost-btn:hover { transform: translateY(-1px); }
.full { width: 100%; }

.shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.shell.narrow { width: min(960px, calc(100% - 36px)); }

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 72px 0 56px;
}

.hero-inner {
  width: min(900px, 100%);
  margin: 0 auto;
}

.pill, .kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  border: 1px solid rgba(59, 130, 246, .34);
  border-radius: 999px;
  padding: 9px 16px;
  background: rgba(37, 99, 235, .11);
  color: #60a5fa;
  font-weight: 800;
}

.pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: #3b82f6;
}

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

.hero h1 {
  margin: 38px 0 18px;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 1;
  letter-spacing: 0;
}

.hero h1 span, .page-hero h1 span {
  display: block;
  background: linear-gradient(135deg, #60a5fa, #0ea5e9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

[data-rotating-phrase] {
  min-height: 1em;
}

[data-rotating-phrase]::after {
  content: "|";
  display: inline-block;
  margin-left: 6px;
  color: #60a5fa;
  -webkit-text-fill-color: #60a5fa;
  animation: caretBlink .8s steps(2, start) infinite;
}

@keyframes caretBlink {
  50% { opacity: 0; }
}

.hero p {
  width: min(680px, 100%);
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.55;
}

.hero-actions, .card-actions, .toolbar, .panel-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-actions { justify-content: center; flex-wrap: wrap; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  width: min(680px, 100%);
  margin: 64px auto 0;
}

.stats strong {
  display: block;
  color: #3b82f6;
  font-size: 36px;
}

.stats span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section, .page-hero {
  padding: 82px 0 36px;
}

.page-hero {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
}

.page-hero.slim { padding-bottom: 20px; }
.page-hero h1 {
  margin: 16px 0 10px;
  max-width: 760px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1;
}

.page-hero p {
  max-width: 640px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.feature-grid, .catalog-grid, .plans-grid, .metric-grid, .account-grid, .process-grid, .request-grid, .trust-grid, .testimonial-row, .plan-guide, .faq-grid, .request-examples, .onboarding-flow, .client-quick-actions {
  display: grid;
  gap: 16px;
}

.feature-grid { grid-template-columns: repeat(3, 1fr); }
.catalog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.plans-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); padding-bottom: 56px; }
.process-grid, .trust-grid, .testimonial-row, .plan-guide { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.request-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.metric-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.account-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.faq-grid, .request-examples, .onboarding-flow { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.client-quick-actions { grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 18px 0; }

.feature-card, .service-card, .plan-card, .panel, .checkout-card, .account-card, .metric-grid article, .filters-panel, .payment-form, .comparison-table, .process-step, .request-grid article, .trust-grid article, .testimonial-row article, .plan-guide article, .faq-grid article, .request-examples article, .onboarding-flow article, .client-quick-actions a {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10, 16, 29, .78);
  box-shadow: var(--shadow);
}

.feature-card, .service-card, .plan-card, .panel, .checkout-card, .payment-form, .comparison-table, .filters-panel, .process-step, .request-grid article, .trust-grid article, .testimonial-row article, .plan-guide article, .faq-grid article, .request-examples article, .onboarding-flow article, .client-quick-actions a {
  padding: 24px;
}

.feature-card span, .service-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: rgba(59, 130, 246, .14);
  color: #60a5fa;
  font-weight: 900;
}

.service-icon {
  font-size: 22px;
  color: #dbeafe;
}

.feature-card h3, .service-card h3, .plan-card h3 { margin: 20px 0 10px; font-size: 22px; }
.feature-card p, .service-card p, .plan-card p, .fineprint { color: var(--muted); line-height: 1.6; }

.process-step span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #3b82f6;
  color: #fff;
  font-weight: 900;
}

.request-grid article, .trust-grid article, .testimonial-row article, .plan-guide article, .faq-grid article, .request-examples article, .onboarding-flow article {
  display: grid;
  gap: 10px;
}

.request-grid span, .trust-grid span, .testimonial-row p, .plan-guide p, .faq-grid p, .request-examples p, .onboarding-flow p, .client-quick-actions span {
  color: var(--muted);
  line-height: 1.6;
}

.request-examples span, .onboarding-flow span {
  display: grid;
  place-items: center;
  width: 44px;
  min-width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: rgba(59, 130, 246, .14);
  color: #93c5fd;
  font-weight: 900;
}

.client-quick-actions a {
  display: grid;
  gap: 8px;
}

.client-quick-actions a:hover {
  border-color: rgba(96, 165, 250, .62);
  transform: translateY(-1px);
}

.trust-grid strong {
  color: #60a5fa;
  font-size: 34px;
}

.testimonial-row { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 16px; }

.plan-guide .is-recommended {
  border-color: rgba(96, 165, 250, .7);
  background: linear-gradient(180deg, rgba(37, 99, 235, .2), rgba(10, 16, 29, .86));
}

.plan-guide .is-recommended span {
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(59, 130, 246, .18);
  color: #93c5fd;
  font-weight: 900;
}

.commerce-layout, .checkout-layout, .detail-layout, .cart-page {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 18px;
  padding-bottom: 70px;
}

.checkout-layout, .cart-page { grid-template-columns: 1fr 340px; }
.detail-layout { grid-template-columns: 1fr 340px; padding-top: 64px; }

.checkout-benefits {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.checkout-benefits span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
  color: #bfdbfe;
  background: rgba(59, 130, 246, .1);
}

.project-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 24px;
  position: relative;
}

.project-steps span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(15, 23, 42, .72);
  font-weight: 800;
  text-align: center;
}

.timeline-steps {
  gap: 0;
  padding: 18px 0;
}

.timeline-steps::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 40px;
  height: 3px;
  border-radius: 999px;
  background: rgba(148, 163, 184, .22);
}

.timeline-steps span {
  width: min(150px, 92%);
  margin: 0 auto;
  padding-top: 44px;
  border: 0;
  background: transparent;
}

.timeline-steps span::before {
  content: "";
  position: absolute;
  top: 9px;
  width: 30px;
  height: 30px;
  border-radius: 99px;
  border: 4px solid #1e293b;
  background: #0f1728;
}

.timeline-steps .is-done::before {
  background: #22c55e;
  border-color: rgba(187, 247, 208, .3);
}

.timeline-steps .is-current::before {
  background: #3b82f6;
  border-color: rgba(191, 219, 254, .36);
  box-shadow: 0 0 0 8px rgba(59, 130, 246, .14);
}

.project-steps .is-done {
  color: #bbf7d0;
  border-color: rgba(34, 197, 94, .35);
  background: rgba(34, 197, 94, .12);
}

.project-steps .is-current {
  color: #dbeafe;
  border-color: rgba(96, 165, 250, .62);
  background: rgba(59, 130, 246, .18);
}

.filters-panel {
  position: sticky;
  top: 96px;
  height: fit-content;
}

.filter {
  width: 100%;
  margin: 8px 0;
  justify-content: flex-start;
  background: transparent;
}

.filter.is-active, .filter:hover {
  color: #60a5fa;
  background: rgba(59, 130, 246, .12);
}

.mini-note, .stripe-note {
  margin-top: 20px;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(59, 130, 246, .1);
  color: var(--muted);
}

.toolbar {
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 750;
}

input, select, textarea {
  min-height: 44px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  background: rgba(5, 9, 20, .85);
  color: var(--text);
  outline: none;
}

textarea { min-height: 110px; padding-top: 12px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: rgba(96, 165, 250, .8); }

.service-card-top, .summary-line, .cart-line, .invoice-row, .table-row, .admin-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.badge, .label {
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(34, 197, 94, .12);
  color: #86efac;
  font-size: 12px;
  font-weight: 850;
}

.price, .plan-price {
  margin: 20px 0;
  color: #fff;
  font-size: 30px;
  font-weight: 900;
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.service-meta span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--muted);
  font-size: 12px;
}

.plan-card { position: relative; }
.plan-card.featured {
  border-color: rgba(96, 165, 250, .62);
  background: linear-gradient(180deg, rgba(37, 99, 235, .18), rgba(10, 16, 29, .88));
}
.plan-card ul { padding-left: 18px; color: var(--muted); line-height: 1.9; }
.plan-card .label { position: absolute; top: 18px; right: 18px; }

.billing-toggle {
  display: flex;
  align-items: center;
  width: fit-content;
  grid-template-columns: auto 1fr;
}

.billing-toggle input, .checkbox-line input { width: auto; min-height: 0; }

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

.span-2 { grid-column: span 2; }

.auth-page {
  min-height: calc(100vh - 76px);
  display: grid;
  place-items: center;
  padding: 56px 18px;
}

.auth-card {
  width: min(520px, 100%);
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10, 16, 29, .9);
  box-shadow: var(--shadow);
}

.auth-form { display: grid; gap: 16px; }
.form-link {
  width: fit-content;
  color: #93c5fd;
  font-weight: 760;
}
.form-link:hover { color: #dbeafe; }
.form-message {
  border-radius: var(--radius);
  padding: 12px 14px;
  background: rgba(59, 130, 246, .12);
  color: #bfdbfe;
}
.form-message[data-type="error"] { background: rgba(239, 68, 68, .12); color: #fecaca; }
.form-message[data-type="success"] { background: rgba(34, 197, 94, .12); color: #bbf7d0; }

.app-shell {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: calc(100vh - 76px);
}

.app-sidebar {
  padding: 26px 18px;
  border-right: 1px solid var(--line);
  background: rgba(5, 9, 20, .72);
}

.app-sidebar strong {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.app-sidebar small {
  display: block;
  margin: 24px 12px 8px;
  color: #667896;
  font-weight: 900;
  letter-spacing: .08em;
}

.app-sidebar a {
  display: flex;
  align-items: center;
  min-height: 42px;
  border-radius: var(--radius);
  padding: 0 12px;
  color: var(--muted);
  font-weight: 760;
}

.app-sidebar a:hover, .app-sidebar a.is-active {
  color: #60a5fa;
  background: rgba(59, 130, 246, .13);
}

.workspace {
  padding: 36px clamp(20px, 4vw, 52px);
}

.workspace-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.workspace-head h1 { margin: 8px 0 0; font-size: 38px; }
.metric-grid article, .account-card { padding: 20px; }
.metric-grid span, .account-card span { color: var(--muted); }
.metric-grid strong, .account-card strong { display: block; margin: 10px 0 4px; font-size: clamp(20px, 3vw, 30px); overflow-wrap: anywhere; }
.notification-list {
  display: grid;
  gap: 10px;
}
.notification-item {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, .58);
}
.notification-item > span {
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 99px;
  background: #3b82f6;
  box-shadow: 0 0 0 5px rgba(59, 130, 246, .13);
}
.notification-item small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.5;
}
.files-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 18px;
  padding-bottom: 70px;
}
.file-project {
  padding: 12px 0;
  border-top: 1px solid var(--line);
}
.file-project:first-of-type { border-top: 0; }
.file-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.file-list a {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 9px 12px;
  color: #bfdbfe;
  background: rgba(59, 130, 246, .1);
}
.admin-grid { display: grid; gap: 18px; }
.admin-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.muted-text {
  color: var(--muted);
  line-height: 1.6;
}
.plan-admin {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.plan-admin:first-of-type { border-top: 0; }
.wide { grid-column: 1 / -1; }

.admin-order-card, .admin-ticket-card, .client-order-card {
  display: grid;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.admin-order-card:first-of-type, .admin-ticket-card:first-of-type, .client-order-card:first-of-type { border-top: 0; }

.admin-order-main {
  display: grid;
  grid-template-columns: 1.4fr .8fr .9fr .8fr auto;
  gap: 12px;
  align-items: center;
}

.admin-order-detail, .client-order-card p {
  color: var(--muted);
  line-height: 1.55;
}

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

.invoice-page {
  min-height: 100vh;
  padding: 36px 18px;
  background: #eef3f8;
  color: #172033;
}

.invoice-document {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 34px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 70px rgba(23, 32, 51, .14);
}

.invoice-head, .invoice-meta, .invoice-actions {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.invoice-logo {
  display: block;
  margin-bottom: 10px;
  color: #2563eb;
  font-size: 24px;
}

.invoice-meta {
  margin: 34px 0;
  padding: 22px 0;
  border-top: 1px solid #d8e0ea;
  border-bottom: 1px solid #d8e0ea;
}

.invoice-lines .table-row, .invoice-totals .summary-line {
  color: #172033;
  border-color: #d8e0ea;
}

.invoice-totals {
  width: min(360px, 100%);
  margin: 28px 0 0 auto;
}

.invoice-actions {
  margin-top: 30px;
}

@media print {
  .invoice-actions { display: none; }
  .invoice-page { padding: 0; background: #fff; }
  .invoice-document { box-shadow: none; }
}

.admin-row, .invoice-row, .cart-line, .table-row {
  min-height: 58px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.admin-row:first-of-type, .invoice-row:first-of-type, .cart-line:first-of-type, .table-row:first-of-type { border-top: 0; }
.admin-row > *, .invoice-row > *, .table-row > * { flex: 1; }
.admin-row button, .cart-line button {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, .86);
  color: #fff;
  padding: 9px 12px;
}

.admin-edit-form {
  display: grid;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.empty-state {
  padding: 18px;
  border: 1px dashed rgba(148, 163, 184, .3);
  border-radius: var(--radius);
  color: var(--muted);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 6vw, 96px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  max-width: 320px;
  border: 1px solid rgba(96, 165, 250, .42);
  border-radius: var(--radius);
  padding: 14px 16px;
  background: #0f1728;
  box-shadow: var(--shadow);
  color: #fff;
}

@media (max-width: 980px) {
  .topbar { flex-wrap: wrap; height: auto; padding-top: 14px; padding-bottom: 14px; }
  .nav { order: 3; width: 100%; overflow-x: auto; justify-content: flex-start; }
  .top-actions { margin-left: auto; }
  .hero { min-height: auto; }
  .stats, .feature-grid, .catalog-grid, .plans-grid, .metric-grid, .account-grid, .process-grid, .request-grid, .trust-grid, .plan-guide, .faq-grid, .request-examples, .onboarding-flow, .client-quick-actions { grid-template-columns: repeat(2, 1fr); }
  .commerce-layout, .checkout-layout, .detail-layout, .cart-page, .app-shell, .files-layout { grid-template-columns: 1fr; }
  .filters-panel { position: static; }
  .app-sidebar { border-right: 0; border-bottom: 1px solid var(--line); }
  .app-sidebar {
    display: flex;
    gap: 8px;
    overflow-x: auto;
  }
  .app-sidebar strong, .app-sidebar small { display: none; }
  .admin-order-main { grid-template-columns: 1fr; }
  .project-steps { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero h1 { font-size: 38px; }
  .page-hero { display: block; }
  .stats, .feature-grid, .catalog-grid, .plans-grid, .metric-grid, .account-grid, .form-grid, .process-grid, .request-grid, .trust-grid, .testimonial-row, .plan-guide, .faq-grid, .request-examples, .onboarding-flow, .client-quick-actions { grid-template-columns: 1fr; }
  .span-2 { grid-column: auto; }
  .hero-actions, .card-actions, .footer, .workspace-head, .service-card-top, .summary-line, .cart-line, .invoice-row, .table-row, .admin-row { align-items: stretch; flex-direction: column; }
  .workspace-head .hero-actions { width: 100%; }
  .top-actions { width: 100%; }
  .top-actions a { flex: 1; }
  .admin-page-actions { flex-direction: column; }
}
