:root {
  color-scheme: light;
  --page-bg: #f5f7f3;
  --surface: #ffffff;
  --surface-soft: #edf7f3;
  --ink: #0f2430;
  --muted: #536771;
  --line: #d9e3df;
  --brand: #0f766e;
  --brand-strong: #075b55;
  --brand-soft: #d8f3ea;
  --accent: #f4a261;
  --danger-soft: #fff1ee;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --shadow: 0 18px 50px rgba(16, 43, 51, 0.1);
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  color: #071c25;
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(15, 118, 110, 0.14);
  background: color-mix(in srgb, var(--page-bg) 90%, transparent);
  backdrop-filter: blur(18px);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--content), calc(100% - 40px));
  min-height: 74px;
  margin: 0 auto;
  gap: 28px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand-link img {
  width: 210px;
  height: auto;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:not(.button):hover {
  color: var(--brand);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid var(--brand);
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.2);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  background: var(--brand-strong);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(15, 118, 110, 0.24);
}

.button-secondary {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.button-secondary:hover {
  border-color: var(--brand);
  background: var(--surface);
  color: var(--brand-strong);
}

.button-small {
  min-height: 40px;
  padding: 9px 16px;
}

.hero,
.section,
.closing-cta {
  width: min(var(--content), calc(100% - 40px));
  margin-inline: auto;
}

.hero {
  display: grid;
  align-items: center;
  min-height: 720px;
  padding: 76px 0 84px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--brand-strong);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  background: var(--accent);
  content: "";
}

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

h1,
h2,
h3 {
  line-height: 1.1;
  text-wrap: balance;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 5.6vw, 4rem);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-lead strong {
  color: var(--ink);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.hero-pills li {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 84%, transparent);
  font-size: 0.85rem;
  font-weight: 750;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.microcopy {
  width: 100%;
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-media {
  display: grid;

  position: relative;
  height: 100%;
  justify-items: center
}

.hero-media::before {
  position: absolute;
  inset: -30px;
  z-index: -1;
  border-radius: 44% 56% 60% 40%;
  background: var(--brand-soft);
  content: "";
  transform: rotate(-4deg);
}

.hero-media img {
  display: grid;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
      max-width: 40%;
}

.hero-note {
  display: grid;
  position: absolute;
  right: -18px;
  bottom: 24px;
  width: min(260px, 62%);
  padding: 17px 19px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 40px rgba(4, 35, 42, 0.16);
  color: #15323a;
  font-size: 0.9rem;
  backdrop-filter: blur(12px);
}

.hero-note strong {
  display: block;
  color: #0c6b62;
  font-size: 1.1rem;
}

.section {
  padding: 96px 0;
}

.differentiator-strip {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  width: min(var(--content), calc(100% - 40px));
  margin: 0 auto 40px;
  padding: clamp(28px, 5vw, 48px);
  gap: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.differentiator-strip h2 {
  margin-bottom: 12px;
  font-size: clamp(1.75rem, 3vw, 2.8rem);
}

.differentiator-strip p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.differentiator-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  gap: 11px;
  list-style: none;
}

.differentiator-list li {
  position: relative;
  padding: 13px 14px 13px 40px;
  border-radius: 13px;
  background: var(--surface-soft);
  font-size: 0.9rem;
  font-weight: 800;
}

.differentiator-list li::before {
  position: absolute;
  top: 12px;
  left: 15px;
  color: var(--brand);
  content: "✓";
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.6fr);
  align-items: end;
  margin-bottom: 40px;
  gap: 30px;
}

.section-heading p:last-child,
.section-intro {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.problem-grid,
.split-section,
.people-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(30px, 6vw, 74px);
}

.image-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  height: auto;
}

.problem-copy ul,
.check-list,
.plain-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.problem-copy li,
.check-list li,
.plain-list li {
  position: relative;
  margin: 11px 0;
  padding-left: 31px;
}

.problem-copy li::before,
.check-list li::before,
.plain-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--brand);
  font-weight: 900;
  content: "✓";
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}

