:root {
  color-scheme: light;
  --ink: #1f2f3d;
  --muted: #60707c;
  --line: #d3dce2;
  --paper: #f6f1eb;
  --panel: #fffaf4;
  --teal: #2f746f;
  --teal-dark: #1f5653;
  --cyan: #2d6f7f;
  --coral: #a64232;
  --gold: #b97822;
  --blue: #24495d;
  --violet: #5d5366;
  --redwood: #7c3428;
  --sand: #eadfd4;
  --clay: #d8b9a6;
  --bark: #102838;
  --bark-soft: #18384a;
  --navy: #0f2533;
  --navy-deep: #0b1b27;
  --shadow: 0 18px 48px rgba(16, 40, 56, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 4vw, 56px);
  background: rgba(16, 40, 56, 0.94);
  border-bottom: 1px solid rgba(234, 223, 212, 0.18);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border: 1px solid rgba(255, 250, 244, 0.48);
  border-radius: 8px;
  color: #fffaf4;
  background:
    linear-gradient(135deg, rgba(255, 250, 244, 0.12), rgba(255, 250, 244, 0.02)),
    #123248;
  box-shadow: inset 0 0 0 1px rgba(216, 185, 166, 0.16), 0 12px 28px rgba(0, 0, 0, 0.18);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.brand-text {
  display: grid;
  gap: 2px;
  color: #fffaf4;
  line-height: 1;
}

.brand-text strong {
  font-size: 24px;
  font-weight: 800;
}

.brand-text small {
  color: var(--clay);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  color: #efe5dc;
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--redwood);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--redwood);
  border-radius: var(--radius);
  color: #fff;
  background: var(--coral);
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  background: #5f261f;
  box-shadow: 0 14px 34px rgba(124, 52, 40, 0.24);
  transform: translateY(-1px);
}

.button-secondary {
  color: #fffaf4;
  background: rgba(255, 250, 244, 0.08);
  border-color: rgba(255, 250, 244, 0.46);
}

.button-secondary:hover {
  color: #fff;
}

.button-small {
  min-height: 40px;
  padding-inline: 16px;
  font-size: 14px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
  gap: clamp(34px, 5vw, 80px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(54px, 8vw, 104px) clamp(20px, 5vw, 72px) 42px;
  color: #fffaf4;
  background:
    radial-gradient(circle at 80% 16%, rgba(124, 52, 40, 0.42), transparent 30%),
    radial-gradient(circle at 10% 90%, rgba(47, 116, 111, 0.26), transparent 32%),
    linear-gradient(135deg, var(--navy) 0%, var(--bark-soft) 46%, var(--navy-deep) 100%);
}

.thank-you-hero {
  grid-template-columns: minmax(0, 760px);
  align-content: center;
}

.service-hero {
  grid-template-columns: minmax(0, 860px);
  align-content: center;
  min-height: 66vh;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--redwood);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(44px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-lede,
.section-heading p,
.contact-copy > p {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
}

.hero .eyebrow {
  color: #f2c4b1;
}

.hero .hero-lede {
  color: rgba(255, 250, 244, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0;
}

.proof-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 720px;
  margin: 0;
}

.proof-points div {
  padding: 18px;
  border: 1px solid rgba(234, 223, 212, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.08);
}

.proof-points dt {
  margin-bottom: 6px;
  color: #f2c4b1;
  font-size: 22px;
  font-weight: 800;
}

.proof-points dd {
  margin: 0;
  color: rgba(255, 250, 244, 0.7);
  font-size: 13px;
  line-height: 1.35;
}

.hero-visual {
  min-width: 0;
}

.browser-shell {
  overflow: hidden;
  border: 1px solid rgba(234, 223, 212, 0.24);
  border-radius: var(--radius);
  background: #fffaf4;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.34);
}

.browser-bar {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: #eadfd4;
}

.browser-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--coral);
}

.browser-bar span:nth-child(2) {
  background: var(--gold);
}

.browser-bar span:nth-child(3) {
  background: var(--teal);
}

.dashboard {
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(124, 52, 40, 0.1), transparent 46%),
    #fffaf4;
}

.dashboard-top,
.metric-grid,
.workflow,
.assistant-card {
  border-radius: var(--radius);
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(216, 185, 166, 0.18), transparent 46%),
    var(--navy);
}

