:root {
  --bg: #000000;
  --panel: #071015;
  --panel-soft: #0b141a;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.62);
  --muted-strong: rgba(255, 255, 255, 0.8);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --cyan: #2ceaff;
  --cyan-deep: #00cae0;
  --blue: #178cde;
  --green: #00ffe4;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --page-pad: clamp(20px, 8.33vw, 160px);
  --content-max: 1600px;
  --header-height: 64px;
  color-scheme: dark;
  font-family:
    "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Source Han Sans SC", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 6%, rgba(0, 202, 224, 0.08), transparent 24rem),
    var(--bg);
  color: var(--text);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button {
  border: 0;
  font: inherit;
}

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

img,
svg {
  display: block;
}

main {
  overflow: hidden;
}

.ambient {
  position: fixed;
  z-index: 0;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  opacity: 0.13;
  pointer-events: none;
  filter: blur(100px);
}

.ambient-a {
  top: 14rem;
  right: -15rem;
  background: #00d6ff;
}

.ambient-b {
  top: 72rem;
  left: -18rem;
  background: #1978ff;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(16px);
  transition:
    border-color 0.3s ease,
    background 0.3s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(0, 0, 0, 0.92);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--content-max);
  height: var(--header-height);
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, #00ffe4 0%, #178cde 100%);
  color: #001116;
  box-shadow: 0 0 24px rgba(0, 202, 224, 0.22);
}

.brand-mark svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.5;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-size: 17px;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.46);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.desktop-nav {
  position: absolute;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 36px;
  transform: translateX(-50%);
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  transition: color 0.25s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--cyan);
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover {
  color: #fff;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  white-space: nowrap;
  cursor: pointer;
}

.header-cta {
  min-width: 112px;
  padding: 11px 16px;
  border: 1px solid rgba(44, 234, 255, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(0, 198, 224, 0.16);
  color: var(--cyan);
  font-size: 14px;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.header-cta svg {
  width: 15px;
  height: 15px;
}

.header-cta:hover {
  border-color: rgba(44, 234, 255, 0.52);
  background: rgba(0, 198, 224, 0.25);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.menu-toggle svg {
  width: 21px;
  height: 21px;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 900px;
  padding: 178px var(--page-pad) 108px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 72%, #000 100%),
    radial-gradient(circle at 75% 32%, rgba(10, 178, 230, 0.11), transparent 36rem);
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(54px, 7.15vw, 138px);
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
}

.hero-copy {
  flex: 0 1 520px;
}

.hero-copy h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(50px, 4.15vw, 72px);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.17;
}

.hero-copy p {
  max-width: 520px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.primary-button {
  min-height: 56px;
  margin-top: 50px;
  padding: 17px 38px;
  border-radius: 12px;
  background: linear-gradient(269deg, #00ffe4 -3.38%, #178cde 125.42%), #00cae0;
  color: #001015;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 14px 38px rgba(0, 202, 224, 0.13);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.primary-button svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.2;
}

.primary-button:hover {
  box-shadow: 0 16px 48px rgba(0, 202, 224, 0.24);
  transform: translateY(-2px);
}

.hero-showcase {
  flex: 1 1 800px;
  min-width: 0;
  max-width: 840px;
}

.showcase-panel {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(107, 144, 255, 0.92), rgba(59, 222, 233, 0.92)),
    #43dae6;
  box-shadow:
    0 45px 120px rgba(0, 112, 156, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.showcase-panel::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.18), transparent 25%),
    linear-gradient(180deg, transparent 56%, rgba(0, 27, 38, 0.18));
  content: "";
  pointer-events: none;
}

.panel-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.58;
}

.panel-glow-a {
  top: -16%;
  left: 26%;
  width: 38%;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.28);
}

.panel-glow-b {
  right: -6%;
  bottom: -24%;
  width: 42%;
  aspect-ratio: 1;
  background: rgba(78, 92, 255, 0.24);
}

.panel-topline {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 29px 0;
  color: rgba(0, 19, 27, 0.68);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.panel-topline span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.panel-topline svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.4;
}

.panel-topline .online-dot::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #005a68;
  box-shadow: 0 0 0 4px rgba(0, 90, 104, 0.13);
  content: "";
}

.showcase-slides {
  position: relative;
  z-index: 2;
  height: calc(100% - 112px);
}

.showcase-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 4px 48px 3px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.985);
  transition:
    opacity 0.58s ease,
    transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
}

.showcase-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.scene-heading {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #001116;
}

.scene-heading span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  opacity: 0.55;
}

.scene-heading strong {
  max-width: 460px;
  font-size: clamp(20px, 2vw, 31px);
  line-height: 1.3;
}

.floating-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1.4vw, 20px);
  align-items: end;
}

