@font-face {
  font-family: "Roboto";
  src: url("assets/fonts/roboto-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("assets/fonts/roboto-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("assets/fonts/roboto-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Roboto Condensed";
  src: url("assets/fonts/roboto-condensed-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Roboto Condensed";
  src: url("assets/fonts/roboto-condensed-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Roboto Condensed";
  src: url("assets/fonts/roboto-condensed-800.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  --orange: #ff5b08;
  --orange-site: #ff7300;
  --orange-dark: #d94300;
  --graphite: #11171c;
  --graphite-2: #192129;
  --graphite-3: #222c34;
  --white: #ffffff;
  --steel-50: #f7f8f9;
  --steel-100: #f1f3f5;
  --steel-200: #e4e7ea;
  --steel-300: #c9ced3;
  --steel-500: #8b949c;
  --steel-600: #66717a;
  --text: #121517;
  --muted: #59636b;
  --success: #1d7a4e;
  --error: #b3261e;
  --header-height: clamp(92px, 7.3vw, 112px);
  --shell: 1536px;
  --gutter: clamp(38px, 3.4vw, 52px);
  --radius-sm: 4px;
  --radius: 7px;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--white);
  color: var(--text);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button,
select {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  border: 0;
}

.icon {
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon--large {
  width: 1.65em;
  height: 1.65em;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  transform: translateY(-150%);
  border-radius: var(--radius-sm);
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
}

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

:focus-visible {
  outline: 3px solid rgba(255, 91, 8, .45);
  outline-offset: 3px;
}

.section {
  position: relative;
  padding: clamp(72px, 5.5vw, 92px) 0;
}

.section-shell,
.header-inner,
.footer-inner {
  width: min(100%, var(--shell));
  margin: 0 auto;
  padding-right: var(--gutter);
  padding-left: var(--gutter);
}

.section-heading {
  max-width: 740px;
  margin-bottom: clamp(38px, 3vw, 48px);
}

.section-heading--wide {
  max-width: 980px;
}

.section-heading h2,
.features h2,
.support h2,
.contact h2 {
  margin-bottom: 14px;
  font-size: clamp(42px, 4.6vw, 72px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: .98;
}

.section-heading p,
.support-intro,
.contact-copy > p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.6;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  transition: transform .22s var(--ease), background-color .22s var(--ease), border-color .22s var(--ease), color .22s var(--ease), box-shadow .22s var(--ease);
}

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

.button--orange {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(255, 91, 8, .14);
}

.button--orange:hover {
  border-color: var(--orange-dark);
  background: var(--orange-dark);
  box-shadow: 0 12px 30px rgba(255, 91, 8, .22);
}

.button--outline-light {
  border-color: rgba(255, 255, 255, .78);
  background: transparent;
  color: var(--white);
}

.button--outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, .08);
}

.button--arrow {
  min-width: 250px;
  justify-content: space-between;
}

.button--full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 4px;
  border-bottom: 2px solid currentColor;
  color: var(--orange);
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.text-link .icon {
  transition: transform .22s var(--ease);
}

.text-link:hover .icon {
  transform: translateX(5px);
}

.text-link--light {
  color: var(--white);
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid var(--steel-200);
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: grid;
  height: 100%;
  grid-template-columns: minmax(190px, 280px) 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  width: clamp(220px, 16.3vw, 250px);
  align-items: center;
}

.brand img {
  width: 100%;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 4vw, 68px);
}

.primary-nav a {
  position: relative;
  padding: 12px 0;
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--orange);
  content: "";
  transition: transform .24s var(--ease);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  min-width: 168px;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--graphite);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.nav-toggle .icon {
  width: 26px;
  height: 26px;
}

.nav-toggle .icon-close {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, var(--graphite) 0 50%, #dfe6ef 50% 100%);
}

.hero-stage {
  position: relative;
  width: 100%;
  height: calc(100svh - var(--header-height));
  min-height: 720px;
  max-height: 810px;
  margin: 0 auto;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0 0 0 31%;
  overflow: hidden;
  background: #dde4ed;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 46% center;
}

.hero-copy {
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  display: flex;
  width: max(
    clamp(614px, 41.5vw, 800px),
    calc((100vw - var(--shell)) / 2 + 640px)
  );
  align-items: center;
  clip-path: polygon(0 0, 100% 0, 86% 100%, 0 100%);
  background: var(--graphite);
  color: var(--white);
}

@media (min-width: 1920px) {
  .hero-copy {
    clip-path: polygon(0 0, 100% 0, calc(100% - 112px) 100%, 0 100%);
  }
}

.hero-copy-inner {
  width: 100%;
  max-width: none;
  padding: 58px 40px 54px max(var(--gutter), calc((100vw - var(--shell)) / 2 + var(--gutter)));
}

.hero h1 {
  max-width: 560px;
  margin-bottom: 24px;
  font-size: clamp(60px, 4.4vw, 68px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: .96;
  text-transform: uppercase;
}

.hero-summary {
  max-width: 490px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  max-width: 330px;
  flex-direction: column;
  gap: 14px;
}

.hero-actions .button {
  width: 100%;
  min-height: 62px;
  font-size: 21px;
}

.trust-line {
  display: flex;
  margin-top: 25px;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .82);
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  font-size: 15px;
  white-space: nowrap;
}

.trust-line .icon {
  width: 24px;
  height: 24px;
}

.trust-line i,
.company-line i {
  display: inline-block;
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--orange);
}

.hero-form-panel {
  position: absolute;
  z-index: 4;
  top: 6.5%;
  right: max(var(--gutter), calc((100vw - var(--shell)) / 2 + var(--gutter)));
  width: min(340px, 29vw);
  padding: 34px 32px 26px;
  border: 1px solid rgba(17, 23, 28, .08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 24px 70px rgba(22, 28, 34, .18);
}

.hero-form-panel h2,
.quote-panel h3 {
  margin-bottom: 22px;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.05;
}

.field {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
}

.field label {
  color: var(--text);
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
}

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

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  border: 0 !important;
  white-space: nowrap !important;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--steel-300);
  border-radius: var(--radius-sm);
  outline: 0;
  background: var(--white);
  color: var(--text);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease);
}

