:root {
  color-scheme: dark light;
  --bg: #f4f7fa;
  --bg-soft: #e9eef3;
  --ink: #12141b;
  --ink-soft: #4c5565;
  --dark: #12141b;
  --dark-2: #1e2330;
  --line: rgba(18, 20, 27, .12);
  --line-light: rgba(255, 255, 255, .14);
  --white: #f8fafc;
  --muted: #c2cad8;
  --orange: #f5882d;
  --orange-2: #ffb24c;
  --teal: #22b19e;
  --blue: #4284f4;
  --red: #da5550;
  --shadow: 0 24px 80px rgba(18, 20, 27, .16);
  --shadow-hover: 0 28px 70px rgba(18, 20, 27, .22);
  --radius: 8px;
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  animation: page-enter .45s ease both;
}

body.nav-open {
  overflow: hidden;
}

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

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid rgba(255, 178, 76, .82);
  outline-offset: 3px;
}

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

p {
  margin-bottom: 1rem;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--orange);
  color: #12141b;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 700;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(18, 20, 27, .88);
  border-bottom: 1px solid var(--line-light);
  backdrop-filter: blur(18px);
  transition: background .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.site-header.is-scrolled {
  background: rgba(18, 20, 27, .96);
  border-color: rgba(255, 255, 255, .10);
  box-shadow: 0 14px 38px rgba(5, 8, 15, .22);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: auto;
  height: 46px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-size: 15px;
}

.site-nav a {
  position: relative;
  border-radius: var(--radius);
  padding: 10px 14px;
  color: rgba(248, 250, 252, .82);
  overflow: hidden;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  background: rgba(245, 136, 45, .16);
  color: var(--white);
  transform: translateY(-1px);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
  padding: 10px;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  border-radius: 2px;
  transform-origin: center;
  transition: transform .24s ease, opacity .18s ease, background .2s ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible,
.menu-toggle[aria-expanded="true"] {
  border-color: rgba(255, 122, 26, .58);
  background: rgba(255, 122, 26, .14);
}

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

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

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

.section {
  padding: 92px 0;
}

.section-dark {
  background:
    radial-gradient(circle at 16% 12%, rgba(245, 136, 45, .22), transparent 32%),
    radial-gradient(circle at 84% 80%, rgba(34, 177, 158, .18), transparent 34%),
    linear-gradient(135deg, var(--dark), var(--dark-2));
  color: var(--white);
}

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

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  padding: 72px 0 84px;
}

.hero-grid,
.two-column,
.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .92fr);
  align-items: center;
  gap: 56px;
}

.hero-centered {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.hero-centered .hero-copy {
  max-width: 860px;
  margin-inline: auto;
}

.hero-centered .eyebrow {
  justify-content: center;
}

.hero-centered h1 {
  margin-inline: auto;
}

.hero-centered h1::after {
  margin-inline: auto;
}

.hero-centered .hero-lead {
  max-width: 760px;
  margin-inline: auto;
}

.hero-centered .hero-actions {
  justify-content: center;
}

.hero-centered .hero-stats {
  max-width: 720px;
  margin-inline: auto;
}

.reverse {
  grid-template-columns: minmax(420px, .92fr) minmax(0, 1fr);
}

.reverse .section-copy {
  order: 2;
}

.reverse .section-media {
  order: 1;
}

.development-content .section-copy {
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}

.development-content .eyebrow {
  justify-content: center;
}

.development-content h2::after {
  margin-inline: auto;
}

.development-content .info-grid {
  max-width: 940px;
  margin-inline: auto;
}

.development-content .info-grid article {
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 3px;
  background: currentColor;
}

h1 {
  max-width: 780px;
  font-size: 54px;
  line-height: 1.08;
  letter-spacing: 0;
  margin-bottom: 24px;
  color: var(--white);
}

h2 {
  font-size: 36px;
  line-height: 1.18;
  letter-spacing: 0;
  margin-bottom: 18px;
  color: var(--ink);
}

h1::after,
h2::after {
  content: "";
  display: block;
  width: 76px;
  height: 4px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
}

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

.section-dark h2::after {
  background: linear-gradient(90deg, var(--orange-2), var(--teal));
}

h3 {
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: 0;
  margin-bottom: 10px;
}

.hero-lead,
.section-heading p,
.section-copy > p {
  color: var(--ink-soft);
  font-size: 17px;
}

.section-dark .hero-lead,
.section-dark .section-heading p,
.section-dark .section-copy > p {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 32px;
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 12px 20px;
  font-weight: 800;
  border: 1px solid transparent;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .34) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .42s ease;
}

