:root {
  --landing-ink: #152238;
  --landing-ink-soft: #26364a;
  --landing-paper: #f5f7f5;
  --landing-surface: #ffffff;
  --landing-line: #d9e0e4;
  --landing-muted: #617083;
  --landing-teal: #1f6f78;
  --landing-teal-strong: #15565e;
  --landing-mint: #79c8b5;
  --landing-amber: #bd7a22;
  --landing-danger: #b54a43;
  --landing-shadow: 0 24px 60px rgba(21, 34, 56, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body.landing-body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--landing-ink);
  background: var(--landing-surface);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.5;
}

.landing-body a {
  color: inherit;
}

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

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

.landing-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: 72px;
  color: var(--landing-ink);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(217, 224, 228, 0.9);
  backdrop-filter: blur(14px);
}

.landing-header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
}

.landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  color: var(--landing-ink);
  text-decoration: none;
}

.landing-brand-mark {
  position: relative;
  display: inline-grid;
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  border: 2px solid currentColor;
  border-radius: 7px;
}

.landing-brand-mark::before,
.landing-brand-mark::after {
  position: absolute;
  content: "";
  background: var(--landing-teal);
}

.landing-brand-mark::before {
  top: 10px;
  right: 8px;
  left: 8px;
  height: 2px;
}

.landing-brand-mark::after {
  bottom: 8px;
  left: 12px;
  width: 4px;
  height: 10px;
  box-shadow: 10px 0 0 var(--landing-teal);
}

.landing-brand strong,
.landing-brand small {
  display: block;
  letter-spacing: 0;
}

.landing-brand strong {
  font-size: 1rem;
  line-height: 1.15;
}

.landing-brand small {
  margin-top: 3px;
  color: var(--landing-muted);
  font-size: 0.72rem;
}

.landing-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.landing-nav a {
  position: relative;
  color: var(--landing-ink-soft);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

.landing-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--landing-teal);
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity 160ms ease, transform 160ms ease;
}

.landing-nav a:hover::after,
.landing-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.landing-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.landing-button:hover,
.landing-button:focus-visible {
  transform: translateY(-1px);
}

.landing-button-header {
  justify-self: end;
  min-height: 42px;
  padding-inline: 19px;
  color: #ffffff !important;
  background: var(--landing-ink);
}

.landing-button-header:hover,
.landing-button-header:focus-visible {
  background: var(--landing-teal-strong);
}

.landing-button-primary {
  color: #ffffff !important;
  background: var(--landing-teal);
  border-color: var(--landing-teal);
}

.landing-button-primary:hover,
.landing-button-primary:focus-visible {
  background: var(--landing-teal-strong);
  border-color: var(--landing-teal-strong);
}

.landing-button-secondary {
  color: #ffffff !important;
  background: var(--landing-ink);
  border-color: var(--landing-ink);
}

.landing-button-secondary:hover,
.landing-button-secondary:focus-visible {
  background: var(--landing-teal-strong);
  border-color: var(--landing-teal-strong);
}

.landing-hero {
  position: relative;
  display: flex;
  min-height: 480px;
  height: clamp(480px, 76svh, 720px);
  overflow: hidden;
  color: #ffffff;
  background: var(--landing-ink);
}

.landing-hero > img,
.landing-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.landing-hero > img {
  object-fit: cover;
  object-position: center 54%;
}

.landing-hero-shade {
  background: rgba(10, 21, 35, 0.58);
}

.landing-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-block: 56px;
}

.landing-kicker {
  margin-bottom: 16px;
  color: #bceadd;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.landing-kicker-dark {
  color: var(--landing-teal-strong);
}

.landing-hero h1 {
  margin-bottom: 8px;
  font-size: 4.75rem;
  font-weight: 750;
  line-height: 0.98;
  letter-spacing: 0;
}

.landing-hero-statement {
  margin-bottom: 12px;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.25;
}

.landing-hero-copy {
  max-width: 650px;
  margin-bottom: 28px;
  color: #eef4f4;
  font-size: 1.08rem;
  line-height: 1.7;
}

.landing-hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.landing-hero-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #ffffff !important;
  font-size: 0.92rem;
  font-weight: 700;
  text-underline-offset: 5px;
}

.landing-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin: 32px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  list-style: none;
}

.landing-hero-points li {
  position: relative;
  padding-left: 17px;
  color: #e7efef;
  font-size: 0.82rem;
  font-weight: 600;
}

.landing-hero-points li::before {
  position: absolute;
  top: 0.43em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--landing-mint);
  border-radius: 50%;
}