.field input,
.field select {
  padding: 0 14px;
}

.field textarea {
  min-height: 110px;
  padding: 13px 14px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8b949c;
  opacity: 1;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--steel-600);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 91, 8, .12);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(179, 38, 30, .1);
}

.lead-form--compact {
  display: grid;
  gap: 15px;
}

.lead-form--compact .button {
  min-height: 58px;
  margin-top: 2px;
}

@media (min-width: 1201px) {
  .hero-form-panel {
    padding: 28px 28px 22px;
  }

  .hero-form-panel h2 {
    margin-bottom: 16px;
  }

  .lead-form--compact {
    gap: 10px;
  }

  .lead-form--compact .field {
    gap: 5px;
  }

  .lead-form--compact .field input {
    min-height: 44px;
  }

  .lead-form--compact .field textarea {
    min-height: 76px;
  }

  .lead-form--compact .button {
    min-height: 52px;
    margin-top: 0;
  }
}

.privacy-note {
  display: flex;
  margin: 2px 0 0;
  align-items: flex-start;
  gap: 9px;
  color: var(--steel-600);
  font-size: 12px;
  line-height: 1.45;
}

.privacy-note .icon {
  width: 16px;
  height: 16px;
  margin-top: 1px;
}

.form-status {
  display: none;
  margin: 0;
  padding: 11px 13px;
  border-left: 3px solid currentColor;
  background: var(--steel-50);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.form-status:not(:empty) {
  display: block;
}

.form-status.is-success {
  background: #edf8f2;
  color: var(--success);
}

.form-status.is-error {
  background: #fff1ef;
  color: var(--error);
}

.button-spinner {
  display: none;
  width: 17px;
  height: 17px;
  border: 2px solid rgba(255, 255, 255, .45);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}

.lead-form.is-submitting .button-spinner {
  display: inline-block;
}

.lead-form.is-submitting button[type="submit"] {
  cursor: wait;
  opacity: .82;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.models {
  overflow: hidden;
  padding-top: clamp(98px, 7vw, 116px);
  padding-bottom: clamp(76px, 5.5vw, 92px);
}

.models .section-heading {
  margin-bottom: 30px;
}

.models::before {
  position: absolute;
  top: 0;
  left: 0;
  width: min(36vw, 560px);
  height: 58px;
  transform: skewX(-16deg) translateX(-12%);
  transform-origin: top left;
  background: var(--orange);
  content: "";
}

.models-layout {
  display: grid;
  min-height: 550px;
  grid-template-columns: minmax(440px, .9fr) minmax(540px, 1.1fr);
  align-items: center;
  gap: clamp(40px, 4.2vw, 64px);
}

.model-tabs {
  display: grid;
  overflow: hidden;
  margin-bottom: 28px;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--steel-300);
  border-radius: var(--radius-sm);
}

.model-tab {
  display: grid;
  min-height: 80px;
  padding: 8px 12px;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 9px;
  border: 0;
  border-right: 1px solid var(--steel-200);
  background: var(--white);
  color: var(--text);
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.15;
  transition: color .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease);
}