.dashboard-top p {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.dashboard-top strong {
  display: block;
  font-size: clamp(18px, 2vw, 24px);
}

.status-pill,
.solution-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.status-pill {
  color: var(--navy);
  background: #eadfd4;
}

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

.metric-grid article {
  min-height: 128px;
  padding: 16px;
  border: 1px solid var(--line);
  background: #fffaf4;
}

.metric-grid span,
.metric-grid small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.metric-grid strong {
  display: block;
  margin: 16px 0 6px;
  color: var(--ink);
  font-size: clamp(22px, 3vw, 30px);
}

.workflow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  background: #f4ebe3;
}

.workflow-line {
  position: absolute;
  top: 32px;
  right: 52px;
  left: 52px;
  height: 2px;
  background: #c9b5a7;
}

.workflow > div:not(.workflow-line) {
  position: relative;
  z-index: 1;
}

.node {
  display: block;
  width: 24px;
  height: 24px;
  margin-bottom: 12px;
  border: 6px solid #c9b5a7;
  border-radius: 50%;
  background: #fffaf4;
}

.node.active {
  border-color: var(--teal);
}

.workflow strong,
.workflow small {
  display: block;
}

.workflow small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.assistant-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  color: #fff;
  background: var(--blue);
}

.assistant-card p {
  margin: 0;
  line-height: 1.45;
}

.spark-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--redwood);
  font-weight: 800;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid rgba(234, 223, 212, 0.18);
  border-bottom: 1px solid rgba(234, 223, 212, 0.18);
  background:
    linear-gradient(90deg, rgba(124, 52, 40, 0.28), rgba(51, 75, 95, 0.46)),
    var(--navy);
}

.trust-strip span {
  display: grid;
  place-items: center;
  min-height: 76px;
  padding: 12px;
  border-right: 1px solid rgba(234, 223, 212, 0.16);
  color: #fffaf4;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.trust-strip span:last-child {
  border-right: 0;
}

.section {
  padding: clamp(70px, 9vw, 116px) clamp(20px, 5vw, 72px);
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 72px);
}

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

.detail-list article,
.product-copy {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 14px 34px rgba(16, 40, 56, 0.08);
}

.detail-list p,
.product-copy p,
.product-copy li {
  color: var(--muted);
  line-height: 1.65;
}

.section-alt {
  background:
    linear-gradient(135deg, rgba(124, 52, 40, 0.09), transparent 38%),
    #eadfd4;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 36px;
}

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

.service-card {
  min-height: 270px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 14px 34px rgba(76, 54, 43, 0.1);
}

.link-card {
  display: block;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.link-card:hover {
  box-shadow: 0 18px 42px rgba(16, 40, 56, 0.16);
  transform: translateY(-2px);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 42px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--redwood);
  font-weight: 800;
}

.service-card p,
.solution-list p,
.approach-steps p,
.cred-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.solution-list {
  display: grid;
  gap: 14px;
}

.solution-list article {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 14px 34px rgba(76, 54, 43, 0.1);
}

.solution-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 22px;
  align-items: start;
}

.solution-preview {
  display: grid;
  gap: 10px;
  overflow: hidden;
  justify-self: end;
  width: 180px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf4;
  box-shadow: 0 18px 44px rgba(16, 40, 56, 0.12);
  cursor: pointer;
  text-align: left;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.solution-preview:hover {
  box-shadow: 0 22px 50px rgba(16, 40, 56, 0.18);
  transform: translateY(-1px);
}

.solution-preview img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top left;
}

.solution-preview span {
  display: block;
  padding: 0 12px 12px;
  border-top: 1px solid var(--line);
  color: var(--redwood);
  font-size: 13px;
  font-weight: 700;
}

.solution-tag {
  margin-bottom: 14px;
  color: var(--redwood);
  background: #f1d9cb;
}

.solution-title {
  display: grid;
  gap: 12px;
}

.price-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(124, 52, 40, 0.18);
  border-radius: var(--radius);
  color: #fffaf4;
  background: var(--redwood);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(15, 37, 51, 0.76);
}

