:root {
  --bg: #050b11;
  --bg-deep: #02060a;
  --panel: rgba(12, 25, 38, 0.76);
  --panel-strong: rgba(16, 31, 45, 0.92);
  --line: rgba(127, 190, 230, 0.18);
  --line-bright: rgba(94, 204, 255, 0.42);
  --text: #f1f8ff;
  --muted: #8fa5b8;
  --soft: #bdd7ec;
  --cyan: #57cfff;
  --blue: #5967ff;
  --gold: #f0b65d;
  --green: #6ae0b2;
  --radius: 8px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.46);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--bg);
  font-family:
    "Microsoft YaHei UI",
    "PingFang SC",
    "Noto Sans CJK SC",
    sans-serif;
  letter-spacing: 0;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  z-index: -3;
  background: url("./assets/gen_80c3c0f579ae48ebbe5365b4cbd75c5e.png") center center / cover no-repeat fixed;
  filter: saturate(0.96) brightness(0.8) contrast(1.02);
  transform: scale(1.02);
  opacity: 0.97;
}

body::after {
  z-index: -2;
  background:
    radial-gradient(circle at 72% 16%, rgba(87, 207, 255, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(2, 7, 12, 0.18), rgba(2, 7, 12, 0.3) 44%, rgba(2, 7, 12, 0.46) 100%),
    linear-gradient(90deg, rgba(2, 7, 12, 0.5), rgba(7, 20, 31, 0.1), rgba(2, 7, 12, 0.5));
}

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

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

button {
  cursor: pointer;
}

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-shell {
  position: relative;
  overflow: hidden;
  background: rgba(2, 7, 12, 0.02);
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 64%);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 0 clamp(22px, 4vw, 72px);
  border-bottom: 1px solid rgba(135, 179, 212, 0.16);
  background: rgba(3, 9, 15, 0.62);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

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

.brand-logo img {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-name {
  color: #f4f8ff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(30px, 4vw, 72px);
  color: #d9e8f4;
  font-size: 17px;
  font-weight: 900;
}

.nav a {
  position: relative;
  padding: 26px 0;
}

.nav a:first-child::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 17px;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(87, 207, 255, 0.85);
}

.top-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.ghost-link {
  color: var(--soft);
  font-size: 14px;
  font-weight: 800;
}

.outline-button,
.secondary-button,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border-radius: var(--radius);
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.outline-button {
  color: #06111b;
  background: linear-gradient(180deg, #ffe2a0, #e6ad54);
  box-shadow: 0 10px 30px rgba(240, 182, 93, 0.2);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  padding: 86px clamp(22px, 4vw, 72px) 74px;
  border-bottom: 1px solid rgba(127, 190, 230, 0.13);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.68;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(106%) saturate(0.9) brightness(0.78);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(2, 7, 12, 0.72), rgba(5, 16, 27, 0.36) 48%, rgba(2, 7, 12, 0.62)),
    linear-gradient(180deg, rgba(2, 7, 12, 0.01), rgba(6, 16, 25, 0.4) 96%);
}

.hero-grid {
  max-width: 1720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(390px, 0.76fr) minmax(680px, 1.36fr);
  gap: clamp(36px, 5vw, 92px);
  align-items: center;
}

.release-pill {
  display: inline-flex;
  margin-bottom: 26px;
  padding: 9px 14px;
  color: var(--gold);
  border: 1px solid rgba(240, 182, 93, 0.36);
  border-radius: 999px;
  background: rgba(240, 182, 93, 0.08);
  font-size: 13px;
  font-weight: 900;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.24em;
}

.hero h1 {
  margin: 0;
  font-size: 78px;
  line-height: 0.98;
  font-weight: 1000;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero h1 .title-accent {
  margin-top: 10px;
  color: var(--cyan);
  text-shadow: 0 0 36px rgba(87, 207, 255, 0.34);
}

.hero-subtitle {
  max-width: 620px;
  margin: 26px 0 0;
  color: #d8e6f1;
  font-size: 21px;
  line-height: 1.75;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 38px;
}

.primary-button {
  min-width: 168px;
  color: #06111b;
  background: linear-gradient(135deg, #5ee0ff, #6d78ff);
  border-color: rgba(87, 207, 255, 0.7);
  box-shadow: 0 18px 44px rgba(87, 207, 255, 0.18);
}

.secondary-button {
  min-width: 158px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
}

.hero-metrics {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 42px;
  color: var(--muted);
}

.hero-metrics span {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  font-weight: 700;
}

.hero-metrics b {
  color: var(--text);
  font-size: 16px;
}

.hero-stage {
  position: relative;
  min-height: 620px;
}

.product-window {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-bright);
  border-radius: var(--radius);
  background: rgba(4, 16, 26, 0.42);
  backdrop-filter: blur(18px) saturate(1.12);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.product-window::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(87, 207, 255, 0.13), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 28%);
}

.window-bar {
  height: 46px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  color: #c8e8ff;
  border-bottom: 1px solid var(--line);
  background: rgba(3, 12, 20, 0.48);
}

.window-bar span {
  flex: 1;
  font-weight: 900;
}

.window-bar i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.window-body {
  position: relative;
  display: grid;
  grid-template-columns: 170px 1fr;
  min-height: 550px;
}

.window-body aside {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
  border-right: 1px solid var(--line);
  background: rgba(3, 10, 17, 0.3);
}

.window-body aside b,
.window-body aside span {
  padding: 12px 14px;
  border-radius: var(--radius);
}

.window-body aside b {
  color: var(--cyan);
  background: rgba(87, 207, 255, 0.12);
}

.window-body aside span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.dashboard {
  display: grid;
  grid-template-columns: 1.15fr 0.8fr;
  grid-template-rows: auto auto 1fr;
  gap: 14px;
  padding: 18px;
}

.dash-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 22, 35, 0.38);
  backdrop-filter: blur(12px);
}

