:root {
  --stone: #f4efe7;
  --stone-deep: #e7e3da;
  --paper: #fbf8f3;
  --ink: #203f4c;
  --charcoal: #2b2e33;
  --muted: #5a6463;
  --sage: #93a58f;
  --sage-soft: #d9ded4;
  --blue: #2f6478;
  --blue-soft: #c9dce1;
  --clay: #dc8f72;
  --clay-soft: #f4c7b0;
  --gold: #eecba1;
  --line: rgba(41, 75, 90, 0.13);
  --shadow: 0 24px 70px rgba(41, 75, 90, 0.1);
  --container: 1120px;
  --serif: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans: Inter, "Avenir Next", "Segoe UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background:
    radial-gradient(circle at 68% 9%, rgba(244, 200, 176, 0.26), transparent 17rem),
    linear-gradient(180deg, #f8f2ea 0%, var(--stone) 43%, #f7f2eb 100%);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
}

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

button,
input {
  font: inherit;
}

svg {
  display: block;
}

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

.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: relative;
  z-index: 20;
  background: #f6f2e9;
}

.nav-shell {
  display: grid;
  grid-template-columns: 175px 1fr auto;
  align-items: center;
  padding-block: 22px;
  column-gap: 42px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
}

.brand-mark {
  position: relative;
  width: 43px;
  height: 68px;
  flex: 0 0 auto;
}

.brand-mark-image {
  overflow: hidden;
}

.brand-mark-image img {
  position: absolute;
  top: -17px;
  left: -59px;
  display: block;
  width: 160px;
  max-width: none;
  height: auto;
  mix-blend-mode: multiply;
}

.mark-dot {
  position: absolute;
  top: 0;
  left: 18px;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--clay);
}

.mark-petal {
  position: absolute;
  bottom: 4px;
  width: 25px;
  height: 43px;
  border-radius: 63% 37% 55% 45% / 43% 46% 54% 57%;
  filter: saturate(0.95);
  transform-origin: 50% 100%;
}

.mark-petal-left {
  left: 1px;
  background: rgba(147, 165, 143, 0.72);
  transform: rotate(-35deg);
}

.mark-petal-right {
  right: 0;
  background: rgba(191, 214, 204, 0.68);
  transform: rotate(36deg);
}

.mark-petal-front {
  left: 13px;
  background: rgba(41, 75, 90, 0.76);
  transform: rotate(1deg);
}

.brand-word {
  display: grid;
  gap: 0;
  color: var(--ink);
  line-height: 0.9;
}

.brand-word > span {
  font-family: var(--serif);
  font-size: 52px;
  letter-spacing: 0;
}

.brand-word small {
  color: var(--clay);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  margin-left: 2px;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  color: #27363d;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--clay);
}

