﻿:root {
  --bg-0: #050812;
  --bg-1: #0a1325;
  --bg-2: #101b34;
  --ink: #e8edf9;
  --muted: #97a9c6;
  --line: rgba(140, 170, 214, 0.28);
  --surface: rgba(10, 18, 34, 0.72);
  --surface-strong: rgba(8, 15, 30, 0.86);
  --brand: #63a4ff;
  --brand-2: #4bd7b3;
  --brand-3: #f3b26f;
  --gold: #ffd18a;
  --shadow: 0 24px 48px rgba(3, 7, 18, 0.45);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(99, 164, 255, 0.2), transparent 32%),
    radial-gradient(circle at 88% 12%, rgba(75, 215, 179, 0.16), transparent 34%),
    radial-gradient(circle at 50% 110%, rgba(243, 178, 111, 0.12), transparent 38%),
    linear-gradient(160deg, var(--bg-2) 0%, var(--bg-1) 38%, var(--bg-0) 100%);
  line-height: 1.65;
  overflow-x: hidden;
}

@media (min-width: 821px) {
  html {
    scrollbar-width: thin;
    scrollbar-color: rgba(99, 164, 255, 0.72) rgba(7, 13, 25, 0.82);
  }

  body::-webkit-scrollbar {
    width: 14px;
  }

  body::-webkit-scrollbar-track {
    background: linear-gradient(180deg, rgba(8, 14, 27, 0.94), rgba(10, 18, 34, 0.94));
    border-left: 1px solid rgba(140, 170, 214, 0.14);
  }

  body::-webkit-scrollbar-thumb {
    border: 3px solid rgba(7, 13, 25, 0.92);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(99, 164, 255, 0.88), rgba(75, 215, 179, 0.82));
    box-shadow: inset 0 0 0 1px rgba(232, 237, 249, 0.08);
  }

  body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(123, 178, 255, 0.96), rgba(98, 230, 197, 0.9));
  }
}

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 24% 22%, rgba(99, 164, 255, 0.12), transparent 25%),
    radial-gradient(circle at 72% 35%, rgba(75, 215, 179, 0.1), transparent 27%);
  z-index: -2;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(0deg, transparent 24%, rgba(255, 255, 255, 0.85) 25%, transparent 26%),
    linear-gradient(90deg, transparent 24%, rgba(255, 255, 255, 0.85) 25%, transparent 26%);
  background-size: 3px 3px;
  mix-blend-mode: soft-light;
  z-index: -1;
}

.page {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 26px 72px;
  display: grid;
  gap: 42px;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 12px clamp(18px, 5vw, 52px);
  border-bottom: 1px solid rgba(140, 170, 214, 0.34);
  background: rgba(7, 13, 25, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 34px rgba(2, 6, 23, 0.45);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
}

.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(2, 6, 23, 0.4);
}

.logo-text {
  font-size: 34px;
  letter-spacing: 0.14em;
  font-weight: 700;
  line-height: 1;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.nav a {
  color: rgba(232, 237, 249, 0.82);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
  padding-bottom: 4px;
}

.nav a:hover {
  color: #fff;
  border-bottom-color: rgba(99, 164, 255, 0.8);
}

main {
  display: grid;
  gap: 26px;
}

.panel,
.panel-surface {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 38px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.panel-surface {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(14, 25, 50, 0.92), rgba(6, 11, 23, 0.9));
}

.hero {
  display: grid;
  gap: 18px;
  min-height: 720px;
  align-content: center;
  justify-items: center;
  padding: 54px;
}

.hero-glow {
  position: absolute;
  inset: -35% 35% auto -35%;
  width: 72%;
  height: 70%;
  background: radial-gradient(circle, rgba(99, 164, 255, 0.26), transparent 65%);
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 18px;
  width: 100%;
  max-width: 980px;
  text-align: center;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b6c8e5;
}

.hero h1 {
  display: inline-block;
  font-size: 82px;
  line-height: 1.1;
  max-width: 1020px;
  letter-spacing: 0;
  word-break: keep-all;
  text-shadow: 0 18px 36px rgba(0, 0, 0, 0.45);
}

.hero-tail {
  display: block;
  width: fit-content;
  margin-left: auto;
  text-align: right;
}

.hero-subtitle {
  font-size: 31px;
  color: #d9e6ff;
  max-width: 960px;
  line-height: 1.35;
  letter-spacing: 0;
  word-break: keep-all;
}

.hero-summary {
  max-width: 900px;
  font-size: 18px;
  color: #b7c7e2;
  line-height: 1.75;
  letter-spacing: 0.01em;
}

.hero-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  max-width: 880px;
  margin-top: 6px;
}

