:root {
  --bg: #000;
  --bg-alt: #0a0a0a;
  --block: #111;
  --block-2: #171717;
  --text: #fff;
  --text-2: #e5e7eb;
  --muted: #9ca3af;
  --accent: #f97316;
  --accent-hover: #fb923c;
  --accent-soft: rgba(249, 115, 22, .13);
  --border: #242424;
  --radius: 12px;
  --maxw: 1200px;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-head: "Space Grotesk", "Inter", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 104px 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section__title {
  max-width: 900px;
  margin: 0 auto 14px;
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -.025em;
  text-align: center;
}

.section__subtitle {
  max-width: 680px;
  margin: 0 auto 60px;
  color: var(--muted);
  font-size: 1.08rem;
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 11px 22px;
  font-weight: 700;
  line-height: 1.3;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

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

.btn--primary {
  background: var(--accent);
  color: #080808;
}

.btn--primary:hover {
  background: var(--accent-hover);
}

.btn--lg {
  padding: 16px 38px;
  font-size: 1.05rem;
}

.btn--outline {
  width: 100%;
  margin-top: auto;
  border-color: rgba(249, 115, 22, .5);
  color: var(--accent);
}

.btn--outline:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.nav {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, .86);
  backdrop-filter: blur(14px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--maxw);
  height: 64px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav__brand,
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
}

.nav__logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav__link {
  color: var(--text-2);
  font-size: .91rem;
  transition: color .2s ease;
}

.nav__link:hover {
  color: var(--accent);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: 0;
  padding: 8px;
  background: transparent;
  cursor: pointer;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform .25s ease, opacity .25s ease;
}

.nav__toggle[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}

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

.nav__toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px;
  text-align: center;
}

.hero__glow {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 620px;
  height: 620px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, .25), transparent 62%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
}

.hero__title {
  margin-bottom: 20px;
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -.03em;
}

.hero__slogan {
  max-width: 680px;
  margin: 0 auto 40px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
}

.trust {
  margin-top: 48px;
}

.trust__count {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: .95rem;
}

.trust__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.trust__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px;
  background: var(--block);
  color: var(--text-2);
  font-size: .84rem;
}

.badge-icon {
  color: var(--accent);
  font-size: .7rem;
}

.integration {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(130deg, rgba(249, 115, 22, .055), transparent 42%),
    var(--bg-alt);
}

.integration__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, .95fr);
  align-items: center;
  gap: clamp(44px, 7vw, 88px);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.integration__title {
  margin-bottom: 22px;
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -.025em;
}

.integration__lead {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.04rem;
}

.tool-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.tool-logo {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--block-2);
  transition: border-color .2s ease, transform .2s ease;
}

.tool-logo:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}

.tool-logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.tool-logo--mark span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--accent), #fdba74);
  color: #090909;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
}

.connection-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.connection-details > div {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
}

.connection-details dt {
  color: var(--text-2);
  font-weight: 700;
}

.connection-details dd {
  min-width: 0;
  color: var(--muted);
}

.connection-details code {
  display: inline-block;
  max-width: 100%;
  overflow-wrap: anywhere;
  color: var(--accent);
  font-size: .91rem;
}

.connection-details strong {
  color: var(--text-2);
}

.integration__cta {
  margin-top: 30px;
}

.code-window {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #2b2b2b;
  border-radius: 16px;
  background: #050505;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .48);
}

.code-window__bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  min-height: 58px;
  gap: 14px;
  border-bottom: 1px solid #242424;
  padding: 8px 16px;
  color: #7f7f7f;
  font-size: .78rem;
}

.code-window__dots {
  display: flex;
  gap: 7px;
}

.code-window__dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #444;
}

.code-window__dots span:first-child {
  background: #f97316;
}

.code-tabs {
  display: flex;
  min-width: 0;
  justify-content: center;
  gap: 4px;
}

