:root {
  --blue: #2f6df6;
  --blue-dark: #1757e8;
  --blue-pale: #eef4ff;
  --blue-soft: #f6f9ff;
  --ink: #101319;
  --text: #4f5664;
  --muted: #7c8493;
  --line: #e7ebf2;
  --surface: #ffffff;
  --surface-alt: #f7f9fc;
  --max-width: 1180px;
  --header-height: 76px;
  --radius-small: 12px;
  --radius-medium: 20px;
  --radius-large: 32px;
  --shadow-soft: 0 24px 60px rgba(34, 79, 160, 0.11);
  --font-sans: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", "Source Han Sans SC", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(231, 235, 242, 0.92);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(33, 57, 102, 0.07);
}

.nav-shell,
.section-shell,
.hero-shell,
.proof-shell,
.cta-shell,
.footer-shell {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
}

.nav-shell {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 42px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: invert(1);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0 auto;
}

.desktop-nav a,
.nav-login {
  position: relative;
  color: #303642;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -27px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a.is-active,
.nav-login:hover,
.nav-login:focus-visible {
  color: var(--blue);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 26px;
  font-size: 15px;
  font-weight: 650;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button:focus-visible,
.scenario-tab:focus-visible,
.mobile-menu-button:focus-visible,
.text-link:focus-visible {
  outline: 3px solid rgba(47, 109, 246, 0.28);
  outline-offset: 3px;
}

.button-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 12px 26px rgba(47, 109, 246, 0.24);
}

.button-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 16px 34px rgba(47, 109, 246, 0.3);
}

.button-secondary {
  color: var(--ink);
  border-color: #cbd4e3;
  background: rgba(255, 255, 255, 0.8);
}

.button-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.button-small {
  min-height: 42px;
  padding: 0 22px;
  font-size: 14px;
}

.button-large {
  min-height: 54px;
  padding: 0 32px;
}

.button-white {
  color: var(--blue);
  background: #fff;
  box-shadow: 0 12px 30px rgba(9, 45, 132, 0.22);
}

.button-ghost-white {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.08);
}

.mobile-menu-button,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 553px;
  background: #fff;
}

.hero-inner {
  display: grid;
  width: min(100%, 1536px);
  min-height: 553px;
  grid-template-columns: 52% 48%;
  align-items: stretch;
  margin: 0 auto;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 54px 0 50px clamp(52px, 4vw, 82px);
  transform: translateY(30px);
}

.hero h1 {
  margin: 0;
  font-size: clamp(52px, 4.6vw, 68px);
  font-weight: 820;
  letter-spacing: -0.055em;
  line-height: 1.12;
  white-space: nowrap;
}

.hero h1 span {
  color: #2872f5;
}

.hero-description {
  max-width: 650px;
  margin: 30px 0 39px;
  color: #565c66;
  font-size: clamp(19px, 1.8vw, 25px);
  font-weight: 440;
  letter-spacing: 0.015em;
  line-height: 1.65;
}

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

.hero-actions .button-large {
  min-width: 220px;
  min-height: 66px;
  gap: 9px;
  padding: 0 26px;
  font-size: 19px;
}