.modal-panel {
  position: relative;
  overflow: auto;
  width: min(1180px, 100%);
  max-height: min(86vh, 920px);
  border: 1px solid rgba(234, 223, 212, 0.32);
  border-radius: var(--radius);
  background: #fffaf4;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.modal-close {
  position: sticky;
  top: 14px;
  z-index: 2;
  display: flex;
  margin: 14px 14px 0 auto;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fffaf4;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.modal-content {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  padding: 0 28px 28px;
}

.modal-copy {
  display: grid;
  align-content: start;
  gap: 16px;
}

.modal-copy h2,
.modal-copy p {
  margin: 0;
}

.modal-copy p,
.modal-copy li {
  color: var(--muted);
  line-height: 1.65;
}

.modal-copy ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.modal-price {
  margin-bottom: 4px;
}

.modal-image {
  display: block;
  width: 100%;
  max-height: 660px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: contain;
  background: #fff;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.product-copy {
  display: grid;
  gap: 16px;
}

.product-copy ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.product-image {
  display: block;
  width: 100%;
  max-height: 620px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: contain;
  background: #fff;
  box-shadow: var(--shadow);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 80px);
}

.approach-steps {
  display: grid;
  gap: 18px;
}

.approach-steps article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.approach-steps span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--redwood);
  font-weight: 800;
}

.credibility {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 72px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(216, 185, 166, 0.14), transparent 34%),
    var(--navy);
}

.credibility .eyebrow {
  color: #f2c4b1;
}

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

.cred-grid p {
  margin: 0;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.05);
}

.page-links {
  background: var(--paper);
}

.insights-preview {
  background:
    linear-gradient(135deg, rgba(45, 111, 127, 0.08), transparent 42%),
    #fffaf4;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

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

.article-card {
  display: grid;
  align-content: start;
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 14px 34px rgba(16, 40, 56, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.article-card:hover {
  box-shadow: 0 18px 42px rgba(16, 40, 56, 0.16);
  transform: translateY(-2px);
}

.article-card span {
  margin-bottom: 34px;
  color: var(--redwood);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-card p {
  color: var(--muted);
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  color: var(--redwood);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.article-page {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(70px, 9vw, 116px) clamp(20px, 5vw, 72px);
}

.article-page h1 {
  color: var(--ink);
  font-size: clamp(40px, 6vw, 68px);
}

.article-page h2 {
  margin-top: 42px;
  font-size: clamp(26px, 3vw, 36px);
}

.article-page p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.article-lede {
  color: var(--ink);
  font-size: clamp(19px, 2vw, 23px);
}

.article-page .button {
  margin-top: 24px;
}

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

.faq-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 14px 34px rgba(16, 40, 56, 0.08);
}

.faq-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 6vw, 78px);
  padding: clamp(70px, 9vw, 116px) clamp(20px, 5vw, 72px);
  color: #fffaf4;
  background:
    radial-gradient(circle at 12% 12%, rgba(216, 185, 166, 0.18), transparent 26%),
    linear-gradient(135deg, var(--navy), var(--blue));
}

.contact-section .eyebrow {
  color: #f2c4b1;
}

.contact-section .contact-copy > p,
.contact-section .contact-details {
  color: rgba(255, 250, 244, 0.76);
}

.contact-copy {
  max-width: 720px;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 34px;
  color: var(--muted);
  font-weight: 700;
}

.contact-details a {
  color: #fffaf4;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf4;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

label {
  display: grid;
  gap: 8px;
  color: #263745;
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c9b5a7;
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: #fffaf4;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(124, 52, 40, 0.18);
  border-color: var(--redwood);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #fff;
  font-weight: 800;
}

@media (max-width: 1020px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .contact-section,
  .split-section,
  .credibility,
  .detail-grid,
  .product-detail {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    max-width: 720px;
  }

  .service-grid,
  .article-grid,
  .cred-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .modal-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    flex-wrap: wrap;
  }

  .brand {
    min-width: 204px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    font-size: 21px;
  }

  .brand-text strong {
    font-size: 22px;
  }

  .brand-text small {
    font-size: 10px;
  }

  .button-small {
    width: 100%;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-visual {
    display: none;
  }

  h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .proof-points,
  .metric-grid,
  .workflow,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .dashboard {
    padding: 16px;
  }

  .dashboard-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .workflow-line {
    display: none;
  }

  .trust-strip span {
    min-height: 56px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .solution-list article {
    grid-template-columns: 1fr;
  }

  .solution-body {
    grid-template-columns: 1fr;
  }

  .solution-preview {
    justify-self: start;
    width: min(220px, 100%);
  }

  .modal {
    padding: 12px;
  }

  .modal-content {
    padding: 0 18px 18px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