.dash-card small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 8px;
}

.project-card,
.asset-card {
  padding: 16px;
}

.project-card strong {
  display: block;
  font-size: 17px;
}

.project-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.asset-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.asset-row img {
  aspect-ratio: 1.1;
  border-radius: 7px;
  object-fit: cover;
}

.single-shot {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 10px;
}

.single-shot > img {
  width: 100%;
  height: 100%;
  min-height: 116px;
  border-radius: 7px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(127, 190, 230, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.large-preview {
  grid-row: span 2;
}

.large-preview img,
.video-card img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.video-card {
  padding: 12px;
}

.video-card img {
  height: 190px;
  min-height: 0;
  border-radius: 7px;
}

.player-line {
  height: 5px;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.12);
}

.player-line span {
  display: block;
  width: 42%;
  height: 100%;
  background: var(--cyan);
}

.floating-strip {
  position: absolute;
  left: 8%;
  right: 7%;
  bottom: -42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  perspective: 900px;
}

.floating-strip article {
  position: relative;
  overflow: hidden;
  min-height: 128px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: #0c1723;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.45);
  transform: rotateX(8deg) rotateZ(-2deg);
}

.floating-strip article:nth-child(2) {
  transform: translateY(-14px) rotateX(7deg);
}

.floating-strip article:nth-child(3) {
  transform: rotateX(8deg) rotateZ(2deg);
}

.floating-strip img {
  width: 100%;
  height: 128px;
  object-fit: cover;
  opacity: 0.9;
}

.floating-strip article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(2, 7, 12, 0.82));
}

.floating-strip span,
.floating-strip b {
  position: absolute;
  z-index: 1;
  left: 16px;
}

.floating-strip span {
  bottom: 40px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 900;
}

.floating-strip b {
  bottom: 15px;
  font-size: 19px;
}

.section {
  max-width: 1720px;
  margin: 0 auto;
  padding: 108px clamp(22px, 4vw, 72px);
}

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

.section-heading p {
  margin: 0 0 10px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.24em;
}

.section-heading h2,
.download-panel h2,
.faq-panel h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.15;
}

.section-heading span,
.download-panel span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
}

