@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-Variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --surface-2: #f0f4f8;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #dbe3ec;
  --line-dark: #cbd5e1;
  --accent: #2563eb;
  --accent-dark: #1d4ed8;
  --error: #b42318;
  --error-bg: #fff4f2;
  --warning: #a15c00;
  --warning-bg: #fff8e8;
  --success: #16794b;
  --success-bg: #effbf5;
  --shadow: 0 20px 60px rgba(15, 23, 42, .08);
  --radius: 20px;
  --shell: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
[hidden] { display: none !important; }

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 249, 252, .9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(203, 213, 225, .75);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: -.035em;
  font-size: 21px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  color: #fff;
  background: var(--ink);
  font: 800 13px/1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: -.08em;
}

.brand-logo {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  flex: 0 0 auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #334155;
  font-weight: 650;
  font-size: 14px;
}

.main-nav a:hover { color: var(--accent); }

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 20px;
}

.hero {
  padding: 90px 0 72px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  gap: 70px;
  align-items: center;
}

.eyebrow, .section-kicker {
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.hero h1,
.section-intro h2,
.progress-heading h2,
.results-head h2,
.story-card h2,
.bottom-cta h2 {
  margin: 14px 0 0;
  letter-spacing: -.05em;
  line-height: 1.03;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(46px, 6.2vw, 78px);
}

.hero h1 span,
.section-intro h2 span { color: var(--accent); }

.hero-lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: #475569;
  font-size: clamp(18px, 2vw, 21px);
}

.audit-form { margin-top: 32px; max-width: 780px; }

.url-field {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 8px 8px 8px 18px;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(15,23,42,.07);
}

.url-field:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(37,99,235,.11), 0 15px 40px rgba(15,23,42,.07);
}

.url-icon {
  color: var(--muted);
  font-size: 24px;
  transform: rotate(-25deg);
}

.url-field input {
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  padding: 12px 4px;
  font-size: 17px;
}