.float-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: clamp(132px, 13vw, 190px);
  padding: clamp(14px, 1.5vw, 22px);
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 18px;
  color: #fff;
  box-shadow: 0 18px 42px rgba(0, 43, 67, 0.18);
}

.float-card > :not(.showcase-card-media) {
  position: relative;
  z-index: 2;
}

.showcase-card-media {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  pointer-events: none;
}

.showcase-card-video {
  opacity: 0.62;
}

.float-card.has-media::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 18, 26, 0.08), rgba(0, 18, 26, 0.68));
  content: "";
}

.float-card:nth-child(1) {
  transform: translateY(8px) rotate(-1.2deg);
}

.float-card:nth-child(2) {
  transform: translateY(-12px);
}

.float-card:nth-child(3) {
  transform: translateY(9px) rotate(1.2deg);
}

.float-card::after {
  position: absolute;
  right: 14px;
  bottom: 12px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  content: "";
}

.float-card[href]::after {
  display: none;
}

.float-icon {
  display: grid;
  place-items: center;
  width: 37px;
  height: 37px;
  margin-bottom: auto;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(7px);
}

.float-icon svg {
  width: 19px;
  height: 19px;
}

.float-card strong {
  margin-top: 18px;
  font-size: clamp(13px, 1.15vw, 17px);
  font-weight: 650;
}

.float-card small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 9px;
  letter-spacing: 0.05em;
}

.showcase-card-link {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 17px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 9px;
  font-weight: 650;
}

