:root {
  --color-primary: #7d5fe9;
  --color-primary-dark: #5d40ca;
  --color-secondary: #67e9b6;
  --color-secondary-dark: #2ebc83;
  --color-ink: #1c1c1e;
  --color-text: #373737;
  --color-muted: #66616f;
  --color-line: #e7e3ef;
  --color-soft: #f7f6fb;
  --color-soft-purple: #f1edff;
  --color-white: #fff;
  --color-footer: #170b45;
  --shadow-card: 0 20px 60px rgba(37, 23, 84, 0.09);
  --shadow-button: 0 12px 28px rgba(125, 95, 233, 0.28);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-white);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.page-app {
  --page-accent: #b84f2e;
  --page-accent-soft: #fff0eb;
}

body.page-crm {
  --page-accent: #6244cc;
  --page-accent-soft: var(--color-soft-purple);
}

body.page-automation {
  --page-accent: #167a58;
  --page-accent-soft: #e9fbf4;
}

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

a {
  color: var(--color-primary-dark);
}

a:hover {
  color: var(--color-primary);
}

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

:focus-visible {
  outline: 3px solid rgba(125, 95, 233, 0.35);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--color-white);
  background: var(--color-footer);
  transform: translateY(-160%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(28, 28, 30, 0.06);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-nav {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 154px;
  height: auto;
}

.nav-links {
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--color-ink);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a:hover {
  background: #eceaf0;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 0;
  border-radius: 999px;
  color: var(--color-white);
  background: var(--color-primary);
  box-shadow: var(--shadow-button);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  color: var(--color-white);
  background: var(--color-primary-dark);
  box-shadow: 0 16px 34px rgba(125, 95, 233, 0.36);
  transform: translateY(-2px);
}

.button--header {
  min-height: 42px;
  padding: 10px 17px;
  background: var(--color-secondary);
  box-shadow: none;
  font-size: 13px;
}

.button--header:hover {
  background: var(--color-secondary-dark);
  box-shadow: none;
}

.button--secondary {
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: inset 0 0 0 1px rgba(28, 28, 30, 0.13);
}

.button--secondary:hover {
  color: var(--color-ink);
  background: var(--color-white);
  box-shadow: inset 0 0 0 1px rgba(28, 28, 30, 0.24);
}

.breadcrumbs {
  padding-top: 20px;
  font-size: 13px;
  color: var(--color-muted);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li + li::before {
  margin-right: 8px;
  color: #aaa4b3;
  content: "/";
}

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

.breadcrumbs a:hover {
  color: var(--color-primary);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 660px;
  border-bottom: 1px solid #efeaf5;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.86) 56%, rgba(255, 255, 255, 0.24) 100%),
    url("../img/deliverest-lighthouse.jpg") 60% bottom / auto 78% no-repeat,
    #faf8ff;
}

.hero::before {
  position: absolute;
  top: 90px;
  left: -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(125, 95, 233, 0.10);
  filter: blur(8px);
  content: "";
}

.hero__layout {
  position: relative;
  display: grid;
  min-height: 580px;
  align-items: center;
  gap: 34px;
  padding-block: 54px 80px;
}

.hero__content {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  padding: 8px 13px;
  border: 1px solid rgba(28, 28, 30, 0.06);
  border-radius: 999px;
  color: var(--page-accent);
  background: var(--page-accent-soft);
  box-shadow: 0 5px 16px rgba(45, 35, 77, 0.06);
  font-size: 12.5px;
  font-weight: 850;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--color-ink);
  letter-spacing: -0.025em;
  overflow-wrap: break-word;
  text-wrap: balance;
}

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 10vw, 4.35rem);
  font-weight: 850;
  line-height: 1.03;
}

.hero__lead {
  max-width: 680px;
  margin: 0;
  color: #494450;
  font-size: clamp(1.05rem, 2vw, 1.26rem);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: #514b59;
  font-size: 14px;
  font-weight: 650;
}

.hero__proof li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__proof li::before {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--color-primary-dark);
  background: rgba(125, 95, 233, 0.13);
  font-size: 12px;
  font-weight: 900;
  content: "✓";
}

.hero__aside {
  align-self: end;
}

.hero-card {
  max-width: 430px;
  margin-left: auto;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-card__title {
  margin-bottom: 12px;
  font-size: 17px;
}

.hero-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
}

.hero-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag {
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  color: #514b59;
  background: #fff;
  font-size: 12px;
  font-weight: 700;
}

.section {
  padding-block: 78px;
}

.section--soft {
  background:
    radial-gradient(circle at 8% 12%, rgba(125, 95, 233, 0.06), transparent 26%),
    radial-gradient(circle at 93% 86%, rgba(103, 233, 182, 0.08), transparent 28%),
    var(--color-soft);
}

