:root {
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
  color: #12223d;
  background: #ffffff;
  font-synthesis: none;
  --blue-950: #072a72;
  --blue-900: #063d9f;
  --blue-700: #0a5be8;
  --blue-600: #1768f2;
  --cyan: #27d0e2;
  --orange: #ffb657;
  --line: #e7edf7;
  --muted: #66758d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #fff;
}

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

button {
  font: inherit;
}

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

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  height: 76px;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(225, 233, 246, .9);
  box-shadow: 0 8px 28px rgba(7, 42, 114, .06);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(1240px, calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

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

.channel-divider {
  width: 1px;
  height: 28px;
  background: #dbe3ef;
  margin: 0 20px;
}

.channel-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  color: #124fb8;
}

.channel-brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 9px;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 32px;
  color: #38465b;
  font-size: 15px;
}

.main-nav a:not(.nav-cta):hover {
  color: var(--blue-600);
}

.nav-cta {
  padding: 11px 22px;
  color: #fff;
  background: var(--blue-700);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(10, 91, 232, .22);
}

.menu-button {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
  padding: 8px;
}

.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: #17345f;
}

.hero {
  min-height: 720px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(125deg, #051d52 0%, #063f9d 46%, #0971dc 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
}

.hero-glow-one {
  width: 520px;
  height: 520px;
  right: -120px;
  top: -180px;
  background: rgba(38, 216, 231, .17);
}

.hero-glow-two {
  width: 380px;
  height: 380px;
  left: 37%;
  bottom: -220px;
  background: rgba(33, 113, 255, .28);
}

.hero-grid {
  min-height: 720px;
  position: relative;
  display: grid;
  grid-template-columns: .93fr 1.07fr;
  align-items: center;
  gap: 64px;
  padding: 70px 0 60px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: #d6e9ff;
  letter-spacing: .08em;
}

.eyebrow span {
  padding: 7px 12px;
  color: #072a72;
  background: #87e8f3;
  border-radius: 4px;
  font-weight: 700;
}

.eyebrow i {
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, .55);
}

.hero h1 {
  margin: 28px 0 20px;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.12;
  letter-spacing: -.04em;
}

.hero h1 em {
  font-style: normal;
  color: #80eef3;
}

.hero-copy>p {
  max-width: 560px;
  margin: 0;
  color: #d8e8ff;
  font-size: 18px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 8px;
  font-weight: 700;
  transition: transform .2s ease;
}

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

.button-primary {
  color: #073683;
  background: linear-gradient(135deg, #7de8ef, #d3fbff);
  box-shadow: 0 12px 30px rgba(78, 222, 234, .22);
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .08);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  color: #c7d9f4;
  font-size: 14px;
}

.hero-proof b {
  color: #fff;
}

.hero-visual {
  position: relative;
  height: 560px;
}

.brand-orbit {
  position: absolute;
  z-index: 4;
  right: 7%;
  top: 3%;
  width: 90px;
  height: 90px;
  padding: 9px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(2, 18, 61, .3);
}

.brand-orbit img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 15px;
}

.screen-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, .95);
  border-radius: 27px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(1, 22, 71, .38);
}

.screen-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.screen-card-main {
  left: 5%;
  top: 9%;
  /* width: 330px; */
  height: 560px;
  transform: rotate(-3deg);
}

.screen-card-side {
  right: 0;
  top: 105px;
  /* width: 270px; */
  height: 456px;
  transform: rotate(4deg);
}

.floating-label {
  position: absolute;
  z-index: 5;
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 999px;
  background: rgba(5, 34, 91, .82);
  box-shadow: 0 10px 34px rgba(0, 20, 70, .25);
  backdrop-filter: blur(8px);
  font-size: 13px;
}

.floating-label-one {
  left: 0;
  top: 34%;
}

.floating-label-two {
  right: -2%;
  bottom: 5%;
}

section {
  scroll-margin-top: 75px;
}