.card-blue {
  background: linear-gradient(145deg, #2563d8, #6f9dff);
}

.card-mint {
  background: linear-gradient(145deg, #00a998, #69f7dc);
}

.card-coral {
  background: linear-gradient(145deg, #e26074, #ff9c8a);
}

.card-indigo {
  background: linear-gradient(145deg, #5059d8, #8391ff);
}

.card-cyan {
  background: linear-gradient(145deg, #0099c7, #3be3dd);
}

.card-gold {
  background: linear-gradient(145deg, #c88c25, #f1cf6f);
}

.card-violet {
  background: linear-gradient(145deg, #8548c9, #c38aff);
}

.card-lime {
  background: linear-gradient(145deg, #699d2b, #b9dd65);
}

.card-sky {
  background: linear-gradient(145deg, #1675ae, #5fd4f1);
}

.scene-tabs {
  position: absolute;
  z-index: 3;
  bottom: 21px;
  left: 50%;
  display: flex;
  gap: 12px;
  width: max-content;
  max-width: calc(100% - 36px);
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 99px;
  background: rgba(0, 28, 39, 0.15);
  backdrop-filter: blur(12px);
  transform: translateX(-50%);
}

.scene-tabs button {
  padding: 12px 19px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.78);
  color: #052a34;
  font-size: 13px;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.scene-tabs button:not(.is-active) {
  background: transparent;
  color: rgba(0, 20, 29, 0.78);
}

.scene-tabs button:hover {
  transform: translateY(-1px);
}

.scene-tabs button.is-active {
  background: #fff;
}

.scroll-cue {
  position: absolute;
  bottom: 44px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
  transform: translateX(-50%);
}

.scroll-cue svg {
  width: 16px;
  height: 16px;
  animation: cueBounce 1.8s ease-in-out infinite;
}

@keyframes cueBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

.services,
.capabilities,
.scenarios,
.contact {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-right: var(--page-pad);
  padding-left: var(--page-pad);
  background: var(--bg);
}

.services {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding-top: 100px;
  padding-bottom: 110px;
}

.section-heading,
.section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  text-align: center;
}

.section-heading {
  gap: 28px;
}

.eyebrow {
  display: inline-flex;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.section-heading h2,
.section-title h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(36px, 3.2vw, 50px);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.segmented-control {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.05);
}

.segmented-control button {
  padding: 17px 27px;
  border-radius: 99px;
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  cursor: pointer;
  transition:
    color 0.25s ease,
    background 0.25s ease;
}

.segmented-control button.is-active {
  background: rgba(0, 165, 224, 0.16);
  color: var(--cyan);
}

.service-panels {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
}

.service-panel {
  display: none;
  grid-template-columns: minmax(240px, 1.53fr) minmax(160px, 1fr) minmax(240px, 1.53fr) minmax(300px, 2.07fr);
  grid-template-rows: repeat(2, minmax(250px, 1fr));
  gap: 16px;
}

.service-panel.is-active {
  display: grid;
  animation: panelIn 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-lg);
  background: #0a1218;
}

.service-card::after,
.scenario-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(0, 0, 0, 0.72) 100%);
  content: "";
  pointer-events: none;
}

.service-card-wide {
  grid-column: span 2;
}

.service-card-tall {
  grid-row: span 2;
}

.service-visual {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.service-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 0 26px 25px;
}

.service-copy > span {
  width: fit-content;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(9px);
  font-size: 15px;
  font-weight: 650;
}

.service-copy p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 14px;
  line-height: 1.55;
}

.tone-blue .service-visual {
  background:
    radial-gradient(circle at 78% 21%, rgba(255, 255, 255, 0.46), transparent 14%),
    linear-gradient(135deg, #1949a4, #3f8ce4);
}

.tone-cyan .service-visual {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.45), transparent 18%),
    linear-gradient(145deg, #047e96, #30ddce);
}

.tone-violet .service-visual {
  background:
    radial-gradient(circle at 62% 22%, rgba(255, 255, 255, 0.35), transparent 20%),
    linear-gradient(150deg, #342b83, #8e60d5);
}

.tone-coral .service-visual {
  background:
    radial-gradient(circle at 25% 16%, rgba(255, 255, 255, 0.35), transparent 20%),
    linear-gradient(145deg, #a13d57, #f37d76);
}

.tone-indigo .service-visual {
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.32), transparent 18%),
    linear-gradient(135deg, #353c9d, #7586ed);
}

.tone-gold .service-visual {
  background: linear-gradient(135deg, #9d681e, #e8bb57);
}

.tone-mint .service-visual {
  background: linear-gradient(135deg, #087559, #5cd9ad);
}

.tone-lime .service-visual {
  background: linear-gradient(135deg, #536f24, #a5cb56);
}

.tone-sky .service-visual {
  background: linear-gradient(135deg, #175f8c, #48bcdc);
}

.visual-brand::before,
.visual-brand::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.32);
  content: "";
}

.visual-brand::before {
  top: 15%;
  left: 9%;
  width: 46%;
  height: 63%;
  border-radius: 18px 8px 18px 8px;
  background: rgba(255, 255, 255, 0.13);
  transform: rotate(-8deg);
}

.visual-brand::after {
  right: 12%;
  bottom: 8%;
  width: 34%;
  height: 52%;
  border-radius: 50%;
  background: rgba(0, 255, 225, 0.22);
}

.visual-window {
  position: absolute;
  top: 23%;
  left: 28%;
  width: 43%;
  height: 55%;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 45px rgba(6, 34, 71, 0.2);
  backdrop-filter: blur(6px);
}

.visual-chip {
  position: absolute;
  z-index: 2;
  right: 11%;
  bottom: 15%;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 13px;
  border-radius: 10px;
  background: rgba(4, 26, 42, 0.72);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
}

.visual-chip svg {
  width: 14px;
  height: 14px;
}

.visual-copy,
.visual-flow,
.visual-library,
.visual-team {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.visual-copy svg,
.visual-flow svg,
.visual-library svg {
  width: 54px;
  height: 54px;
  color: rgba(255, 255, 255, 0.92);
  stroke-width: 1.3;
}

.visual-copy span,
.visual-flow span,
.visual-library span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.visual-video {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.play-circle {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 18px rgba(255, 255, 255, 0.06);
}

.play-circle svg {
  width: 30px;
  height: 30px;
  margin-left: 4px;
}

.timeline {
  width: 62%;
  height: 27%;
  margin-top: 50px;
  border-radius: 9px;
  background:
    linear-gradient(90deg, #65f5ff 0 24%, transparent 24% 28%, #90bdff 28% 58%, transparent 58% 62%, #f99bce 62% 100%);
  opacity: 0.85;
}

.visual-edit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.visual-edit span {
  width: 32px;
  height: 70px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.18);
  transform: rotate(8deg);
}

.visual-edit span:nth-child(2) {
  height: 94px;
  transform: rotate(0);
}

.visual-edit span:nth-child(3) {
  transform: rotate(-8deg);
}

.visual-language,
.visual-strategy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.visual-language span {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.13);
  font-size: 24px;
  font-weight: 650;
}

.visual-language svg,
.visual-strategy svg {
  width: 27px;
  height: 27px;
}

.visual-audience {
  display: grid;
  place-items: center;
}

.radar-ring {
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.33);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 28px rgba(255, 255, 255, 0.05),
    inset 0 0 0 56px rgba(255, 255, 255, 0.05);
}

.radar-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.11);
}

.radar-dot.d1 {
  top: 30%;
  left: 35%;
}

.radar-dot.d2 {
  top: 48%;
  right: 30%;
}

.radar-dot.d3 {
  bottom: 26%;
  left: 49%;
}

.visual-strategy span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.visual-growth {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  padding: 24%;
}

.visual-growth span {
  flex: 1;
  height: var(--h);
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, #7cf8ff, rgba(124, 248, 255, 0.22));
}

.visual-funnel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 16%;
}

.visual-funnel span {
  height: 25px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.14);
}

.visual-funnel span:nth-child(1) {
  width: 70%;
}

.visual-funnel span:nth-child(2) {
  width: 51%;
}

.visual-funnel span:nth-child(3) {
  width: 32%;
}

.visual-private {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.visual-private svg {
  width: 52px;
  height: 52px;
  stroke-width: 1.5;
}

.visual-private span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.visual-private b {
  color: #fff;
  font-size: 23px;
}

.visual-chat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 11px;
  padding: 15% 12%;
}

.chat-bubble {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 15px 15px 15px 4px;
  background: rgba(255, 255, 255, 0.18);
}

.chat-bubble svg {
  width: 24px;
  height: 24px;
}

.chat-line {
  width: 72%;
  height: 10px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.19);
}

.chat-line.short {
  width: 45%;
}

.visual-dashboard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 34px 1fr;
  gap: 13px;
  padding: 18%;
}

.dash-head,
.dash-chart,
.dash-row {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
}

.dash-head {
  grid-column: span 2;
}

.dash-chart {
  grid-row: span 2;
  background:
    linear-gradient(150deg, transparent 30%, rgba(103, 248, 255, 0.7) 31% 35%, transparent 36% 48%, rgba(103, 248, 255, 0.7) 49% 53%, transparent 54%),
    rgba(255, 255, 255, 0.1);
}

.dash-row {
  height: 42px;
}

.dash-row.short {
  opacity: 0.56;
}

.avatar {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-right: -18px;
  border: 2px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  background: rgba(5, 49, 80, 0.46);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  backdrop-filter: blur(7px);
}

.visual-team svg {
  position: absolute;
  right: 16%;
  width: 47px;
  height: 47px;
  color: rgba(255, 255, 255, 0.88);
  stroke-width: 1.4;
}

.capabilities {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding-top: 110px;
  padding-bottom: 110px;
  background:
    radial-gradient(circle at 10% 75%, rgba(0, 202, 224, 0.08), transparent 28rem),
    #000;
}

.capability-layout {
  display: grid;
  grid-template-columns: minmax(290px, 0.62fr) minmax(0, 1.38fr);
  gap: 16px;
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
}

.capability-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.capability-list button {
  padding: 28px 28px;
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 0.28s ease,
    background 0.28s ease;
}

.capability-list button span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  transition: color 0.28s ease;
}