.feature-card {
  min-height: 180px;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition: transform 160ms ease, border-color 160ms ease;
}

.feature-card:hover {
  border-color: color-mix(in srgb, var(--brand) 55%, var(--line));
  transform: translateY(-4px);
}

.feature-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 13px;
  background: var(--brand-soft);
  color: var(--brand-strong);
  font-size: 1.25rem;
  font-weight: 900;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.feature-visual {
  grid-column: span 2;
  min-height: 375px;
  padding: 0;
  overflow: hidden;
}

.feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flow-panel {
  padding: clamp(30px, 5vw, 62px);
  border-radius: var(--radius-lg);
  background: #082e36;
  color: #effffd;
  box-shadow: var(--shadow);
}

.flow-panel .eyebrow,
.flow-panel .section-intro {
  color: #aee9df;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 38px 0 20px;
  padding: 0;
  counter-reset: flow;
  list-style: none;
}

.flow-steps li {
  position: relative;
  padding: 0 22px 0 0;
  counter-increment: flow;
  font-weight: 800;
}

.flow-steps li::before {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 50%;
  background: #55d6be;
  color: #062d2d;
  content: counter(flow);
}

.flow-steps li:not(:last-child)::after {
  position: absolute;
  top: 18px;
  right: 16px;
  width: calc(100% - 64px);
  height: 1px;
  background: rgba(174, 233, 223, 0.35);
  content: "";
}

.flow-note {
  max-width: 870px;
  margin-bottom: 0;
  color: #bcdad8;
  font-size: 0.88rem;
}

.module-stack {
  display: grid;
  gap: 22px;
}

.module-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 12px 36px rgba(16, 43, 51, 0.07);
}

.module-card:nth-child(even) .module-copy {
  order: 2;
}

.module-card:nth-child(even) .module-image {
  order: 1;
}

.module-copy {
  padding: clamp(28px, 5vw, 56px);
}

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

.module-image {
  height: 100%;
  min-height: 360px;
  padding: 18px;
  background: var(--surface-soft);
}

.module-image img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: contain;
}

.fiado-card {
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 7vw, 82px);
  border-radius: var(--radius-lg);
  background: linear-gradient(125deg, #0f766e, #073b42 72%);
  color: #fff;
  box-shadow: var(--shadow);
}

.fiado-card::after {
  position: absolute;
  top: -130px;
  right: -80px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(255, 255, 255, 0.04), 0 0 0 96px rgba(255, 255, 255, 0.03);
  content: "";
}

.fiado-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  align-items: center;
  gap: 60px;
}

.fiado-card .eyebrow,
.fiado-card p {
  color: #c5eee8;
}

.fiado-card .check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px 18px;
}

.fiado-card .check-list li::before {
  color: #8aefd9;
}

.ledger {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  background: rgba(3, 28, 34, 0.5);
  backdrop-filter: blur(10px);
}

.ledger-head,
.ledger-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.ledger-head {
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 800;
}

.ledger-row {
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #d7f2ee;
}

.ledger-row:last-child {
  border: 0;
}

.ledger-row strong {
  color: #fff;
}

.audience-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 50px;
}

.audience-tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  margin-top: 28px;
}

.audience-tag {
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  font-weight: 800;
}

.people-grid {
  align-items: stretch;
}

.people-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.people-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.people-card figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 15px 17px;
  border-radius: 16px;
  background: rgba(4, 31, 38, 0.78);
  color: #fff;
  font-weight: 750;
  backdrop-filter: blur(10px);
}

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