.nav-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.nav-login,
.nav-cta {
  display: inline-grid;
  place-items: center;
  min-height: 39px;
  padding: 0 22px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.nav-login {
  min-width: 88px;
  border: 1px solid rgba(220, 143, 114, 0.32);
  color: #28424d;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(251, 248, 243, 0.68)),
    #fbf8f3;
  box-shadow:
    0 10px 22px rgba(41, 75, 90, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.nav-cta {
  min-width: 121px;
  color: #fff;
  background: linear-gradient(135deg, #dc8468 0%, #df785f 100%);
  box-shadow: 0 12px 28px rgba(220, 143, 114, 0.2);
}

.nav-login:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

.nav-login:hover {
  border-color: rgba(220, 143, 114, 0.55);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(250, 237, 229, 0.82)),
    #fbf8f3;
  box-shadow:
    0 14px 28px rgba(41, 75, 90, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.nav-cta:hover {
  box-shadow: 0 14px 30px rgba(220, 143, 114, 0.26);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 452px;
  overflow: hidden;
  background: #f6f2e9;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(0, 560px);
  gap: 60px;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
}

.hero-copy {
}

.eyebrow {
  margin: 0 0 14px;
  color: #7e8c7b;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

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

h1,
h2 {
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 560px;
  margin-bottom: 22px;
  font-size: 62px;
  line-height: 1.15;
}

h1 span {
  display: block;
  white-space: nowrap;
}

.hero-subcopy {
  max-width: 480px;
  margin-bottom: 34px;
  color: #24414d;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 31px;
}

.button {
  display: inline-grid;
  place-items: center;
  min-height: 40px;
  padding: 0 29px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #df8568 0%, #dc765e 100%);
  box-shadow: 0 16px 30px rgba(220, 143, 114, 0.19);
}

.button-secondary {
  min-width: 134px;
  color: var(--ink);
  border: 1px solid rgba(220, 118, 94, 0.74);
  background: rgba(255, 255, 255, 0.36);
}

.compact {
  min-width: 122px;
  padding-inline: 24px;
}

.trust-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0;
  padding: 0;
  color: #24383f;
  font-size: 12px;
  font-weight: 650;
  list-style: none;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-list li + li::before {
  content: "";
  width: 3px;
  height: 3px;
  margin-right: 7px;
  border-radius: 999px;
  background: var(--clay);
}

.trust-list svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero-art {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-art img {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
}

.employees-section {
  position: relative;
  padding: 38px 0 29px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(251, 248, 243, 0.62)),
    var(--paper);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.56);
}

.section-heading {
  max-width: 560px;
  margin: 0 auto 29px;
  text-align: center;
}

.section-heading .eyebrow {
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 0.19em;
}

.section-heading h2 {
  margin-bottom: 6px;
  font-size: 35px;
  line-height: 1.08;
}

.brush-line {
  display: block;
  width: min(220px, 60%);
  height: 8px;
  margin: 0 auto 14px;
  border-radius: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 222 8' preserveAspectRatio='none'%3E%3Cpath d='M 2 2.5 C 42 1.5 100 1 180 2.5 C 200 3 210 4 218 4.5 C 210 5 200 4 180 4 C 100 3.5 42 6 2 6 C 1.03 6 0.25 5.22 0.25 4.25 C 0.25 3.28 1.03 2.5 2 2.5 Z' fill='%23dc765e' fill-opacity='0.78'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
  transform: rotate(-1deg);
}

.section-heading p:not(.eyebrow) {
  margin: 0 auto;
  max-width: 560px;
  color: #26383f;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
}

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

.employee-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  padding: 28px 30px 31px;
  border: 1px solid rgba(41, 75, 90, 0.15);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1)),
    rgba(247, 243, 235, 0.46);
}

.employee-card::before,
.employee-card::after {
  position: absolute;
  inset: auto -25px -48px -25px;
  content: "";
  height: 124px;
  border-radius: 55% 45% 0 0 / 72% 74% 0 0;
  opacity: 0.62;
  pointer-events: none;
}

.employee-card::after {
  bottom: -58px;
  height: 108px;
  opacity: 0.5;
  transform: translateX(50px) rotate(-5deg);
}

.card-sage {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1)),
    #f5f2ed;
}

.card-sage::before {
  inset: auto 0 0 0;
  height: 140px;
  border-radius: 0;
  background: url(assets/card-waves-green.png) no-repeat bottom center / 100% 100%;
  opacity: 1;
}

.card-sage::after {
  display: none;
}

.card-blue {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1)),
    #f1f0ee;
}

.card-blue::before {
  inset: auto 0 0 0;
  height: 140px;
  border-radius: 0;
  background: url(assets/card-waves-blue.png) no-repeat bottom center / 100% 100%;
  opacity: 1;
}

.card-blue::after {
  display: none;
}

.card-clay {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1)),
    #f7f2ec;
}

.card-clay::before {
  inset: auto 0 0 0;
  height: 140px;
  border-radius: 0;
  background: url(assets/card-waves-clay.png) no-repeat bottom center / 100% 100%;
  opacity: 1;
}

.card-clay::after {
  display: none;
}

.card-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  aspect-ratio: 1;
  margin-bottom: 15px;
  border-radius: 999px;
}

.card-sage .card-icon {
  background: #d9dfd4;
}

.card-sage .card-icon svg {
  width: 60px;
  height: 60px;
  stroke-width: 1.4;
}

.card-blue .card-icon {
  background: #c9dce1;
}

.card-clay .card-icon {
  background: #f3c8b2;
}

.card-icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: #121b1f;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.employee-card h3 {
  position: relative;
  z-index: 1;
  max-width: 190px;
  margin-bottom: 12px;
  color: #111a1e;
  font-family: var(--serif);
  font-size: 33px;
  font-weight: 550;
  letter-spacing: 0;
  line-height: 0.98;
}

.title-rule {
  position: relative;
  z-index: 1;
  display: block;
  width: 34px;
  height: 1px;
  margin: 0 0 20px;
}

.card-sage .title-rule {
  background: var(--sage);
}

.card-blue .title-rule {
  background: var(--blue);
}

.card-clay .title-rule {
  background: var(--clay);
}

.employee-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 11px;
  margin: 0 0 27px;
  padding: 0;
  font-size: 12.5px;
  font-weight: 650;
  line-height: 1.25;
  list-style: none;
}