.pain-section {
  padding: 70px 0;
  background: #f6f9fe;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading>span,
.section-kicker {
  display: inline-block;
  margin-bottom: 13px;
  color: var(--blue-600);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .16em;
}

.section-heading h2,
.employee-copy h2,
.devices-copy h2 {
  margin: 0;
  color: #10213e;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.28;
  letter-spacing: -.03em;
}

.section-heading p,
.employee-copy>p,
.devices-copy>p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.compact-heading {
  margin-bottom: 32px;
}

.compact-heading h2 {
  font-size: 34px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.pain-item {
  min-height: 104px;
  padding: 21px 17px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #e2eaf5;
  border-radius: 12px;
  background: #fff;
  transition: border .2s, transform .2s;
}

.pain-item:hover {
  transform: translateY(-4px);
  border-color: #a9c7f5;
}

.pain-item b {
  color: #82a2d1;
  font-size: 12px;
}

.pain-item span {
  font-size: 15px;
  font-weight: 700;
}

.feature-section {
  padding: 110px 0 120px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.capability-card {
  min-height: 250px;
  position: relative;
  padding: 30px 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(25, 67, 133, .06);
}

.capability-card::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -60px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #f0f6ff;
}

.capability-card:hover {
  border-color: #bdd3f7;
  box-shadow: 0 18px 50px rgba(25, 67, 133, .11);
  transform: translateY(-3px);
}

.capability-number {
  color: #9cb6dd;
  font-size: 13px;
  font-weight: 800;
}

.capability-card h3 {
  margin: 28px 0 11px;
  font-size: 22px;
}

.capability-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 14px;
}

.capability-card>span {
  position: absolute;
  left: 26px;
  bottom: 24px;
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 700;
}

.employee-section {
  padding: 110px 0;
  overflow: hidden;
  background: #f1f6ff;
}

.employee-grid {
  display: grid;
  grid-template-columns: 1fr .84fr;
  gap: 90px;
  align-items: center;
}

.employee-copy h2 {
  max-width: 610px;
}

.employee-copy>p {
  margin: 22px 0 30px;
}

.employee-copy ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.employee-copy li {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 18px;
  padding: 16px 18px;
  border-left: 3px solid #b9cef2;
  background: rgba(255, 255, 255, .72);
}

.employee-copy li b {
  color: #17345f;
}

.employee-copy li span {
  color: var(--muted);
  font-size: 14px;
}

.employee-image-wrap {
  max-width: 420px;
  justify-self: center;
  position: relative;
  padding: 10px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(24, 68, 139, .2);
}

.employee-image-wrap>img {
  width: 100%;
  max-height: 690px;
  object-fit: cover;
  object-position: top;
  border-radius: 22px;
}

.employee-stat {
  position: absolute;
  left: -52px;
  bottom: 46px;
  width: 230px;
  padding: 18px 20px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #0742a6, #0b75ea);
  box-shadow: 0 16px 40px rgba(7, 67, 167, .28);
}

.employee-stat b,
.employee-stat span {
  display: block;
}

.employee-stat b {
  margin-bottom: 5px;
  font-size: 20px;
}

.employee-stat span {
  color: #d5e8ff;
  font-size: 12px;
}

.showcase-section {
  padding: 110px 0 120px;
}

.showcase-shell {
  overflow: hidden;
  border: 1px solid #dce7f6;
  border-radius: 24px;
  background: #f6f9fd;
  box-shadow: 0 24px 70px rgba(24, 68, 139, .1);
}

.showcase-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid #dce7f6;
  background: #fff;
}

.showcase-tabs button {
  min-height: 64px;
  border: 0;
  border-right: 1px solid #e5ecf7;
  color: #60718a;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
}

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

.showcase-tabs button.active {
  color: var(--blue-700);
  box-shadow: inset 0 -3px 0 var(--blue-700);
  background: #f7faff;
}

.showcase-content {
  min-height: 660px;
  padding: 52px 58px;
  display: grid;
  grid-template-columns: .78fr 340px .72fr;
  gap: 54px;
  align-items: center;
}

.showcase-copy>span {
  color: #b8cae5;
  font-size: 56px;
  font-weight: 800;
}

.showcase-copy h3 {
  margin: 16px 0;
  font-size: 32px;
  line-height: 1.4;
}

.showcase-copy p {
  color: var(--muted);
  line-height: 1.85;
}

.showcase-device {
  height: 700px;
  padding: 9px;
  overflow: hidden;
  border: 5px solid #12213b;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(15, 40, 82, .2);
}

.showcase-device img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 20px;
}

.showcase-thumbs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.showcase-thumbs button {
  padding: 8px;
  border: 1px solid #dce5f2;
  border-radius: 12px;
  background: #fff;
  color: #51627a;
  cursor: pointer;
}