.section--purple {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(circle at 88% 2%, rgba(125, 95, 233, 0.48), transparent 34%),
    radial-gradient(circle at 4% 100%, rgba(103, 233, 182, 0.15), transparent 28%),
    linear-gradient(145deg, #170b45 0%, #211056 58%, #160a3f 100%);
}

.section--purple::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.section--purple::after {
  position: absolute;
  top: -160px;
  right: -110px;
  z-index: -1;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 54px rgba(255, 255, 255, 0.022),
    0 0 0 108px rgba(255, 255, 255, 0.014);
  content: "";
}

.section--purple h2,
.section--purple h3 {
  color: var(--color-white);
}

.section--purple .eyebrow {
  border-color: rgba(255, 255, 255, 0.26);
  color: #123f31;
  background: #8af2ca;
  box-shadow: 0 10px 28px rgba(8, 3, 31, 0.22);
  text-shadow: none;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

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

.section-heading h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 5.6vw, 3.15rem);
  font-weight: 830;
  line-height: 1.12;
}

.section-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--color-muted);
  font-size: 18px;
}

.section--purple .section-heading p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.78);
}

.section--purple .section-heading {
  max-width: 920px;
}

.section--purple .section-heading h2 {
  max-width: 25ch;
  font-size: clamp(2.1rem, 5vw, 3.45rem);
  line-height: 1.08;
}

.value-grid,
.feature-grid,
.use-grid,
.ecosystem-grid {
  display: grid;
  gap: 16px;
}

.value-card,
.feature-card,
.use-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: 0 8px 28px rgba(37, 23, 84, 0.045);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.value-card::after,
.feature-card::after,
.use-card::after {
  position: absolute;
  top: 0;
  right: 22px;
  left: 22px;
  height: 2px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, transparent, var(--page-accent), transparent);
  opacity: 0;
  content: "";
  transition: opacity 180ms ease;
}

.value-card:hover,
.feature-card:hover,
.use-card:hover {
  border-color: rgba(125, 95, 233, 0.24);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.value-card:hover::after,
.feature-card:hover::after,
.use-card:hover::after {
  opacity: 0.72;
}

.value-card {
  padding: 28px;
}

.value-card__number,
.feature-card__icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 14px;
  color: var(--page-accent);
  background: var(--page-accent-soft);
  font-size: 15px;
  font-weight: 850;
}

.value-card h3,
.feature-card h3,
.use-card h3 {
  margin-bottom: 9px;
  font-size: 19px;
  line-height: 1.3;
}

.value-card p,
.feature-card p,
.use-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
}

.problem-layout {
  display: grid;
  align-items: center;
  gap: 40px;
}

.problem-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 7vw, 3rem);
  line-height: 1.13;
}

.problem-copy > p:not(.eyebrow) {
  margin: 0;
  color: var(--color-muted);
  font-size: 18px;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
}

.check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  color: var(--color-white);
  background: var(--page-accent);
  font-size: 12px;
  font-weight: 900;
  content: "✓";
}

.product-visual {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 26px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 85% 15%, rgba(103, 233, 182, 0.3), transparent 38%),
    linear-gradient(145deg, #eee9ff, #fff);
}

.product-visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.product-visual--app img {
  max-width: 330px;
  margin-inline: auto;
}

.product-visual__caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 14px;
  color: #4d4659;
  background: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.feature-card {
  padding: 25px;
}

.flow {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: flow;
}

.flow__item {
  position: relative;
  min-height: 100%;
  padding: 24px 22px;
  border: 1px solid var(--color-line);
  border-radius: 20px;
  background: var(--color-white);
  box-shadow: 0 8px 26px rgba(37, 23, 84, 0.04);
  counter-increment: flow;
}

.flow__item::before {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 50%;
  color: var(--color-white);
  background: var(--color-primary);
  font-size: 13px;
  font-weight: 850;
  content: counter(flow);
}

.flow__item h3 {
  margin-bottom: 8px;
  font-size: 17px;
}

.flow__item p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
}

.use-card {
  padding: 27px;
}

.use-card__label {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--page-accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.ecosystem-card {
  position: relative;
  overflow: hidden;
  min-height: 132px;
  padding: 24px 19px 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 36px rgba(8, 3, 31, 0.12);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.ecosystem-card::before {
  display: block;
  width: 32px;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-secondary), #b49cff);
  content: "";
}

.ecosystem-card:hover {
  border-color: rgba(138, 242, 202, 0.38);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.065));
  transform: translateY(-4px);
}

.ecosystem-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--color-white);
  font-size: 17px;
  line-height: 1.25;
}

.ecosystem-card span {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13.5px;
  line-height: 1.55;
}