.btn:hover::before,
.btn:focus-visible::before {
  transform: translateX(120%);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #12141b;
  box-shadow: 0 14px 32px rgba(245, 136, 45, .28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 18px 42px rgba(245, 136, 45, .38);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  border-color: var(--line-light);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(255, 178, 76, .52);
  background: rgba(255, 255, 255, .13);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.hero-stats div {
  min-width: 0;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
  padding: 14px;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.hero-stats div:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 178, 76, .42);
  background: rgba(255, 255, 255, .10);
}

.hero-stats dt {
  color: var(--white);
  font-weight: 800;
  margin-bottom: 2px;
}

.hero-stats dd {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}

.section-media {
  margin: 0;
}

.section-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  transition: transform .35s ease, box-shadow .35s ease, filter .35s ease;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 42px;
}

.section-heading.compact {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.compact .eyebrow {
  justify-content: center;
}

.info-grid,
.work-cards,
.feature-list,
.metrics {
  display: grid;
  gap: 16px;
}

.info-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.info-grid article,
.work-cards article,
.feature-list article,
.metrics article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .68);
  padding: 20px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.info-grid article:hover,
.work-cards article:hover,
.feature-list article:hover,
.metrics article:hover {
  transform: translateY(-4px);
  border-color: rgba(66, 132, 244, .36);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 42px rgba(18, 20, 27, .10);
}

.info-grid p,
.work-cards p,
.feature-list p {
  color: var(--ink-soft);
  margin-bottom: 0;
}

.feature-layout {
  grid-template-columns: minmax(420px, .95fr) minmax(0, 1fr);
  align-items: stretch;
}

.feature-image img {
  height: 100%;
  min-height: 520px;
}

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

.section-dark .feature-list article {
  background: rgba(255, 255, 255, .07);
  border-color: var(--line-light);
}

.section-dark .feature-list p {
  color: var(--muted);
}

.icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  margin-bottom: 18px;
  background: var(--orange);
  color: #12141b;
  font-weight: 900;
}

.features-showcase {
  background: #fff;
  color: var(--ink);
  padding: 88px 0 96px;
}

.feature-showcase-heading {
  max-width: 920px;
  margin: 0 auto 54px;
  text-align: center;
}

.feature-showcase-heading h2 {
  color: #2b2f36;
  font-size: 36px;
  margin-bottom: 18px;
}

.feature-showcase-heading h2::after {
  display: none;
}

.feature-showcase-heading span {
  display: block;
  width: 92px;
  height: 5px;
  margin: 0 auto 24px;
  border-radius: 999px;
  background: var(--blue);
}

.feature-showcase-heading p {
  max-width: 820px;
  margin: 0 auto;
  color: #596272;
  font-size: 17px;
}

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

.feature-card-grid article {
  position: relative;
  min-height: 300px;
  border: 1px solid rgba(18, 20, 27, .12);
  border-radius: 8px;
  background: #fff;
  padding: 52px 42px 38px;
  box-shadow: 0 8px 26px rgba(18, 20, 27, .08);
  overflow: hidden;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.feature-card-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--blue), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .24s ease;
}

.feature-card-grid article:hover,
.feature-card-grid article:focus-within {
  transform: translateY(-7px);
  box-shadow: 0 24px 54px rgba(18, 20, 27, .16);
  border-color: rgba(66, 132, 244, .48);
}

.feature-card-grid article:hover::before,
.feature-card-grid article:focus-within::before {
  transform: scaleX(1);
}

.feature-card-grid article.is-featured {
  border-color: var(--blue);
  box-shadow: 0 14px 34px rgba(66, 132, 244, .14);
}

