@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/geist-latin.woff2") format("woff2");
}

:root {
  --paper: #fbfcf8;
  --paper-soft: #f3f5ee;
  --paper-green: #eef4e6;
  --ink: #121713;
  --ink-soft: #4d574f;
  --ink-muted: #6d766f;
  --night: #111a15;
  --night-soft: #1a261e;
  --line: #dce2d7;
  --line-dark: rgba(255, 255, 255, 0.14);
  --green: #73ae20;
  --green-dark: #4f7e13;
  --logo-green: #8cd231;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(19, 31, 22, 0.09);
  --font-sans: "Geist", "Aptos", "Segoe UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

button,
a {
  font: inherit;
}

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

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

svg {
  flex: 0 0 auto;
}

::selection {
  background: var(--logo-green);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--logo-green);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  font-weight: 650;
  transform: translateY(-160%);
  transition: transform 150ms ease;
}

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

#about,
#services,
#contact {
  scroll-margin-top: 86px;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(18, 23, 19, 0.08);
  background: rgba(251, 252, 248, 0.9);
  backdrop-filter: blur(18px);
}

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

.brand-link,
.site-footer .brand {
  display: inline-flex;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.site-header .brand {
  gap: 10px;
}

.brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
}

.site-header .brand-icon {
  width: 36px;
  height: 36px;
}

.brand-wordmark {
  width: 178px;
  height: auto;
}

.site-header .brand-wordmark {
  width: 267px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 590;
}

.primary-nav > a:not(.nav-contact) {
  position: relative;
  padding-block: 12px;
}

.primary-nav > a:not(.nav-contact)::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav > a:not(.nav-contact):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-contact {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  transition: background-color 180ms ease, color 180ms ease;
}

.nav-contact:hover {
  background: var(--ink);
  color: var(--white);
}

.nav-contact svg,
.button svg {
  width: 18px;
  height: 18px;
}

.nav-contact svg {
  width: 16px;
  height: 16px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
}

.menu-button svg {
  width: 22px;
  height: 22px;
}

.menu-icon-close {
  display: none;
}

.menu-button[aria-expanded="true"] .menu-icon-open {
  display: none;
}

.menu-button[aria-expanded="true"] .menu-icon-close {
  display: block;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 0;
  background:
    radial-gradient(circle at 11% 4%, rgba(140, 210, 49, 0.13), transparent 28%),
    linear-gradient(180deg, var(--paper) 0%, #f7f9f3 100%);
}

.hero-grid {
  position: absolute;
  z-index: 0;
  top: 0;
  right: -18%;
  width: 68%;
  height: 100%;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(72, 91, 76, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72, 91, 76, 0.09) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to left, black 42%, transparent 96%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 555px;
  align-items: center;
  gap: 90px;
  grid-template-columns: minmax(0, 1.08fr) minmax(410px, 0.92fr);
  padding-bottom: 94px;
}

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

.eyebrow,
.section-label {
  margin: 0 0 20px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  display: block;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

.no-break {
  white-space: nowrap;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3.5rem, 5.25vw, 4.75rem);
  font-weight: 590;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero-intro {
  max-width: 620px;
  margin: 32px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.12rem, 2vw, 1.32rem);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 670;
}

.button-primary {
  background: var(--ink);
  color: var(--white);
  transition: background-color 180ms ease, transform 180ms ease;
}

.button-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.text-link {
  position: relative;
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  background: var(--green);
  content: "";
}

.trajectory-panel {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 455px;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 34px 36px 30px;
  border: 1px solid rgba(79, 126, 19, 0.14);
  border-radius: 32px;
  background:
    radial-gradient(circle at 82% 10%, rgba(140, 210, 49, 0.17), transparent 29%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(238, 244, 230, 0.72));
  box-shadow: 0 24px 70px rgba(19, 31, 22, 0.055);
  color: var(--ink);
}

.trajectory-panel::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(72, 91, 76, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72, 91, 76, 0.075) 1px, transparent 1px);
  background-size: 38px 38px;
  content: "";
  mask-image: linear-gradient(145deg, transparent 4%, black 54%, transparent 96%);
}

