:root {
  --ink: #14213d;
  --ink-strong: #0b1224;
  --muted: #5d6879;
  --line: #dbe2ea;
  --surface: #ffffff;
  --surface-soft: #f4f7fb;
  --surface-blue: #eaf4fb;
  --blue: #1049a9;
  --blue-dark: #0a3478;
  --teal: #0f8f8f;
  --gold: #c69a3d;
  --danger: #b42318;
  --shadow: 0 18px 48px rgba(20, 33, 61, 0.12);
  --shadow-soft: 0 12px 34px rgba(20, 33, 61, 0.06);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink-strong);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: 3.9rem;
}

h2 {
  font-size: 2.35rem;
}

h3 {
  font-size: 1.25rem;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  color: #ffffff;
  background: var(--blue-dark);
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(219, 226, 234, 0.82);
  backdrop-filter: blur(12px);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-footer .footer-brand {
  padding: 8px 12px;
  background: #ffffff;
  border-radius: var(--radius);
}

.brand img,
.footer-brand img {
  width: 173px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: var(--radius);
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--blue);
  background: var(--surface-blue);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
}

.menu-toggle__bars,
.menu-toggle__bars::before,
.menu-toggle__bars::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
}

.menu-toggle__bars {
  position: relative;
}

.menu-toggle__bars::before,
.menu-toggle__bars::after {
  position: absolute;
  left: 0;
}

.menu-toggle__bars::before {
  top: -7px;
}

.menu-toggle__bars::after {
  top: 7px;
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(8, 17, 35, 0.88) 0%, rgba(8, 17, 35, 0.66) 48%, rgba(8, 17, 35, 0.32) 100%),
    var(--hero-image) center / cover no-repeat;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.32);
  content: "";
}

.hero-content {
  position: relative;
  max-width: 760px;
  padding: 96px 0 116px;
}

.hero .eyebrow,
.page-hero .eyebrow,
.section-header .eyebrow {
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  color: #ffffff;
  max-width: 720px;
}

.hero p {
  max-width: 660px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.15rem;
}

.hero-actions,
.section-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button--primary {
  color: #ffffff;
  background: var(--blue);
}

.button--primary:hover {
  background: var(--blue-dark);
}

.button--secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.08);
}

.button--secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.button--quiet {
  color: var(--blue);
  background: var(--surface-blue);
}

.button--outline {
  color: var(--blue);
  border-color: var(--line);
  background: var(--surface);
}

.section {
  padding: 96px 0;
}

.section--soft {
  background: var(--surface-soft);
}

.section--blue {
  background: var(--surface-blue);
}

.section--tight {
  padding: 68px 0;
}

.section-header {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-header--center {
  margin-inline: auto;
  text-align: center;
}

.section-header p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.05rem;
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

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

.card {
  min-height: 100%;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(20, 33, 61, 0.06);
}

.card h3 {
  margin-bottom: 12px;
}

.learning-offering-card h2 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.learning-offering-card .eyebrow {
  margin-bottom: 12px;
}

.card p {
  color: var(--muted);
}

.card-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 56px;
  align-items: center;
}

.split--reverse {
  grid-template-columns: minmax(320px, 0.98fr) minmax(0, 1.02fr);
}

