@font-face {
  font-family: "Varela Round Sieciunia";
  src:
    local("Varela Round"),
    url("https://fonts.gstatic.com/s/varelaround/v20/w8gdH283Tvk__Lua32TysjIfqcuPP9g.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --orange: #f45a00;
  --orange-bright: #ff6a00;
  --ink: #30343a;
  --muted: #494f59;
  --paper: #fffefa;
  --line: #dedcd8;
  --line-strong: #d4d1cc;
  color-scheme: light;
  font-synthesis: none;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f4f2ee;
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

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

.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-shell {
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 31% 53%, rgba(255, 249, 240, .72), transparent 35%),
    linear-gradient(105deg, #fff 0%, var(--paper) 50%, #fff 100%);
  border: 1px solid var(--line-strong);
  border-radius: 7px;
}

.site-header,
.simple-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  min-height: 112px;
  padding: 0 clamp(28px, 3.9vw, 60px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-block;
  color: var(--orange);
  font-family: "Varela Round Sieciunia", "Varela Round", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  line-height: 1;
  letter-spacing: -2.1px;
  white-space: nowrap;
  text-shadow: none;
  -webkit-text-stroke: 0 transparent;
  transition: opacity .2s ease;
}

.brand:hover {
  opacity: .78;
}

.brand:focus-visible,
.nav-link:focus-visible,
.primary-nav a:focus-visible,
.button:focus-visible,
.solutions a:focus-visible,
.read-more:focus-visible,
.contact-form :is(input, select, textarea, button):focus-visible {
  outline: 3px solid rgba(244, 90, 0, .28);
  outline-offset: 3px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(26px, 3.6vw, 58px);
  margin-left: auto;
}

.primary-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3.6vw, 57px);
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-height: 48px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
}

.nav-link:hover,
.nav-link[aria-expanded="true"] {
  color: var(--orange);
}

.chevron {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-right: 1.4px solid currentColor;
  border-bottom: 1.4px solid currentColor;
  transform: rotate(45deg);
  transition: transform .2s ease;
}

.nav-link[aria-expanded="true"] .chevron {
  margin-top: 3px;
  transform: rotate(225deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: -22px;
  display: grid;
  min-width: 250px;
  padding: 10px;
  visibility: hidden;
  background: rgba(255, 254, 250, .98);
  border: 1px solid var(--line);
  border-radius: 9px;
  box-shadow: 0 18px 45px rgba(37, 35, 32, .12);
  opacity: 0;
  transform: translateY(-7px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}

.nav-dropdown--right {
  right: -22px;
  left: auto;
}

.nav-item.is-open .nav-dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.nav-dropdown a {
  padding: 10px 12px;
  border-radius: 5px;
  font-size: 14px;
  white-space: nowrap;
}

.nav-dropdown a:hover {
  color: var(--orange);
  background: #fff4eb;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 59px;
  padding: 13px 33px;
  color: #fff;
  background: linear-gradient(135deg, #ff6b00 0%, #f25300 100%);
  border: 1px solid transparent;
  border-radius: 7px;
  box-shadow: 0 8px 20px rgba(244, 90, 0, .09);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover {
  background: linear-gradient(135deg, #f96000 0%, #e84c00 100%);
  box-shadow: 0 10px 24px rgba(244, 90, 0, .18);
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0);
}

.button--small {
  min-width: 117px;
  min-height: 47px;
  padding: 10px 22px;
  font-size: 17px;
}

.button--outline {
  min-width: 189px;
  color: var(--orange);
  background: transparent;
  border-color: var(--orange-bright);
  box-shadow: none;
}

.button--outline:hover {
  color: #fff;
  background: var(--orange);
}

.menu-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 64.7%) minmax(0, 35.3%);
  min-height: 511px;
  border-bottom: 1px solid var(--line);
}

.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 47px clamp(45px, 5.1vw, 78px) 55px;
}

.hero h1 {
  max-width: 850px;
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(44px, 3.64vw, 56px);
  font-weight: 400;
  letter-spacing: -2.2px;
  line-height: 1.19;
}

.hero__copy > p {
  max-width: 735px;
  margin: 0;
  color: #424750;
  font-size: clamp(18px, 1.36vw, 21px);
  line-height: 1.7;
}

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

.solutions {
  align-self: center;
  min-height: 407px;
  padding: 10px clamp(48px, 5.7vw, 87px) 0 clamp(48px, 5.1vw, 78px);
  border-left: 1px solid var(--line);
}

.solutions h2 {
  margin: 0 0 19px;
  color: var(--orange);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .1px;
  line-height: 1.2;
  text-transform: uppercase;
}

.solutions ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.solutions li {
  border-bottom: 1px solid var(--line);
}

.solutions li:last-child {
  border-bottom: 0;
}

.solutions a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 59px;
  gap: 20px;
  font-size: 17px;
  transition: color .18s ease, padding .18s ease;
}