.employee-card li {
  display: grid;
  grid-template-columns: 13px 1fr;
  gap: 10px;
  align-items: start;
}

.employee-card li::before {
  display: grid;
  place-items: center;
  width: 13px;
  height: 13px;
  margin-top: 0;
  border-radius: 999px;
  color: #fff;
  content: "✓";
  font-size: 8px;
  line-height: 1;
}

.card-sage li::before {
  background: var(--sage);
}

.card-blue li::before {
  background: var(--blue);
}

.card-clay li::before {
  background: var(--clay);
}

.learn-link {
  position: relative;
  z-index: 1;
  color: var(--sage);
  font-size: 15px;
  font-weight: 700;
}

.card-blue .learn-link {
  color: var(--blue);
}

.card-clay .learn-link {
  color: var(--clay);
}

.proof-strip {
  padding: 22px 0 23px;
  background: rgba(246, 241, 233, 0.85);
}

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

.proof-grid article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  min-height: 70px;
  padding: 0 26px;
  border-left: 1px solid rgba(41, 75, 90, 0.15);
}

.proof-grid article:first-child {
  padding-left: 0;
  border-left: 0;
}

.proof-grid article:last-child {
  padding-right: 0;
}

.proof-icon {
  width: 42px;
  height: 42px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.proof-sage {
  stroke: var(--sage);
}

.proof-blue {
  stroke: var(--blue);
}

.proof-clay {
  stroke: var(--clay);
}

.proof-icon.proof-clay {
  width: 52px;
  height: 52px;
  stroke-width: 1.8;
  align-self: start;
  margin-top: -6px;
}

.proof-gold {
  stroke: #e0a56a;
}

.proof-grid h3 {
  margin: 0 0 6px;
  color: #24343b;
  font-size: 14px;
  line-height: 1.25;
}

.proof-grid p {
  margin: 0;
  color: #1e2b30;
  font-size: 12px;
  font-weight: 550;
  line-height: 1.65;
}

.technology-section {
  position: relative;
  min-height: 291px;
  overflow: hidden;
  padding: 42px 0 10px;
  border-top: 1px solid rgba(41, 75, 90, 0.12);
  background:
    radial-gradient(circle at 68% 9%, rgba(244, 200, 176, 0.26), transparent 17rem),
    linear-gradient(180deg, #f8f2ea 0%, var(--stone) 43%, #f7f2eb 100%);
}

.technology-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 78px;
  align-items: start;
}

.technology-copy h2 {
  max-width: 300px;
  margin-bottom: 2px;
  font-size: 44px;
  line-height: 0.97;
}

.brush-left {
  width: 182px;
  margin: 0 0 27px;
}

.technology-copy p {
  max-width: 285px;
  margin-bottom: 22px;
  color: #26383f;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.62;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  padding-top: 34px;
}

.values-grid article {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 12px;
  align-items: start;
}

.value-dot {
  width: 12px;
  height: 12px;
  margin-top: 5px;
  border-radius: 999px;
}

.dot-sage {
  background: var(--sage);
}

.dot-blue {
  background: var(--blue);
}

.dot-clay {
  background: var(--clay);
}

.values-grid h3 {
  margin-bottom: 7px;
  color: #1e2b30;
  font-size: 14px;
  line-height: 1.15;
}

.values-grid p {
  margin: 0;
  color: #24383f;
  font-size: 12px;
  font-weight: 550;
  line-height: 1.7;
}

.integrations-section,
.faq-section,
.demo-section {
  background: #fbf8f3;
}

.integrations-section {
  padding: 80px 0 70px;
}

.compact-heading {
  margin-bottom: 33px;
}

.logo-cloud {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.logo-cloud span {
  display: grid;
  place-items: center;
  min-height: 66px;
  padding: 12px;
  border: 1px solid rgba(41, 75, 90, 0.12);
  border-radius: 8px;
  color: rgba(41, 75, 90, 0.62);
  background: rgba(255, 255, 255, 0.38);
  font-family: var(--serif);
  font-size: 19px;
}

.logo-img {
  max-width: 100%;
  max-height: 34px;
  width: auto;
  height: auto;
  display: block;
  filter: brightness(0) saturate(100%) invert(20%) sepia(30%) saturate(600%) hue-rotate(163deg) opacity(0.62);
}

.logo-img--lg { max-height: 46px; }
.logo-img--xl { max-height: 58px; }
.logo-img--sm { max-height: 22px; }
.logo-img--color { max-height: 44px; filter: opacity(0.88); }

.faq-section {
  padding: 70px 0;
  border-top: 1px solid rgba(41, 75, 90, 0.1);
}

.faq-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
}

.faq-grid h2,
.demo-panel h2 {
  margin-bottom: 18px;
  font-size: 42px;
  line-height: 1;
}

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

details {
  border: 1px solid rgba(41, 75, 90, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
}

summary {
  cursor: pointer;
  padding: 17px 18px;
  color: #1f333b;
  font-weight: 800;
}

details p {
  margin: -4px 18px 18px;
  color: #35494f;
  font-size: 14px;
}

.demo-section {
  padding: 0 0 86px;
}

.demo-panel {
  display: grid;
  grid-template-columns: 1fr 292px;
  gap: 40px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(220, 143, 114, 0.28);
  border-radius: 12px;
  background:
    radial-gradient(circle at 88% 18%, rgba(244, 200, 176, 0.46), transparent 16rem),
    rgba(247, 242, 235, 0.75);
}

.demo-panel p {
  max-width: 420px;
  margin-bottom: 0;
}

.demo-form {
  display: grid;
  gap: 12px;
}

.demo-form label {
  display: grid;
  gap: 5px;
  color: #31454c;
  font-size: 12.5px;
  font-weight: 800;
}

.demo-form input,
.demo-form textarea {
  min-height: 42px;
  width: 100%;
  border: 1px solid rgba(41, 75, 90, 0.17);
  border-radius: 7px;
  padding: 8px 12px;
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.7);
  font: inherit;
  resize: vertical;
}

.demo-form button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.site-footer {
  position: relative;
  padding: 60px 0 40px;
  border-top: 1px solid rgba(41, 75, 90, 0.12);
  background: #f6f2e9;
  overflow: hidden;
}

.footer-waves {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  height: auto;
  display: block;
  pointer-events: none;
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-brand .brand-mark {
  width: 30px;
  height: 40px;
}

.footer-brand .brand-mark-image img {
  width: 112px;
  top: -12px;
  left: -41px;
}

.footer-brand .brand-word > span {
  font-size: 36px;
}

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

.footer-brand-col p {
  margin: 0;
  color: #405056;
  font-size: 13.5px;
  max-width: 280px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.footer-nav a {
  color: #405056;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s;
}

.footer-nav a:hover {
  color: var(--ink);
}

.footer-bottom {
  padding-top: 20px;
}

.footer-bottom p {
  margin: 0;
  color: #8a9fa8;
  font-size: 13px;
}

@media (max-width: 940px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
    padding-block: 16px;
    align-items: center;
  }

  .menu-toggle {
    display: block;
    grid-column: 2;
    grid-row: 1;
  }

  .site-nav,
  .nav-actions {
    display: none;
  }

  .site-header.menu-open .site-nav,
  .site-header.menu-open .nav-actions {
    grid-column: 1 / -1;
  }

  .site-header.menu-open .site-nav {
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 18px 0 10px;
    white-space: normal;
  }

  .site-header.menu-open .site-nav a {
    padding: 10px 0;
    border-top: 1px solid rgba(41, 75, 90, 0.09);
  }

  .site-header.menu-open .nav-actions {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 36px, var(--container));
  }

  .brand-word > span {
    font-size: 44px;
  }

  .brand-word small {
    font-size: 13.5px;
  }

  .hero-grid,
  .technology-grid,
  .faq-grid,
  .demo-panel {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 16px;
    padding-top: 28px;
  }

  h1 {
    font-size: 52px;
  }

  .hero-art img {
    max-width: 360px;
  }

  .employee-grid,
  .proof-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .employee-card {
    min-height: 420px;
  }

  .proof-grid {
    gap: 20px;
  }

  .proof-grid article {
    padding: 0;
    border-left: 0;
  }

  .technology-grid,
  .faq-grid,
  .demo-panel {
    gap: 28px;
  }

  .values-grid {
    padding-top: 0;
  }

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

  .footer-top {
    flex-direction: column;
    gap: 28px;
  }

  .footer-nav {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 20px;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 15px;
  }

  .brand-mark {
    width: 35px;
    height: 49px;
  }

  .brand-word > span {
    font-size: 38px;
  }

  .brand-word small {
    font-size: 11px;
  }

  h1 {
    font-size: 44px;
  }

  .section-heading h2,
  .technology-copy h2,
  .faq-grid h2,
  .demo-panel h2 {
    font-size: 38px;
  }

  .hero-actions {
    gap: 12px;
  }

  .button {
    width: 100%;
  }

  h1 span {
    white-space: normal;
  }

  .hero-art img {
    max-width: 300px;
  }

  .employee-card {
    min-height: auto;
    padding-inline: 24px;
  }

  .demo-panel {
    padding: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
