@font-face {
  font-family: "Noto Home";
  src: url("./assets/fonts/noto-sans-sc-home-v2.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #171d24;
  --ink-soft: #5f6c77;
  --blue: #17374a;
  --blue-deep: #102d3e;
  --cool: #eef3f6;
  --line: #cbd7df;
  --white: #ffffff;
  --ease: cubic-bezier(0.22, 0.8, 0.22, 1);
  --shell: min(1320px, calc(100vw - 112px));
  --column-gap: clamp(32px, 4.5vw, 64px);
  color: var(--ink);
  background: var(--white);
  font-family: "Noto Home", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--white);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

button,
summary {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px var(--white);
}

::selection {
  color: var(--white);
  background: var(--blue);
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 20px;
  padding: 8px 14px;
  color: var(--white);
  background: var(--blue);
  transform: translateY(-160%);
  transition: transform 180ms var(--ease);
}

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

.site-header {
  position: relative;
  z-index: 20;
  height: 76px;
  border-bottom: 1px solid #eef1f3;
  background: var(--white);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

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

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-right: 13px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--white);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: normal;
}

.brand-copy strong {
  display: block;
  color: var(--ink);
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.6vw, 45px);
  height: 100%;
  font-size: 15px;
  white-space: nowrap;
}

.site-nav > a,
.site-nav summary {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
  color: var(--ink);
  transition: color 180ms ease;
}

.site-nav > a::after,
.site-nav summary::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms var(--ease);
}

.site-nav > a:hover,
.site-nav summary:hover {
  color: var(--blue);
}

.site-nav > a:hover::after,
.site-nav summary:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.more-services {
  position: relative;
  height: 100%;
}

.more-services summary {
  list-style: none;
  cursor: pointer;
}

.more-services summary::-webkit-details-marker {
  display: none;
}

.more-services summary::before {
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-2px);
  order: 2;
}

.more-menu {
  position: absolute;
  top: calc(100% - 8px);
  right: -18px;
  display: grid;
  min-width: 150px;
  padding: 12px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 16px 32px rgb(23 29 36 / 12%);
}

.more-menu a {
  padding: 8px 10px;
  font-size: 14px;
}

.more-menu a:hover {
  color: var(--blue);
  background: var(--cool);
}

.nav-login {
  padding-inline: 2px;
}

.nav-contact {
  padding: 9px 15px;
  color: var(--white) !important;
  background: var(--blue);
}

.nav-contact::after {
  display: none;
}

.nav-contact:hover {
  background: var(--blue-deep);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 6px auto;
  background: var(--ink);
}

.home-hero {
  background: var(--ink);
}

.hero-carousel {
  position: relative;
  min-height: clamp(560px, 40vw, 580px);
  color: var(--white);
  isolation: isolate;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide[hidden] {
  display: none;
}

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

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(7 16 22 / 76%) 0%, rgb(7 16 22 / 43%) 39%, rgb(7 16 22 / 2%) 80%), linear-gradient(0deg, rgb(5 13 18 / 68%) 0%, transparent 44%);
  pointer-events: none;
}

.hero-content {
  position: absolute;
  right: 0;
  bottom: 119px;
  left: 0;
  z-index: 2;
}

.hero-context {
  max-width: 28em;
  margin: 0 0 18px;
  color: rgb(255 255 255 / 82%);
  font-size: 15px;
  letter-spacing: 0.08em;
}