.faq-grid details {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.faq-grid summary {
  cursor: pointer;
  font-weight: 850;
  line-height: 1.35;
}

.faq-grid details p {
  margin: 14px 0 0;
  color: var(--muted);
}

.closing-cta {
  margin-top: 40px;
  margin-bottom: 96px;
  padding: clamp(42px, 8vw, 90px);
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: #fff;
  text-align: center;
}

.closing-cta h2 {
  max-width: 760px;
  margin-inline: auto;
}

.closing-cta p {
  max-width: 680px;
  margin: 0 auto 26px;
  color: #c5d4d8;
}

.closing-cta .cta-actions {
  justify-content: center;
}

.closing-cta .button-secondary {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.site-footer {
  padding: 46px 20px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  align-items: start;
  width: min(var(--content), 100%);
  margin: 0 auto;
  gap: 38px;
}

.footer-brand {
  font-size: 1.25rem;
  font-weight: 900;
}

.footer-inner p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--brand);
}

.footer-copy {
  color: var(--muted);
  font-size: 0.86rem;
  white-space: nowrap;
}

.concept-one {
  --page-bg: #f7f4ed;
  --surface-soft: #eef6f1;
  --accent: #e68a4d;
}

.concept-one h1,
.concept-one h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.concept-one .hero-media img {
  transform: rotate(1.5deg);
}

.concept-one .feature-card:nth-child(3n + 1) {
  background: #fffaf1;
}

.concept-two {
  color-scheme: dark;
  --page-bg: #061a22;
  --surface: #0d2933;
  --surface-soft: #0a3338;
  --ink: #f0fbf8;
  --muted: #aac1c5;
  --line: #27454d;
  --brand: #41d1ad;
  --brand-strong: #75e5c9;
  --brand-soft: #123f40;
  --accent: #f7c65b;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.concept-two .site-header {
  background: rgba(6, 26, 34, 0.88);
}

.concept-two .brand-link img {
  border: 5px solid #fff;
  background: #fff;
}

.concept-two .button {
  color: #042720;
  box-shadow: 0 0 0 1px rgba(65, 209, 173, 0.22), 0 12px 32px rgba(65, 209, 173, 0.14);
}

.concept-two .button-secondary {
  color: var(--ink);
}

.concept-two .hero {
  min-height: 760px;
}

.concept-two .hero::before {
  position: absolute;
  top: 130px;
  left: 6%;
  z-index: -2;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  background: rgba(18, 139, 126, 0.2);
  filter: blur(100px);
  content: "";
}