.url-field input::placeholder { color: #94a3b8; }

.primary-btn,
.secondary-btn,
.ghost-btn {
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 13px 18px;
  font-weight: 800;
  cursor: pointer;
  transition: .2s ease;
}

.primary-btn {
  background: var(--accent);
  color: #fff;
}

.primary-btn:hover { background: var(--accent-dark); transform: translateY(-1px); }

.secondary-btn {
  color: #fff;
  background: var(--ink);
}
.secondary-btn:hover { background: #1e293b; }

.ghost-btn {
  background: transparent;
  border-color: var(--line-dark);
  color: #334155;
}
.ghost-btn:hover { border-color: #94a3b8; background: #f8fafc; }

.link-btn { display: inline-flex; align-items: center; justify-content: center; }

.form-error {
  color: var(--error);
  margin: 10px 2px 0;
  font-weight: 650;
  font-size: 14px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 17px;
  color: #64748b;
  font-size: 14px;
  font-weight: 700;
}

.hero-panel {
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotate(1deg);
}

.panel-toolbar {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 16px;
  background: #f8fafc;
  border-bottom: 1px solid var(--line);
  color: #94a3b8;
  font: 600 11px ui-monospace, SFMono-Regular, Menlo, monospace;
}

.traffic-lights { display: flex; gap: 6px; }
.traffic-lights i { width: 8px; height: 8px; border-radius: 50%; background: #cbd5e1; }

.mini-report { padding: 24px; }

.mini-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.mini-label { display: block; color: var(--muted); font-size: 12px; font-weight: 700; }
.mini-top strong { display: block; margin-top: 2px; font-size: 25px; letter-spacing: -.04em; }
.score {
  display: grid; place-items: center;
  width: 58px; height: 58px;
  border-radius: 50%;
  color: var(--success);
  background: var(--success-bg);
  border: 6px solid #d7f2e5;
  font-weight: 850;
  font-size: 13px;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 22px 0;
}

.mini-stat {
  padding: 13px;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.mini-stat b { display: block; font-size: 23px; letter-spacing: -.04em; }
.mini-stat span { color: var(--muted); font-size: 11px; }
.mini-stat.error b { color: var(--error); }
.mini-stat.warning b { color: var(--warning); }
.mini-stat.success b { color: var(--success); }

.mini-rows { display: grid; gap: 8px; }
.mini-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 10px;
  font-size: 12px;
}
.mini-row span { font-size: 9px; }
.mini-row code { font: 700 12px ui-monospace, SFMono-Regular, Menlo, monospace; }
.mini-row small { color: #64748b; }
.mini-row.bad { background: var(--error-bg); color: var(--error); }
.mini-row.warn { background: var(--warning-bg); color: var(--warning); }
.mini-row.good { background: var(--success-bg); color: var(--success); }

.audit-workspace { padding: 18px 0 80px; }

.progress-card,
.results-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 42px);
}

.progress-heading,
.results-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.progress-heading h2,
.results-head h2 { font-size: clamp(30px, 4vw, 42px); }

.progress-heading p,
.results-head p { margin: 8px 0 0; color: var(--muted); }

.progress-heading > strong {
  font-size: 34px;
  color: var(--accent);
  letter-spacing: -.05em;
}

.progress-track {
  height: 10px;
  margin: 32px 0 26px;
  background: #e8eef5;
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
  transition: width .35s ease;
}

.progress-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.step {
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.step.done {
  color: var(--success);
  background: var(--success-bg);
  border-color: #c7ead8;
}
.step.active {
  color: var(--accent);
  background: #eff6ff;
  border-color: #bfdbfe;
}

.results-head { align-items: center; }
.results-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 30px 0 24px;
}

.summary-card {
  appearance: none;
  text-align: left;
  padding: 18px;
  border-radius: 15px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}
.summary-card:hover { border-color: #94a3b8; }
.summary-card strong { display: block; margin: 7px 0 0; font-size: 28px; letter-spacing: -.04em; }
.summary-card small { color: var(--muted); font-weight: 700; }
.status-dot { display: block; width: 10px; height: 10px; border-radius: 50%; }
.summary-card.error .status-dot { background: var(--error); }
.summary-card.warning .status-dot { background: var(--warning); }
.summary-card.success .status-dot { background: var(--success); }
.summary-card.all .status-dot { background: #64748b; }

.table-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 28px 0 14px;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.filter-tab {
  border: 1px solid var(--line);
  background: #fff;
  color: #475569;
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 750;
  font-size: 13px;
}
.filter-tab span { color: #94a3b8; }
.filter-tab.active { color: #fff; background: var(--ink); border-color: var(--ink); }
.filter-tab.active span { color: #cbd5e1; }
.toolbar-note { color: var(--muted); font-size: 12px; }

.result-table-wrap {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.result-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.result-table th {
  padding: 12px 14px;
  text-align: left;
  color: #64748b;
  background: #f8fafc;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.result-table td {
  padding: 14px;
  border-bottom: 1px solid #edf2f7;
  vertical-align: middle;
  font-size: 13px;
}

.result-row {
  cursor: pointer;
  transition: background .15s ease;
}
.result-row:hover { filter: brightness(.99); }
.result-row:last-child td { border-bottom: 0; }
.result-row.status-error { background: var(--error-bg); }
.result-row.status-warning { background: var(--warning-bg); }
.result-row.status-success { background: #fbfffd; }

.result-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 850;
}
.result-status::before {
  content: "";
  width: 9px; height: 9px;
  border-radius: 50%;
  flex: 0 0 auto;
}
.status-error .result-status { color: var(--error); }
.status-warning .result-status { color: var(--warning); }
.status-success .result-status { color: var(--success); }
.status-error .result-status::before { background: var(--error); }
.status-warning .result-status::before { background: var(--warning); }
.status-success .result-status::before { background: var(--success); }

.page-cell {
  font: 750 12px ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  word-break: break-word;
}
.muted-cell { color: var(--muted); }
.result-message { font-weight: 750; }

.detail-row td { padding: 0; background: #fff; }
.detail-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, .65fr);
  gap: 26px;
  padding: 24px;
  border-top: 1px solid var(--line);
}

.detail-title { font-weight: 850; font-size: 16px; margin-bottom: 14px; }
.meta-list { display: grid; gap: 7px; }
.meta-item {
  display: grid;
  grid-template-columns: 155px 1fr;
  gap: 16px;
  color: #475569;
  font-size: 12px;
}
.meta-item code { color: var(--ink); word-break: break-all; }

.issue-box {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #f8fafc;
  color: #334155;
  font-size: 13px;
}
.issue-box strong { display: block; margin-bottom: 4px; }
.status-error + .detail-row .issue-box strong { color: var(--error); }

.detail-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.detail-actions a { color: var(--accent); font-weight: 800; font-size: 13px; }

.preview-box {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #f8fafc;
}
.preview-label {
  padding: 10px 12px;
  color: #64748b;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
}
.preview-image {
  aspect-ratio: 1.904 / 1;
  display: grid;
  place-items: center;
  min-height: 150px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(37,99,235,.9), rgba(15,23,42,.96)),
    #1d4ed8;
  font-weight: 850;
}

.empty-state {
  padding: 30px;
  text-align: center;
  color: var(--muted);
}

.content-section { padding: 98px 0; }
.content-section.alt { background: #fff; border-block: 1px solid var(--line); }

.section-intro { max-width: 800px; margin-bottom: 38px; }
.section-intro.narrow { max-width: 650px; }
.section-intro h2,
.story-card h2,
.bottom-cta h2 { font-size: clamp(34px, 4.6vw, 56px); }
.section-intro p { color: #64748b; font-size: 18px; max-width: 720px; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature-card {
  position: relative;
  min-height: 230px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 17px;
}

.feature-card h3 { margin: 42px 0 10px; font-size: 21px; letter-spacing: -.03em; }
.feature-card p { margin: 0; color: #64748b; font-size: 14px; }
.feature-num {
  position: absolute;
  top: 20px; right: 20px;
  color: #94a3b8;
  font: 800 11px ui-monospace, monospace;
}

.steps-grid {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: none;
}

.steps-grid li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-top: 18px;
  border-top: 2px solid var(--ink);
}
.steps-grid li > span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 30px; height: 30px;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  font-size: 12px;
  font-weight: 850;
}
.steps-grid h3 { margin: 2px 0 5px; font-size: 17px; }
.steps-grid p { margin: 0; color: var(--muted); font-size: 13px; }

.story-section { padding: 26px 0 98px; }
.story-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  padding: clamp(28px, 6vw, 60px);
  color: #fff;
  background: var(--ink);
  border-radius: 26px;
}
.story-mark {
  font: 900 90px/1 Georgia, serif;
  color: #60a5fa;
  margin-top: -10px;
}
.story-card .section-kicker { color: #93c5fd; }
.story-card p { max-width: 820px; color: #cbd5e1; font-size: 17px; }

.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 22px 46px 22px 0;
  font-weight: 800;
  font-size: 17px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 32px;
  text-align: right;
  color: var(--accent);
  font-size: 22px;
  line-height: 1;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list p {
  max-width: 800px;
  margin: -5px 0 22px;
  color: var(--muted);
  animation: faqReveal .18s ease-out;
}
@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.bottom-cta { padding: 80px 0; background: #eaf1ff; border-top: 1px solid #d9e5ff; }
.bottom-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}
.bottom-cta h2 { margin-top: 10px; }

.site-footer { padding: 46px 0; background: #0b1120; color: #e2e8f0; }
.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 34px;
  align-items: start;
}
.footer-main { display: grid; gap: 24px; }
.footer-brand .brand-mark { background: #e2e8f0; color: #0b1120; }
.footer-inner p { color: #94a3b8; margin: 10px 0 0; font-size: 13px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; font-weight: 750; font-size: 13px; }

.other-projects-label {
  margin-bottom: 10px;
  color: #64748b;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.project-card {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 15px;
  border: 1px solid #1e293b;
  border-radius: 16px;
  background: #111a2d;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.project-card:hover {
  border-color: #334155;
  background: #152039;
  transform: translateY(-1px);
}
.project-card img {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
}
.project-card-copy { min-width: 0; }
.project-card strong { display: block; color: #f8fafc; font-size: 15px; }
.project-card small {
  display: block;
  margin-top: 3px;
  color: #94a3b8;
  border: 0;
  padding: 0;
  font-size: 11px;
  line-height: 1.45;
}
.project-url {
  display: block;
  margin-top: 7px;
  color: #93c5fd;
  font-size: 11px;
  font-weight: 750;
}
.copyright {
  grid-column: 1 / -1;
  color: #64748b;
  border-top: 1px solid #1e293b;
  padding-top: 22px;
}

@media (max-width: 980px) {
  .hero { padding-top: 66px; }
  .hero-grid { grid-template-columns: 1fr; gap: 46px; }
  .hero-panel { max-width: 650px; transform: none; }
  .progress-steps { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .shell { width: min(calc(100% - 44px), var(--shell)); }
  .header-inner { min-height: 64px; }

  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 64px;
    left: 22px;
    right: 22px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .main-nav a {
    padding: 13px 12px;
    border-radius: 9px;
    text-align: center;
    font-size: 17px;
  }
  .main-nav a:hover { background: #f8fafc; }
  .main-nav .external-arrow {
    display: inline-block;
    margin-left: 5px;
    transform: translateX(2px);
    font-size: 0.82em;
  }

  .hero { padding: 54px 0 54px; }
  .hero h1 { font-size: clamp(42px, 13vw, 62px); }
  .hero-lead { font-size: 16px; line-height: 1.68; }

  .url-field {
    grid-template-columns: auto 1fr;
    padding: 8px 10px 10px 14px;
  }
  .url-field .primary-btn { grid-column: 1 / -1; width: 100%; }
  .hero-meta { gap: 8px 16px; }

  .progress-heading,
  .results-head,
  .bottom-cta-inner { align-items: flex-start; flex-direction: column; }

  .progress-steps { grid-template-columns: 1fr; }
  .summary-grid { grid-template-columns: repeat(2, 1fr); }
  .table-toolbar { align-items: flex-start; flex-direction: column; }

  .result-table-wrap { border: 0; overflow: visible; }
  .result-table, .result-table tbody, .result-table tr, .result-table td { display: block; width: 100%; }
  .result-table thead { display: none; }
  .result-row {
    margin-bottom: 10px;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    padding: 8px 0;
  }
  .result-row td {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 12px;
    border: 0;
    padding: 7px 13px;
  }
  .result-row td::before {
    content: attr(data-label);
    color: #94a3b8;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .05em;
    text-transform: uppercase;
  }

  .detail-row { margin: -6px 0 12px; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
  .detail-row td { padding: 0; }
  .detail-row td::before { display: none; }
  .detail-panel { grid-template-columns: 1fr; padding: 18px; }
  .meta-item { grid-template-columns: 1fr; gap: 2px; }
  .preview-box { order: -1; }

  .feature-grid,
  .steps-grid { grid-template-columns: 1fr; }

  .feature-card { min-height: 160px; padding: 20px; }
  .feature-card h3 { margin-top: 34px; }
  .content-section { padding: 72px 0; }
  .story-card { grid-template-columns: 1fr; gap: 0; }
  .story-mark { height: 58px; }

  .footer-inner { grid-template-columns: 1fr; align-items: start; }
  .footer-main { gap: 22px; }
  .other-projects { margin-top: 4px; }
  .project-card { grid-template-columns: 52px minmax(0, 1fr); padding: 14px; }
  .project-card img { width: 52px; height: 52px; border-radius: 13px; }
  .copyright { grid-column: 1; }
}

@media (max-width: 460px) {
  .brand { font-size: 19px; }
  .brand-mark { width: 33px; height: 33px; }
  .hero h1 { font-size: 42px; }
  .hero-panel { margin-inline: -2px; }
  .mini-stats { grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
  .mini-stat { padding: 10px; }
  .mini-stat b { font-size: 20px; }
  .summary-grid { grid-template-columns: 1fr 1fr; }
  .results-actions { width: 100%; }
  .results-actions button { flex: 1 1 150px; }
}