.related-links {
  display: grid;
  gap: 14px;
  margin-top: 36px;
}

.related-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--color-line);
  border-radius: 20px;
  color: var(--color-ink);
  background: linear-gradient(145deg, var(--color-white), #fbfaff);
  box-shadow: 0 10px 28px rgba(37, 23, 84, 0.045);
  font-weight: 750;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.related-link::after {
  color: var(--color-primary);
  font-size: 22px;
  content: "→";
}

.related-link:hover {
  border-color: #cec4ef;
  color: var(--color-primary-dark);
  box-shadow: 0 16px 38px rgba(37, 23, 84, 0.09);
  transform: translateY(-3px);
}

.faq {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin-inline: auto;
}

.faq details {
  border: 1px solid var(--color-line);
  border-radius: 18px;
  background: var(--color-white);
  box-shadow: 0 7px 24px rgba(37, 23, 84, 0.035);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.faq details[open] {
  border-color: rgba(125, 95, 233, 0.32);
  box-shadow: 0 12px 32px rgba(37, 23, 84, 0.07);
}

.faq summary {
  position: relative;
  padding: 21px 58px 21px 22px;
  color: var(--color-ink);
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: var(--color-primary);
  background: var(--color-soft-purple);
  line-height: 26px;
  text-align: center;
  transform: translateY(-50%);
  content: "+";
}

.faq details[open] summary::after {
  content: "−";
}

.faq__answer {
  padding: 0 22px 22px;
  color: var(--color-muted);
  font-size: 15px;
}

.faq__answer p {
  margin: 0;
}

.cta {
  padding-block: 74px;
}

.cta__panel {
  position: relative;
  overflow: hidden;
  padding: 42px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  color: rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(circle at 92% 20%, rgba(103, 233, 182, 0.45), transparent 30%),
    linear-gradient(135deg, #6d4edc, #261358 75%);
  box-shadow: 0 28px 70px rgba(38, 19, 88, 0.22);
  text-align: center;
}

.cta__panel::before {
  position: absolute;
  bottom: -90px;
  left: -30px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  content: "";
}

.cta__content {
  position: relative;
  max-width: 780px;
  margin-inline: auto;
}

.cta h2 {
  max-width: 20ch;
  margin-inline: auto;
  margin-bottom: 16px;
  color: var(--color-white);
  font-size: clamp(2rem, 5.6vw, 3.2rem);
  line-height: 1.12;
}

.cta p {
  max-width: 650px;
  margin: 0 auto 28px;
}

.cta .button {
  color: var(--color-white);
  background: var(--color-secondary-dark);
  box-shadow: none;
}

.cta .button:hover {
  background: #27a976;
}

.site-footer {
  padding-block: 52px 28px;
  color: rgba(255, 255, 255, 0.66);
  background: var(--color-footer);
}

.footer-layout {
  display: grid;
  gap: 34px;
}

.footer-brand img {
  width: 178px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 370px;
  margin: 18px 0 0;
  font-size: 14px;
}

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

.footer-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  text-decoration: none;
}

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

.footer-bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
}

@media (min-width: 620px) {
  .container {
    width: min(100% - 48px, var(--container));
  }

  .brand img {
    width: 180px;
  }

  .button--header {
    min-height: 44px;
    padding-inline: 20px;
    font-size: 14px;
  }

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

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

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

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

  .cta__panel {
    padding: 58px 42px;
  }

  .footer-layout {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }
}

@media (min-width: 900px) {
  .site-nav {
    min-height: 76px;
  }

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

  .hero {
    background-position: center bottom;
    background-size: auto 82%;
  }

  .hero__layout {
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  }

  .section {
    padding-block: 108px;
  }

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

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

  .problem-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 72px;
  }

  .problem-layout--reverse .problem-copy {
    order: 2;
  }

  .problem-layout--reverse .product-visual {
    order: 1;
  }

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

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

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

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

@media (max-width: 899px) {
  .hero {
    min-height: 0;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.93) 60%, rgba(255, 255, 255, 0.58) 100%),
      url("../img/deliverest-lighthouse.jpg") 68% bottom / auto 48% no-repeat,
      #faf8ff;
  }

  .hero__layout {
    min-height: 720px;
    align-content: start;
  }

  .hero__aside {
    padding-top: 80px;
  }

  .hero-card {
    margin-left: 0;
  }
}

@media (max-width: 460px) {
  body {
    font-size: 16px;
  }

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

  .brand img {
    width: 132px;
  }

  .button--header {
    min-height: 38px;
    padding: 8px 13px;
    font-size: 12px;
  }

  .hero__layout {
    min-height: 760px;
    padding-top: 38px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .section {
    padding-block: 66px;
  }

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

  .footer-nav {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