.concept-two .hero-media::before {
  background: linear-gradient(145deg, #0d665c, #f7c65b);
  border-radius: 32px;
  transform: rotate(3deg);
}

.concept-two .hero-media img {
  border: 1px solid #3e5b62;
  border-radius: 24px;
}

.concept-two .hero-note {
  border-color: #45646a;
  background: rgba(8, 31, 39, 0.9);
  color: #dff8f2;
}

.concept-two .hero-note strong {
  color: #75e5c9;
}

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

.concept-two .feature-card {
  border-color: #264650;
  background: linear-gradient(155deg, #102f39, #0a222c);
}

.concept-two .feature-visual {
  grid-column: span 3;
  min-height: 500px;
}

.concept-two .flow-panel,
.concept-two .fiado-card,
.concept-two .closing-cta {
  border: 1px solid #31515a;
  background: #020f15;
}

.concept-two .module-card {
  border-color: #284953;
  background: #0b2630;
}

.concept-two .module-image {
  background: #dcebf1;
}

.concept-two .audience-tag,
.concept-two .faq-grid details {
  background: #0b2630;
}

.concept-two .site-footer {
  background: #031218;
}

.concept-three {
  --page-bg: #f8fbfa;
  --surface-soft: #eff8f5;
  --ink: #13282d;
  --muted: #536a6f;
  --line: #dce8e4;
  --brand: #108b77;
  --brand-strong: #086957;
  --brand-soft: #e0f5ed;
  --accent: #f0ba4f;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow: 0 12px 34px rgba(31, 75, 72, 0.08);
}

.concept-three .hero {
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
}

.concept-three .hero-copy {
  padding: 36px 0;
}

.concept-three h1 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.concept-three .hero-media {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 14px;
}

.concept-three .hero-media::before {
  inset: 8% -12% -8% 15%;
  border-radius: 24px;
  transform: none;
}

.concept-three .hero-media img:first-child {
  height: 520px;
  object-fit: cover;
}

.concept-three .hero-media .hero-secondary-image {
  height: 360px;
  margin-top: 80px;
  object-fit: cover;
}

.concept-three .hero-note {
  right: 13%;
  bottom: -22px;
}

.concept-three .feature-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.concept-three .feature-card {
  min-height: 164px;
  padding: 20px;
}

.concept-three .feature-visual {
  grid-column: span 3;
  grid-row: span 2;
  min-height: 360px;
}

.concept-three .feature-card:nth-child(4),
.concept-three .feature-card:nth-child(9) {
  grid-column: span 2;
}

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

.concept-three .module-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.concept-three .module-card:nth-child(even) .module-copy,
.concept-three .module-card:nth-child(even) .module-image {
  order: initial;
}

.concept-three .module-image {
  min-height: 280px;
}

.concept-three .module-copy {
  flex: 1;
}

@media (max-width: 1020px) {
  .hero,
  .concept-three .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

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

  .hero-media {
    width: min(760px, 94%);
    margin-inline: auto;
  }

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

  .feature-visual,
  .concept-two .feature-visual,
  .concept-three .feature-visual,
  .concept-three .feature-card:nth-child(4),
  .concept-three .feature-card:nth-child(9) {
    grid-column: span 2;
  }

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

  .audience-grid .image-card {
    width: min(640px, 100%);
  }
}

@media (max-width: 800px) {
  .nav-links a:not(.button) {
    display: none;
  }

  .brand-link img {
    width: 178px;
  }

  .section-heading,
  .differentiator-strip,
  .problem-grid,
  .split-section,
  .people-grid,
  .fiado-layout,
  .module-card,
  .concept-three .module-stack {
    grid-template-columns: 1fr;
  }

  .module-card:nth-child(even) .module-copy,
  .module-card:nth-child(even) .module-image {
    order: initial;
  }

  .flow-steps {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .flow-steps li {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    gap: 13px;
    padding: 0;
  }

  .flow-steps li::before {
    margin: 0;
  }

  .flow-steps li::after {
    display: none;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-copy {
    white-space: normal;
  }
}

@media (max-width: 600px) {
  .site-nav,
  .hero,
  .section,
  .differentiator-strip,
  .closing-cta {
    width: min(100% - 28px, var(--content));
  }

  .site-nav {
    min-height: 66px;
  }

  .brand-link img {
    width: 142px;
  }

  .nav-links {
    gap: 8px;
  }

  .button-small {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 0.8rem;
  }

  .hero {
    padding: 54px 0 70px;
  }

  h1 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .hero-media,
  .concept-three .hero-media {
    display: block;
    width: 100%;
  }

  .concept-three .hero-media img:first-child,
  .concept-three .hero-media .hero-secondary-image {
    height: auto;
    margin: 0;
  }

  .concept-three .hero-media .hero-secondary-image {
    display: none;
  }

  .hero-note {
    right: 10px;
    bottom: -26px;
  }

  .section {
    padding: 72px 0;
  }

  .differentiator-strip {
    padding: 26px;
  }

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

  .feature-grid,
  .concept-two .feature-grid,
  .concept-three .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-visual,
  .concept-two .feature-visual,
  .concept-three .feature-visual,
  .concept-three .feature-card:nth-child(4),
  .concept-three .feature-card:nth-child(9) {
    grid-column: auto;
  }

  .feature-card {
    min-height: 0;
  }

  .feature-visual {
    min-height: 310px;
  }

  .module-image {
    min-height: 230px;
  }

  .fiado-card .check-list,
  .audience-tags {
    grid-template-columns: 1fr;
  }

  .ledger {
    padding: 17px;
  }

  .people-card {
    min-height: 340px;
  }

  .closing-cta {
    margin-bottom: 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .feature-card {
    transition: none;
  }
}
