:root {
  --paper: #f8f5f2;
  --paper-soft: #f1f1ef;
  --ink: #0d1b2a;
  --charcoal: #3e3e3e;
  --muted: #6d747b;
  --line: #d9d9d9;
  --blue: #15a4dc;
  --blue-dark: #087daf;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(13, 27, 42, 0.11);
  --shadow-strong: 0 28px 70px rgba(13, 27, 42, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(248, 245, 242, 0.96), rgba(241, 241, 239, 0.94)),
    var(--paper);
  font-family: "DM Sans", Inter, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(145deg, rgba(13, 27, 42, 0.08), transparent 34%),
    linear-gradient(0deg, rgba(21, 164, 220, 0.06), transparent 46%);
  content: "";
}

button,
input,
select,
textarea {
  font: inherit;
}

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

.site-shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 126px;
  min-width: 112px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  display: block;
  width: 100%;
  max-height: 70px;
  object-fit: contain;
}

.header-note {
  max-width: 420px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: right;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  gap: 54px;
  align-items: start;
  padding: 54px 0 84px;
}

.hero-copy {
  position: sticky;
  top: 28px;
  padding-top: 26px;
}

.eyebrow,
.step-kicker {
  margin: 0 0 14px;
  color: var(--blue-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

h1 {
  max-width: 680px;
  margin-bottom: 20px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6.1vw, 5.15rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
}

.subtitle {
  max-width: 620px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 1.22rem;
  font-weight: 800;
  line-height: 1.45;
}

.hero-copy > p:not(.eyebrow):not(.subtitle) {
  max-width: 640px;
  color: var(--charcoal);
  font-size: 1.02rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-meta span {
  border: 1px solid rgba(13, 27, 42, 0.12);
  border-radius: 999px;
  padding: 9px 13px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.34)),
    rgba(255, 255, 255, 0.36);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(13, 27, 42, 0.06);
  font-size: 0.86rem;
  font-weight: 800;
}

.assessment-card {
  overflow: hidden;
  border: 1px solid rgba(13, 27, 42, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(241, 241, 239, 0.72) 56%, rgba(21, 164, 220, 0.05)),
    rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow-strong);
}

#formPanel,
.result-panel {
  padding: 34px;
}

.form-topline {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.form-topline h2,
.result-panel h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
}

.step-count,
.tier-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(13, 27, 42, 0.12);
  border-radius: 999px;
  padding: 8px 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.38)),
    rgba(255, 255, 255, 0.44);
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(13, 27, 42, 0.06);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
}

.progress-track {
  overflow: hidden;
  height: 5px;
  margin-bottom: 30px;
  border-radius: 999px;
  background: rgba(13, 27, 42, 0.1);
}

.progress-fill {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--ink), var(--blue));
  transition: width 220ms ease;
}

.form-content {
  display: grid;
  gap: 22px;
  min-height: 365px;
  animation: fadeUp 220ms ease both;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label,
.question-label {
  color: var(--ink);
  font-size: 0.91rem;
  font-weight: 900;
}

.field-helper {
  color: var(--muted);
  font-size: 0.84rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(13, 27, 42, 0.14);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  outline: none;
  resize: vertical;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(21, 164, 220, 0.72);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(21, 164, 220, 0.14);
}

.question-group {
  display: grid;
  gap: 12px;
  margin: 0;
  border: 0;
  padding: 0;
}

.question-label {
  padding: 0;
  font-size: 1.02rem;
  line-height: 1.45;
}

.options {
  display: grid;
  gap: 10px;
}

.option-card {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  min-height: 54px;
  border: 1px solid rgba(13, 27, 42, 0.12);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255, 255, 255, 0.64);
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.option-card:hover {
  border-color: rgba(21, 164, 220, 0.38);
  background: rgba(255, 255, 255, 0.86);
  transform: translateY(-1px);
}

.option-card input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--blue-dark);
}

.option-card:has(input:checked) {
  border-color: rgba(21, 164, 220, 0.68);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(238, 249, 253, 0.84)),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(13, 27, 42, 0.08);
}

.option-text {
  color: var(--charcoal);
  font-size: 0.95rem;
  font-weight: 700;
}

.form-error {
  min-height: 22px;
  margin-top: 16px;
  color: #9b3f35;
  font-size: 0.9rem;
  font-weight: 800;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 12px;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  padding: 12px 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.18) 42%, rgba(13, 27, 42, 0.08) 100%),
    rgba(255, 255, 255, 0.18);
  color: var(--ink);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.54),
    0 12px 26px rgba(13, 27, 42, 0.11);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.64),
    0 16px 34px rgba(13, 27, 42, 0.14);
}