.code-tab {
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 6px 9px;
  background: transparent;
  color: #888;
  font-size: .73rem;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.code-tab:hover {
  color: var(--text-2);
}

.code-tab.active {
  border-color: rgba(249, 115, 22, .35);
  background: var(--accent-soft);
  color: var(--accent);
}

.copy-button {
  justify-self: end;
  border: 0;
  padding: 7px 10px;
  background: transparent;
  color: #999;
  font-size: .75rem;
  cursor: pointer;
}

.copy-button:hover {
  color: var(--accent);
}

.code-window pre {
  max-height: 360px;
  overflow-x: auto;
  overflow-y: auto;
  padding: 10px 0;
  color: #d4d4d4;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: clamp(.72rem, 1.1vw, .84rem);
  line-height: 1.25;
  tab-size: 2;
}

.code-panel[hidden] {
  display: none;
}

.line {
  display: block;
  min-width: max-content;
  padding: 0 26px 0 0;
}

.line:hover {
  background: rgba(255, 255, 255, .025);
}

.line i {
  display: inline-block;
  width: 48px;
  margin-right: 18px;
  border-right: 1px solid #242424;
  color: #4f4f4f;
  font-style: normal;
  text-align: right;
  padding-right: 14px;
  user-select: none;
}

.line b {
  color: #67e8f9;
  font-weight: 500;
}

.line em {
  color: #fdba74;
  font-style: normal;
}

.line u {
  color: #c4b5fd;
  text-decoration: none;
}

.line strong {
  color: #86efac;
  font-weight: 500;
}

.kimi-k3 {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(56, 189, 248, .12), transparent 62%),
    radial-gradient(ellipse 45% 40% at 85% 80%, rgba(249, 115, 22, .08), transparent 55%),
    var(--bg);
}

.kimi-k3__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.kimi-k3__logo {
  width: 96px;
  height: 96px;
  margin-bottom: 20px;
  border-radius: 22px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .08), 0 18px 48px rgba(56, 189, 248, .18);
  animation: kimi-logo-in .7s ease both;
}

.kimi-k3__name {
  margin: 0 0 10px;
  color: var(--text-2);
  font-family: var(--font-head);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  animation: kimi-rise .7s ease .06s both;
}

.kimi-k3__title {
  max-width: 900px;
  margin: 0 0 22px;
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.04em;
  animation: kimi-rise .7s ease .1s both;
}

.kimi-k3__keywords {
  max-width: 820px;
  margin: 0 0 36px;
  color: var(--muted);
  font-size: clamp(.95rem, 1.6vw, 1.12rem);
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.5;
  animation: kimi-rise .7s ease .16s both;
}

.kimi-k3__pricing {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 14px;
  animation: kimi-rise .7s ease .24s both;
}

.kimi-k3__price {
  min-width: 140px;
  padding: 16px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(17, 17, 17, .85);
}

.kimi-k3__price-label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.kimi-k3__price strong {
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
}

.kimi-k3__model-id {
  margin-bottom: 28px;
  color: var(--muted);
  font-family: Consolas, monospace;
  font-size: .9rem;
  animation: kimi-rise .7s ease .3s both;
}

.kimi-k3 .btn {
  animation: kimi-rise .7s ease .36s both;
}