.image-frame {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-frame--wide img {
  aspect-ratio: 16 / 9;
}

.image-frame--contain {
  background: var(--surface-soft);
}

.image-frame--contain img {
  object-fit: contain;
}

.explainer-frame {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0a1530;
  border: 1px solid rgba(219, 226, 234, 0.92);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.explainer-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.comparison-table-wrap {
  overflow-x: auto;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(20, 33, 61, 0.06);
}

.comparison-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 20px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.comparison-table thead th {
  color: #ffffff;
  background: var(--ink-strong);
  font-size: 0.9rem;
}

.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.comparison-table td:first-child {
  color: var(--ink-strong);
  font-weight: 800;
}

.comparison-table td:not(:first-child) {
  color: var(--muted);
}

.source-note {
  max-width: 760px;
  margin-top: 30px;
  color: var(--muted);
}

.source-note a {
  color: var(--blue);
  font-weight: 800;
}

.kicker-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.kicker-list li {
  padding-left: 22px;
  color: var(--muted);
  position: relative;
}

.kicker-list li::before {
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  content: "";
}

.metric-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.metric {
  padding: 28px;
  background: var(--surface);
}

.metric strong {
  display: block;
  color: var(--blue);
  font-size: 1.35rem;
  line-height: 1.1;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.page-hero {
  padding: 112px 0 86px;
  background:
    linear-gradient(90deg, rgba(8, 17, 35, 0.92), rgba(8, 17, 35, 0.62)),
    var(--hero-image) center / cover no-repeat;
  color: #ffffff;
}

.page-hero h1 {
  max-width: 850px;
  color: #ffffff;
}

.page-hero p {
  max-width: 720px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
}

.service-section {
  scroll-margin-top: 96px;
  padding: 42px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-section + .service-section {
  margin-top: 24px;
}

.service-section h2 {
  font-size: 1.75rem;
}

.service-section p {
  margin-top: 16px;
  color: var(--muted);
}

.service-section__actions {
  margin-top: 26px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pill-list li {
  padding: 8px 12px;
  color: var(--blue-dark);
  background: var(--surface-blue);
  border: 1px solid #cae4f5;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
}

.product-panel {
  padding: 36px;
  color: #ffffff;
  background: var(--ink-strong);
  border-radius: var(--radius);
}

.product-panel h2,
.product-panel h3 {
  color: #ffffff;
}

.product-panel p,
.product-panel li {
  color: rgba(255, 255, 255, 0.78);
}

.product-panel .kicker-list li::before {
  background: var(--gold);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1.22fr);
  gap: 48px;
  align-items: start;
}

.case-grid {
  display: grid;
  gap: 28px;
}

.case-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.45fr) minmax(0, 0.55fr);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(20, 33, 61, 0.06);
}

.case-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.case-card__body {
  padding: 34px;
}

.case-card__body h2 {
  margin-bottom: 8px;
  font-size: 1.8rem;
}

.case-card__body h3 {
  margin-bottom: 16px;
  color: var(--blue-dark);
}

.case-card__body p:not(.eyebrow) {
  color: var(--muted);
}

.case-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.case-detail {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.case-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 16px;
}

.case-sidebar .button {
  width: 100%;
}

.case-story {
  max-width: 780px;
}

.case-story section + section {
  margin-top: 40px;
}

.case-story h2 {
  font-size: 1.55rem;
}

.case-story p {
  margin-top: 14px;
  color: var(--muted);
}

.insights-categories {
  margin-bottom: 34px;
}

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

.insight-card {
  display: grid;
  min-height: 100%;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(20, 33, 61, 0.06);
}

.insight-card img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.insight-card__body {
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.insight-card__body .eyebrow {
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.insight-card__body h2 {
  font-size: 1.55rem;
}

.insight-card__body p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--muted);
}

.insight-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.article-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.article-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 16px;
}

.article-content {
  min-width: 0;
  max-width: 820px;
}

.article-content section + section {
  margin-top: 44px;
}

.article-content h2 {
  font-size: 1.65rem;
}

.article-content p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.03rem;
}

.article-summary {
  padding: 30px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.article-link-list {
  display: grid;
  gap: 10px;
}

.article-link-list a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.discovery-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.discovery-metric {
  padding: 30px;
  background: var(--surface);
}

.discovery-metric strong {
  display: block;
  color: var(--blue);
  font-size: 2.45rem;
  line-height: 1;
}

.discovery-metric span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

.number-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.number-card {
  min-height: 100%;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(20, 33, 61, 0.06);
}

.number-card span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 5px 9px;
  color: var(--blue);
  background: var(--surface-blue);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 900;
}