.button.primary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1) 45%, rgba(0, 0, 0, 0.14) 100%),
    rgba(13, 27, 42, 0.82);
  border-color: rgba(255, 255, 255, 0.46);
  color: var(--white);
}

.button.ghost {
  border-color: rgba(13, 27, 42, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.32) 45%, rgba(13, 27, 42, 0.035) 100%),
    rgba(255, 255, 255, 0.36);
  color: var(--ink);
}

.result-panel {
  animation: fadeUp 260ms ease both;
}

.score-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
  border: 1px solid rgba(13, 27, 42, 0.12);
  border-radius: var(--radius);
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(247, 248, 248, 0.74), rgba(214, 218, 221, 0.5) 52%, rgba(75, 81, 89, 0.16)),
    rgba(229, 232, 234, 0.52);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 16px 38px rgba(13, 27, 42, 0.09);
}

.score-card::before {
  position: absolute;
  inset: -40% auto auto -8%;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: rgba(21, 164, 220, 0.12);
  content: "";
}

.score-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.score-summary {
  max-width: 540px;
}

.score-summary h2 {
  margin: 6px 0 10px;
}

.score-summary p {
  margin: 0;
  color: var(--charcoal);
}

.score-value {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.9rem, 8vw, 4.25rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.score-label {
  display: block;
  margin-top: 8px;
  color: var(--charcoal);
  font-size: 0.96rem;
  font-weight: 800;
}

.score-badge {
  display: grid;
  flex: 0 0 auto;
  width: 132px;
  height: 132px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.1) 45%, rgba(0, 0, 0, 0.16) 100%),
    rgba(13, 27, 42, 0.88);
  color: var(--white);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 18px 44px rgba(13, 27, 42, 0.18);
  text-align: center;
}

.score-badge span {
  display: block;
  margin-bottom: -22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.4rem;
  font-weight: 400;
  line-height: 1;
}

.score-badge small {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 900;
}

.score-bar {
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 6px;
  border-radius: 999px;
  background: rgba(13, 27, 42, 0.12);
}

.score-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--ink), var(--blue));
}

.category-score-grid,
.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 26px;
}

.category-score-card,
.snapshot-card {
  border: 1px solid rgba(13, 27, 42, 0.11);
  border-radius: var(--radius);
  padding: 19px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(241, 241, 239, 0.66)),
    rgba(255, 255, 255, 0.58);
  box-shadow: 0 12px 30px rgba(13, 27, 42, 0.06);
}

.category-score-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.category-icon {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: rgba(21, 164, 220, 0.13);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
}

.category-score-card strong,
.focus-score {
  color: var(--blue-dark);
  font-size: 0.9rem;
  font-weight: 900;
}

.category-score-card h3,
.snapshot-card h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.35;
}

.category-score-card p,
.snapshot-card p {
  margin-bottom: 14px;
  color: var(--charcoal);
  font-size: 0.92rem;
}

.category-meter {
  overflow: hidden;
  height: 6px;
  border-radius: 999px;
  background: rgba(13, 27, 42, 0.11);
}

.category-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--ink), var(--blue));
}

.snapshot-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(241, 241, 239, 0.72)),
    rgba(255, 255, 255, 0.64);
}

.snapshot-card.opportunity {
  border-color: rgba(21, 164, 220, 0.28);
}

.snapshot-label {
  display: inline-flex;
  margin-bottom: 10px;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(21, 164, 220, 0.11);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-panel h2 {
  margin: 0 0 12px;
}

.result-intro {
  margin-bottom: 28px;
  color: var(--charcoal);
  font-size: 1rem;
}

.section-heading {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.insight-grid {
  display: grid;
  gap: 12px;
  margin: 0 0 26px;
}

.insight-card {
  border: 1px solid rgba(13, 27, 42, 0.11);
  border-radius: var(--radius);
  padding: 19px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 12px 30px rgba(13, 27, 42, 0.06);
}

.focus-card {
  position: relative;
}

.focus-score {
  display: inline-flex;
  margin-bottom: 10px;
}

.insight-card h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.35;
}

.insight-card p {
  margin-bottom: 0;
  color: var(--charcoal);
  font-size: 0.94rem;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(21, 164, 220, 0.12) 42%, rgba(0, 0, 0, 0.16)),
    var(--ink);
  box-shadow: 0 22px 52px rgba(13, 27, 42, 0.2);
}