.feature-card-icon {
  display: block;
  width: 58px;
  height: 58px;
  margin-bottom: 34px;
  font-size: 42px;
  line-height: 58px;
  transition: transform .24s ease, filter .24s ease;
}

.feature-card-grid article:hover .feature-card-icon,
.feature-card-grid article:focus-within .feature-card-icon {
  transform: translateY(-2px) scale(1.08);
  filter: drop-shadow(0 10px 14px rgba(66, 132, 244, .18));
}

.feature-card-grid h3 {
  color: #0068d9;
  font-size: 25px;
  line-height: 1.32;
  margin-bottom: 24px;
}

.feature-card-grid p {
  color: #343b48;
  font-size: 17px;
  line-height: 1.9;
  margin: 0;
}

.work-cards {
  grid-template-columns: 1fr;
  margin-top: 26px;
}

.works-showcase {
  background:
    linear-gradient(180deg, #f3f8fe 0%, #eef5fc 100%);
}

.works-heading {
  max-width: 920px;
  margin: 0 auto 54px;
  text-align: center;
}

.works-heading img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  margin: 0 auto 10px;
}

.works-heading p {
  margin: 0 0 10px;
  color: #70859e;
  font-size: 16px;
  font-weight: 800;
}

.works-heading h2 {
  color: #0f2135;
  margin-bottom: 0;
}

.works-heading h2::after {
  display: none;
}

.works-heading span {
  display: block;
  width: 74px;
  height: 4px;
  margin: 24px auto 0;
  border-radius: 999px;
  background: #19b7dc;
}

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

.work-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(33, 117, 192, .10);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(28, 56, 86, .10);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.work-card:hover,
.work-card:focus-within {
  transform: translateY(-7px);
  border-color: rgba(25, 183, 220, .42);
  box-shadow: 0 26px 62px rgba(28, 56, 86, .18);
}

.work-card > img {
  width: 100%;
  aspect-ratio: 1.78 / 1;
  object-fit: cover;
  background: #d9e4f0;
  transition: transform .38s ease, filter .38s ease;
}

.work-card:hover > img,
.work-card:focus-within > img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.04);
}

.work-card > div {
  padding: 28px 28px 30px;
}

.work-card h3 {
  color: #0584df;
  font-size: 23px;
  line-height: 1.34;
  margin-bottom: 18px;
}

.work-card p {
  color: #73859a;
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 24px;
}

.work-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 0 !important;
}

.work-meta span {
  color: #ffad13;
  font-weight: 900;
}

.work-meta strong {
  color: #102033;
  font-size: 18px;
}

.work-meta em {
  color: #7a8ca3;
  font-style: normal;
}

.metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
}

.metrics article {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.metrics article:hover strong {
  color: var(--blue);
}

.metrics strong {
  display: block;
  color: var(--orange);
  font-size: 34px;
  line-height: 1;
  margin-bottom: 12px;
}

.metrics span {
  color: var(--ink-soft);
  font-size: 15px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.faq-single {
  display: block;
}

.faq-single .section-copy {
  max-width: none;
  width: 100%;
}

.faq-single .eyebrow {
  margin-bottom: 12px;
}

.faq-single h2 {
  max-width: 980px;
}

.faq-single .faq-list {
  width: 100%;
  gap: 14px;
  margin-top: 28px;
}

.faq-list details {
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .07);
  padding: 0;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.faq-single .faq-list details {
  width: 100%;
  background: rgba(255, 255, 255, .09);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .16);
}

.faq-list details:hover,
.faq-list details[open] {
  border-color: rgba(255, 178, 76, .45);
  background: rgba(255, 255, 255, .12);
  box-shadow: 0 22px 46px rgba(0, 0, 0, .20);
}

.faq-list details:hover {
  transform: translateY(-2px);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 20px;
  font-weight: 800;
}

.faq-single .faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 24px;
  color: var(--white);
  font-size: 18px;
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--orange-2);
  font-weight: 900;
  transition: transform .2s ease, color .2s ease;
}

.faq-single .faq-list summary::after {
  float: none;
  flex: 0 0 auto;
  font-size: 22px;
}