.hero-content h1,
.hero-content h2 {
  max-width: 12em;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.375rem, 3.28vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hero-lead {
  margin: 20px 0 26px;
  color: rgb(255 255 255 / 90%);
  font-size: clamp(18px, 1.4vw, 20px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 22px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

.button-light:hover {
  color: var(--white);
  background: var(--blue);
}

.media-note {
  position: absolute;
  right: 28px;
  bottom: 88px;
  z-index: 2;
  color: rgb(255 255 255 / 75%);
  font-size: 13px;
}

.hero-carousel-ui {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 16px;
  border: 1px solid rgb(255 255 255 / 30%);
  background: var(--blue-deep);
}

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

.hero-tabs button {
  position: relative;
  min-height: 38px;
  padding: 8px 10px 7px;
  color: rgb(255 255 255 / 66%);
  background: transparent;
  font-size: 14px;
  transition: color 180ms ease;
}

.hero-tabs button::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--white);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms var(--ease);
}

.hero-tabs button:hover,
.hero-tabs button[aria-selected="true"] {
  color: var(--white);
  background: rgb(255 255 255 / 12%);
}

.hero-tabs button[aria-selected="true"]::after {
  transform: scaleX(1);
}

.hero-controls {
  display: flex;
  align-items: center;
  gap: 4px;
  padding-left: 12px;
  border-left: 1px solid rgb(255 255 255 / 30%);
}

.control-button {
  min-width: 58px;
  min-height: 38px;
  padding: 8px 11px;
  color: var(--white);
  border: 1px solid rgb(255 255 255 / 24%);
  background: rgb(255 255 255 / 10%);
  font-size: 13px;
  transition: background 180ms ease;
}

.control-button:hover {
  background: rgb(255 255 255 / 20%);
}

.hero-carousel-ui {
  display: none;
}

html.js .hero-carousel-ui {
  display: flex;
}

.section-white,
.section-cool,
.section-blue {
  padding: 72px 0;
}

.recognition {
  padding: 48px 0 64px;
}

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

.section-cool {
  background: var(--cool);
}

.section-blue {
  color: var(--white);
  background: var(--blue);
}

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

h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(1.75rem, 2.35vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.recognition-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: var(--column-gap);
  align-items: start;
}

.recognition-copy {
  max-width: 36em;
  padding-top: 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.recognition-copy .lede {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.6;
}

.recognition-copy h2 {
  margin-bottom: 16px;
}

.recognition-copy > p:not(.lede) {
  margin-bottom: 16px;
  color: var(--ink-soft);
  font-size: 16px;
}

.recognition-copy .text-link {
  margin-top: 5px;
}

.recognition-image {
  position: relative;
  margin: 0;
}

.recognition-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.78;
  object-fit: cover;
}

.recognition-image figcaption {
  position: absolute;
  right: 14px;
  bottom: 12px;
  padding: 2px 8px;
  color: var(--white);
  background: rgb(23 29 36 / 60%);
  font-size: 12px;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.8fr);
  gap: var(--column-gap);
  align-items: end;
  margin-bottom: 40px;
}

.section-intro > p {
  max-width: 35em;
  margin-bottom: 5px;
  color: var(--ink-soft);
  font-size: 16px;
}

.section-intro-narrow {
  margin-bottom: 40px;
}

.section-kicker,
.story-label {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.section-kicker-light {
  color: #afc7d4;
}

.solution-list {
  border-top: 1px solid var(--blue);
}

.solution-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(280px, 1fr);
  gap: var(--column-gap);
  align-items: center;
  min-height: 96px;
  border-bottom: 1px solid var(--line);
}

.solution-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.solution-name h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
}

.solution-row > p {
  max-width: 34em;
  margin: 0;
  color: var(--ink-soft);
}

.solution-state {
  flex: 0 0 auto;
  padding: 4px 9px;
  color: var(--white);
  border: 1px solid var(--blue);
  background: var(--blue);
  font-size: 12px;
  white-space: nowrap;
}

.solution-state-muted {
  color: var(--ink-soft);
  border-color: var(--line);
  background: transparent;
}

.section-footnote {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.feature-story {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(280px, 0.76fr);
  gap: var(--column-gap);
  align-items: center;
  margin-bottom: 64px;
}

.feature-story-space {
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
}

.story-image {
  position: relative;
  margin: 0;
}

.story-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.78;
  object-fit: cover;
}

.story-image figcaption {
  position: absolute;
  right: 14px;
  bottom: 12px;
  padding: 2px 8px;
  color: var(--white);
  background: rgb(23 29 36 / 60%);
  font-size: 12px;
}

.story-copy {
  max-width: 32em;
}

.story-label {
  margin-bottom: 12px;
}

.story-copy h3 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(1.5rem, 2vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.story-copy > p:not(.story-label) {
  margin-bottom: 16px;
  color: var(--ink-soft);
  font-size: 16px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--blue);
  color: var(--blue);
  font-weight: 700;
}

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