.number-card h3 {
  margin-bottom: 12px;
}

.number-card p {
  color: var(--muted);
  font-size: 0.96rem;
}

.function-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.function-cloud span {
  padding: 12px 14px;
  color: var(--ink);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

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

.process-step {
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(20, 33, 61, 0.06);
}

.process-step .eyebrow {
  margin-bottom: 12px;
}

.process-step strong {
  display: block;
  margin-top: 24px;
  color: var(--blue-dark);
}

.process-steps--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.learning-meta {
  display: grid;
  gap: 16px;
}

.learning-meta article {
  padding: 24px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.learning-meta h2 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.learning-meta p,
.process-step p:not(.eyebrow) {
  color: var(--muted);
}

.boundary-list {
  display: grid;
  gap: 16px;
}

.boundary-list article {
  padding: 24px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.boundary-list h3 {
  margin-bottom: 10px;
}

.boundary-list p {
  color: var(--muted);
}

.contact-details {
  display: grid;
  gap: 18px;
}

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

.contact-detail {
  padding: 24px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-detail .eyebrow {
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-detail h2,
.contact-detail h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.contact-detail p + p {
  margin-top: 8px;
}

.contact-detail a {
  color: var(--blue);
  font-weight: 800;
}

.contact-form {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--ink-strong);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(15, 143, 143, 0.22);
  border-color: var(--teal);
}

.checkbox-row {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: var(--muted);
  font-weight: 600;
}

.checkbox-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
}

.form-status {
  color: var(--muted);
  font-size: 0.95rem;
}

.legal-content {
  max-width: 850px;
}

.legal-content h2 {
  margin-top: 42px;
  font-size: 1.45rem;
}

.legal-content p,
.legal-content li {
  margin-top: 14px;
  color: var(--muted);
}

.legal-content ul {
  margin-top: 12px;
  padding-left: 20px;
}

.legal-content li {
  list-style: disc;
}

.cta-band {
  padding: 54px;
  color: #ffffff;
  background: var(--ink-strong);
  border-radius: var(--radius);
}

.cta-band h2 {
  color: #ffffff;
}

.cta-band p {
  max-width: 680px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.faq-item h3 {
  margin-bottom: 10px;
}

.faq-item p {
  color: var(--muted);
}

.site-footer {
  padding: 70px 0 30px;
  color: rgba(255, 255, 255, 0.78);
  background: #0c1326;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.9fr;
  gap: 42px;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 1rem;
}

.site-footer p {
  max-width: 440px;
  margin-top: 18px;
}

.site-footer li + li {
  margin-top: 10px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.site-footer a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 980px) {
  h1 {
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    justify-content: center;
  }

  .hero {
    min-height: 640px;
  }

  .grid--3,
  .grid--4,
  .number-grid,
  .process-steps,
  .process-steps--4,
  .metric-band,
  .contact-location-grid,
  .split,
  .split--reverse,
  .case-card,
  .case-detail,
  .insight-grid,
  .article-layout,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .case-sidebar {
    position: static;
  }

  .article-sidebar {
    position: static;
  }

  .split--reverse > .image-frame {
    order: -1;
  }
}

@media (max-width: 720px) {
  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .hero {
    min-height: 580px;
  }

  .hero-content {
    padding: 78px 0 94px;
  }

  .hero p,
  .page-hero p {
    font-size: 1rem;
  }

  .section {
    padding: 72px 0;
  }

  .page-hero {
    padding: 86px 0 68px;
  }

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

  .service-section,
  .product-panel,
  .case-card__body,
  .contact-form,
  .cta-band {
    padding: 24px;
  }

  .case-card img {
    min-height: 220px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 440px) {
  h1 {
    font-size: 2.12rem;
  }

  .brand img,
  .footer-brand img {
    width: 150px;
  }

  .hero-actions,
  .section-actions,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