.hero-stat {
  min-height: 108px;
  display: grid;
  align-content: start;
  gap: 5px;
  border: 1px solid rgba(140, 170, 214, 0.26);
  border-radius: 14px;
  padding: 14px;
  background: rgba(5, 11, 24, 0.62);
  box-shadow: 0 12px 28px rgba(2, 6, 23, 0.26);
  text-align: left;
}

.hero-stat span {
  width: fit-content;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.hero-stat strong {
  color: #f3f8ff;
  font-size: 17px;
  line-height: 1.25;
}

.hero-stat small {
  color: #9eb0ce;
  line-height: 1.45;
}

.product-pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.product-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(123, 178, 255, 0.35);
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 14px;
  color: #031327;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  background: linear-gradient(135deg, #7bb2ff, #64e2c4);
  box-shadow: 0 10px 20px rgba(99, 164, 255, 0.3);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.product-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(99, 164, 255, 0.35);
}

.product-pill-cta::after {
  content: "Open";
  margin-left: 10px;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: rgba(3, 19, 39, 0.85);
  border-left: 1px solid rgba(3, 19, 39, 0.2);
  padding-left: 10px;
}

.panel-header {
  display: grid;
  gap: 12px;
  margin-bottom: 10px;
}

.panel-header .tag {
  margin-bottom: 2px;
}

.panel-header-split {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 22px;
}

.panel-header h2 {
  font-size: 46px;
  line-height: 1.16;
}

.panel-header p {
  color: var(--muted);
  font-size: 17px;
}

.deck-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(255, 209, 138, 0.36);
  border-radius: 999px;
  padding: 10px 16px;
  color: #101827;
  background: linear-gradient(135deg, #ffd18a, #74e0c7);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(255, 209, 138, 0.18);
}

.deck-section {
  background:
    linear-gradient(160deg, rgba(13, 24, 47, 0.86), rgba(5, 10, 22, 0.9)),
    radial-gradient(circle at 80% 0%, rgba(255, 209, 138, 0.12), transparent 34%);
}

.deck-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.8fr);
  gap: 22px;
  align-items: stretch;
  margin-bottom: 22px;
}

.deck-figure {
  margin: 0;
  border: 1px solid rgba(140, 170, 214, 0.3);
  border-radius: 16px;
  background: rgba(5, 11, 24, 0.82);
  box-shadow: 0 18px 38px rgba(2, 6, 23, 0.3);
  overflow: hidden;
}

.deck-figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.deck-figure-main img {
  min-height: 420px;
}

.deck-feature-copy {
  display: grid;
  align-content: center;
  gap: 16px;
  border: 1px solid rgba(140, 170, 214, 0.32);
  border-radius: 16px;
  padding: 26px;
  background: linear-gradient(160deg, rgba(14, 27, 52, 0.88), rgba(6, 13, 27, 0.84));
}

.deck-feature-copy h3,
.deck-card h3 {
  color: #f1f6ff;
  line-height: 1.25;
}

.deck-feature-copy h3 {
  font-size: 31px;
}

.deck-feature-copy p,
.deck-card p {
  color: #aebed8;
}

.deck-points {
  display: grid;
  gap: 10px;
}

.deck-point {
  display: grid;
  gap: 4px;
  border-left: 3px solid rgba(75, 215, 179, 0.82);
  padding: 10px 0 10px 14px;
  background: linear-gradient(90deg, rgba(75, 215, 179, 0.08), transparent);
}

.deck-point strong {
  color: #dffaf3;
}

.deck-point span {
  color: #98afd0;
}