.capability-list button p {
  display: none;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.capability-list button.is-active {
  border-color: rgba(255, 255, 255, 0.13);
  background:
    radial-gradient(552.75% 81.49% at 0 0, rgba(16, 172, 223, 0.1) 0, rgba(16, 172, 223, 0) 100%),
    #0c121a;
}

.capability-list button.is-active span {
  color: var(--cyan);
}

.capability-list button.is-active p {
  display: block;
}

.capability-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 600px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 70% 20%, rgba(51, 148, 255, 0.16), transparent 24rem),
    linear-gradient(145deg, #081017, #0c161c);
}

.capability-stage::before {
  position: absolute;
  top: -12rem;
  right: -10rem;
  width: 30rem;
  height: 30rem;
  border: 1px solid rgba(44, 234, 255, 0.14);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 5rem rgba(44, 234, 255, 0.02),
    0 0 0 10rem rgba(44, 234, 255, 0.015);
}

.stage-toolbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 25px;
  border-bottom: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.stage-toolbar > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.stage-toolbar svg {
  width: 15px;
  height: 15px;
}

.stage-status {
  color: rgba(44, 234, 255, 0.72);
}

.stage-status b {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(44, 234, 255, 0.8);
}

.stage-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  gap: 35px;
  padding: clamp(28px, 4vw, 52px);
}

.stage-copy {
  max-width: 620px;
}

.stage-copy > span {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.stage-copy h3 {
  margin: 12px 0 0;
  font-size: clamp(30px, 3.4vw, 52px);
  font-weight: 650;
  line-height: 1.2;
}

.stage-copy p {
  max-width: 560px;
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.stage-dashboard {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr;
  gap: 14px;
}

.dashboard-main,
.mini-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(10px);
}

.dashboard-main {
  min-width: 0;
  padding: 21px;
}

.dashboard-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

.dashboard-title b {
  color: var(--cyan);
  font-size: 19px;
}

.dashboard-chart {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 164px;
  margin-top: 25px;
}

.dashboard-chart span {
  flex: 1;
  height: var(--h);
  min-width: 10px;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, var(--cyan), rgba(44, 234, 255, 0.16));
  transition: height 0.45s ease;
}

.dashboard-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mini-card {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  min-height: 110px;
  padding: 18px;
}

.mini-card svg {
  width: 21px;
  height: 21px;
  color: var(--cyan);
}

.mini-card span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
}

.mini-card b {
  font-size: 25px;
}

.scenarios {
  padding-top: 100px;
  padding-bottom: 110px;
}

.section-title {
  gap: 18px;
  margin-bottom: 56px;
}