.hero-actions .button img {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.hero-actions .button-secondary img {
  width: 22px;
  height: 22px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 62px;
}

.hero-trust img {
  width: 30px;
  height: 30px;
}

.hero-trust strong {
  font-size: 31px;
  line-height: 1;
}

.hero-trust span {
  color: #5f6570;
  font-size: 17px;
}

.hero-visual {
  min-width: 0;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.proof {
  position: relative;
  z-index: 4;
  border-top: 1px solid rgba(231, 235, 242, 0.7);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.proof-shell {
  display: grid;
  min-height: 148px;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.proof-item strong {
  color: var(--blue);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1;
}

.proof-item small {
  margin-left: 2px;
  font-size: 0.46em;
  letter-spacing: 0;
}

.proof-item p {
  margin: 0;
  color: #505767;
  font-size: 15px;
}

.proof-divider {
  width: 1px;
  height: 48px;
  background: var(--line);
}

.section {
  padding: 112px 0;
}

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

.section-heading-centered {
  max-width: 780px;
  margin-right: auto;
  margin-bottom: 54px;
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.capability-copy h2,
.about-intro h2,
.cta h2 {
  margin: 0;
  font-size: clamp(36px, 4.2vw, 54px);
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 1.22;
}

.section-heading > p:last-child,
.capability-copy > p,
.about-content > p,
.cta p {
  color: var(--text);
}

.section-heading > p:last-child {
  margin: 16px 0 0;
  font-size: 17px;
}

.solutions {
  background: #fff;
}

.scenario-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.scenario-tab {
  position: relative;
  border: 0;
  padding: 0 18px 24px;
  color: var(--text);
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.scenario-tab::after {
  position: absolute;
  right: 18px;
  bottom: -1px;
  left: 18px;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: var(--blue);
  content: "";
  opacity: 0;
  transform: scaleX(0.3);
  transition: opacity 180ms ease, transform 180ms ease;
}

.scenario-tab span {
  display: block;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  transition: color 180ms ease;
}

.scenario-tab small {
  display: block;
  margin-top: 6px;
  font-size: 13px;
}

.scenario-tab:hover span,
.scenario-tab.is-active span {
  color: var(--blue);
}

.scenario-tab.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.scenario-panel {
  display: grid;
  min-height: 520px;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 64px;
  align-items: center;
  padding-top: 50px;
}

.scenario-image {
  overflow: hidden;
  aspect-ratio: 1.48 / 1;
  border-radius: var(--radius-large);
  background: var(--blue-pale);
  box-shadow: var(--shadow-soft);
}

.scenario-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 180ms ease, transform 600ms ease;
}

.scenario-panel.is-changing .scenario-image img {
  opacity: 0.3;
  transform: scale(1.02);
}

.scenario-index {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.scenario-content h3 {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 40px);
  letter-spacing: -0.035em;
  line-height: 1.35;
}

.scenario-content > p:not(.scenario-index) {
  margin: 20px 0 0;
  color: var(--text);
}

.scenario-content ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 28px;
  padding: 0;
  color: #303744;
  list-style: none;
}

.scenario-content li {
  position: relative;
  padding-left: 24px;
}

.scenario-content li::before {
  position: absolute;
  top: 0.72em;
  left: 2px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.text-link {
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid rgba(47, 109, 246, 0.38);
  color: var(--blue);
  font-weight: 700;
  transition: border-color 180ms ease, color 180ms ease;
}

.text-link:hover {
  border-color: var(--blue);
  color: var(--blue-dark);
}

.growth {
  overflow: hidden;
  background: #f3f7ff;
}

.growth-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.growth-steps li {
  position: relative;
  padding: 0 28px;
}

.growth-steps li:not(:last-child)::after {
  position: absolute;
  top: 22px;
  right: -24px;
  width: 48px;
  height: 1px;
  background: #aebbd1;
  content: "";
}

.step-number {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(47, 109, 246, 0.28);
  border-radius: 50%;
  color: var(--blue);
  background: #fff;
  font-size: 13px;
  font-weight: 750;
  box-shadow: 0 10px 28px rgba(47, 109, 246, 0.12);
}

.growth-steps h3 {
  margin: 22px 0 8px;
  font-size: 24px;
}

.growth-steps p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
}

.capabilities {
  background: #10141d;
}

.capability-shell {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
}

.capability-copy {
  position: sticky;
  top: 132px;
  align-self: start;
}

.capability-copy h2 {
  color: #fff;
}

.capability-copy > p:not(.eyebrow) {
  max-width: 430px;
  margin: 22px 0 30px;
  color: #aeb8c9;
}

.capability-list {
  display: grid;
}

.capability-list article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding: 32px 0;
}

.capability-list article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.capability-list article > span {
  color: #6f9aff;
  font-size: 13px;
  font-weight: 700;
}

.capability-list h3 {
  margin: 0;
  color: #fff;
  font-size: 25px;
}

.capability-list p {
  margin: 8px 0 0;
  color: #aeb8c9;
}

.stories {
  background: #fff;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.story-grid article {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  padding: 30px;
  background: #fff;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.story-grid article:hover {
  border-color: rgba(47, 109, 246, 0.22);
  transform: translateY(-5px);
  box-shadow: 0 20px 46px rgba(38, 73, 136, 0.09);
}

.story-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
}

.story-meta span {
  border-radius: 999px;
  padding: 5px 11px;
  color: var(--blue);
  background: var(--blue-pale);
}

.story-meta strong {
  color: #303744;
}

.story-grid blockquote {
  margin: 40px 0 auto;
  font-size: 21px;
  font-weight: 620;
  line-height: 1.7;
}

.story-grid article > p {
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.about {
  border-top: 1px solid var(--line);
  background: var(--surface-alt);
}

.about-shell {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 110px;
}

.about-content > p {
  margin: 0;
  font-size: 18px;
  line-height: 1.9;
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.credentials span {
  border: 1px solid #dbe3ef;
  border-radius: 999px;
  padding: 8px 15px;
  color: #364052;
  background: #fff;
  font-size: 13px;
}

.about-actions {
  display: flex;
  gap: 30px;
  margin-top: 34px;
}

.cta {
  padding: 80px 0;
  color: #fff;
  background: #2468ef;
}

.cta-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.cta .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.cta h2 {
  color: #fff;
}

.cta p:not(.eyebrow) {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.cta-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
}

.site-footer {
  padding: 72px 0 26px;
  color: #c1cad8;
  background: #0c1017;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1.6fr 0.7fr;
  gap: 70px;
}

.footer-brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.footer-brand-mark img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 300px;
  margin: 24px 0 20px;
  color: #909cad;
}

.footer-brand a,
.footer-brand span {
  display: block;
  margin-top: 4px;
  color: #dbe2eb;
  font-size: 14px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-links h3,
.footer-follow h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 15px;
}

.footer-links a {
  display: block;
  margin: 10px 0;
  color: #909cad;
  font-size: 14px;
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: #fff;
}

.follow-grid {
  display: flex;
  gap: 12px;
}

.follow-grid figure {
  margin: 0;
  text-align: center;
}

.follow-grid img {
  width: 78px;
  height: 78px;
  border-radius: 8px;
  object-fit: cover;
  background: #fff;
}

.follow-grid figcaption {
  margin-top: 7px;
  color: #7f8a9b;
  font-size: 12px;
}

.footer-legal {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 54px;
  padding-top: 24px;
  color: #697587;
  font-size: 12px;
}

.footer-legal > div {
  display: flex;
  max-width: 820px;
  flex-wrap: wrap;
  gap: 6px 16px;
}

.footer-legal a {
  transition: color 180ms ease;
}

.footer-legal p {
  flex: 0 0 auto;
  margin: 0;
}

@media (max-width: 1080px) {
  :root {
    --max-width: 960px;
  }

  .desktop-nav {
    gap: 20px;
  }

  .desktop-nav a {
    font-size: 13px;
  }

  .nav-shell {
    gap: 26px;
  }

  .hero h1 {
    white-space: normal;
  }

  .hero-inner {
    grid-template-columns: 54% 46%;
  }

  .proof-item {
    gap: 7px;
    align-items: center;
  }

  .scenario-panel {
    gap: 42px;
  }

  .capability-shell {
    gap: 64px;
  }

  .footer-main {
    grid-template-columns: 1fr 1.8fr;
  }

  .footer-follow {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 68px;
  }

  .nav-shell,
  .section-shell,
  .hero-shell,
  .proof-shell,
  .cta-shell,
  .footer-shell {
    width: min(calc(100% - 36px), 720px);
  }

  .desktop-nav,
  .nav-actions {
    display: none;
  }

  .nav-shell {
    justify-content: space-between;
  }

  .mobile-menu-button {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
  }

  .mobile-menu-button img {
    width: 21px;
    height: 21px;
    filter: invert(1);
  }

  .mobile-menu {
    position: fixed;
    z-index: 49;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    gap: 0;
    overflow: hidden;
    border-bottom: 1px solid transparent;
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: max-height 300ms ease, opacity 220ms ease, transform 220ms ease, border-color 220ms ease;
  }

  .mobile-menu.is-open {
    max-height: calc(100vh - var(--header-height));
    border-color: var(--line);
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu > a {
    width: min(calc(100% - 36px), 720px);
    border-bottom: 1px solid #f1f3f7;
    margin: 0 auto;
    padding: 14px 0;
    font-weight: 600;
  }

  .mobile-menu-actions {
    display: grid;
    width: min(calc(100% - 36px), 720px);
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 0 auto;
    padding: 18px 0 24px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }

  .hero-copy {
    order: 1;
    padding: 62px 24px 34px;
    transform: none;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 58px);
    line-height: 1.15;
  }

  .hero-description {
    margin: 24px 0 28px;
    font-size: 18px;
  }

  .hero-actions {
    align-items: stretch;
    gap: 12px;
  }

  .hero-actions .button-large {
    min-width: 0;
    min-height: 58px;
    padding: 0 20px;
    font-size: 16px;
  }

  .hero-trust {
    margin-top: 34px;
  }

  .hero-visual {
    order: 2;
    height: 560px;
    width: 100%;
    max-width: none;
  }

  .proof-shell {
    min-height: 130px;
  }

  .proof-item strong {
    font-size: 38px;
  }

  .section {
    padding: 88px 0;
  }

  .scenario-tabs {
    grid-template-columns: repeat(4, minmax(176px, 1fr));
    overflow-x: auto;
    scrollbar-width: none;
  }

  .scenario-tabs::-webkit-scrollbar {
    display: none;
  }

  .scenario-panel {
    grid-template-columns: 1fr;
  }

  .scenario-image {
    aspect-ratio: 1.55 / 1;
  }

  .growth-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 0;
  }

  .growth-steps li:nth-child(2)::after {
    display: none;
  }

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

  .capability-copy {
    position: static;
  }

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

  .story-grid article {
    min-height: 250px;
  }

  .about-shell {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .cta-shell {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-follow {
    grid-column: auto;
  }

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

@media (max-width: 560px) {
  .nav-shell,
  .section-shell,
  .hero-shell,
  .proof-shell,
  .cta-shell,
  .footer-shell {
    width: calc(100% - 32px);
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .eyebrow {
    margin-bottom: 13px;
    font-size: 12px;
  }

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

  .hero h1 span {
    display: block;
  }

  .hero-description {
    margin: 22px 0 26px;
    font-size: 17px;
  }

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

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

  .hero-trust {
    margin-top: 30px;
  }

  .hero-visual {
    height: 316px;
  }

  .proof-shell {
    grid-template-columns: repeat(3, 1fr);
    min-height: 112px;
  }

  .proof-divider {
    display: none;
  }

  .proof-item {
    gap: 5px;
  }

  .proof-item strong {
    font-size: 26px;
  }

  .proof-item p {
    font-size: 12px;
  }

  .section {
    padding: 72px 0;
  }

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

  .section-heading h2,
  .capability-copy h2,
  .about-intro h2,
  .cta h2 {
    font-size: 34px;
  }

  .section-heading > p:last-child {
    font-size: 15px;
  }

  .scenario-tabs {
    margin-right: -16px;
    margin-left: -16px;
    padding: 0 16px;
  }

  .scenario-tab {
    min-width: 158px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .scenario-tab::after {
    right: 10px;
    left: 10px;
  }

  .scenario-tab span {
    font-size: 17px;
  }

  .scenario-panel {
    min-height: 0;
    gap: 32px;
    padding-top: 34px;
  }

  .scenario-image {
    aspect-ratio: 1.12 / 1;
    border-radius: 22px;
  }

  .scenario-content h3 {
    font-size: 27px;
  }

  .growth-steps {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .growth-steps li {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    padding: 0;
  }

  .growth-steps li::after {
    display: none;
  }

  .growth-steps h3 {
    margin: 0 0 5px;
    font-size: 22px;
  }

  .capability-shell {
    gap: 50px;
  }

  .capability-list article {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .story-grid blockquote {
    margin-top: 30px;
    font-size: 18px;
  }

  .about-content > p {
    font-size: 16px;
  }

  .cta {
    padding: 64px 0;
  }

  .cta-actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  .cta-actions .button {
    padding: 0 14px;
  }

  .site-footer {
    padding-top: 58px;
  }

  .footer-main {
    gap: 46px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 34px 24px;
  }

  .footer-follow {
    grid-column: 1 / -1;
  }
}

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

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