.deck-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.deck-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 16px;
  border: 1px solid rgba(140, 170, 214, 0.32);
  border-radius: 16px;
  padding: 18px;
  background: linear-gradient(160deg, rgba(16, 28, 52, 0.84), rgba(7, 14, 27, 0.82));
  box-shadow: 0 16px 34px rgba(2, 6, 23, 0.24);
}

.deck-card > div {
  display: grid;
  gap: 10px;
  align-content: start;
}

.deck-card h3 {
  font-size: 22px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 16px;
}

.showcase-main,
.showcase-side {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(140, 170, 214, 0.3);
  background: rgba(12, 22, 43, 0.72);
  box-shadow: 0 14px 28px rgba(2, 6, 23, 0.35);
}

.showcase-main {
  grid-row: span 2;
}

.showcase-main img,
.showcase-side img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.zoomable {
  cursor: zoom-in;
}

.showcase-main img {
  min-height: 380px;
}

.showcase-side img {
  min-height: 182px;
}

.matrix-shell {
  display: grid;
  gap: 18px;
}

.matrix-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(5, minmax(150px, 1fr));
  gap: 10px;
}

.matrix-corner,
.matrix-colhead,
.matrix-rowhead,
.matrix-cell {
  border: 1px solid rgba(140, 170, 214, 0.28);
  border-radius: 16px;
  background: rgba(10, 19, 37, 0.78);
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.22);
}

.matrix-corner,
.matrix-colhead,
.matrix-rowhead {
  padding: 18px 16px;
}

.matrix-cell {
  padding: 16px 14px;
  color: #b6c6e2;
  line-height: 1.65;
  min-height: 112px;
}

.matrix-corner {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d8e6ff;
  background: linear-gradient(145deg, rgba(18, 34, 63, 0.95), rgba(7, 15, 30, 0.95));
}

.matrix-colhead {
  display: grid;
  gap: 8px;
  align-content: start;
  background: linear-gradient(160deg, rgba(18, 34, 63, 0.92), rgba(8, 16, 31, 0.82));
}

.matrix-colhead strong {
  font-size: 20px;
  color: #eef4ff;
  line-height: 1.2;
}

.matrix-colhead small {
  color: #98afd0;
  font-size: 13px;
}

.matrix-rowhead {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  color: #e4edff;
  background: linear-gradient(160deg, rgba(16, 29, 54, 0.92), rgba(8, 16, 31, 0.86));
}

.matrix-cell.is-primary {
  border-color: rgba(75, 215, 179, 0.42);
  background: linear-gradient(160deg, rgba(17, 47, 58, 0.88), rgba(9, 22, 33, 0.84));
  color: #e6fff7;
}

.matrix-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(140, 170, 214, 0.45);
  border: 1px solid rgba(140, 170, 214, 0.55);
}

.legend-dot.is-primary {
  background: rgba(75, 215, 179, 0.8);
  border-color: rgba(75, 215, 179, 0.95);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.ops-top-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.ops-main-figure,
.ops-card-figure {
  margin: 0;
  border-radius: 18px;
  border: 1px solid rgba(140, 170, 214, 0.28);
  background: rgba(7, 13, 25, 0.92);
  overflow: hidden;
  aspect-ratio: 16 / 5.8;
}

.ops-main-figure img,
.ops-card-figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.ops-main-figure img {
  height: 220px;
}

.ops-bottom-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.ops-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid rgba(140, 170, 214, 0.34);
  border-radius: 18px;
  padding: 24px;
  background: linear-gradient(160deg, rgba(16, 28, 52, 0.88), rgba(7, 14, 27, 0.82));
  box-shadow: 0 16px 34px rgba(2, 6, 23, 0.24);
  align-content: start;
}

.ops-card-platform .ops-card-figure,
.ops-card-line .ops-card-figure {
  aspect-ratio: 16 / 5.6;
}

.ops-platform-figure {
  max-width: 100%;
}

.ops-card-figure {
  width: 100%;
  max-width: 100%;
  margin: 0 0 18px;
  border-radius: 14px;
}

.ops-card-figure img {
  height: 100%;
}