.scenario-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(190px, 1fr));
  gap: 16px;
  max-width: var(--content-max);
  margin: 0 auto;
}

.scenario-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #0a1117;
}

.scenario-card:hover .scenario-art > svg {
  transform: scale(1.08) rotate(2deg);
}

.scenario-art {
  position: relative;
  flex: 1;
  overflow: hidden;
}

.scenario-art > svg {
  position: absolute;
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.scenario-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 0 20px 22px;
}

.scenario-copy span {
  font-size: 16px;
  font-weight: 650;
}

.scenario-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.scenario-brand .scenario-art {
  background: linear-gradient(145deg, #1f4fb0, #4fd5d5);
}

.scenario-brand .scenario-art > svg {
  top: 32%;
  left: 50%;
  width: 62px;
  height: 62px;
  transform: translateX(-50%);
  stroke-width: 1.2;
}

.scenario-brand:hover .scenario-art > svg {
  transform: translateX(-50%) scale(1.08);
}

.orb {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
}

.orb-one {
  top: 10%;
  left: -12%;
  width: 70%;
  aspect-ratio: 1;
}

.orb-two {
  right: -28%;
  bottom: -4%;
  width: 80%;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.08);
}

.scenario-commerce .scenario-art {
  background: linear-gradient(145deg, #aa4f62, #ee9b71);
}

.commerce-window {
  position: absolute;
  top: 25%;
  left: 19%;
  display: grid;
  place-items: center;
  width: 62%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 16px 18px 0 rgba(57, 15, 24, 0.12);
}

.commerce-window svg {
  width: 50px;
  height: 50px;
  stroke-width: 1.3;
}

.commerce-chart {
  position: absolute;
  right: 8%;
  bottom: 13%;
  width: 46%;
  height: 31%;
  clip-path: polygon(0 100%, 0 71%, 23% 53%, 45% 65%, 68% 20%, 100% 0, 100% 100%);
  background: rgba(255, 255, 255, 0.24);
}

.scenario-enterprise .scenario-art {
  background: linear-gradient(145deg, #293c86, #6c81d6);
}

.grid-plane {
  position: absolute;
  inset: 12% -12% -20%;
  background:
    linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 34px 34px;
  transform: perspective(400px) rotateX(55deg) rotateZ(-12deg);
}

.scenario-enterprise .scenario-art > svg {
  top: 32%;
  left: 50%;
  width: 63px;
  height: 63px;
  transform: translateX(-50%);
  stroke-width: 1.2;
}

.scenario-enterprise:hover .scenario-art > svg {
  transform: translateX(-50%) scale(1.08);
}

.scenario-education .scenario-art {
  background: linear-gradient(145deg, #1b7894, #63d6cb);
}

.scenario-education .scenario-art > svg {
  top: 28%;
  left: 50%;
  width: 64px;
  height: 64px;
  transform: translateX(-50%);
  stroke-width: 1.25;
}

.scenario-education:hover .scenario-art > svg {
  transform: translateX(-50%) scale(1.08);
}

.book-stack {
  position: absolute;
  right: 18%;
  bottom: 18%;
  left: 18%;
  height: 13%;
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.32) 0 31%, transparent 31% 36%, rgba(255, 255, 255, 0.24) 36% 67%, transparent 67% 72%, rgba(255, 255, 255, 0.18) 72%);
}

.scenario-local .scenario-art {
  background: linear-gradient(145deg, #855126, #e5a858);
}

.location-ring {
  position: absolute;
  top: 24%;
  left: 50%;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  box-shadow:
    0 0 0 26px rgba(255, 255, 255, 0.05),
    0 0 0 52px rgba(255, 255, 255, 0.03);
  transform: translateX(-50%);
}

.scenario-local .scenario-art > svg {
  top: 40%;
  left: 50%;
  width: 54px;
  height: 54px;
  transform: translate(-50%, -50%);
  stroke-width: 1.4;
}

.scenario-local:hover .scenario-art > svg {
  transform: translate(-50%, -50%) scale(1.08);
}

.software-section {
  position: relative;
  z-index: 1;
  padding: 100px var(--page-pad) 110px;
  background:
    radial-gradient(circle at 50% 0, rgba(0, 202, 224, 0.1), transparent 28rem),
    #000;
}

.section-description {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  text-align: center;
}

.software-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
}

.software-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 300px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(44, 234, 255, 0.08), transparent 46%),
    #081117;
  transition:
    border-color 0.25s ease,
    transform 0.25s ease;
}

.software-card:hover {
  border-color: rgba(44, 234, 255, 0.34);
  transform: translateY(-3px);
}

.software-cover {
  position: relative;
  display: grid;
  min-height: 128px;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.24), transparent 22%),
    linear-gradient(135deg, #084f67, #149fb4);
}

.software-cover img {
  width: 100%;
  height: 100%;
  min-height: 128px;
  object-fit: cover;
}