.scene-switcher {
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.scene-switcher-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.scene-switcher-head h3 {
  margin: 0;
  font-size: 20px;
}

.scene-switcher-head p {
  max-width: 32em;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.scene-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  background: var(--cool);
}

.scene-tabs button {
  position: relative;
  min-height: 44px;
  padding: 10px 16px;
  margin: 0;
  border-right: 1px solid var(--line);
  color: var(--ink-soft);
  background: transparent;
  font-size: 15px;
  font-weight: 600;
}

.scene-tabs button:last-child {
  border-right: 0;
}

.scene-tabs button:hover {
  color: var(--blue);
  background: var(--white);
}

.scene-tabs button[aria-selected="true"] {
  color: var(--white);
  background: var(--blue);
}

.scene-panels {
  display: grid;
  gap: 22px;
}

.scene-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(220px, 0.7fr);
  gap: 32px;
  align-items: center;
  padding: 0 0 14px;
}

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

html.js .scene-panel:not(.is-active) {
  display: none;
}

.scene-panel img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.78;
  object-fit: cover;
}

.scene-panel h4 {
  margin-bottom: 8px;
  font-size: 20px;
}

.scene-panel p {
  max-width: 26em;
  margin: 0;
  color: var(--ink-soft);
}

.scene-panel > span {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 2px 7px;
  color: var(--white);
  background: rgb(23 29 36 / 60%);
  font-size: 12px;
}

.noscript-note {
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.value-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1fr);
  gap: var(--column-gap);
}

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

.value-intro > p:last-child {
  max-width: 26em;
  margin-top: 20px;
  color: #c1d0d7;
  font-size: 16px;
}

.value-list {
  border-top: 1px solid rgb(255 255 255 / 30%);
}

.value-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgb(255 255 255 / 30%);
}

.value-row h3 {
  margin: 0;
  color: var(--white);
  font-size: 20px;
}

.value-row p {
  max-width: 27em;
  margin: 0;
  color: #d6e0e4;
}

.cooperation-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(340px, 1fr);
  gap: var(--column-gap);
}

.cooperation-grid h2 {
  margin-top: 16px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  position: relative;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 7px;
  left: 0;
  width: 16px;
  height: 1px;
  background: var(--blue);
  content: "";
}

.faq-list summary span::after {
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.faq-list details[open] summary span::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 36em;
  padding: 0 36px 18px 0;
  margin: 0;
  color: var(--ink-soft);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(300px, 0.8fr);
  gap: var(--column-gap);
}

.contact-details {
  padding-top: 0;
}

.contact-details > p:first-child {
  max-width: 33em;
  color: var(--ink-soft);
  font-size: 16px;
}