.model-tab:last-child {
  border-right: 0;
}

.model-tab img {
  width: 64px;
  height: 52px;
  object-fit: contain;
}

.model-tab:hover {
  background: var(--steel-50);
}

.model-tab.is-active {
  position: relative;
  z-index: 1;
  color: var(--orange);
  box-shadow: inset 0 0 0 2px var(--orange);
}

.model-panel h3 {
  margin-bottom: 10px;
  font-size: clamp(42px, 3.6vw, 56px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  text-transform: uppercase;
}

.model-panel > p:not(.configuration-note) {
  max-width: 540px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.spec-table {
  max-width: 520px;
  margin-bottom: 22px;
}

.spec-table div {
  display: grid;
  padding: 9px 0;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
  border-bottom: 1px solid var(--steel-300);
}

.spec-table dt,
.spec-table dd {
  margin: 0;
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  font-size: 16px;
}

.spec-table dt {
  font-weight: 600;
}

.spec-table dd {
  color: #2d3338;
}

.model-cta {
  width: min(100%, 360px);
  min-height: 56px;
  margin-bottom: 14px;
}

.configuration-note {
  display: flex;
  max-width: 440px;
  margin-bottom: 0;
  align-items: flex-start;
  gap: 10px;
  color: var(--steel-600);
  font-size: 13px;
}

.configuration-note .icon {
  width: 17px;
  height: 17px;
  margin-top: 1px;
}

.model-stage {
  position: relative;
  display: flex;
  min-height: 550px;
  align-items: center;
  justify-content: center;
}

.model-stage::before {
  position: absolute;
  z-index: -1;
  right: 4%;
  bottom: 12%;
  width: 70%;
  height: 23%;
  border-radius: 50%;
  background: rgba(16, 23, 28, .13);
  content: "";
  filter: blur(36px);
}

.model-stage img {
  width: 100%;
  max-height: 570px;
  object-fit: contain;
  transition: opacity .2s var(--ease), transform .35s var(--ease);
}

.model-stage.is-changing img {
  transform: translateX(12px);
  opacity: 0;
}

.stage-index {
  position: absolute;
  z-index: -2;
  right: -1%;
  bottom: 0;
  color: var(--steel-100);
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(120px, 16vw, 240px);
  font-weight: 800;
  letter-spacing: -.06em;
  line-height: .75;
}

.features {
  display: grid;
  min-height: 680px;
  grid-template-columns: .96fr 1.04fr;
  overflow: hidden;
  background: var(--graphite);
  color: var(--white);
}

.feature-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--steel-100);
}

.feature-media::after {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: clamp(112px, 9vw, 176px);
  height: clamp(82px, 7vw, 134px);
  background: linear-gradient(135deg, rgba(241, 243, 245, 1) 0 68%, rgba(241, 243, 245, .92) 78%, rgba(241, 243, 245, 0) 100%);
  content: "";
  pointer-events: none;
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
}

.features-copy {
  position: relative;
  z-index: 2;
  display: flex;
  margin-left: -72px;
  padding: 62px var(--gutter) 58px clamp(116px, 8.6vw, 138px);
  align-items: center;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
  background: var(--graphite);
}

.features-copy-inner {
  width: min(100%, 700px);
  margin-right: auto;
}

.features h2 {
  color: var(--white);
}

.feature-list {
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  padding: 16px 0;
  grid-template-columns: 68px 1fr;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .32);
}

.feature-list li:first-child {
  border-top: 1px solid rgba(255, 255, 255, .32);
}

.feature-number {
  color: var(--orange);
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  font-size: 50px;
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: .9;
}

.feature-list h3 {
  margin-bottom: 5px;
  color: var(--white);
  font-size: 23px;
  font-weight: 700;
  line-height: 1.1;
}

.feature-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .76);
  font-size: 16px;
  line-height: 1.5;
}

.process {
  background: var(--white);
}

.process.section {
  padding-top: clamp(54px, 4vw, 64px);
  padding-bottom: clamp(68px, 5vw, 84px);
}

.process .section-heading {
  margin-bottom: 28px;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 36px;
}

.process-main {
  min-width: 0;
}

.process-steps {
  position: relative;
  display: grid;
  margin: 0 0 28px;
  padding: 0 0 34px;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  list-style: none;
}

.process-steps::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: var(--steel-500);
  content: "";
}

.process-steps li {
  position: relative;
}