.landing-signal {
  color: var(--landing-ink);
  background: #edf2ef;
  border-bottom: 1px solid var(--landing-line);
}

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

.landing-signal-grid p {
  min-width: 0;
  margin: 0;
  padding: 25px 22px;
  border-left: 1px solid #cfdad4;
}

.landing-signal-grid p:last-child {
  border-right: 1px solid #cfdad4;
}

.landing-signal-grid strong,
.landing-signal-grid span {
  display: block;
}

.landing-signal-grid strong {
  margin-bottom: 5px;
  font-size: 0.9rem;
}

.landing-signal-grid span {
  color: var(--landing-muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.landing-section {
  padding-block: 96px;
  scroll-margin-top: 84px;
}

.landing-section-heading {
  max-width: 720px;
  margin-bottom: 44px;
}

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

.landing-section-heading h2,
.landing-control-heading h2,
.landing-final-cta h2 {
  margin-bottom: 18px;
  font-size: 2.6rem;
  font-weight: 750;
  line-height: 1.13;
  letter-spacing: 0;
}

.landing-section-heading > p:last-child {
  margin-bottom: 0;
  color: var(--landing-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.landing-product-section {
  background: var(--landing-surface);
}

.landing-product-frame {
  display: grid;
  grid-template-columns: 196px minmax(0, 1fr);
  min-height: 570px;
  overflow: hidden;
  background: #f3f6f8;
  border: 1px solid #cbd5dd;
  border-radius: 8px;
  box-shadow: var(--landing-shadow);
}

.landing-product-sidebar {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 24px 18px;
  color: #eaf1f4;
  background: var(--landing-ink);
}

.landing-product-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
}

.landing-product-brand .landing-brand-mark {
  width: 34px;
  height: 34px;
  flex-basis: 34px;
  color: #ffffff;
}

.landing-product-brand nav {
  min-width: 0;
}

.landing-product-sidebar nav {
  display: grid;
  gap: 7px;
}

.landing-product-sidebar nav span {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 0 11px;
  color: #cbd7e0;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
}

.landing-product-sidebar nav .is-active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.landing-product-sidebar > small {
  margin-top: auto;
  color: #9fb0bd;
  font-size: 0.68rem;
}

.landing-product-main {
  min-width: 0;
}

.landing-product-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
  padding: 0 28px;
  color: var(--landing-muted);
  background: #ffffff;
  border-bottom: 1px solid var(--landing-line);
  font-size: 0.77rem;
}

.landing-product-topbar > span {
  width: min(430px, 54%);
  padding: 10px 14px;
  background: #f7f9fa;
  border: 1px solid var(--landing-line);
  border-radius: 6px;
}

.landing-product-topbar strong {
  overflow: hidden;
  color: var(--landing-ink);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.landing-product-content {
  padding: 28px;
}

.landing-product-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.landing-product-title small,
.landing-product-title strong {
  display: block;
}

.landing-product-title small {
  margin-bottom: 5px;
  color: var(--landing-muted);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.landing-product-title strong {
  font-size: 1.65rem;
  line-height: 1.1;
}

.landing-product-title > span {
  padding: 9px 13px;
  color: #ffffff;
  background: var(--landing-teal);
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
}

.landing-product-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.landing-product-metrics article {
  min-width: 0;
  min-height: 116px;
  padding: 15px;
  background: #ffffff;
  border: 1px solid var(--landing-line);
  border-top: 3px solid var(--landing-teal);
  border-radius: 6px;
}

.landing-product-metrics article.is-alert {
  border-top-color: var(--landing-danger);
}

.landing-product-metrics span,
.landing-product-metrics strong,
.landing-product-metrics small {
  display: block;
}

.landing-product-metrics span {
  margin-bottom: 10px;
  color: var(--landing-muted);
  font-size: 0.65rem;
  font-weight: 700;
}

.landing-product-metrics strong {
  overflow-wrap: anywhere;
  font-size: 1rem;
  line-height: 1.2;
}

.landing-product-metrics small {
  margin-top: 8px;
  color: #7c8998;
  font-size: 0.62rem;
}

.landing-product-table {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--landing-line);
  border-radius: 6px;
}

.landing-product-table-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--landing-line);
  font-size: 0.76rem;
}

.landing-product-table-head span {
  color: var(--landing-teal-strong);
  font-weight: 700;
}

.landing-product-row {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  align-items: center;
  gap: 14px;
  min-height: 64px;
  padding: 10px 18px;
  border-bottom: 1px solid #e8edf0;
  color: var(--landing-ink-soft);
  font-size: 0.72rem;
}

.landing-product-row:last-child {
  border-bottom: 0;
}

.landing-product-row-label {
  min-height: 38px;
  color: #778596;
  background: #f8fafb;
  font-size: 0.61rem;
  font-weight: 800;
  text-transform: uppercase;
}

.landing-product-row strong small {
  display: block;
  margin-top: 3px;
  color: var(--landing-muted);
  font-size: 0.62rem;
  font-weight: 500;
}

.landing-product-row .is-due {
  color: var(--landing-danger);
}

.landing-capabilities {
  background: var(--landing-paper);
  border-top: 1px solid var(--landing-line);
  border-bottom: 1px solid var(--landing-line);
}

.landing-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #cfd8dd;
  border-left: 1px solid #cfd8dd;
}