.showcase-thumbs button.active {
  border-color: var(--blue-600);
  box-shadow: 0 8px 24px rgba(10, 91, 232, .16);
  color: var(--blue-600);
}

.showcase-thumbs img {
  width: 100%;
  /* height: 300px; */
  object-fit: cover;
  object-position: top;
  border-radius: 8px;
}

.showcase-thumbs span {
  display: block;
  padding: 8px 2px 4px;
  font-size: 12px;
  font-weight: 700;
}

.advantages-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0 120px;
  background: linear-gradient(135deg, #061f58, #0745a6 62%, #0877d8);
}

.advantages-section::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -220px;
  top: -220px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 0 0 80px rgba(255, 255, 255, .025), 0 0 0 160px rgba(255, 255, 255, .018);
}

.light-heading>span {
  color: #77e8ef;
}

.light-heading h2 {
  color: #fff;
}

.advantage-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.advantage-grid article {
  min-height: 260px;
  padding: 30px 26px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 15px;
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(8px);
}

.advantage-grid strong {
  color: #66dce8;
  font-size: 13px;
}

.advantage-grid h3 {
  margin: 42px 0 14px;
  color: #fff;
  font-size: 24px;
}

.advantage-grid p {
  color: #c8dcfa;
  line-height: 1.8;
  font-size: 14px;
}

.devices-section {
  padding: 120px 0 130px;
  overflow: hidden;
}

.devices-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.devices-copy>p {
  margin: 22px 0 28px;
}

.device-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.device-labels span {
  padding: 9px 13px;
  border: 1px solid #d9e5f5;
  border-radius: 6px;
  color: #35527b;
  background: #f8fbff;
  font-size: 13px;
}

.device-composition {
  height: 490px;
  position: relative;
}

.desktop-frame {
  position: absolute;
  left: 0;
  top: 20px;
  width: 590px;
  height: 370px;
  overflow: hidden;
  border: 10px solid #172943;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(24, 68, 139, .2);
}

.desktop-top {
  height: 23px;
  padding: 7px 9px;
  background: #eaf0f8;
  display: flex;
  gap: 5px;
}

.desktop-top i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9fb1c9;
}

.desktop-frame img {
  width: 100%;
  height: calc(100% - 23px);
  object-fit: cover;
  object-position: top;
}

.phone-frame {
  position: absolute;
  right: 2%;
  bottom: 0;
  width: 210px;
  /* height: 420px; */
  padding: 7px;
  overflow: hidden;
  border: 5px solid #12213b;
  border-radius: 27px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(16, 52, 108, .28);
}

.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 17px;
}

.contact-section {
  padding: 0 0 100px;
}

.contact-card {
  min-height: 260px;
  padding: 55px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(120deg, #083b96, #0872da);
  box-shadow: 0 24px 70px rgba(7, 62, 155, .2);
}

.contact-card>div>span {
  color: #8cecf2;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
}

.contact-card h2 {
  margin: 14px 0 10px;
  font-size: 38px;
}

.contact-card p {
  margin: 0;
  color: #d4e6ff;
}

.contact-actions {
  min-width: 260px;
  display: grid;
  gap: 10px;
}

.contact-actions button {
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, .09);
  cursor: pointer;
}

.contact-actions button:first-child {
  color: #073683;
  background: #fff;
}

footer {
  padding: 45px 0;
  color: #9fb0ca;
  background: #071936;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 10px;
}

.footer-brand b,
.footer-brand span {
  display: block;
}

.footer-brand b {
  margin-bottom: 5px;
  color: #fff;
  font-size: 18px;
}

.footer-brand span {
  font-size: 12px;
}

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 13px;
}

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

.footer-inner>p {
  margin: 0;
  text-align: right;
  font-size: 12px;
  line-height: 1.8;
}