.software-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  background: rgba(3, 20, 29, 0.76);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
}

.software-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.software-icon svg {
  width: 31px;
  height: 31px;
  color: var(--cyan);
}

.software-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.software-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.software-heading h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 650;
}

.software-version {
  flex: 0 0 auto;
  padding: 5px 8px;
  border: 1px solid rgba(44, 234, 255, 0.24);
  border-radius: 7px;
  background: rgba(44, 234, 255, 0.08);
  color: var(--cyan);
  font-size: 11px;
}

.software-body > p {
  min-height: 44px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.software-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.software-download {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  border-radius: 10px;
  background: linear-gradient(269deg, #00ffe4, #178cde);
  color: #001116;
  font-size: 14px;
  font-weight: 650;
}

.software-download svg {
  width: 16px;
  height: 16px;
}

.software-empty {
  grid-column: 1 / -1;
  padding: 48px 24px;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  color: var(--muted);
  text-align: center;
}

.resource-section {
  position: relative;
  z-index: 1;
  padding: 100px var(--page-pad) 110px;
  background:
    radial-gradient(circle at 24% 2%, rgba(23, 140, 222, 0.11), transparent 27rem),
    #000;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
}

.resource-card {
  position: relative;
  display: flex;
  min-height: 260px;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  background: #081117;
  transition:
    border-color 0.25s ease,
    transform 0.25s ease;
}

.resource-card:hover {
  border-color: rgba(44, 234, 255, 0.3);
  transform: translateY(-3px);
}

.resource-cover {
  position: relative;
  display: grid;
  min-height: 112px;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 15%, rgba(255, 255, 255, 0.22), transparent 22%),
    linear-gradient(135deg, #183c8e, #1ab7b5);
}

.resource-cover img {
  width: 100%;
  height: 100%;
  min-height: 112px;
  object-fit: cover;
}

.resource-cover > svg {
  width: 42px;
  height: 42px;
  color: #fff;
  stroke-width: 1.35;
}

.resource-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 19px;
}

.resource-category {
  width: fit-content;
  padding: 5px 8px;
  border-radius: 6px;
  background: rgba(44, 234, 255, 0.09);
  color: var(--cyan);
  font-size: 10px;
  font-weight: 650;
}

.resource-body h3 {
  margin: 12px 0 0;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.45;
}

.resource-body p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.resource-meta {
  margin-top: auto;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
}

.resource-download {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 13px;
  border: 1px solid rgba(44, 234, 255, 0.2);
  border-radius: 9px;
  background: rgba(44, 234, 255, 0.07);
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
}

.resource-download svg {
  width: 15px;
  height: 15px;
}

.designer-selected {
  outline: 2px solid var(--cyan) !important;
  outline-offset: 3px !important;
  cursor: crosshair !important;
}

.designer-mode,
.designer-mode * {
  cursor: crosshair !important;
}

.contact {
  padding-top: 100px;
  padding-bottom: 100px;
}

.contact-shell {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(56px, 7vw, 100px) clamp(24px, 6vw, 100px);
  overflow: hidden;
  border: 1px solid rgba(44, 234, 255, 0.18);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 50% -40%, rgba(0, 205, 224, 0.32), transparent 58%),
    linear-gradient(180deg, #0a171d, #071014);
  text-align: center;
}

.contact-shell::before,
.contact-shell::after {
  position: absolute;
  border: 1px solid rgba(44, 234, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.contact-shell::before {
  top: -180px;
  left: 50%;
  width: 400px;
  height: 400px;
  transform: translateX(-50%);
}

.contact-shell::after {
  top: -110px;
  left: 50%;
  width: 260px;
  height: 260px;
  transform: translateX(-50%);
}

.contact-brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.contact-shell h2 {
  position: relative;
  z-index: 2;
  margin: 32px 0 0;
  font-size: clamp(40px, 4.4vw, 66px);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.16;
}

.contact-shell > p {
  position: relative;
  z-index: 2;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.contact-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 37px;
}

.contact-actions .primary-button {
  margin-top: 0;
}

.secondary-button {
  min-height: 56px;
  padding: 17px 26px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}

.secondary-button svg {
  width: 17px;
  height: 17px;
}

.secondary-button:hover {
  border-color: rgba(44, 234, 255, 0.45);
  background: rgba(44, 234, 255, 0.07);
}

.copy-feedback {
  position: relative;
  z-index: 2;
  min-height: 20px;
  margin-top: 14px;
  color: var(--cyan);
  font-size: 12px;
}

.site-footer {
  position: relative;
  z-index: 1;
  padding: 28px var(--page-pad) 34px;
  background: #000;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
}

.footer-inner a {
  transition: color 0.25s ease;
}

.footer-inner a:hover {
  color: var(--cyan);
}

.mobile-action {
  position: fixed;
  z-index: 45;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.mobile-action.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-action a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px 8px 8px;
  border: 1px solid rgba(44, 234, 255, 0.22);
  border-radius: 14px;
  background: rgba(8, 20, 26, 0.94);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(18px);
}

.mobile-action .brand-mark {
  width: 42px;
  height: 42px;
}

.mobile-action > a > span:nth-child(2) {
  min-width: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-action b {
  margin-left: auto;
  padding: 10px 13px;
  border-radius: 9px;
  background: linear-gradient(269deg, #00ffe4, #178cde);
  color: #001116;
  font-size: 12px;
  white-space: nowrap;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1439px) {
  :root {
    --page-pad: 40px;
  }

  .desktop-nav {
    gap: 25px;
  }

  .hero {
    padding-top: 145px;
  }

  .hero-inner {
    gap: 54px;
  }

  .hero-copy {
    flex-basis: 445px;
  }

  .hero-copy h1 {
    font-size: 54px;
  }

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

  .primary-button {
    margin-top: 38px;
  }

  .showcase-panel {
    border-radius: 22px;
  }

  .showcase-slide {
    padding-right: 34px;
    padding-left: 34px;
  }

  .scene-tabs {
    bottom: 14px;
  }

  .scene-tabs button {
    padding: 10px 15px;
    font-size: 12px;
  }

  .services,
  .capabilities,
  .scenarios,
  .contact {
    padding-top: 82px;
    padding-bottom: 88px;
  }

  .section-heading h2,
  .section-title h2 {
    font-size: 38px;
  }

  .services {
    gap: 48px;
  }

  .service-panel {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(2, 260px);
  }

  .service-copy {
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
  }

  .service-copy > span {
    font-size: 14px;
  }

  .service-copy p {
    font-size: 13px;
  }

  .capability-layout {
    grid-template-columns: 300px minmax(0, 1fr);
  }

  .capability-stage {
    min-height: 550px;
  }

  .scenario-track {
    grid-template-columns: repeat(5, minmax(220px, 1fr));
  }
}

@media (max-width: 1180px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
    margin-left: auto;
    margin-right: 12px;
  }

  .mobile-menu {
    position: absolute;
    top: 64px;
    right: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(7, 13, 17, 0.98);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 0.25s ease,
      transform 0.25s ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu a {
    padding: 13px 14px;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
  }

  .mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
  }

  .hero {
    padding-top: 136px;
  }

  .hero-inner {
    flex-direction: column;
    gap: 58px;
  }

  .hero-copy {
    flex-basis: auto;
    text-align: center;
  }

  .hero-copy p {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-showcase {
    flex-basis: auto;
    width: 100%;
    max-width: 920px;
  }

  .scroll-cue {
    display: none;
  }

  .service-panel {
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    grid-template-rows: repeat(2, 260px);
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: none;
  }

  .service-panel::-webkit-scrollbar {
    display: none;
  }

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

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

  .capability-list button {
    min-height: 150px;
    padding: 22px;
  }

  .scenario-track {
    display: flex;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

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

  .scenario-card {
    flex: 0 0 280px;
  }

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

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

@media (max-width: 767px) {
  :root {
    --page-pad: 16px;
    --header-height: 56px;
  }

  .ambient {
    display: none;
  }

  .header-inner {
    padding: 0 16px;
  }

  .brand-copy small {
    display: none;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
    border-radius: 9px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    margin-right: 0;
  }

  .mobile-menu {
    top: 56px;
    right: 12px;
    left: 12px;
  }

  .hero {
    min-height: auto;
    padding: 106px 12px 46px;
  }

  .hero-inner {
    gap: 40px;
  }

  .hero-copy h1 {
    font-size: 36px;
    line-height: 1.2;
  }

  .hero-copy p {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.65;
  }

  .primary-button {
    min-height: 52px;
    margin-top: 30px;
    padding: 15px 28px;
    font-size: 15px;
  }

  .showcase-panel {
    aspect-ratio: 4 / 3.15;
    border-radius: 17px;
  }

  .panel-topline {
    padding: 17px 17px 0;
    font-size: 8px;
  }

  .panel-topline .online-dot {
    display: none;
  }

  .showcase-slides {
    height: calc(100% - 86px);
  }

  .showcase-slide {
    gap: 12px;
    padding: 3px 17px 0;
  }

  .scene-heading strong {
    max-width: 260px;
    font-size: 18px;
  }

  .scene-heading span {
    font-size: 9px;
  }

  .floating-cards {
    gap: 8px;
  }

  .float-card {
    min-height: 116px;
    padding: 11px;
    border-radius: 12px;
  }

  .float-card::after {
    display: none;
  }

  .float-icon {
    width: 29px;
    height: 29px;
    border-radius: 8px;
  }

  .float-icon svg {
    width: 15px;
    height: 15px;
  }

  .float-card strong {
    margin-top: 13px;
    font-size: 11px;
  }

  .float-card small {
    font-size: 7px;
  }

  .scene-tabs {
    bottom: 10px;
    gap: 3px;
    max-width: calc(100% - 18px);
    padding: 3px;
  }

  .scene-tabs button {
    padding: 8px 11px;
    font-size: 10px;
  }

  .services,
  .capabilities,
  .scenarios,
  .software-section,
  .resource-section,
  .contact {
    padding: 58px 0;
  }

  .section-heading {
    gap: 20px;
    padding: 0 16px;
  }

  .eyebrow {
    font-size: 9px;
  }

  .section-heading h2,
  .section-title h2 {
    font-size: 26px;
  }

  .segmented-control {
    width: calc(100vw - 32px);
    padding: 3px;
  }

  .segmented-control button {
    flex: 1;
    padding: 11px 8px;
    font-size: 12px;
  }

  .service-panels {
    margin-top: 0;
  }

  .service-panel {
    display: none;
    gap: 10px;
    padding: 0 12px 6px;
  }

  .service-panel.is-active {
    display: flex;
  }

  .service-card,
  .service-card-wide,
  .service-card-tall {
    flex: 0 0 224px;
    width: 216px;
    min-height: 290px;
    grid-column: auto;
    grid-row: auto;
    border-radius: 15px;
  }

  .service-copy {
    gap: 5px;
    padding: 0 13px 14px;
  }

  .service-copy > span {
    padding: 6px 8px;
    border-radius: 6px;
    font-size: 12px;
  }

  .service-copy p {
    font-size: 11px;
    line-height: 1.5;
  }

  .capabilities {
    padding-right: 16px;
    padding-left: 16px;
  }

  .section-title {
    margin-bottom: 34px;
  }

  .capability-layout {
    gap: 18px;
  }

  .capability-list {
    display: flex;
    flex-direction: row;
    gap: 8px;
    overflow-x: auto;
    margin-right: -16px;
    margin-left: -16px;
    padding: 0 16px 6px;
    scrollbar-width: none;
  }

  .capability-list::-webkit-scrollbar {
    display: none;
  }

  .capability-list button {
    flex: 0 0 auto;
    min-height: 0;
    padding: 12px 15px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.05);
  }

  .capability-list button span {
    font-size: 13px;
    white-space: nowrap;
  }

  .capability-list button p {
    display: none !important;
  }

  .capability-list button.is-active {
    border-color: transparent;
    background: rgba(0, 165, 224, 0.15);
  }

  .capability-stage {
    min-height: 520px;
    border-radius: 22px;
  }

  .stage-toolbar {
    padding: 18px;
  }

  .stage-content {
    gap: 26px;
    padding: 28px 20px 22px;
  }

  .stage-copy h3 {
    font-size: 29px;
  }

  .stage-copy p {
    font-size: 13px;
  }

  .stage-dashboard {
    grid-template-columns: 1fr;
  }

  .dashboard-main {
    padding: 16px;
  }

  .dashboard-chart {
    height: 112px;
  }

  .dashboard-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .mini-card {
    min-height: 100px;
    padding: 14px;
  }

  .mini-card b {
    font-size: 21px;
  }

  .scenarios {
    padding-right: 0;
    padding-left: 0;
  }

  .scenarios .section-title {
    padding: 0 16px;
  }

  .scenario-track {
    gap: 10px;
    padding: 0 12px 8px;
  }

  .scenario-card {
    flex-basis: 218px;
    min-height: 295px;
    border-radius: 15px;
  }

  .scenario-copy {
    padding: 0 15px 17px;
  }

  .scenario-copy span {
    font-size: 14px;
  }

  .scenario-copy p {
    font-size: 11px;
  }

  .software-section {
    padding-right: 16px;
    padding-left: 16px;
  }

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

  .resource-section {
    padding-right: 16px;
    padding-left: 16px;
  }

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

  .software-card {
    min-height: 0;
  }

  .section-description {
    padding: 0 12px;
    font-size: 13px;
  }

  .contact {
    padding-right: 12px;
    padding-left: 12px;
  }

  .contact-shell {
    padding: 50px 20px 40px;
    border-radius: 22px;
  }

  .contact-shell h2 {
    margin-top: 25px;
    font-size: 36px;
  }

  .contact-shell > p {
    font-size: 13px;
    line-height: 1.65;
  }

  .contact-actions {
    flex-direction: column;
    width: 100%;
    margin-top: 29px;
  }

  .contact-actions .primary-button,
  .secondary-button {
    width: 100%;
  }

  .site-footer {
    padding: 22px 16px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 9px;
    padding-top: 22px;
  }

  .mobile-action {
    display: block;
  }

  .contact-break {
    display: none;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