.process-steps li::after {
  position: absolute;
  z-index: 2;
  bottom: -36px;
  left: 0;
  width: 11px;
  height: 11px;
  background: var(--orange);
  content: "";
}

.step-title {
  display: flex;
  margin-bottom: 10px;
  align-items: flex-start;
  gap: 10px;
}

.step-title span {
  color: var(--orange);
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.step-title span::after {
  margin-left: 8px;
  color: var(--orange);
  content: "/";
  font-weight: 400;
}

.step-title h3 {
  margin-bottom: 0;
  padding-top: 3px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.15;
}

.process-steps p {
  margin-bottom: 0;
  color: #333b41;
  font-size: 14px;
  line-height: 1.5;
}

.process-media {
  height: 230px;
  overflow: hidden;
  border-radius: 1px;
  background: var(--steel-100);
}

.process-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.terms-rail {
  padding-left: 24px;
  border-left: 1px solid var(--steel-300);
}

.terms-rail dl {
  margin-bottom: 16px;
}

.terms-rail dl div {
  padding: 14px 0 17px;
  border-top: 1px solid var(--steel-300);
}

.terms-rail dl div:last-child {
  border-bottom: 1px solid var(--steel-300);
}

.terms-rail dt {
  margin-bottom: 2px;
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.terms-rail dd {
  margin: 0;
  color: var(--orange);
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
}

.terms-rail > p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.terms-rail .button {
  width: 100%;
  min-width: 0;
}

.support {
  display: grid;
  min-height: 560px;
  grid-template-columns: 1.05fr .95fr;
  overflow: hidden;
  background: var(--graphite);
  color: var(--white);
}

.support-copy {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

.support-copy::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 92px;
  transform: skewX(-13deg) translateX(-38px);
  background: var(--orange);
  content: "";
}

.support-copy-inner {
  width: 100%;
  margin: 0;
  padding: 54px var(--gutter) 48px clamp(128px, calc((100vw - 1536px) / 2 + 128px), 320px);
}

.support h2 {
  color: var(--white);
  font-size: clamp(42px, 3.2vw, 50px);
}

.support-intro {
  color: rgba(255, 255, 255, .76);
  font-size: 17px;
}

.support-list {
  margin: 24px 0 22px;
}

.support-list > div {
  display: grid;
  padding: 12px 0;
  grid-template-columns: minmax(200px, .8fr) 1fr;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, .34);
}

.support-list dt,
.support-list dd {
  margin: 0;
}

.support-list dt {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--orange);
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  font-size: 19px;
  font-weight: 700;
}

.support-list dt .icon {
  width: 32px;
  height: 32px;
}

.support-list dd {
  color: rgba(255, 255, 255, .92);
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  font-size: 18px;
}

.support-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.support-actions .button {
  min-height: 54px;
  padding: 11px 18px;
  font-size: 17px;
}

.support-actions .text-link {
  flex: 0 0 auto;
  font-size: 16px;
}

.company-line {
  display: flex;
  margin: 14px 0 0;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .78);
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  font-size: 15px;
}

.company-line .icon {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.support-media {
  overflow: hidden;
}

.support-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
}

.faq {
  padding-top: clamp(58px, 4.2vw, 68px);
  padding-bottom: 0;
}

.faq .section-heading {
  margin-bottom: 24px;
}

.accordion {
  width: 100%;
  margin-bottom: 64px;
}

.accordion-item {
  border-bottom: 1px solid var(--steel-500);
}

.accordion-item h3 {
  margin: 0;
}

.accordion-item button {
  display: grid;
  width: 100%;
  min-height: 76px;
  padding: 20px 0;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 18px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
}

.accordion-item button:hover {
  color: var(--orange-dark);
}

.accordion-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--orange);
}

.accordion-icon .icon {
  grid-area: 1 / 1;
  width: 26px;
  height: 26px;
}

.accordion-icon .icon-minus,
.accordion-item.is-open .accordion-icon .icon-plus {
  display: none;
}

.accordion-item.is-open .accordion-icon .icon-minus {
  display: block;
}

.accordion-panel {
  padding: 0 0 24px 52px;
}

.accordion-panel p {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.faq-media {
  width: 100%;
  height: clamp(340px, 25vw, 440px);
  margin: 0 auto;
  overflow: hidden;
  background: var(--steel-100);
}

.faq-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
}

.contact {
  position: relative;
  overflow: hidden;
  background: var(--graphite);
  color: var(--white);
}

.contact::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 110px;
  transform: skewX(-14deg) translateX(-40px);
  background: var(--orange);
  content: "";
}