.cta-panel::after {
  position: absolute;
  inset: auto -44px -62px auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: rgba(21, 164, 220, 0.18);
  content: "";
}

.cta-panel h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 400;
}

.cta-panel p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.86);
}

.cta-panel .button {
  position: relative;
  z-index: 1;
  margin-top: 6px;
  min-width: 220px;
}

.cta-panel .button.primary {
  border-color: rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.36) 48%, rgba(13, 27, 42, 0.06) 100%),
    rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.cta-panel .button.primary:hover,
.cta-panel .button.primary:focus-visible {
  border-color: var(--white);
  background: var(--white);
}

.microcopy {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.review-request-page {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  gap: 54px;
  align-items: start;
  padding: 76px 0 96px;
}

.review-request-copy {
  padding-top: 24px;
}

.review-request-card {
  padding: 34px;
}

.review-request-card h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.18;
}

.review-request-card p {
  color: var(--charcoal);
}

.review-request-card form,
.dynamic-review-fields {
  display: grid;
  gap: 22px;
}

.dynamic-review-fields {
  margin-top: 4px;
}

.review-context {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.review-context span {
  border: 1px solid rgba(13, 27, 42, 0.12);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 900;
}

.review-delivery-page {
  display: grid;
  gap: 24px;
  padding: 64px 0 96px;
}

.review-delivery-hero {
  max-width: 820px;
  margin-bottom: 12px;
}

.delivery-card {
  border: 1px solid rgba(13, 27, 42, 0.12);
  border-radius: var(--radius);
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(241, 241, 239, 0.72)),
    rgba(255, 255, 255, 0.62);
  box-shadow: 0 16px 36px rgba(13, 27, 42, 0.08);
}

.delivery-card h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.18;
}

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

.summary-grid p,
.notes-grid article {
  margin: 0;
  border: 1px solid rgba(13, 27, 42, 0.1);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255, 255, 255, 0.56);
  color: var(--charcoal);
}

.summary-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.loom-placeholder {
  display: grid;
  min-height: 260px;
  place-items: center;
  border: 1px dashed rgba(13, 27, 42, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(13, 27, 42, 0.05), rgba(21, 164, 220, 0.05)),
    rgba(255, 255, 255, 0.48);
  text-align: center;
}

.loom-placeholder p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.notes-grid h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1rem;
}

.notes-grid p {
  margin: 0;
}

.delivery-cta {
  margin-top: 4px;
}

.internal-notes-card {
  border-style: dashed;
  opacity: 0.92;
}

.confirmation-page {
  display: grid;
  gap: 24px;
  padding: 76px 0 96px;
}

.confirmation-hero {
  max-width: 880px;
}

.confirmation-copy {
  max-width: 720px;
  color: var(--charcoal);
  font-size: 1.05rem;
}

.confirmation-card h2 {
  margin: 0 0 18px;
}

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

.confirmation-steps article {
  border: 1px solid rgba(13, 27, 42, 0.1);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.58);
}

.confirmation-steps span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 999px;
  background: rgba(21, 164, 220, 0.13);
  color: var(--ink);
  font-weight: 900;
}

.confirmation-steps h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1rem;
}

.confirmation-steps p {
  margin: 0;
  color: var(--charcoal);
}

.confirmation-reassurance {
  max-width: 880px;
}

[hidden] {
  display: none !important;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .site-shell {
    width: min(100% - 28px, 720px);
  }

  .site-header {
    align-items: center;
  }

  .header-note {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 24px;
  }

  .review-request-page {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 34px;
  }

  .summary-grid,
  .notes-grid,
  .confirmation-steps {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    position: static;
    padding-top: 12px;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 24px, 560px);
  }

  .site-header {
    min-height: 76px;
  }

  .brand {
    width: 112px;
  }

  h1 {
    font-size: clamp(2.28rem, 11vw, 3rem);
  }

  .subtitle {
    font-size: 1.06rem;
  }

  .hero {
    padding-bottom: 42px;
  }

  #formPanel,
  .result-panel {
    padding: 22px;
  }

  .form-topline,
  .score-row {
    display: grid;
    gap: 10px;
  }

  .score-badge {
    width: 112px;
    height: 112px;
  }

  .score-badge span {
    font-size: 2.8rem;
  }

  .category-score-grid,
  .snapshot-grid {
    grid-template-columns: 1fr;
  }

  .form-topline h2,
  .result-panel h2 {
    font-size: 1.65rem;
  }

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

  .form-content {
    min-height: unset;
  }

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

  .button {
    width: 100%;
  }

  .button.ghost {
    order: 2;
  }
}