.trajectory-chart {
  position: relative;
  z-index: 1;
  margin: 0 -4px;
}

.trajectory-chart svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.trajectory-area {
  fill: url(#trajectory-fill);
}

.trajectory-reference,
.trajectory-line {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.trajectory-reference {
  stroke: #9da99f;
  stroke-dasharray: 7 8;
  stroke-width: 1.5;
}

.trajectory-line {
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.5;
  filter: drop-shadow(0 5px 8px rgba(79, 126, 19, 0.17));
}

.trajectory-node,
.trajectory-end-node {
  fill: var(--green-dark);
  stroke: #f7faf2;
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.trajectory-halo {
  fill: rgba(140, 210, 49, 0.2);
}

.trajectory-legend {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
  color: var(--ink-muted);
  font-size: 11px;
  font-weight: 610;
  letter-spacing: 0.02em;
}

.trajectory-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trajectory-legend i {
  display: inline-block;
  width: 24px;
  height: 2px;
}

.legend-reference {
  border-top: 1px dashed #9da99f;
}

.legend-optimised {
  border-radius: 999px;
  background: var(--green);
}

.contact-details small {
  display: block;
  margin-bottom: 8px;
  color: #9eaaa1;
  font-size: 11px;
  font-weight: 660;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.proof-strip {
  position: relative;
  z-index: 1;
  display: grid;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.proof-strip > div {
  display: flex;
  min-height: 86px;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  border-right: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 570;
}

.proof-strip > div:first-child {
  padding-left: 0;
}

.proof-strip > div:last-child {
  border-right: 0;
}

.proof-strip svg {
  width: 18px;
  height: 18px;
  color: var(--green-dark);
}

.section {
  padding: 124px 0;
}

.section-intro {
  margin-bottom: 68px;
}

.split-intro {
  display: grid;
  align-items: end;
  gap: 70px;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
}

.section-intro h2,
.contact-copy h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 560;
  letter-spacing: -0.05em;
  line-height: 1.03;
}

.section-lead {
  margin: 0 0 4px;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.6;
}

.about-section {
  background: var(--paper);
}

.about-layout {
  display: grid;
  align-items: start;
  gap: 100px;
  grid-template-columns: minmax(270px, 0.78fr) minmax(0, 1.42fr);
}

.about-aside {
  position: sticky;
  top: 120px;
}

.founder-card {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(19, 31, 22, 0.06);
}

.founder-photo {
  width: 104px;
  height: 104px;
  border-radius: 18px;
  object-fit: cover;
}

.founder-card strong,
.founder-card span,
.founder-card a {
  display: block;
}

.founder-card a svg {
  width: 13px;
  height: 13px;
}

.founder-card strong {
  font-size: 18px;
  font-weight: 670;
}

.founder-card span {
  margin-top: 2px;
  color: var(--ink-muted);
  font-size: 14px;
}

.founder-card a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 11px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 680;
}

.prose {
  max-width: 750px;
}

.prose p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.78;
}

.prose p + p {
  margin-top: 27px;
}

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

.compact-intro {
  max-width: 760px;
}

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

.credibility-card {
  display: flex;
  min-height: 490px;
  flex-direction: column;
  padding: 34px 32px 38px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.credibility-card:hover {
  border-color: rgba(79, 126, 19, 0.45);
  box-shadow: 0 20px 55px rgba(19, 31, 22, 0.07);
  transform: translateY(-4px);
}

.card-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.icon-tile {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: var(--paper-green);
  color: var(--green-dark);
}

.icon-tile svg {
  width: 23px;
  height: 23px;
}

.card-number {
  color: #a1aaa3;
  font-size: 12px;
  font-weight: 690;
  letter-spacing: 0.12em;
}

.credibility-card h3 {
  margin: 38px 0 20px;
  font-size: 26px;
  font-weight: 620;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.credibility-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.72;
}

.services-section {
  background: var(--paper);
}

.services-list {
  border-top: 1px solid var(--ink);
}

.service-row {
  display: grid;
  align-items: start;
  gap: 52px;
  padding: 52px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 110px minmax(240px, 0.8fr) minmax(0, 1.2fr);
}

.service-marker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--green-dark);
}

.service-marker span {
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.12em;
}

.service-marker svg {
  width: 26px;
  height: 26px;
}

.service-row h3 {
  margin: -4px 0 0;
  font-size: 28px;
  font-weight: 590;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.service-row > p {
  margin: -3px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.contact-section {
  padding: 52px 0 64px;
  background: var(--paper);
}

.contact-panel {
  display: grid;
  gap: 90px;
  padding: 84px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 85% 12%, rgba(140, 210, 49, 0.12), transparent 26%),
    var(--night);
  color: var(--white);
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
}

.section-label-light {
  color: var(--logo-green);
}

.contact-copy h2 {
  max-width: 620px;
  margin-bottom: 34px;
}

.contact-copy > p:not(.section-label) {
  max-width: 690px;
  margin: 0;
  color: #bfc9c1;
  font-size: 16px;
  line-height: 1.75;
}

.contact-copy > p + p:not(.section-label) {
  margin-top: 22px;
}

.contact-details {
  align-self: end;
}

.contact-location {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: #cbd4cd;
  font-size: 14px;
}

.contact-location svg {
  width: 18px;
  height: 18px;
  color: var(--logo-green);
}

.contact-details > a {
  display: grid;
  min-height: 94px;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid var(--line-dark);
  grid-template-columns: 28px minmax(0, 1fr) 22px;
  transition: color 180ms ease;
}

.contact-details > a:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.contact-details > a:hover {
  color: var(--logo-green);
}

.contact-details > a > svg:first-child {
  width: 23px;
  height: 23px;
  color: var(--logo-green);
}

.contact-details > a > svg:last-child {
  width: 18px;
  height: 18px;
}

.contact-details > a span {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 17px;
  font-weight: 570;
}

.contact-details small {
  margin-bottom: 4px;
}

.site-footer {
  padding: 58px 0;
  background: var(--night);
  color: #9da8a0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 34px;
  border-top: 1px solid var(--line-dark);
}

.footer-inner .brand-icon {
  width: 20px;
  height: 20px;
  border-radius: 5px;
}

.footer-inner .brand-wordmark {
  width: 150px;
}

.footer-inner .brand {
  gap: 6px;
}

.footer-inner p {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.footer-company {
  display: flex;
  align-items: center;
  gap: 7px;
}

@media (max-width: 1020px) {
  .hero-layout {
    gap: 48px;
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.78fr);
  }

  .trajectory-panel {
    min-height: 430px;
    padding: 28px;
  }

  .about-layout {
    gap: 60px;
  }

  .credibility-card {
    padding-inline: 25px;
  }

  .service-row {
    gap: 34px;
    grid-template-columns: 90px minmax(220px, 0.82fr) minmax(0, 1.18fr);
  }

  .contact-panel {
    gap: 60px;
    padding: 66px 56px;
  }
}

@media (max-width: 860px) {
  .shell {
    width: min(100% - 40px, 720px);
  }

  .header-inner {
    min-height: 74px;
  }

  .site-header .brand-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }

  .site-header .brand-wordmark {
    width: 246px;
  }

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

  .primary-nav {
    position: absolute;
    top: 74px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 18px 20px 24px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 18px 28px rgba(17, 26, 21, 0.08);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav > a:not(.nav-contact) {
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav > a:not(.nav-contact)::after {
    display: none;
  }

  .nav-contact {
    justify-content: space-between;
    margin-top: 16px;
    border-radius: 12px;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-grid {
    right: -40%;
    width: 110%;
  }

  .hero-layout {
    min-height: auto;
    gap: 58px;
    grid-template-columns: 1fr;
    padding-bottom: 66px;
  }

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

  .hero h1 {
    max-width: 680px;
    font-size: clamp(3.25rem, 10vw, 5rem);
  }

  .trajectory-panel {
    min-height: 455px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip > div,
  .proof-strip > div:first-child {
    min-height: 62px;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 94px 0;
  }

  .split-intro {
    align-items: start;
    gap: 28px;
    grid-template-columns: 1fr;
  }

  .section-intro {
    margin-bottom: 50px;
  }

  .section-intro h2,
  .contact-copy h2 {
    font-size: clamp(2.45rem, 8vw, 3.7rem);
  }

  .section-lead {
    max-width: 620px;
  }

  .about-layout {
    gap: 48px;
    grid-template-columns: 1fr;
  }

  .about-aside {
    position: static;
    max-width: 430px;
  }

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

  .credibility-card {
    min-height: auto;
    padding: 32px;
  }

  .service-row {
    gap: 20px;
    grid-template-columns: 80px 1fr;
  }

  .service-row > p {
    padding-left: 100px;
    grid-column: 1 / -1;
  }

  .contact-section {
    padding: 28px 0 48px;
  }

  .contact-panel {
    gap: 56px;
    padding: 58px 42px;
    grid-template-columns: 1fr;
  }

  .contact-details {
    max-width: 560px;
  }
}

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

  .shell {
    width: calc(100% - 32px);
  }

  .brand {
    gap: 10px;
  }

  .site-header .brand-icon {
    width: 30px;
    height: 30px;
  }

  .brand-wordmark {
    width: 145px;
  }

  .site-header .brand-wordmark {
    width: min(217px, calc(100vw - 139px));
  }

  .hero {
    padding-top: 58px;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .hero h1 {
    font-size: clamp(3rem, 14.5vw, 4.25rem);
    letter-spacing: -0.06em;
  }

  .hero-intro {
    margin-top: 25px;
    font-size: 18px;
    line-height: 1.6;
  }

  .hero-actions {
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 12px;
    margin-top: 32px;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    white-space: nowrap;
  }

  .trajectory-panel {
    min-height: 410px;
    padding: 24px;
    border-radius: 24px;
  }

  .trajectory-legend {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
  }

  .section {
    padding: 78px 0;
  }

  .section-label {
    margin-bottom: 15px;
  }

  .section-intro h2,
  .contact-copy h2 {
    font-size: clamp(2.4rem, 11.5vw, 3.2rem);
  }

  .section-lead {
    font-size: 17px;
  }

  .founder-card {
    gap: 17px;
    padding: 18px;
  }

  .founder-photo {
    width: 86px;
    height: 86px;
    border-radius: 15px;
  }

  .prose p {
    font-size: 16.5px;
    line-height: 1.76;
  }

  .credibility-card {
    padding: 28px 24px 30px;
    border-radius: 20px;
  }

  .credibility-card h3 {
    margin-top: 30px;
    font-size: 24px;
  }

  .credibility-card p {
    font-size: 15.5px;
  }

  .service-row {
    gap: 18px;
    padding: 38px 0;
    grid-template-columns: 62px 1fr;
  }

  .service-marker {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .service-row h3 {
    font-size: 24px;
  }

  .service-row > p {
    padding-left: 80px;
    font-size: 15.5px;
  }

  .contact-section {
    padding-bottom: 36px;
  }

  .contact-panel {
    width: calc(100% - 32px);
    padding: 64px 24px;
    border-radius: 24px;
  }

  .contact-copy > p:not(.section-label) {
    font-size: 15.5px;
  }

  .contact-details > a {
    gap: 14px;
    grid-template-columns: 24px minmax(0, 1fr) 18px;
  }

  .contact-details > a span {
    font-size: 15.5px;
  }

  .site-footer {
    padding: 44px 0;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .footer-inner p {
    align-items: flex-start;
    flex-direction: column;
    gap: 1px;
    max-width: none;
    line-height: 1.6;
  }

  .footer-company > span:not(.footer-separator) {
    white-space: nowrap;
  }

  .footer-separator {
    display: none;
  }
}

@media (max-width: 360px) {
  .hero-actions .button {
    padding-inline: 18px;
  }

  .hero-actions .button svg {
    display: none;
  }
}

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

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