.faq-list details[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-list p {
  color: var(--muted);
  margin: 0;
  padding: 0 20px 18px;
}

.faq-single .faq-list p {
  max-width: 980px;
  padding: 0 24px 20px;
  color: rgba(248, 250, 252, .78);
  font-size: 16px;
  line-height: 1.75;
}

.bottom-cta {
  position: relative;
  overflow: hidden;
  padding: 72px 0 76px;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(115deg, #079985 0%, #187993 45%, #7b557d 100%);
  background-size: 40px 40px, 40px 40px, auto;
}

.bottom-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 34% 20%, rgba(255, 255, 255, .16), transparent 28%),
    radial-gradient(circle at 76% 76%, rgba(245, 136, 45, .12), transparent 34%);
  pointer-events: none;
}

.bottom-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  text-align: center;
}

.bottom-cta-kicker {
  margin: 0 0 8px;
  color: rgba(248, 250, 252, .88);
  font-size: 15px;
  font-weight: 800;
}

.bottom-cta-title {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 38px;
  font-weight: 900;
  line-height: 1.18;
}

.bottom-cta-inner > p:not(.bottom-cta-kicker) {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(248, 250, 252, .78);
  font-size: 16px;
}

.bottom-cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.btn-outline {
  color: var(--white);
  border-color: rgba(248, 250, 252, .44);
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 14px 32px rgba(5, 8, 15, .14);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: rgba(248, 250, 252, .78);
  background: rgba(255, 255, 255, .14);
}

.site-footer {
  background: #0f1117;
  color: rgba(248, 250, 252, .82);
  padding: 34px 0;
  border-top: 1px solid var(--line-light);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p {
  margin: 4px 0 0;
  color: rgba(248, 250, 252, .58);
  font-size: 14px;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
}

.footer-inner a {
  color: rgba(248, 250, 252, .68);
}

.footer-inner a:hover,
.footer-inner a:focus-visible {
  color: var(--orange-2);
}

@keyframes page-enter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 20px 22px;
    background: rgba(18, 20, 27, .98);
    border-bottom: 1px solid var(--line-light);
  }

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

  .site-nav a {
    padding: 14px 12px;
  }

  .hero-grid,
  .two-column,
  .reverse,
  .feature-layout {
    grid-template-columns: 1fr;
  }

  .reverse .section-copy,
  .reverse .section-media {
    order: initial;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
  }

  .section {
    padding: 72px 0;
  }

  .feature-image img {
    min-height: 0;
  }

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

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

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

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100vw - 28px, 1180px);
  }

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

  .brand img {
    width: auto;
    height: 40px;
  }

  .site-nav {
    inset: 68px 0 auto 0;
  }

  .section {
    padding: 58px 0;
  }

  .hero {
    padding: 44px 0 58px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

  .hero-stats,
  .info-grid,
  .feature-list,
  .feature-card-grid,
  .works-grid,
  .metrics {
    grid-template-columns: 1fr;
  }

  .features-showcase {
    padding: 58px 0;
  }

  .feature-showcase-heading {
    margin-bottom: 34px;
  }

  .feature-showcase-heading h2 {
    font-size: 28px;
  }

  .feature-showcase-heading p {
    text-align: left;
  }

  .feature-card-grid {
    gap: 20px;
  }

  .feature-card-grid article {
    min-height: auto;
    padding: 34px 28px 30px;
  }

  .feature-card-icon {
    margin-bottom: 24px;
  }

  .feature-card-grid h3 {
    font-size: 23px;
    margin-bottom: 16px;
  }

  .works-heading {
    margin-bottom: 34px;
  }

  .works-heading h2 {
    font-size: 28px;
  }

  .works-grid {
    gap: 22px;
  }

  .work-card > div {
    padding: 24px 24px 26px;
  }

  .work-card h3 {
    font-size: 22px;
  }

  .faq-single .faq-list summary {
    min-height: 54px;
    padding: 14px 18px;
    font-size: 17px;
  }

  .faq-single .faq-list p {
    padding: 0 18px 18px;
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .bottom-cta {
    padding: 58px 0 62px;
  }

  .bottom-cta-title {
    font-size: 30px;
  }

  .bottom-cta-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

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

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