.contact-email {
  display: inline-block;
  max-width: 100%;
  margin: 20px 0 24px;
  border-bottom: 2px solid var(--blue);
  color: var(--blue);
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 700;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.contact-email:hover {
  color: var(--blue);
}

.contact-address {
  color: var(--ink-soft);
  font-size: 14px;
}

.site-footer {
  padding: 36px 0 24px;
  color: #c3d0d7;
  background: var(--blue-deep);
}

.footer-main {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 50px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgb(255 255 255 / 18%);
}

.footer-brand .brand-copy strong {
  color: var(--white);
  font-size: 16px;
}

.footer-brand .brand-mark {
  width: 34px;
  height: 34px;
  margin-right: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 8px 24px;
  max-width: 700px;
  font-size: 13px;
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 28px;
  padding-top: 20px;
  color: #a9bbc5;
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a:hover {
  color: var(--white);
}

@media (max-width: 1080px) {
  :root {
    --shell: min(100% - 64px, 900px);
  }

  .header-shell {
    gap: 24px;
  }

  .header-shell > .brand {
    flex: 1 1 auto;
  }

  .header-shell .brand-copy {
    min-width: 0;
  }

  .site-nav {
    flex: 0 0 auto;
    gap: 14px;
    font-size: 14px;
  }

  .brand-copy strong {
    max-width: 15em;
    font-size: 16px;
    line-height: 1.3;
    white-space: normal;
  }

  .feature-story,
  .feature-story-space {
    gap: 32px;
  }

  .section-white,
  .section-cool,
  .section-blue {
    padding: 64px 0;
  }
}

@media (max-width: 780px) {
  :root {
    --shell: calc(100% - 40px);
  }

  .site-header {
    height: auto;
    min-height: 68px;
  }

  .header-shell {
    flex-wrap: wrap;
    gap: 0 12px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    margin-right: 9px;
  }

  .brand-copy strong {
    max-width: none;
    overflow: visible;
    font-size: 13px;
    line-height: 1.25;
    text-overflow: clip;
    white-space: normal;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex: 0 0 100%;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    gap: 0 18px;
    padding: 12px 0 22px;
    border-top: 1px solid var(--line);
    background: var(--white);
    box-shadow: none;
  }

  html.navigation-ready .site-header {
    height: 68px;
  }

  html.navigation-ready .header-shell {
    flex-wrap: nowrap;
  }

  html.navigation-ready .nav-toggle {
    display: block;
  }

  html.navigation-ready .site-nav {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    display: none;
    flex: 0 1 auto;
    width: auto;
    gap: 0;
    padding: 12px 20px 22px;
    border-top: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 18px 35px rgb(23 29 36 / 12%);
  }

  html.navigation-ready .site-nav.is-open {
    display: grid;
    gap: 0;
  }

  .site-nav > a,
  .site-nav summary {
    height: auto;
    min-height: 48px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav > a::after,
  .site-nav summary::after {
    bottom: 0;
  }

  .nav-contact {
    justify-content: center;
    margin-top: 13px;
    border: 0 !important;
  }

  .more-services {
    height: auto;
  }

  .more-menu {
    position: static;
    min-width: 0;
    padding: 0 0 6px 16px;
    border: 0;
    box-shadow: none;
  }

  .more-menu a {
    display: block;
    border-bottom: 1px solid var(--line);
  }

  .hero-carousel {
    min-height: 520px;
  }

  .hero-slide > img {
    object-position: 61% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgb(7 16 22 / 74%) 0%, rgb(7 16 22 / 25%) 100%), linear-gradient(0deg, rgb(5 13 18 / 82%) 0%, transparent 61%);
  }

  .hero-content {
    bottom: 164px;
  }

  .hero-context {
    max-width: 20em;
    margin-bottom: 13px;
    font-size: 13px;
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: clamp(1.75rem, 7.2vw, 2rem);
    letter-spacing: -0.02em;
  }

  .hero-lead {
    margin-block: 12px 18px;
    font-size: 16px;
  }

  .hero-carousel-ui {
    right: 0;
    bottom: 0;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 8px;
  }

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

  .hero-tabs button {
    font-size: 13px;
  }

  .hero-controls {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 0;
    border-left: 0;
  }

  .media-note {
    right: 20px;
    bottom: 116px;
    font-size: 11px;
  }

  .section-white,
  .section-cool,
  .section-blue {
    padding: 48px 0;
  }

  .recognition {
    padding: 32px 0 48px;
  }

  .recognition-grid,
  .section-intro,
  .solution-row,
  .value-grid,
  .cooperation-grid,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  h2 {
    font-size: clamp(1.5rem, 6.4vw, 1.75rem);
  }

  .recognition-copy,
  .section-intro > p {
    padding-top: 0;
    font-size: 16px;
  }

  .section-intro,
  .section-intro-narrow {
    gap: 20px;
    margin-bottom: 28px;
  }

  .solution-row {
    min-height: 0;
    gap: 10px;
    padding: 20px 0;
  }

  .solution-row > p {
    margin-bottom: 0;
  }

  .feature-story,
  .feature-story-space {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }

  .feature-story-space .story-copy {
    order: -1;
  }

  .story-copy > p:not(.story-label) {
    font-size: 16px;
  }

  .scene-switcher {
    padding-top: 24px;
  }

  .scene-switcher-head {
    display: block;
  }

  .scene-switcher-head h3 {
    margin-bottom: 8px;
  }

  .scene-tabs {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    padding-right: 0;
  }

  .scene-tabs button {
    padding-inline: 8px;
  }

  .scene-panel {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .scene-panel h4 {
    margin-bottom: 7px;
  }

  .value-row {
    grid-template-columns: 56px 1fr;
    gap: 16px;
  }

  .cooperation-grid h2 {
    margin-top: 12px;
  }

  .footer-main {
    display: block;
    padding-bottom: 24px;
  }

  .footer-links {
    justify-content: start;
    margin-top: 20px;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom p,
  .footer-bottom a {
    display: block;
    margin-bottom: 6px;
  }
}

@media (max-width: 390px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .brand-copy strong {
    max-width: 12em;
    font-size: 13px;
  }

  .hero-tabs button {
    padding-inline: 4px;
  }

  .control-button {
    min-width: 0;
    padding-inline: 8px;
    font-size: 13px;
  }
}

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

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