.solutions a:hover {
  padding-left: 6px;
  color: var(--orange);
}

.arrow {
  display: block;
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-right: 5px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.journey {
  min-height: 398px;
  padding: 39px clamp(32px, 5.1vw, 78px) 43px;
}

.journey__intro {
  text-align: center;
}

.journey__intro h2 {
  margin: 0 0 6px;
  font-size: clamp(29px, 2.24vw, 35px);
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 1.28;
}

.journey__intro p {
  margin: 0;
  color: #505660;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.65;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 35px;
}

.journey-card {
  min-width: 0;
  min-height: 173px;
  padding: 0 30px;
  border-left: 1px solid var(--line);
}

.journey-card:first-child {
  padding-left: 0;
  border-left: 0;
}

.journey-card:last-child {
  padding-right: 0;
}

.journey-card__icon {
  width: 56px;
  height: 56px;
  margin: -1px 0 8px;
  object-fit: contain;
}

.journey-card h3 {
  margin: 0 0 11px;
  color: var(--orange);
  font-size: 15.5px;
  font-weight: 500;
  letter-spacing: -.15px;
  line-height: 1.25;
  text-transform: uppercase;
}

.journey-card p {
  margin: 0;
  color: #4b515b;
  font-size: 14.5px;
  line-height: 1.75;
}

.simple-page {
  min-height: 100vh;
  background: var(--paper);
}

.simple-header {
  background: rgba(255, 254, 250, .95);
}

.simple-main {
  width: min(100% - 48px, 1080px);
  margin: 0 auto;
  padding: 72px 0 100px;
}

.contact-kicker {
  margin: 0 0 13px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.simple-title {
  max-width: 800px;
  margin: 0 0 24px;
  font-size: clamp(39px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -2.4px;
  line-height: 1.08;
}

.simple-lede {
  max-width: 760px;
  margin: 0 0 55px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.7;
}

.article-content h2 {
  margin: 58px 0 14px;
  font-size: 33px;
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.25;
}

.article-content h3 {
  margin: 35px 0 10px;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.35;
}

.article-content p,
.article-content li {
  color: #454b54;
  font-size: 18px;
  line-height: 1.8;
}

.article-content p {
  margin: 0 0 21px;
}

.article-content ul {
  padding-left: 25px;
  margin: 18px 0 30px;
}

.article-content li {
  padding-left: 7px;
  margin: 7px 0;
}

.article-content li::marker {
  color: var(--orange);
}

.table-wrap {
  margin-top: 27px;
  overflow-x: auto;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  table-layout: fixed;
}

.article-table th,
.article-table td {
  padding: 17px 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.article-table th:last-child,
.article-table td:last-child {
  border-right: 0;
}

.article-table tbody tr:last-child td {
  border-bottom: 0;
}

.article-table th {
  color: var(--orange);
  background: #fff8f1;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.article-table td {
  color: #454b54;
  font-size: 15px;
  line-height: 1.5;
}

.mobile-data {
  display: none;
}

.teaser-list {
  width: 100%;
}

.teaser {
  display: block;
  width: 100%;
  padding: 46px 0;
}

.teaser + .teaser {
  border-top: 1px solid var(--line-strong);
}

.teaser__body {
  width: 100%;
}

.teaser h2 {
  margin: 0 0 12px;
  font-size: clamp(27px, 3vw, 39px);
  font-weight: 400;
  letter-spacing: -1.2px;
  line-height: 1.2;
}

.teaser p {
  width: 100%;
  margin: 0 0 15px;
  color: #4b515a;
  font-size: 17px;
  line-height: 1.75;
}

.read-more {
  color: var(--orange);
  font-size: 16px;
  font-weight: 500;
}

.read-more:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(420px, 1.2fr);
  gap: clamp(55px, 9vw, 120px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 32px;
}

.contact-copy .simple-title {
  margin-bottom: 22px;
}

.contact-copy p:not(.contact-kicker) {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.contact-form {
  padding: 38px;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  box-shadow: 0 18px 45px rgba(54, 48, 41, .07);
}

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

.field {
  margin-bottom: 22px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: #34383e;
  font-size: 14px;
  font-weight: 600;
}

.required {
  color: var(--orange);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #fffdfa;
  border: 1px solid #cbc8c3;
  border-radius: 6px;
  outline: 0;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(244, 90, 0, .11);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #b42318;
}

.checkbox-field {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin: 2px 0 25px;
  color: #50565f;
  font-size: 14px;
  line-height: 1.55;
}

.checkbox-field input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--orange);
}

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

.form-status {
  min-height: 24px;
  margin: 15px 0 0;
  color: #18794e;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 1260px) {
  .site-header {
    padding-inline: 34px;
  }

  .brand {
    font-size: 42px;
  }

  .primary-nav,
  .primary-nav__list {
    gap: 25px;
  }

  .nav-link {
    gap: 9px;
    font-size: 15.5px;
  }

  .hero {
    grid-template-columns: minmax(0, 61%) minmax(0, 39%);
  }

  .hero__copy {
    padding-inline: 50px;
  }

  .hero h1 {
    font-size: 45px;
  }

  .solutions {
    padding-right: 48px;
    padding-left: 48px;
  }

  .journey-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 35px;
  }

  .journey-card {
    padding-inline: 30px;
  }

  .journey-card:nth-child(4) {
    padding-left: 0;
    border-left: 0;
  }

  .journey-card:nth-child(n + 4) {
    padding-top: 32px;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 960px) {
  .site-header,
  .simple-header {
    min-height: 88px;
    padding-inline: 25px;
  }

  .brand {
    font-size: 40px;
  }

  .menu-toggle {
    position: relative;
    z-index: 22;
    display: block;
    width: 46px;
    height: 46px;
    padding: 0;
    margin-left: auto;
    background: transparent;
    border: 1px solid var(--line-strong);
    border-radius: 6px;
    cursor: pointer;
  }

  .menu-toggle__line {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 26px;
    height: 1.5px;
    margin: -.75px 0 0 -13px;
    background: var(--ink);
    transform-origin: center;
    transition: transform .2s ease, opacity .2s ease;
  }

  .menu-toggle__line:nth-child(1) {
    transform: translateY(-7px);
  }

  .menu-toggle__line:nth-child(2) {
    transform: translateY(0);
  }

  .menu-toggle__line:nth-child(3) {
    transform: translateY(7px);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(1) {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(3) {
    transform: rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    z-index: 21;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 24px;
    padding: 115px 25px 35px;
    visibility: hidden;
    overflow-y: auto;
    background: rgba(255, 254, 250, .99);
    opacity: 0;
    transform: translateX(100%);
    transition: visibility .25s, opacity .25s ease, transform .25s ease;
  }

  .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }

  .primary-nav__list {
    display: grid;
    gap: 0;
  }

  .nav-item {
    border-bottom: 1px solid var(--line);
  }

  .nav-link {
    justify-content: space-between;
    width: 100%;
    min-height: 58px;
    font-size: 19px;
    text-align: left;
  }

  .nav-dropdown,
  .nav-dropdown--right {
    position: static;
    display: none;
    min-width: 0;
    padding: 0 0 13px 12px;
    visibility: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
  }

  .nav-item.is-open .nav-dropdown {
    display: grid;
  }

  .nav-dropdown a {
    padding: 9px 0;
    font-size: 15px;
  }

  .nav-contact {
    width: 100%;
  }

  .hero {
    display: block;
  }

  .hero__copy {
    padding: 68px 48px 62px;
  }

  .hero h1 {
    max-width: 720px;
    font-size: clamp(42px, 6.2vw, 54px);
  }

  .solutions {
    min-height: 0;
    padding: 52px 48px 57px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .journey {
    padding-block: 53px 58px;
  }

  .journey-grid {
    margin-top: 43px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-shell {
    border-radius: 0;
  }

  .hero__copy,
  .solutions {
    padding-right: 24px;
    padding-left: 24px;
  }

  .hero-title-break,
  .desktop-break {
    display: none;
  }

  .hero h1 {
    margin-bottom: 20px;
    font-size: clamp(36px, 10.6vw, 49px);
    letter-spacing: -1.6px;
    line-height: 1.12;
  }

  .hero__copy > p {
    font-size: 18px;
    line-height: 1.65;
  }

  .hero__actions {
    gap: 14px;
  }

  .hero__actions .button {
    flex: 1 1 0;
    min-width: 0;
    padding-inline: 16px;
    font-size: 16px;
  }

  .journey {
    padding-inline: 24px;
  }

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

  .journey-card,
  .journey-card:nth-child(4) {
    padding: 28px 24px 0;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .journey-card:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .journey-card:nth-child(even) {
    padding-right: 0;
  }

  .journey-card:nth-child(-n + 2) {
    padding-top: 0;
    border-top: 0;
  }

  .simple-main {
    width: min(100% - 36px, 1080px);
    padding-block: 50px 76px;
  }

  .simple-title {
    letter-spacing: -1.8px;
  }

  .simple-lede {
    margin-bottom: 42px;
    font-size: 18px;
  }

  .article-content h2 {
    margin-top: 45px;
    font-size: 29px;
  }

  .article-content p,
  .article-content li {
    font-size: 16.5px;
  }

  .table-wrap {
    display: none;
  }

  .mobile-data {
    display: grid;
    gap: 18px;
    margin-top: 27px;
  }

  .mobile-data dl {
    display: grid;
    grid-template-columns: minmax(105px, .82fr) minmax(0, 1.4fr);
    margin: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
  }

  .mobile-data dt,
  .mobile-data dd {
    min-width: 0;
    padding: 12px 13px;
    border-bottom: 1px solid var(--line);
  }

  .mobile-data dt:last-of-type,
  .mobile-data dd:last-of-type {
    border-bottom: 0;
  }

  .mobile-data dt {
    color: var(--orange);
    background: #fff8f1;
    border-right: 1px solid var(--line);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .035em;
    line-height: 1.45;
    text-transform: uppercase;
  }

  .mobile-data dd {
    margin: 0;
    color: #454b54;
    font-size: 14px;
    line-height: 1.5;
    overflow-wrap: anywhere;
  }

  .teaser {
    padding-block: 36px;
  }

  .contact-form {
    padding: 26px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 480px) {
  .site-header,
  .simple-header {
    min-height: 78px;
    padding-inline: 18px;
  }

  .brand {
    font-size: 35px;
    letter-spacing: -1.45px;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
  }

  .primary-nav {
    padding: 99px 18px 25px;
  }

  .hero__copy {
    padding-top: 50px;
    padding-bottom: 48px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .solutions {
    padding-top: 44px;
    padding-bottom: 46px;
  }

  .solutions a {
    min-height: 57px;
    font-size: 15.5px;
  }

  .journey__intro {
    text-align: left;
  }

  .journey-grid {
    display: block;
  }

  .journey-card,
  .journey-card:nth-child(4),
  .journey-card:nth-child(-n + 2) {
    min-height: 0;
    padding: 27px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .journey-card:first-child {
    border-top: 0;
  }

  .journey-card__icon {
    margin-left: -4px;
  }

  .contact-layout {
    gap: 38px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