@keyframes kimi-logo-in {
  from {
    opacity: 0;
    transform: scale(.86) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes kimi-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.models__row-title,
.capability-title {
  margin-bottom: 20px;
  color: var(--text-2);
  font-family: var(--font-head);
  font-size: 1.35rem;
}

.models {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 42px;
}

.model {
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 13px;
  background: var(--block);
  text-align: center;
  transition: border-color .2s ease, transform .2s ease;
}

.model:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}

.vendor {
  display: grid;
  width: 40px;
  height: 40px;
  margin: 0 auto 15px;
  place-items: center;
  border: 1px solid #333;
  border-radius: 12px;
  background: #fff;
  color: #111;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 23px;
  text-indent: -9999px;
}

.vendor--openai {
  background-color: #fff;
  background-image: url("https://cdn.jsdelivr.net/npm/simple-icons@v14/icons/openai.svg");
}

.vendor--anthropic {
  background-color: #d6c5b5;
  background-image: url("https://cdn.simpleicons.org/anthropic/111111");
}

.vendor--google {
  background-color: #fff;
  background-image: url("https://cdn.simpleicons.org/googlegemini/4285F4");
}

.vendor--xai {
  background-color: #fff;
  background-image: url("https://cdn.simpleicons.org/x/111111");
}

.vendor--deepseek {
  background-color: #4d6bfe;
  background-image: url("https://cdn.simpleicons.org/deepseek/ffffff");
}

.vendor--meta {
  background-color: #087be6;
  background-image: url("https://cdn.simpleicons.org/meta/ffffff");
}

.vendor--alibaba {
  background-color: #6f47ff;
  background-image: url("https://cdn.simpleicons.org/alibabacloud/ffffff");
}

.model h4 {
  overflow: hidden;
  margin-bottom: 10px;
  color: var(--text);
  font-family: Consolas, monospace;
  font-size: .87rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.model p {
  color: var(--muted);
  font-size: .8rem;
}

.model b {
  display: block;
  color: var(--accent);
  font-size: .8rem;
  font-weight: 600;
}

.capability-title {
  margin-top: 56px;
}

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

.capability {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  background: var(--block);
  transition: border-color .2s ease;
}

.capability:hover {
  border-color: var(--accent);
}

.capability--accent::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--accent);
  content: "";
}

.capability h4 {
  margin-bottom: 8px;
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 1.3rem;
}

.capability > p {
  min-height: 48px;
  margin-bottom: 17px;
  color: var(--muted);
  font-size: .9rem;
}

.capability ul {
  margin-bottom: 24px;
  list-style: none;
}

.capability li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--border);
  padding: 9px 0;
  font-size: .86rem;
}

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

.capability li span {
  overflow: hidden;
  color: var(--text-2);
  font-family: Consolas, monospace;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.capability li b {
  flex: 0 0 auto;
  color: var(--accent);
  font-size: .8rem;
  font-weight: 600;
}

.capability .btn--primary {
  width: 100%;
  margin-top: auto;
}

.final-section {
  position: relative;
  overflow: hidden;
}

.final-section::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 900px;
  height: 420px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(249, 115, 22, .13), transparent 68%);
  content: "";
  pointer-events: none;
}

.final-cta {
  position: relative;
  z-index: 1;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 18px;
  padding: 70px 28px;
  background:
    radial-gradient(circle at 12% 8%, rgba(251, 146, 60, .72), transparent 30%),
    radial-gradient(circle at 88% 92%, rgba(139, 92, 246, .68), transparent 34%),
    radial-gradient(circle at 78% 8%, rgba(6, 182, 212, .42), transparent 27%),
    linear-gradient(135deg, #321509 0%, #17102d 50%, #062b35 100%);
  box-shadow:
    0 30px 90px rgba(124, 58, 237, .22),
    inset 0 1px rgba(255, 255, 255, .2);
  text-align: center;
}

.final-cta::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(110deg, transparent 28%, rgba(255, 255, 255, .13) 46%, transparent 64%),
    radial-gradient(circle at 50% 50%, transparent 35%, rgba(255, 255, 255, .035) 100%);
  content: "";
  pointer-events: none;
}

.final-cta p {
  margin-bottom: 14px;
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
}

.final-cta h2 {
  max-width: 780px;
  margin: 0 auto 42px;
  font-family: var(--font-head);
  font-size: clamp(2.15rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -.03em;
}

.promo-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(249, 115, 22, .45);
  border-radius: 999px;
  padding: 8px 16px;
  background: rgba(249, 115, 22, .1);
  font-size: .86rem !important;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.promo-kicker span {
  color: #facc15;
}

.promo-lines {
  display: flex;
  max-width: 930px;
  margin: 0 auto 38px;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.final-cta .promo-lines p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0;
  color: #fff;
  font-family: var(--font-head);
  font-size: clamp(1.05rem, 2.25vw, 1.55rem);
  line-height: 1.35;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .32);
}