.capability-grid,
.workflow-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.cap-card,
.workflow-track article,
.deploy-card,
.download-panel,
.faq-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(18, 36, 52, 0.38), rgba(7, 17, 26, 0.42)),
    rgba(8, 20, 31, 0.2);
  backdrop-filter: blur(16px) saturate(1.12);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.075);
}

.cap-card,
.workflow-track article {
  position: relative;
  overflow: hidden;
}

.cap-card::before,
.workflow-track article::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(87, 207, 255, 0.48), transparent);
}

.cap-card {
  display: grid;
  grid-template-rows: auto 112px 138px;
  align-content: start;
  gap: 0;
  min-height: 320px;
  padding: 24px 22px 22px;
}

.cap-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.icon-box,
.flow-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  color: var(--cyan);
  border: 1px solid rgba(87, 207, 255, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(87, 207, 255, 0.15), rgba(87, 207, 255, 0.045)),
    rgba(9, 28, 42, 0.52);
  box-shadow:
    0 0 24px rgba(87, 207, 255, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.icon-box svg,
.flow-icon svg,
.deploy-card span svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cap-card h3,
.workflow-track h3,
.deploy-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
}

.cap-card p,
.workflow-track p,
.deploy-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 650;
}

.cap-card p {
  min-height: 112px;
}

.cap-card > img {
  width: 100%;
  height: 138px;
  margin-top: 0;
  border-radius: 7px;
  object-fit: cover;
  object-position: left top;
  border: 1px solid rgba(127, 190, 230, 0.22);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
}

.workflow-section {
  padding-top: 34px;
}

.workflow-track article {
  min-height: 194px;
  padding: 26px;
}