.contact-shell {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, var(--shell));
  margin: 0 auto;
  padding: 68px var(--gutter) 64px;
  grid-template-columns: minmax(420px, .9fr) minmax(600px, 1.1fr);
  align-items: center;
  gap: clamp(56px, 6vw, 92px);
}

.contact-copy {
  padding-left: clamp(0px, calc(1728px - 100vw), 112px);
}

.contact h2 {
  color: var(--white);
  font-size: clamp(48px, 4.7vw, 70px);
}

.contact-copy > p {
  max-width: 470px;
  color: rgba(255, 255, 255, .76);
  font-size: 18px;
}

.contact-list {
  display: grid;
  max-width: 520px;
  margin: 34px 0 28px;
  font-style: normal;
}

.contact-list > a,
.contact-list > div {
  display: grid;
  min-height: 82px;
  padding: 16px 0;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .28);
}

.contact-list > a:hover strong {
  color: var(--orange);
}

.contact-list > * > .icon {
  width: 38px;
  height: 38px;
  color: var(--orange);
  stroke-width: 1.7;
}

.contact-list span {
  display: flex;
  flex-direction: column;
  color: rgba(255, 255, 255, .78);
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  font-size: 15px;
  line-height: 1.45;
}

.contact-list strong {
  margin-bottom: 2px;
  color: var(--white);
  font-size: 20px;
  transition: color .2s var(--ease);
}

.contact-copy > .button {
  min-height: 55px;
  font-size: 17px;
}

.quote-panel {
  padding: 34px 40px 28px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .2);
}

.quote-panel h3 {
  margin-bottom: 25px;
  font-size: 34px;
}

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

.field--wide {
  grid-column: 1 / -1;
}

.lead-form--full .privacy-note {
  margin-top: 12px;
}

.lead-form--full .form-status {
  margin-top: 14px;
}

.noscript-note {
  margin: 15px 0 0;
  color: var(--error);
  font-size: 13px;
}

.noscript-note a {
  text-decoration: underline;
}

.site-footer {
  background: #171b1f;
  color: var(--white);
}

.footer-main {
  display: flex;
  min-height: 120px;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, .22);
}

.footer-brand {
  display: inline-flex;
  width: 220px;
  flex: 0 0 auto;
  align-items: center;
}

.footer-brand img {
  width: 100%;
  height: auto;
}

.footer-links {
  display: flex;
  gap: clamp(28px, 4vw, 64px);
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  font-size: 17px;
}

.footer-links a {
  color: rgba(255, 255, 255, .82);
  transition: color .2s var(--ease);
}

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

.footer-meta {
  display: grid;
  min-height: 94px;
  padding: 24px 0;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
}

.footer-meta p {
  margin: 0;
}

.footer-meta p:nth-child(2) {
  text-align: center;
}

.footer-meta p:last-child {
  text-align: right;
}

.mobile-conversion-bar {
  display: none;
}

.reveal {
  transform: translateY(18px);
  opacity: 0;
  transition: transform .65s var(--ease), opacity .65s var(--ease);
}

.reveal.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 1400px) and (min-width: 1321px) {
  .hero-copy {
    width: 42.5%;
  }

  .hero-copy-inner {
    padding-right: 30px;
  }

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

  .support-actions {
    gap: 16px;
  }

  .support-actions .button {
    flex-shrink: 0;
    gap: 10px;
    padding-right: 14px;
    padding-left: 14px;
    font-size: 16px;
    white-space: nowrap;
  }

  .support-actions .text-link {
    gap: 12px;
    font-size: 15px;
    white-space: nowrap;
  }
}

@media (max-width: 1320px) {
  :root {
    --gutter: 38px;
  }

  .hero-copy {
    width: 43%;
  }

  .hero-copy-inner {
    padding-right: 30px;
  }

  .hero-form-panel {
    right: 28px;
    width: 320px;
    padding-right: 26px;
    padding-left: 26px;
  }

  .hero-form-panel h2 {
    font-size: 27px;
  }

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

  .trust-line {
    gap: 8px;
    font-size: 14px;
  }

  .models-layout {
    grid-template-columns: minmax(400px, .9fr) minmax(450px, 1.1fr);
  }

  .support-copy-inner {
    padding-right: 54px;
  }

  .support-actions {
    gap: 14px;
  }

  .support-actions .button {
    flex-shrink: 0;
    gap: 9px;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 15px;
    white-space: nowrap;
  }

  .support-actions .text-link {
    gap: 10px;
    font-size: 14px;
    white-space: nowrap;
  }
}