.toast {
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  padding: 12px 20px;
  border-radius: 8px;
  color: #fff;
  background: rgba(6, 24, 55, .94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
  font-size: 14px;
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 20px;
  }

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

  .screen-card-main {
    width: 240px;
    height: 500px;
  }

  .screen-card-side {
    width: 190px;
    height: 405px;
  }

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

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

  .showcase-content {
    grid-template-columns: .7fr 310px;
  }

  .showcase-thumbs {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, 1fr);
  }

  .showcase-thumbs img {
    /* height: 100px; */
  }

  .desktop-frame {
    width: 510px;
  }
}

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

  .container {
    width: min(100% - 32px, 680px);
  }

  .parent-brand img {
    width: 108px;
  }

  .channel-divider {
    margin: 0 12px;
  }

  .channel-brand span {
    display: none;
  }

  .channel-brand img {
    width: 34px;
    height: 34px;
  }

  .menu-button {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 67px;
    padding: 16px;
    border: 1px solid #e0e8f3;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(7, 42, 114, .18);
  }

  .main-nav.is-open {
    display: grid;
    gap: 0;
  }

  .main-nav a {
    padding: 13px 12px;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding: 74px 0 90px;
  }

  .hero-copy {
    text-align: center;
  }

  .eyebrow,
  .hero-actions,
  .hero-proof {
    justify-content: center;
  }

  .hero-copy>p {
    margin: 0 auto;
  }

  .hero-visual {
    width: 100%;
    max-width: 620px;
    height: 590px;
    margin: 20px auto 0;
  }

  .screen-card-main {
    left: 12%;
  }

  .screen-card-side {
    right: 9%;
  }

  .feature-section,
  .employee-section,
  .showcase-section,
  .advantages-section,
  .devices-section {
    padding: 82px 0;
  }

  .employee-grid,
  .devices-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .employee-copy {
    text-align: center;
  }

  .employee-copy ul {
    text-align: left;
  }

  .employee-image-wrap {
    /* width: 410px; */
    max-width: 85%;
  }

  .showcase-content {
    grid-template-columns: 1fr;
    padding: 36px 24px;
  }

  .showcase-copy {
    text-align: center;
  }

  .showcase-device {
    width: 310px;
    margin: 0 auto;
  }

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

  .devices-copy {
    text-align: center;
  }

  .device-labels {
    justify-content: center;
  }

  .device-composition {
    width: min(100%, 640px);
    margin: 0 auto;
  }

  .contact-card {
    padding: 44px 36px;
    display: grid;
    text-align: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 26px;
    text-align: center;
  }

  .footer-brand,
  .footer-links {
    justify-content: center;
  }

  .footer-inner>p {
    text-align: center;
  }
}

@media (max-width: 560px) {
  .header-inner {
    width: calc(100% - 24px);
  }

  .parent-brand img {
    width: 94px;
  }

  .channel-divider {
    height: 22px;
    margin: 0 9px;
  }

  .hero-grid {
    padding-top: 60px;
  }

  .eyebrow {
    gap: 8px;
    font-size: 12px;
  }

  .eyebrow i {
    width: 14px;
  }

  .hero h1 {
    margin-top: 24px;
    font-size: 46px;
  }

  .hero-copy>p {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-visual {
    height: 480px;
  }

  .screen-card {
    border-width: 5px;
    border-radius: 20px;
  }

  .screen-card-main {
    left: 2%;
    width: 245px;
    height: 420px;
  }

  .screen-card-side {
    right: 0;
    top: 90px;
    width: 188px;
    height: 335px;
  }

  .brand-orbit {
    right: 3%;
    top: 0;
    width: 64px;
    height: 64px;
    border-radius: 17px;
  }

  .floating-label {
    padding: 8px 12px;
    font-size: 11px;
  }

  .floating-label-one {
    left: 0;
    top: 64%;
  }

  .floating-label-two {
    right: 0;
    bottom: 4%;
  }

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

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

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

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

  .capability-card {
    min-height: 230px;
  }

  .employee-copy li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .employee-stat {
    left: -18px;
    bottom: 32px;
    width: 205px;
  }

  .showcase-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-tabs button:nth-child(2) {
    border-right: 0;
  }

  .showcase-tabs button:nth-child(-n+2) {
    border-bottom: 1px solid #e5ecf7;
  }

  .showcase-device {
    width: min(100%, 290px);
    height: 520px;
  }

  .showcase-thumbs {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-thumbs img {
    /* height: 110px; */
  }

  .device-composition {
    height: 365px;
  }

  .desktop-frame {
    width: 92%;
    height: 270px;
    border-width: 7px;
  }

  .phone-frame {
    width: 145px;
    /* height: 290px; */
    border-width: 4px;
  }

  .contact-card h2 {
    font-size: 30px;
  }

  .contact-card {
    width: calc(100% - 28px);
    padding: 38px 22px;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

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

  * {
    transition: none !important;
  }
}