.flow-icon {
  margin-bottom: 20px;
  border-radius: 50%;
  color: #061019;
  background: linear-gradient(135deg, #77dcff, #56c9ff);
  border-color: rgba(176, 235, 255, 0.72);
}

.workflow-track article:nth-child(2) .flow-icon {
  color: #07101a;
  background: linear-gradient(135deg, #8e98ff, #58d4ff);
}

.workflow-track article:nth-child(3) .flow-icon {
  color: #061019;
  background: linear-gradient(135deg, #72e0b2, #78d8ff);
}

.workflow-track article:nth-child(4) .flow-icon {
  color: #061019;
  background: linear-gradient(135deg, #f0c36d, #65d4ff);
}

.workflow-track article:nth-child(5) .flow-icon {
  color: #061019;
  background: linear-gradient(135deg, #8c95ff, #79ddff);
}

.workflow-track h3 {
  margin-bottom: 12px;
}

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

.deploy-card {
  padding: 30px;
}

.deploy-card span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--cyan);
  font-weight: 1000;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
}

.deploy-card span svg {
  width: 19px;
  height: 19px;
}

.deploy-card h3 {
  margin: 18px 0 12px;
}

.deploy-card.featured {
  border-color: rgba(240, 182, 93, 0.52);
  background:
    linear-gradient(180deg, rgba(240, 182, 93, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(18, 36, 52, 0.36), rgba(8, 20, 31, 0.42));
}

.deploy-card a {
  display: inline-flex;
  margin-top: 24px;
  color: var(--text);
  font-weight: 900;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
}

.download-section {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 24px;
  padding-top: 30px;
}

.download-panel,
.faq-panel {
  padding: 32px;
}

.release-table {
  display: grid;
  margin: 28px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(3, 13, 22, 0.12);
  backdrop-filter: blur(8px);
}

.qr-card {
  display: grid;
  grid-template-columns: 178px 1fr;
  gap: 22px;
  align-items: center;
  margin-top: 26px;
  padding: 18px;
  border: 1px solid rgba(87, 207, 255, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(87, 207, 255, 0.12), rgba(240, 182, 93, 0.08)),
    rgba(4, 14, 23, 0.36);
}

.qr-card img {
  width: 178px;
  aspect-ratio: 1;
  object-fit: cover;
  border: 10px solid rgba(255, 255, 255, 0.92);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.3);
}

.qr-card b {
  display: block;
  font-size: 22px;
  line-height: 1.3;
}

.qr-card p {
  margin: 10px 0 0;
  color: var(--soft);
  font-size: 16px;
  line-height: 1.8;
  font-weight: 750;
}

.release-table div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
}

.release-table div:last-child {
  border-bottom: 0;
}

.release-table span {
  margin: 0;
  color: var(--muted);
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.faq-item {
  margin-top: 12px;
}

.faq-panel button {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
  font: inherit;
  font-weight: 800;
  text-align: left;
}

.faq-panel button span {
  color: var(--cyan);
  font-size: 20px;
  transition: transform 0.18s ease;
}

.faq-panel button.active span {
  transform: rotate(45deg);
}

.faq-answer {
  margin: -1px 0 0;
  padding: 0 18px 18px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  background: rgba(255, 255, 255, 0.02);
  line-height: 1.8;
  font-weight: 650;
}

.footer {
  max-width: 1720px;
  margin: 0 auto;
  padding: 34px clamp(22px, 4vw, 72px) 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  align-items: center;
  color: var(--muted);
  border-top: 1px solid var(--line);
  text-align: center;
}

.brand.compact img {
  width: 34px;
  height: 34px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: var(--soft);
  font-weight: 700;
}

.footer-links a {
  border-bottom: 1px solid rgba(189, 215, 236, 0.28);
}

.footer p {
  margin: 0;
  max-width: 980px;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.8;
}

.legal-page {
  min-height: 100vh;
  padding: 46px clamp(18px, 5vw, 72px) 72px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  margin-bottom: 22px;
  color: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  font-weight: 800;
}

.legal-card {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(18, 36, 52, 0.62), rgba(7, 17, 26, 0.72)),
    rgba(8, 20, 31, 0.36);
  backdrop-filter: blur(18px) saturate(1.1);
  box-shadow: var(--shadow);
}

.legal-card h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.12;
}

.legal-updated {
  margin: 12px 0 34px;
  color: var(--muted);
  font-weight: 750;
}

.legal-card h2 {
  margin: 30px 0 10px;
  color: var(--text);
  font-size: 22px;
}

.legal-card p {
  color: var(--soft);
  line-height: 1.9;
  font-weight: 650;
}

@media (max-width: 1240px) {
  .topbar {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

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

  .menu-button {
    display: block;
  }

  .topbar.open .nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 10px);
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(4, 13, 22, 0.96);
  }

  .topbar.open .nav a {
    padding: 14px;
  }

  .nav a:first-child::after {
    display: none;
  }

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

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

  .hero-stage {
    min-height: auto;
  }

  .floating-strip {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 18px;
  }

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

  .cap-card {
    grid-template-rows: auto auto 150px;
  }

  .cap-card p {
    min-height: 0;
    margin-bottom: 18px;
  }

  .cap-card > img {
    height: 150px;
  }

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

@media (max-width: 780px) {
  .topbar {
    height: 64px;
    padding: 0 16px;
  }

  .brand {
    gap: 3px;
  }

  .brand-logo img {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 15px;
  }

  .hero {
    min-height: auto;
    padding: 42px 18px 34px;
  }

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

  .hero h1 span {
    white-space: normal;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .hero-actions,
  .download-actions {
    display: grid;
  }

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

  .hero-metrics {
    display: grid;
    gap: 16px;
  }

  .product-window {
    border-radius: var(--radius);
  }

  .window-body {
    grid-template-columns: 1fr;
  }

  .window-body aside {
    display: none;
  }

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

  .large-preview {
    grid-row: auto;
  }

  .floating-strip {
    grid-template-columns: 1fr;
  }

  .floating-strip article,
  .floating-strip article:nth-child(2),
  .floating-strip article:nth-child(3) {
    transform: none;
  }

  .section {
    padding: 54px 18px;
  }

  .section-heading h2,
  .download-panel h2,
  .faq-panel h2 {
    font-size: 30px;
  }

  .capability-grid,
  .workflow-track,
  .deploy-grid,
  .download-section {
    grid-template-columns: 1fr;
  }

  .release-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .qr-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer {
    text-align: center;
  }

  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