.ops-card-line .ops-card-figure img {
  object-fit: cover;
  object-position: top center;
}

.ops-card-copy {
  padding: 0;
  display: grid;
  align-content: start;
  gap: 12px;
}

.ops-card-copy h3 {
  font-size: 27px;
  line-height: 1.28;
  min-height: 2.6em;
  letter-spacing: 0;
  word-break: keep-all;
}

.ops-card-copy p {
  color: #aebed8;
  font-size: 18px;
  line-height: 1.7;
}

.proof-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid rgba(140, 170, 214, 0.34);
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(16, 28, 52, 0.88), rgba(7, 14, 27, 0.82));
  box-shadow: 0 16px 34px rgba(2, 6, 23, 0.28);
}

.proof-figure {
  margin: 0;
  border-bottom: 1px solid rgba(140, 170, 214, 0.24);
  background: rgba(7, 13, 25, 0.9);
  aspect-ratio: 16 / 9;
}

.proof-figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.proof-copy {
  padding: 20px;
  display: grid;
  align-content: start;
  gap: 10px;
}

.proof-copy h3 {
  font-size: 24px;
  line-height: 1.25;
}

.proof-copy p {
  color: #aebed8;
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

.card {
  border: 1px solid rgba(140, 170, 214, 0.35);
  border-radius: 16px;
  padding: 22px;
  display: grid;
  gap: 12px;
  background: linear-gradient(160deg, rgba(17, 30, 55, 0.85), rgba(8, 16, 31, 0.78));
}

.tag {
  width: fit-content;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #091a35;
  background: linear-gradient(140deg, rgba(99, 164, 255, 0.92), rgba(75, 215, 179, 0.92));
  padding: 3px 9px;
  border-radius: 999px;
  font-weight: 700;
}

.card h3 {
  font-size: 25px;
}

.card-thumb {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(140, 170, 214, 0.28);
  background: rgba(16, 27, 50, 0.65);
}

.card p,
.card li {
  color: #aab9d4;
}

.card ul {
  list-style: none;
  display: grid;
  gap: 7px;
}

.card ul li::before {
  content: "•";
  color: var(--brand);
  margin-right: 8px;
}

.quote-line {
  color: #dfe9fd;
  font-weight: 600;
}

.card-compare {
  min-height: 240px;
}

.card-compare.is-highlight {
  border-color: rgba(75, 215, 179, 0.45);
  background: linear-gradient(160deg, rgba(20, 47, 64, 0.78), rgba(7, 20, 34, 0.82));
}

.roadmap {
  background: linear-gradient(145deg, rgba(13, 23, 45, 0.95), rgba(6, 11, 23, 0.95));
}

.roadmap-card {
  align-content: start;
}

.phase {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(140, 170, 214, 0.25);
  border-radius: 12px;
  background: rgba(9, 17, 33, 0.74);
}

.phase + .phase {
  margin-top: 10px;
}

.phase-label {
  width: fit-content;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(140, 170, 214, 0.34);
  color: #c2d4f3;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.phase h4 {
  font-size: 18px;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.advantage-item {
  border: 1px solid rgba(140, 170, 214, 0.34);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  color: #d9e7ff;
  background: rgba(16, 27, 50, 0.62);
  font-size: 16px;
  font-weight: 600;
}

.business-panel {
  background:
    linear-gradient(160deg, rgba(13, 24, 47, 0.88), rgba(5, 10, 22, 0.92)),
    radial-gradient(circle at 15% 20%, rgba(75, 215, 179, 0.12), transparent 28%);
}

.business-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 22px;
  align-items: stretch;
}

.business-figure {
  margin: 0;
  border: 1px solid rgba(140, 170, 214, 0.3);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(5, 11, 24, 0.82);
  box-shadow: 0 18px 38px rgba(2, 6, 23, 0.3);
}

.business-figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.business-copy {
  display: grid;
  gap: 12px;
}

.business-copy article {
  display: grid;
  align-content: center;
  gap: 8px;
  min-height: 132px;
  border: 1px solid rgba(140, 170, 214, 0.32);
  border-radius: 14px;
  padding: 18px;
  background: linear-gradient(160deg, rgba(16, 28, 52, 0.84), rgba(7, 14, 27, 0.82));
}

.business-copy strong {
  color: #f3f8ff;
  font-size: 19px;
  line-height: 1.25;
}

.business-copy span {
  color: #aebed8;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-card {
  border: 1px solid rgba(140, 170, 214, 0.34);
  border-radius: 14px;
  padding: 18px;
  background: rgba(12, 22, 43, 0.7);
  display: grid;
  gap: 8px;
}

.contact-card h3 {
  font-size: 18px;
}

.contact-card p {
  color: #aab9d4;
  line-height: 1.7;
}

.contact-card a {
  color: #8bc9ff;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-note {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.closing {
  text-align: center;
  display: grid;
  gap: 8px;
}

.closing-main {
  font-size: 32px;
  font-weight: 700;
}

.closing-sub {
  max-width: 840px;
  margin: 0 auto;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid rgba(140, 170, 214, 0.24);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: #8ea2c4;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(2, 6, 23, 0.86);
  backdrop-filter: blur(4px);
  z-index: 120;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-image {
  max-width: min(1200px, 94vw);
  max-height: 90vh;
  border-radius: 12px;
  border: 1px solid rgba(140, 170, 214, 0.4);
  box-shadow: 0 22px 44px rgba(2, 6, 23, 0.6);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(140, 170, 214, 0.45);
  border-radius: 999px;
  color: #dce7ff;
  background: rgba(12, 22, 43, 0.72);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

[aria-hidden="false"] .lightbox-close:hover {
  background: rgba(22, 38, 69, 0.85);
}

[id] {
  scroll-margin-top: 96px;
}

@media (max-width: 1024px) {
  .matrix-grid {
    grid-template-columns: 1fr;
  }

  .matrix-corner {
    justify-content: flex-start;
  }

  .matrix-rowhead {
    min-height: auto;
  }

  .matrix-cell {
    min-height: auto;
  }

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

  .showcase-main {
    grid-row: auto;
  }

  .showcase-main img,
  .showcase-side img {
    min-height: 220px;
  }

  .hero {
    min-height: 640px;
    padding: 42px;
  }

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

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

  .hero-summary {
    font-size: 16px;
  }

  .deck-feature,
  .business-layout {
    grid-template-columns: 1fr;
  }

  .business-copy {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .ops-top-row,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .ops-bottom-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .grid.three,
  .grid.two,
  .advantage-grid,
  .contact-grid,
  .deck-grid,
  .business-copy {
    grid-template-columns: 1fr;
  }

  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
  }

  .nav {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .panel-header-split {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .panel,
  .panel-surface {
    padding: 22px;
  }

  .hero {
    min-height: 620px;
    padding-top: 40px;
  }

  .hero h1 {
    font-size: 52px;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .hero-tail {
    text-align: left;
    margin-left: 0;
  }

  .hero-subtitle {
    font-size: 24px;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .panel-header h2 {
    font-size: 34px;
  }

  .closing-main {
    font-size: 28px;
  }

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

  .deck-feature-copy h3 {
    font-size: 25px;
  }

  .deck-cta {
    width: fit-content;
  }
}

@media (max-width: 560px) {
  .page {
    padding: 16px 12px 40px;
  }

  .nav {
    gap: 8px;
  }

  .nav a {
    font-size: 11px;
    letter-spacing: 0.04em;
  }

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

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

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

  .panel-header h2 {
    font-size: 30px;
  }

  .closing-main {
    font-size: 24px;
  }

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

  .deck-feature-copy,
  .deck-card,
  .business-copy article {
    padding: 16px;
  }

  .deck-figure-main img {
    min-height: auto;
  }

  .product-pill {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    row-gap: 4px;
    font-size: 13px;
    line-height: 1.4;
    white-space: normal;
    text-align: left;
    padding: 10px 14px;
  }

  .product-pill-cta::after {
    margin-left: 0;
    border-left: 0;
    padding-left: 0;
    font-size: 11px;
    width: 100%;
  }

  .logo-text {
    font-size: 26px;
  }
}