.promo-line-icon {
  display: grid;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  color: #fef08a;
  box-shadow: 0 0 24px rgba(251, 191, 36, .3);
  font-size: .95rem;
}

.promo-lines mark {
  background: transparent;
  color: #fef08a;
  font-size: 1.3em;
  text-shadow: 0 0 26px rgba(250, 204, 21, .55);
}

.promo-button {
  gap: 12px;
  min-width: min(100%, 300px);
  box-shadow: 0 12px 40px rgba(249, 115, 22, .3);
}

.promo-button span {
  font-size: 1.3em;
  transition: transform .2s ease;
}

.promo-button:hover span {
  transform: translateX(4px);
}

.promo-orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(1px);
  opacity: .5;
  pointer-events: none;
}

.promo-orb--one {
  top: -90px;
  left: -70px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(249, 115, 22, .25);
  box-shadow: inset 0 0 60px rgba(249, 115, 22, .1);
}

.promo-orb--two {
  right: -50px;
  bottom: -110px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(139, 92, 246, .22);
  box-shadow: inset 0 0 80px rgba(139, 92, 246, .09);
}

.footer {
  border-top: 1px solid var(--border);
  padding: 36px 0;
  color: var(--muted);
  font-size: .86rem;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer__brand {
  color: var(--text);
}

.footer__brand img {
  border-radius: 7px;
}

.footer nav {
  display: flex;
  gap: 22px;
}

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

@media (max-width: 1080px) {
  .nav__links {
    gap: 16px;
  }

  .nav__link {
    font-size: .82rem;
  }

  .integration__grid {
    grid-template-columns: minmax(0, 1fr) minmax(400px, .9fr);
    gap: 40px;
  }

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

@media (max-width: 820px) {
  .nav__links {
    position: fixed;
    top: 64px;
    right: 0;
    left: 0;
    flex-direction: column;
    gap: 18px;
    border-bottom: 1px solid var(--border);
    padding: 24px;
    background: var(--bg);
    transform: translateY(-150%);
    transition: transform .3s ease;
  }

  .nav__links.open {
    transform: translateY(0);
  }

  .nav__link {
    font-size: .95rem;
  }

  .nav__toggle {
    display: flex;
  }

  .section {
    padding: 76px 0;
  }

  .hero {
    padding: 86px 0 68px;
  }

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

  .code-window {
    max-width: 650px;
  }
}

@media (max-width: 620px) {
  .kimi-k3__logo {
    width: 72px;
    height: 72px;
    border-radius: 18px;
  }

  .kimi-k3__keywords {
    padding: 0 8px;
  }

  .kimi-k3__price {
    flex: 1 1 calc(50% - 14px);
    min-width: 0;
  }

  .container,
  .nav__inner {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero__title {
    font-size: clamp(2.45rem, 14vw, 3.75rem);
  }

  .trust__badges {
    gap: 8px;
  }

  .tool-logo {
    width: 52px;
    height: 52px;
  }

  .connection-details > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .code-window__bar {
    grid-template-columns: 1fr auto;
  }

  .code-window__dots {
    display: none;
  }

  .code-tabs {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .code-tab {
    flex: 0 0 auto;
  }

  .models,
  .capabilities {
    grid-template-columns: 1fr;
  }

  .model {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    column-gap: 14px;
    padding: 18px;
    text-align: left;
  }

  .vendor {
    grid-row: 1 / 4;
    margin: 0;
  }

  .model h4 {
    margin: 0;
  }

  .capability {
    padding: 24px 20px;
  }

  .capability li {
    align-items: flex-start;
  }

  .capability li span {
    white-space: normal;
  }

  .final-cta {
    padding: 52px 18px;
  }

  .final-cta .promo-lines p {
    width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
}

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

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