@media (max-width: 1200px) {
  :root {
    --header-height: 78px;
    --gutter: 30px;
  }

  .header-inner {
    grid-template-columns: 210px 1fr auto;
    gap: 22px;
  }

  .brand {
    width: 205px;
  }

  .primary-nav {
    gap: 25px;
  }

  .primary-nav a {
    font-size: 16px;
  }

  .header-cta {
    min-width: 142px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-stage {
    display: grid;
    height: auto;
    max-height: none;
    grid-template-columns: 1fr 1fr;
  }

  .hero-copy,
  .hero-media,
  .hero-form-panel {
    position: relative;
    inset: auto;
  }

  .hero-copy {
    grid-column: 1;
    grid-row: 1;
    width: auto;
    min-height: 650px;
    clip-path: polygon(0 0, 100% 0, 91% 100%, 0 100%);
  }

  .hero-copy-inner {
    padding: 54px 42px 50px 38px;
  }

  .hero h1 {
    font-size: clamp(50px, 5.3vw, 58px);
  }

  .hero-media {
    grid-column: 2;
    grid-row: 1;
    min-height: 650px;
    margin-left: -6%;
  }

  .hero-media img {
    object-position: 42% center;
  }

  .hero-form-panel {
    width: auto;
    margin: -38px 30px 60px;
    grid-column: 1 / -1;
    grid-row: 2;
    padding: 30px;
  }

  .hero-form-panel h2 {
    font-size: 30px;
    text-align: center;
  }

  .lead-form--compact {
    grid-template-columns: repeat(2, 1fr);
    align-items: end;
    gap: 14px;
  }

  .lead-form--compact .button {
    margin-top: 0;
    grid-column: 1 / -1;
  }

  .lead-form--compact .privacy-note,
  .lead-form--compact .form-status {
    grid-column: 1 / -1;
  }

  .models-layout {
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: 28px;
  }

  .model-details {
    display: block;
  }

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

  .model-tab {
    padding-right: 7px;
    padding-left: 7px;
    grid-template-columns: 52px 1fr;
    gap: 6px;
    border-right: 1px solid var(--steel-200);
    border-bottom: 0;
    font-size: 14px;
  }

  .model-tab img {
    width: 52px;
    height: 44px;
  }

  .model-stage {
    min-height: 520px;
  }

  .features-copy {
    margin-left: -54px;
    padding-left: 116px;
  }

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

  .terms-rail {
    display: grid;
    padding: 0;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 26px;
    border: 0;
  }

  .terms-rail dl {
    display: grid;
    margin: 0;
    grid-template-columns: repeat(3, 1fr);
  }

  .terms-rail dl div {
    padding: 16px 20px;
    border-top: 1px solid var(--steel-300);
    border-right: 1px solid var(--steel-300);
    border-bottom: 1px solid var(--steel-300);
  }

  .terms-rail > p {
    grid-column: 1 / -1;
    grid-row: 2;
    margin: 0;
  }

  .terms-rail .button {
    width: 280px;
    white-space: nowrap;
  }

  .support {
    grid-template-columns: 1.15fr .85fr;
  }

  .support-copy-inner {
    padding-left: 128px;
  }

  .support-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .contact-shell {
    grid-template-columns: .8fr 1.2fr;
    gap: 48px;
  }

  .contact-copy {
    padding-left: clamp(72px, 8vw, 96px);
  }

  .contact-copy > .button {
    gap: 10px;
    padding-right: 18px;
    padding-left: 18px;
    white-space: nowrap;
  }
}

@media (max-width: 1040px) {
  .support {
    grid-template-columns: 1fr;
  }

  .support-copy-inner {
    width: 100%;
    padding: 72px var(--gutter) 64px 54px;
  }

  .support-actions .button {
    gap: 13px;
    padding-right: 18px;
    padding-left: 18px;
    font-size: 17px;
  }

  .support-media {
    height: min(60vw, 480px);
  }
}

@media (max-width: 900px) {
  :root {
    --gutter: 24px;
  }

  .header-inner {
    grid-template-columns: 1fr auto auto;
    gap: 12px;
  }

  .brand {
    width: 190px;
  }

  .header-cta {
    min-width: 126px;
    min-height: 46px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: fixed;
    z-index: -1;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: flex;
    padding: 28px var(--gutter) 34px;
    transform: translateY(-115%);
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--steel-200);
    background: var(--white);
    box-shadow: 0 24px 40px rgba(17, 23, 28, .14);
    opacity: 0;
    pointer-events: none;
    transition: transform .3s var(--ease), opacity .3s var(--ease);
  }

  .primary-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--steel-200);
    font-size: 21px;
  }

  .primary-nav a::after {
    display: none;
  }

  .nav-open .primary-nav {
    z-index: 1001;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-open .nav-toggle .icon-menu {
    display: none;
  }

  .nav-open .nav-toggle .icon-close {
    display: block;
  }

  .hero-stage {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    order: 1;
    grid-column: 1;
    grid-row: auto;
    min-height: 0;
    clip-path: none;
  }

  .hero-copy-inner {
    width: min(100%, 760px);
    margin: 0 auto;
    padding: 64px var(--gutter) 58px;
  }

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

  .hero-summary {
    max-width: 650px;
  }

  .hero-actions {
    max-width: 390px;
  }

  .hero-media {
    order: 2;
    grid-column: 1;
    grid-row: auto;
    min-height: min(68vw, 570px);
    margin: 0;
  }

  .hero-media img {
    object-position: center;
  }

  .hero-form-panel {
    order: 3;
    grid-column: 1;
    grid-row: auto;
    margin: 0;
    padding: 52px var(--gutter) 64px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .hero-form-panel h2 {
    font-size: 38px;
    text-align: left;
  }

  .lead-form--compact {
    grid-template-columns: repeat(2, 1fr);
  }

  .lead-form--compact .button {
    grid-column: 1 / -1;
  }

  .model-details {
    display: block;
  }

  .models-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .model-tabs {
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
  }

  .model-tab {
    border-right: 1px solid var(--steel-200);
    border-bottom: 0;
  }

  .model-stage {
    min-height: 440px;
  }

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

  .feature-media {
    height: min(72vw, 560px);
  }

  .features-copy {
    margin: 0;
    padding: 72px var(--gutter);
    clip-path: none;
  }

  .features-copy-inner {
    width: 100%;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 52px;
  }

  .process-steps::after {
    display: none;
  }

  .process-steps li {
    padding-bottom: 22px;
    border-bottom: 1px solid var(--steel-400, #aab1b8);
  }

  .process-steps li::after {
    bottom: -5px;
  }

  .process-media {
    height: 290px;
  }

  .terms-rail {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 18px;
  }

  .terms-rail > p {
    grid-row: auto;
  }

  .terms-rail .button {
    width: 100%;
  }

  .accordion {
    margin-bottom: 60px;
  }

  .faq-media {
    height: min(62vw, 430px);
  }

  .contact-shell {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .contact::before {
    width: 52px;
    transform: none;
    clip-path: polygon(0 0, 100% 0, 38% 100%, 0 100%);
  }

  .contact-copy {
    padding-left: 40px;
  }

  .quote-panel {
    padding: 34px;
  }

  .footer-meta {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }

  .footer-meta p:nth-child(2),
  .footer-meta p:last-child {
    text-align: center;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 64px;
    --gutter: 20px;
  }

  html {
    scroll-padding-top: calc(var(--header-height) + 12px);
  }

  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom));
  }

  .section {
    padding: 76px 0;
  }

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

  .section-heading h2,
  .features h2,
  .support h2,
  .contact h2 {
    font-size: clamp(40px, 12vw, 54px);
  }

  .site-header {
    height: var(--header-height);
  }

  .brand {
    width: min(38vw, 130px);
  }

  .header-cta {
    min-width: 0;
    min-height: 40px;
    padding: 9px;
    font-size: 0;
  }

  .header-cta::after {
    font-size: 15px;
    content: "Get Quote";
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .hero-copy-inner {
    padding-top: 34px;
    padding-bottom: 26px;
  }

  .hero h1 {
    margin-bottom: 10px;
    font-size: clamp(33px, 8.8vw, 37px);
    line-height: 1.04;
    text-transform: none;
  }

  .hero-summary {
    margin-bottom: 14px;
    font-size: 17px;
  }

  .hero-summary {
    font-size: 0;
  }

  .hero-summary::after {
    font-size: 17px;
    content: attr(data-mobile-summary);
  }

  .hero-actions {
    max-width: none;
    gap: 10px;
  }

  .hero-actions .button {
    min-height: 46px;
    padding: 10px 18px;
    font-size: 18px;
  }

  .trust-line {
    margin-top: 18px;
    flex-wrap: wrap;
    font-size: 14px;
    white-space: normal;
  }

  .trust-line span:last-child,
  .trust-line i:last-of-type {
    display: none;
  }

  .hero-media {
    min-height: 74vw;
  }

  .hero-form-panel {
    padding-top: 30px;
    padding-right: 30px;
    padding-bottom: 58px;
    padding-left: 30px;
  }

  .hero-form-panel h2 {
    margin-bottom: 22px;
    font-size: 28px;
  }

  .lead-form--compact {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .lead-form--compact .button,
  .lead-form--compact .privacy-note,
  .lead-form--compact .form-status {
    grid-column: auto;
  }

  .field label {
    font-size: 16px;
  }

  .field input,
  .field select {
    min-height: 54px;
    font-size: 16px;
  }

  .field textarea {
    font-size: 16px;
  }

  .models::before {
    width: 72vw;
    height: 42px;
  }

  .models-layout {
    display: flex;
    flex-direction: column;
  }

  .model-details {
    width: 100%;
  }

  .model-tabs {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 30px;
    overflow: visible;
  }

  .model-tab {
    min-width: 0;
    min-height: 96px;
    padding: 10px 6px;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 5px;
    font-size: 13px;
    text-align: center;
  }

  .model-tab img {
    width: 58px;
    height: 48px;
  }

  .model-panel h3 {
    font-size: 48px;
  }

  .spec-table div {
    gap: 16px;
  }

  .model-stage {
    min-height: 330px;
    order: 0;
  }

  .model-stage img {
    max-height: 340px;
  }

  .stage-index {
    font-size: 140px;
  }

  .feature-media {
    height: 78vw;
  }

  .features-copy {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .feature-list li {
    grid-template-columns: 60px 1fr;
    gap: 14px;
  }

  .feature-number {
    font-size: 44px;
  }

  .feature-list h3 {
    font-size: 21px;
  }

  .feature-list p {
    font-size: 15px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .process-steps li {
    padding: 0 0 24px;
  }

  .process-steps p {
    font-size: 15px;
  }

  .process-media {
    height: 220px;
  }

  .terms-rail {
    display: block;
  }

  .terms-rail dl {
    grid-template-columns: 1fr;
  }

  .terms-rail dl div {
    border-right: 0;
  }

  .terms-rail .button {
    width: 100%;
  }

  .support-copy::before {
    width: 66px;
  }

  .support-copy-inner {
    padding: 66px var(--gutter) 60px 42px;
  }

  .support-list > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .support-list dd {
    padding-left: 48px;
    font-size: 16px;
  }

  .support-actions .button,
  .support-actions .text-link {
    width: 100%;
  }

  .company-line {
    flex-wrap: wrap;
  }

  .support-media {
    height: 68vw;
  }

  .accordion-item button {
    min-height: 70px;
    grid-template-columns: 28px 1fr;
    gap: 12px;
    font-size: 20px;
  }

  .accordion-panel {
    padding-left: 40px;
  }

  .faq-media {
    height: 72vw;
  }

  .contact::before {
    width: 44px;
    transform: none;
    clip-path: polygon(0 0, 100% 0, 38% 100%, 0 100%);
  }

  .contact-shell {
    padding-top: 66px;
    padding-bottom: 62px;
  }

  .contact-copy {
    padding-left: 38px;
  }

  .contact-list > a,
  .contact-list > div {
    grid-template-columns: 38px 1fr;
    gap: 14px;
  }

  .contact-list > * > .icon {
    width: 32px;
    height: 32px;
  }

  .contact-copy > .button {
    width: 100%;
  }

  .quote-panel {
    margin-right: -4px;
    margin-left: -4px;
    padding: 30px 20px 26px;
  }

  .quote-panel h3 {
    font-size: 30px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .field--wide,
  .field--half {
    grid-column: auto;
  }

  .footer-main {
    padding: 34px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 26px;
  }

  .footer-brand {
    width: 210px;
  }

  .footer-links {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }

  .footer-links a {
    width: 100%;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
  }

  .footer-meta {
    padding: 28px 0;
    text-align: left;
  }

  .footer-meta p:nth-child(2),
  .footer-meta p:last-child {
    text-align: left;
  }

  .mobile-conversion-bar {
    position: fixed;
    z-index: 1100;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: calc(64px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    grid-template-columns: 1fr 1.08fr;
    background: var(--graphite);
    box-shadow: 0 -8px 28px rgba(0, 0, 0, .2);
  }

  .mobile-conversion-bar a {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--white);
    font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
    font-size: 19px;
    font-weight: 700;
  }

  .mobile-conversion-bar a:last-child {
    background: var(--orange);
  }

  .mobile-conversion-bar .icon {
    width: 27px;
    height: 27px;
  }
}

@media (max-width: 390px) {
  .brand {
    width: 125px;
  }

  .header-cta {
    padding-right: 8px;
    padding-left: 8px;
    font-size: 0;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    transform: none;
    opacity: 1;
  }
}