.landing-capability-grid article {
  min-width: 0;
  min-height: 220px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.46);
  border-right: 1px solid #cfd8dd;
  border-bottom: 1px solid #cfd8dd;
}

.landing-capability-grid article > span {
  display: block;
  margin-bottom: 30px;
  color: var(--landing-teal);
  font-size: 0.74rem;
  font-weight: 800;
}

.landing-capability-grid h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  letter-spacing: 0;
}

.landing-capability-grid p {
  margin-bottom: 0;
  color: var(--landing-muted);
  font-size: 0.87rem;
  line-height: 1.65;
}

.landing-workflow {
  background: #ffffff;
}

.landing-workflow-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 86px;
  align-items: start;
}

.landing-workflow .landing-section-heading {
  position: sticky;
  top: 112px;
  margin-bottom: 0;
}

.landing-workflow .landing-button {
  margin-top: 28px;
}

.landing-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--landing-line);
  list-style: none;
}

.landing-steps li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid var(--landing-line);
}

.landing-steps li > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #ffffff;
  background: var(--landing-teal);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 800;
}

.landing-steps strong {
  display: block;
  margin-bottom: 7px;
  font-size: 1rem;
}

.landing-steps p {
  margin-bottom: 0;
  color: var(--landing-muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.landing-control {
  padding-block: 84px;
  color: #ffffff;
  background: var(--landing-ink);
}

.landing-control-heading {
  max-width: 680px;
  margin-bottom: 42px;
}

.landing-control-heading h2 {
  margin-bottom: 0;
}

.landing-control-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.landing-control-grid article {
  min-width: 0;
  padding: 30px 34px 0 0;
}

.landing-control-grid article + article {
  padding-left: 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.landing-control-grid h3 {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 1rem;
}

.landing-control-grid p {
  margin-bottom: 0;
  color: #c8d4dd;
  font-size: 0.87rem;
  line-height: 1.65;
}

.landing-faq {
  background: var(--landing-paper);
}

.landing-faq-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 88px;
  align-items: start;
}

.landing-faq .landing-section-heading {
  margin-bottom: 0;
}

.landing-faq-list {
  border-top: 1px solid #cbd5da;
}

.landing-faq-list details {
  border-bottom: 1px solid #cbd5da;
}

.landing-faq-list summary {
  position: relative;
  padding: 23px 44px 23px 0;
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 700;
  list-style: none;
}

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

.landing-faq-list summary::after {
  position: absolute;
  top: 20px;
  right: 4px;
  content: "+";
  color: var(--landing-teal-strong);
  font-size: 1.25rem;
  font-weight: 500;
}

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

.landing-faq-list details p {
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--landing-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.landing-final-cta {
  padding-block: 72px;
  background: #e8efeb;
  border-top: 1px solid #cfdbd5;
  border-bottom: 1px solid #cfdbd5;
}

.landing-final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.landing-final-cta .landing-kicker {
  margin-bottom: 10px;
}

.landing-final-cta h2 {
  max-width: 730px;
  margin-bottom: 0;
  font-size: 2rem;
}

.landing-final-cta .landing-button {
  flex: 0 0 auto;
}

.landing-footer {
  padding-block: 34px;
  color: #dbe4ea;
  background: #0f1929;
}

.landing-footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.landing-brand-footer {
  color: #ffffff !important;
}

.landing-brand-footer small {
  color: #9fb0bd;
}

.landing-footer p {
  margin: 0;
  color: #9fb0bd;
  font-size: 0.76rem;
  text-align: center;
}

.landing-footer-inner > a:last-child {
  justify-self: end;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  text-underline-offset: 5px;
}

@media (max-width: 980px) {
  .landing-header-inner {
    grid-template-columns: 1fr auto;
  }

  .landing-nav {
    display: none;
  }

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

  .landing-signal-grid p:nth-child(3) {
    border-top: 1px solid #cfdad4;
  }

  .landing-signal-grid p:nth-child(4) {
    border-top: 1px solid #cfdad4;
  }

  .landing-product-frame {
    grid-template-columns: 164px minmax(0, 1fr);
  }

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

  .landing-product-metrics article {
    min-height: 104px;
  }

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

  .landing-workflow-layout,
  .landing-faq-layout {
    gap: 56px;
  }
}

@media (max-width: 760px) {
  .landing-container {
    width: min(100% - 32px, 1180px);
  }

  .landing-header {
    height: 64px;
  }

  .landing-brand small {
    display: none;
  }

  .landing-button-header {
    min-height: 40px;
    padding-inline: 16px;
  }

  .landing-hero {
    min-height: 450px;
    height: clamp(450px, 76svh, 590px);
  }

  .landing-hero > img {
    object-position: 58% center;
  }

  .landing-hero-shade {
    background: rgba(10, 21, 35, 0.64);
  }

  .landing-hero-content {
    padding-block: 42px;
  }

  .landing-hero h1 {
    font-size: 3.45rem;
  }

  .landing-hero-statement {
    font-size: 1.3rem;
  }

  .landing-hero-copy {
    max-width: 560px;
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .landing-hero-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    margin-top: 24px;
    padding-top: 18px;
  }

  .landing-signal-grid {
    grid-template-columns: 1fr 1fr;
  }

  .landing-signal-grid p {
    padding: 20px 16px;
  }

  .landing-section {
    padding-block: 72px;
  }

  .landing-section-heading h2,
  .landing-control-heading h2,
  .landing-final-cta h2 {
    font-size: 2rem;
  }

  .landing-product-frame {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .landing-product-sidebar {
    display: none;
  }

  .landing-product-content {
    padding: 20px;
  }

  .landing-product-topbar {
    min-height: 58px;
    padding-inline: 20px;
  }

  .landing-product-title strong {
    font-size: 1.35rem;
  }

  .landing-capability-grid {
    grid-template-columns: 1fr;
  }

  .landing-capability-grid article {
    min-height: 0;
  }

  .landing-workflow-layout,
  .landing-faq-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .landing-workflow .landing-section-heading {
    position: static;
  }

  .landing-control-grid {
    grid-template-columns: 1fr;
  }

  .landing-control-grid article,
  .landing-control-grid article + article {
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    border-left: 0;
  }

  .landing-final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .landing-footer-inner {
    grid-template-columns: 1fr auto;
  }

  .landing-footer p {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: left;
  }
}

@media (max-width: 540px) {
  .landing-hero {
    min-height: 490px;
    height: min(640px, calc(100svh - 88px));
  }

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

  .landing-hero .landing-button {
    width: 100%;
  }

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

  .landing-hero-points li:nth-child(3) {
    display: none;
  }

  .landing-signal-grid {
    grid-template-columns: 1fr;
  }

  .landing-signal-grid p,
  .landing-signal-grid p:nth-child(2) {
    border-top: 1px solid #cfdad4;
    border-right: 1px solid #cfdad4;
  }

  .landing-signal-grid p:first-child {
    border-top: 0;
  }

  .landing-product-topbar > span {
    width: 100%;
  }

  .landing-product-topbar strong {
    display: none;
  }

  .landing-product-title > span {
    display: none;
  }

  .landing-product-metrics {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .landing-product-metrics article {
    padding: 12px;
  }

  .landing-product-metrics strong {
    font-size: 0.84rem;
  }

  .landing-product-row {
    grid-template-columns: 1.25fr 0.95fr 1fr;
    gap: 8px;
    padding-inline: 12px;
    font-size: 0.64rem;
  }

  .landing-product-row > :nth-child(3) {
    display: none;
  }

  .landing-product-row-label > :nth-child(4),
  .landing-product-row > :nth-child(4) {
    display: block;
  }

  .landing-capability-grid article {
    padding: 24px;
  }

  .landing-capability-grid article > span {
    margin-bottom: 18px;
  }

  .landing-steps li {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 16px;
  }

  .landing-steps li > span {
    width: 36px;
    height: 36px;
  }

  .landing-final-cta .landing-button {
    width: 100%;
  }
}

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

  .landing-button,
  .landing-nav a::after {
    transition: none;
  }
}
