﻿:root {
  color-scheme: dark;
  --bg: #071016;
  --bg-soft: #0b1720;
  --panel: rgba(13, 24, 33, 0.84);
  --panel-strong: rgba(18, 31, 42, 0.96);
  --line: rgba(126, 156, 177, 0.18);
  --line-strong: rgba(36, 214, 177, 0.48);
  --text: #f4f8f7;
  --muted: #a7b7c2;
  --dim: #6f808b;
  --cyan: #24d6b1;
  --blue: #6fa8ff;
  --magenta: #8b7cf6;
  --amber: #f1b64a;
  --green: #35e69b;
  --red: #ff6b7f;
  --radius: 8px;
  --radius-sm: 6px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 18% 10%, rgba(36, 214, 177, 0.14), transparent 34rem),
    radial-gradient(circle at 88% 14%, rgba(241, 182, 74, 0.09), transparent 32rem),
    linear-gradient(180deg, #071016 0%, #0a131b 48%, #05090d 100%);
  color: var(--text);
  font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 82%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.04)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 5px);
  opacity: 0.36;
  mix-blend-mode: screen;
}

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

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

button {
  font: inherit;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-shell {
  min-height: 100vh;
  overflow: clip;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: fixed;
  top: 12px;
  left: 50%;
  z-index: 80;
  width: min(1320px, calc(100% - 24px));
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 18px 0 20px;
  transform: translateX(-50%);
  background:
    linear-gradient(180deg, rgba(12, 22, 29, 0.96), rgba(6, 12, 17, 0.94));
  border: 1px solid rgba(126, 156, 177, 0.24);
  border-radius: 10px;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.44), 0 0 0 1px rgba(255, 255, 255, 0.035) inset;
  backdrop-filter: blur(20px);
}

.topbar::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(53, 230, 155, 0.85), rgba(241, 182, 74, 0.72), transparent);
  opacity: 0.9;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.brand > span:last-child > span {
  color: var(--green);
  text-shadow: 0 0 16px rgba(53, 230, 155, 0.34);
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--bg);
  background: linear-gradient(135deg, var(--green), #b8ffd1);
  border-radius: 9px;
  box-shadow: 0 0 22px rgba(53, 230, 155, 0.22);
}

.brand-mark svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.8;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
}

.nav-group {
  position: relative;
}

.nav a,
.nav-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #d5e0df;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav a:hover,
.nav a.active,
.nav-group:hover .nav-trigger,
.nav-group:focus-within .nav-trigger {
  color: var(--text);
  border-color: rgba(53, 230, 155, 0.28);
  background: rgba(53, 230, 155, 0.08);
  transform: translateY(-1px);
}

.nav-trigger::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.82;
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 2px;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

.nav-group:nth-child(4) .nav-trigger {
  color: #161006;
  border-color: rgba(241, 182, 74, 0.55);
  background: linear-gradient(135deg, var(--amber), #ffe2a0);
  box-shadow: 0 0 20px rgba(241, 182, 74, 0.16);
}

.nav-group:nth-child(4) .nav-trigger::before {
  opacity: 0.9;
}

.nav-group:nth-child(4):hover .nav-trigger,
.nav-group:nth-child(4):focus-within .nav-trigger {
  color: #161006;
  border-color: rgba(241, 182, 74, 0.78);
  background: linear-gradient(135deg, #ffd071, #fff0bd);
}

.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 90;
  width: 330px;
  padding: 12px;
  border: 1px solid rgba(126, 156, 177, 0.22);
  border-radius: 10px;
  background: rgba(7, 14, 20, 0.98);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(18px);
  transform: translate(-50%, 10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -13px;
  height: 13px;
}

.nav-group:hover .dropdown,
.nav-group:focus-within .dropdown {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dropdown a {
  display: grid;
  gap: 2px;
  min-height: 0;
  padding: 13px 14px;
  border-radius: 8px;
  white-space: normal;
}

.dropdown a + a {
  margin-top: 3px;
}

.dropdown a span {
  color: var(--text);
  font-size: 15px;
  font-weight: 900;
}

.dropdown a small {
  color: var(--dim);
  font-size: 12px;
  font-weight: 700;
}

.dropdown a:hover {
  background: rgba(53, 230, 155, 0.08);
}

.dropdown a.demo-nav-link {
  border: 1px solid rgba(241, 182, 74, 0.42);
  background:
    radial-gradient(circle at 12% 0, rgba(241, 182, 74, 0.16), transparent 14rem),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 0 18px rgba(241, 182, 74, 0.05);
}

.dropdown a.demo-nav-link span::after {
  content: "HOT";
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  margin-left: 8px;
  padding: 0 6px;
  border-radius: 999px;
  color: #03111a;
  background: linear-gradient(135deg, var(--amber), #ffe2a0);
  font-size: 10px;
  font-weight: 1000;
  vertical-align: 1px;
}

.dropdown a:hover small {
  color: var(--muted);
}

.topbar-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  color: #03111a;
  background: linear-gradient(135deg, var(--green), #c8ffd7);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 0 28px rgba(53, 230, 155, 0.2);
  white-space: nowrap;
  transition: transform 180ms ease, filter 180ms ease;
}

.topbar-phone:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.topbar-phone svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.4;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle.is-open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle.is-open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 118px 0 64px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  opacity: 0.72;
  filter: saturate(1.28) contrast(1.12) brightness(1.08);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 17, 0.82) 0%, rgba(5, 7, 17, 0.58) 35%, rgba(5, 7, 17, 0.18) 68%, rgba(5, 7, 17, 0.62) 100%),
    linear-gradient(0deg, rgba(5, 7, 17, 0.9) 0%, rgba(5, 7, 17, 0.08) 42%, rgba(5, 7, 17, 0.32) 100%);
}

.hero-grid {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 36%;
  background:
    linear-gradient(rgba(22, 228, 255, 0.18), transparent 1px),
    linear-gradient(90deg, rgba(22, 228, 255, 0.18), transparent 1px);
  background-size: 42px 42px;
  transform: perspective(400px) rotateX(62deg);
  transform-origin: bottom;
  opacity: 0.42;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 48px;
  align-items: end;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(22, 228, 255, 0.35);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(7, 17, 31, 0.68);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow: inset 0 0 20px rgba(22, 228, 255, 0.08);
}

.signal {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(49, 242, 161, 0.1), 0 0 18px var(--green);
}

.hero h1 {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.22em;
  margin: 24px 0 18px;
  max-width: 760px;
  font-size: clamp(48px, 8vw, 108px);
  line-height: 0.93;
  font-weight: 1000;
  color: var(--text);
  letter-spacing: 0;
  text-shadow: 0 0 34px rgba(22, 228, 255, 0.24);
}

.hero h1::after {
  content: "2026 电竞护航系统源码";
  display: block;
  margin-top: 18px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.34);
  font-size: clamp(24px, 4vw, 52px);
  line-height: 1.08;
}

.hero-lead {
  max-width: 680px;
  margin: 0 0 30px;
  color: #cdd6ee;
  font-size: clamp(17px, 2.1vw, 22px);
  line-height: 1.8;
}

.hero-actions,
.dual-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.btn svg {
  width: 17px;
  height: 17px;
}

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

.btn-primary {
  color: #03111a;
  background: linear-gradient(135deg, var(--green), #9cf7c1);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 26px rgba(53, 230, 155, 0.18);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.12);
}

.btn-secondary.solid {
  background: linear-gradient(135deg, var(--magenta), #7d5cff);
  border-color: rgba(255, 255, 255, 0.16);
}

.btn-outline {
  color: var(--green);
  background: rgba(53, 230, 155, 0.045);
  border-color: rgba(53, 230, 155, 0.24);
}

.hero-panel {
  padding: 18px;
  background: linear-gradient(180deg, rgba(12, 18, 36, 0.86), rgba(9, 13, 27, 0.82));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.live-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(22, 228, 255, 0.25);
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(22, 228, 255, 0.16), rgba(255, 62, 201, 0.12)),
    rgba(255, 255, 255, 0.04);
}

.live-demo-card {
  border-color: rgba(255, 194, 71, 0.44);
  background:
    linear-gradient(135deg, rgba(255, 194, 71, 0.18), rgba(22, 228, 255, 0.14)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 0 28px rgba(255, 194, 71, 0.12);
}

.directory-link {
  position: relative;
  color: inherit;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.directory-link::after {
  content: "›";
  position: absolute;
  right: 14px;
  top: 50%;
  color: var(--cyan);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  opacity: 0;
  transform: translateY(-50%) translateX(-6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.directory-link:hover {
  transform: translateX(3px);
  border-color: rgba(22, 228, 255, 0.48);
  background: rgba(22, 228, 255, 0.08);
  box-shadow: 0 0 24px rgba(22, 228, 255, 0.12);
}

.directory-link:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.small-label,
.live-card span:not(.status-dot),
.metrics span {
  display: block;
  color: var(--dim);
  font-size: 12px;
  font-weight: 800;
}

.live-card strong {
  display: block;
  margin-top: 2px;
  font-size: 20px;
  line-height: 1.2;
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 28px;
  padding: 0 10px;
  color: var(--green);
  border: 1px solid rgba(49, 242, 161, 0.34);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  background: rgba(49, 242, 161, 0.08);
}

.status-dot::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 14px currentColor;
}

.metrics {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.metrics div,
.metrics a {
  position: relative;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.045);
}

.metrics strong {
  display: block;
  margin-top: 2px;
  color: #eaf0ff;
  font-size: 14px;
}

.home-hero-links {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.home-hero-links a {
  position: relative;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.home-hero-links a:hover {
  transform: translateX(3px);
  border-color: rgba(22, 228, 255, 0.42);
  background: rgba(22, 228, 255, 0.08);
}

.home-hero-links span {
  display: block;
  color: var(--dim);
  font-size: 12px;
  font-weight: 800;
}

.home-hero-links strong {
  display: block;
  margin-top: 2px;
  color: #eaf0ff;
  font-size: 14px;
}

.quick-strip {
  position: relative;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 9, 20, 0.88);
}

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

.strip-grid div {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.strip-grid span {
  color: var(--cyan);
  font-size: 24px;
  font-weight: 1000;
  text-shadow: 0 0 16px rgba(22, 228, 255, 0.45);
}

.demo-banner {
  position: relative;
  padding: 34px 0;
  background:
    radial-gradient(circle at 24% 20%, rgba(255, 194, 71, 0.16), transparent 24rem),
    radial-gradient(circle at 86% 30%, rgba(22, 228, 255, 0.14), transparent 26rem),
    rgba(8, 12, 26, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.demo-banner-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 26px;
  border: 1px solid rgba(255, 194, 71, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 194, 71, 0.12), rgba(22, 228, 255, 0.08)),
    rgba(7, 12, 26, 0.82);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

.demo-banner h2 {
  margin: 16px 0 8px;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.15;
}

.demo-banner p {
  max-width: 760px;
  margin: 0;
  color: #dce5ff;
}

.demo-banner-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.home-directory {
  padding-top: 88px;
  background:
    radial-gradient(circle at 18% 12%, rgba(36, 214, 177, 0.08), transparent 26rem),
    radial-gradient(circle at 88% 42%, rgba(241, 182, 74, 0.055), transparent 30rem);
}

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

.home-directory-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
  border: 1px solid rgba(126, 156, 177, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(15, 28, 38, 0.78), rgba(8, 14, 20, 0.88));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.home-directory-card:hover {
  transform: translateY(-4px);
  border-color: rgba(36, 214, 177, 0.38);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.24);
}

.home-directory-card.feature-entry {
  border-color: rgba(241, 182, 74, 0.5);
  background:
    radial-gradient(circle at 12% 0, rgba(241, 182, 74, 0.13), transparent 18rem),
    linear-gradient(180deg, rgba(22, 29, 31, 0.9), rgba(8, 14, 20, 0.92));
}

.home-directory-card > span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(36, 214, 177, 0.25);
  border-radius: 999px;
  color: var(--green);
  background: rgba(53, 230, 155, 0.06);
  font-size: 12px;
  font-weight: 1000;
}

.home-directory-card h3 {
  margin: 18px 0 10px;
  font-size: 25px;
  line-height: 1.18;
}

.home-directory-card p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.home-directory-card .btn,
.home-card-links {
  margin-top: auto;
}

.home-card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.home-card-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(36, 214, 177, 0.22);
  border-radius: 999px;
  color: var(--green);
  background: rgba(53, 230, 155, 0.045);
  font-size: 12px;
  font-weight: 900;
}

.home-card-links a:hover {
  color: #03111a;
  background: linear-gradient(135deg, var(--green), #9cf7c1);
}

.home-showcase {
  padding-top: 64px;
}

.home-showcase-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 44px;
  align-items: center;
}

.home-showcase-media {
  padding: 10px;
  border: 1px solid rgba(139, 156, 255, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(16, 24, 48, 0.82), rgba(8, 13, 29, 0.86));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

.home-showcase-media img {
  width: 100%;
  border-radius: 5px;
}

.home-showcase-copy h2 {
  margin: 18px 0 14px;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.08;
}

.home-showcase-copy p {
  max-width: 620px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.home-showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-mini-shots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.home-mini-shots img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
  border: 1px solid rgba(139, 156, 255, 0.2);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.05);
}

.home-video-section {
  padding-top: 72px;
}

.compact-pricing .price-card {
  min-height: 330px;
}

.compact-pricing .price-card p {
  min-height: 54px;
}

.module-map {
  padding-top: 86px;
  background:
    radial-gradient(circle at 16% 20%, rgba(22, 228, 255, 0.1), transparent 28rem),
    radial-gradient(circle at 82% 40%, rgba(255, 62, 201, 0.08), transparent 30rem);
}

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

.module-card {
  position: relative;
  min-height: 230px;
  padding: 22px;
  border: 1px solid rgba(139, 156, 255, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(16, 24, 48, 0.82), rgba(8, 13, 29, 0.84)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.module-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22, 228, 255, 0.12), transparent 46%, rgba(255, 62, 201, 0.1));
  opacity: 0;
  transition: opacity 200ms ease;
}

.module-card:hover::before {
  opacity: 1;
}

.module-card span,
.module-card h3,
.module-card p {
  position: relative;
}

.module-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 28px;
  margin-bottom: 16px;
  border: 1px solid rgba(22, 228, 255, 0.32);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(22, 228, 255, 0.08);
  font-size: 12px;
  font-weight: 1000;
}

.module-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.25;
}

.module-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.72;
}

.system-overview {
  padding-top: 42px;
}

.overview-frame {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px;
  border: 1px solid rgba(139, 156, 255, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(16, 24, 48, 0.8), rgba(8, 13, 29, 0.82));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.overview-frame img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.section {
  position: relative;
  padding: 104px 0;
}

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

.section-head.align-left {
  margin-left: 0;
  text-align: left;
}

.section-head h2 {
  margin: 18px 0 12px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  font-weight: 1000;
  letter-spacing: 0;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

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

.feature-card,
.price-card,
.release,
.release-mini,
.contact-card,
.compare-table,
.license-shot,
.poster-frame,
.video-frame {
  position: relative;
  border: 1px solid rgba(139, 156, 255, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(16, 24, 48, 0.8), rgba(8, 13, 29, 0.82));
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(14px);
}

.feature-card {
  min-height: 310px;
  padding: 26px;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.feature-card::before,
.price-card::before,
.release::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(22, 228, 255, 0.12), transparent 32%, rgba(255, 62, 201, 0.08));
  opacity: 0;
  transition: opacity 220ms ease;
}

.feature-card:hover,
.price-card:hover,
.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(22, 228, 255, 0.48);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36), 0 0 28px rgba(22, 228, 255, 0.12);
}

.feature-card:hover::before,
.price-card:hover::before,
.contact-card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 7px;
  color: var(--bg);
}

.card-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.2;
}

.card-icon.cyan { background: var(--cyan); box-shadow: 0 0 24px rgba(22, 228, 255, 0.35); }
.card-icon.magenta { background: var(--magenta); box-shadow: 0 0 24px rgba(255, 62, 201, 0.3); }
.card-icon.amber { background: var(--amber); box-shadow: 0 0 24px rgba(255, 194, 71, 0.25); }
.card-icon.green { background: var(--green); box-shadow: 0 0 24px rgba(49, 242, 161, 0.28); }
.card-icon.red { background: var(--red); box-shadow: 0 0 24px rgba(255, 93, 125, 0.26); }
.card-icon.blue { background: var(--blue); box-shadow: 0 0 24px rgba(91, 140, 255, 0.26); }

.feature-card h3,
.price-card h3,
.release h3,
.release-mini h3,
.contact-card h3 {
  position: relative;
  margin: 0 0 14px;
  font-size: 21px;
  line-height: 1.25;
}

.feature-card ul,
.price-card ul,
.release ul {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-card li,
.price-card li,
.release li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}

.feature-card li + li,
.price-card li + li,
.release li + li {
  margin-top: 10px;
}

.feature-card li::before,
.price-card li::before,
.release li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.feature-card strong {
  color: #e8efff;
}

.dense-matrix {
  position: relative;
  background:
    linear-gradient(180deg, rgba(8, 12, 27, 0.82), rgba(5, 7, 15, 0.96)),
    radial-gradient(circle at 10% 12%, rgba(22, 228, 255, 0.12), transparent 30rem),
    radial-gradient(circle at 88% 4%, rgba(255, 62, 201, 0.1), transparent 34rem);
}

.feature-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.feature-stats div {
  min-height: 104px;
  padding: 20px;
  border: 1px solid rgba(22, 228, 255, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(8, 15, 32, 0.78);
}

.feature-stats strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.feature-stats span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

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

.function-group {
  padding: 22px;
  border: 1px solid rgba(139, 156, 255, 0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 0 0, rgba(22, 228, 255, 0.08), transparent 18rem),
    rgba(10, 16, 34, 0.78);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
}

.group-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: start;
  gap: 14px;
  margin-bottom: 18px;
}

.group-head > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #03111a;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  font-size: 13px;
  font-weight: 1000;
}

.group-head h3 {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 22px;
}

.group-head p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.group-head a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(22, 228, 255, 0.28);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(22, 228, 255, 0.07);
  font-size: 12px;
  font-weight: 900;
}

.function-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.function-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(139, 156, 255, 0.2);
  border-radius: 999px;
  color: #dbe6ff;
  background: rgba(255, 255, 255, 0.045);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.media-band {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
    radial-gradient(circle at 74% 50%, rgba(255, 62, 201, 0.12), transparent 30rem);
}

.poster-layout,
.video-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  align-items: center;
}

.poster-frame {
  padding: 10px;
  overflow: visible;
}

.poster-frame img {
  width: 100%;
  border-radius: 5px;
  height: auto;
}

.phone-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
  max-width: 980px;
  margin: 0 auto;
}

.phone-shot {
  margin: 0;
  text-align: center;
}

.phone-shot img {
  width: min(100%, 286px);
  aspect-ratio: 1241 / 2560;
  margin: 0 auto;
  object-fit: cover;
  object-position: top center;
  border: 7px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: #0c1022;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.phone-shot:hover img {
  transform: translateY(-8px);
  border-color: rgba(22, 228, 255, 0.35);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.48), 0 0 28px rgba(22, 228, 255, 0.16);
}

.phone-shot figcaption {
  margin-top: 18px;
  color: #dce5ff;
  font-size: 17px;
  font-weight: 900;
}

.video-section {
  background:
    linear-gradient(180deg, rgba(5, 7, 17, 0.1), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at 14% 60%, rgba(22, 228, 255, 0.12), transparent 26rem);
}

.video-frame {
  padding: 10px;
  overflow: hidden;
}

.video-frame video {
  width: 100%;
  border-radius: 5px;
  background: #02040b;
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.tech-stack span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: #cbd6f5;
  background: rgba(255, 255, 255, 0.055);
  font-size: 13px;
  font-weight: 900;
}

.changelog {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 36%);
}

.timeline {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 10px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(var(--cyan), rgba(255, 62, 201, 0.6), transparent);
  box-shadow: 0 0 20px rgba(22, 228, 255, 0.25);
}

.release {
  margin-left: 48px;
  padding: 28px;
  overflow: hidden;
}

.release + .release {
  margin-top: 18px;
}

.release::after {
  content: "";
  position: absolute;
  left: -39px;
  top: 32px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 8px rgba(22, 228, 255, 0.1), 0 0 22px var(--cyan);
}

.release-hot {
  border-color: rgba(22, 228, 255, 0.45);
}

.release-date {
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

.release-note {
  margin: 0 0 22px;
  padding: 14px 16px;
  border: 1px solid rgba(22, 228, 255, 0.2);
  border-radius: 6px;
  color: #dce5ff;
  background: rgba(22, 228, 255, 0.07);
  font-size: 14px;
}

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

.release h4 {
  margin: 0 0 12px;
  font-size: 15px;
}

.release-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 0 48px;
}

.release-mini {
  padding: 20px;
}

.release-mini span {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
}

.release-mini h3 {
  font-size: 16px;
}

.release-mini p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.pricing {
  background:
    radial-gradient(circle at 50% 16%, rgba(22, 228, 255, 0.1), transparent 34rem),
    rgba(255, 255, 255, 0.015);
}

.license-shot {
  max-width: 880px;
  margin: 0 auto 34px;
  padding: 10px;
  overflow: visible;
}

.license-shot img {
  width: 100%;
  border-radius: 5px;
  height: auto;
}

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

.price-card {
  padding: 28px;
  overflow: hidden;
}

.price-card.featured {
  border-color: rgba(241, 182, 74, 0.54);
  background:
    radial-gradient(circle at 16% 0, rgba(241, 182, 74, 0.14), transparent 18rem),
    linear-gradient(180deg, rgba(23, 29, 30, 0.92), rgba(8, 14, 20, 0.92));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(241, 182, 74, 0.12);
}

.badge {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  margin-bottom: 14px;
  border-radius: 999px;
  color: #080c18;
  background: linear-gradient(135deg, var(--amber), #ffe2a0);
  font-size: 12px;
  font-weight: 1000;
}

.price-card .price {
  margin: 4px 0 4px;
  color: var(--amber);
  font-size: 38px;
  line-height: 1.1;
  font-weight: 1000;
  text-shadow: 0 0 18px rgba(241, 182, 74, 0.18);
}

.price-card p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
}

.price-card ul {
  min-height: 200px;
  margin-bottom: 24px;
}

.price-card .muted {
  color: var(--dim);
}

.pricing-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(241, 182, 74, 0.28);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 4% 0, rgba(241, 182, 74, 0.12), transparent 18rem),
    rgba(8, 14, 20, 0.68);
}

.pricing-note strong {
  color: var(--amber);
  font-size: 15px;
}

.pricing-note span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.pricing-note a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(241, 182, 74, 0.28);
  border-radius: 6px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.pricing-compare {
  margin-top: 42px;
  padding: 26px;
  border: 1px solid rgba(126, 156, 177, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(14, 27, 37, 0.72), rgba(7, 13, 18, 0.88));
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
}

.pricing-compare-head {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 22px;
  align-items: end;
  margin-bottom: 20px;
}

.pricing-compare-head h3 {
  margin: 12px 0 0;
  color: #fff;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.18;
}

.pricing-compare-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.pricing-table table {
  min-width: 920px;
}

.pricing-table th,
.pricing-table td {
  width: 25%;
}

.pricing-table th:nth-child(3),
.pricing-table td:nth-child(3) {
  background: rgba(241, 182, 74, 0.06);
}

.pricing-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.pricing-service-grid article {
  min-height: 132px;
  padding: 20px;
  border: 1px solid rgba(126, 156, 177, 0.15);
  border-radius: var(--radius-sm);
  background: rgba(6, 12, 17, 0.58);
}

.pricing-service-grid strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 18px;
}

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

.support-section {
  padding-top: 76px;
  background:
    radial-gradient(circle at 14% 12%, rgba(53, 230, 155, 0.08), transparent 28rem),
    radial-gradient(circle at 86% 20%, rgba(241, 182, 74, 0.08), transparent 30rem);
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 18px;
  align-items: start;
}

.support-panel,
.faq-card,
.support-cta {
  border: 1px solid rgba(126, 156, 177, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(14, 27, 37, 0.74), rgba(7, 13, 18, 0.9));
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.18);
}

.support-panel {
  position: sticky;
  top: 110px;
  padding: 28px;
  overflow: hidden;
}

.support-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 0, rgba(241, 182, 74, 0.16), transparent 22rem),
    linear-gradient(135deg, rgba(53, 230, 155, 0.08), transparent 55%);
}

.support-title,
.support-grid {
  position: relative;
}

.support-title span {
  color: var(--green);
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
}

.support-title h3 {
  margin: 12px 0 10px;
  color: #fff;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.18;
}

.support-title p {
  margin: 0;
  color: #d8e5f5;
  line-height: 1.85;
}

.support-grid {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.support-grid article {
  padding: 18px;
  border: 1px solid rgba(53, 230, 155, 0.18);
  border-radius: 7px;
  background: rgba(5, 10, 14, 0.44);
}

.support-grid strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 17px;
}

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

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

.faq-card {
  min-height: 210px;
  padding: 22px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.faq-card:hover {
  transform: translateY(-3px);
  border-color: rgba(36, 214, 177, 0.36);
  background:
    radial-gradient(circle at 8% 0, rgba(36, 214, 177, 0.08), transparent 16rem),
    linear-gradient(180deg, rgba(14, 27, 37, 0.78), rgba(7, 13, 18, 0.92));
}

.faq-card h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 20px;
  line-height: 1.25;
}

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

.faq-card a {
  color: var(--green);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.support-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 18px;
  padding: 28px;
  border-color: rgba(241, 182, 74, 0.36);
  background:
    radial-gradient(circle at 12% 0, rgba(241, 182, 74, 0.13), transparent 24rem),
    linear-gradient(135deg, rgba(17, 26, 25, 0.94), rgba(7, 13, 18, 0.9));
}

.support-cta h3 {
  margin: 14px 0 8px;
  color: #fff;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.2;
}

.support-cta p {
  margin: 0;
  color: #d8e5f5;
  line-height: 1.8;
}

.dual-actions .btn {
  flex: 1 1 120px;
}

.license-note {
  margin: 24px auto 0;
  max-width: 920px;
  color: var(--dim);
  font-size: 13px;
  text-align: center;
}

.compare-section {
  padding-top: 0;
}

.compare-table {
  overflow-x: auto;
}

.compare-table table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  color: #dce5ff;
  font-size: 14px;
}

.compare-table th,
.compare-table td {
  padding: 18px;
  border-bottom: 1px solid rgba(126, 156, 177, 0.14);
  text-align: center;
  vertical-align: top;
}

.compare-table th:nth-child(3),
.compare-table td:nth-child(3) {
  border-left: 1px solid rgba(241, 182, 74, 0.32);
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.04);
}

.compare-table td[colspan="2"] {
  border-left: 1px solid rgba(241, 182, 74, 0.2);
}

.compare-table th {
  color: var(--text);
  background: rgba(36, 214, 177, 0.07);
  font-size: 16px;
}

.compare-table th:first-child,
.compare-table td:first-child {
  width: 24%;
  color: var(--cyan);
  font-weight: 1000;
  text-align: left;
  background: rgba(255, 255, 255, 0.025);
}

.compare-table th span {
  color: var(--magenta);
  font-size: 20px;
}

.table-break td {
  color: var(--bg) !important;
  background: linear-gradient(135deg, var(--green), #9cf7c1) !important;
  font-size: 12px;
  font-weight: 1000;
  text-align: center !important;
  text-transform: uppercase;
}

.service-diff {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid rgba(139, 156, 255, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(16, 24, 48, 0.82), rgba(8, 13, 29, 0.86));
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.24);
}

.service-diff-head {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
}

.service-diff-head span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
}

.service-diff-head h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
}

.service-diff-head p {
  margin: 0;
  color: var(--muted);
}

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

.service-plan {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.045);
}

.service-plan.highlighted {
  border-color: rgba(22, 228, 255, 0.38);
  background:
    linear-gradient(135deg, rgba(22, 228, 255, 0.12), rgba(49, 242, 161, 0.06)),
    rgba(255, 255, 255, 0.055);
}

.plan-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  margin-bottom: 14px;
  border: 1px solid rgba(22, 228, 255, 0.28);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(22, 228, 255, 0.08);
  font-size: 12px;
  font-weight: 1000;
}

.service-plan.highlighted .plan-tag {
  color: #03111a;
  background: linear-gradient(135deg, var(--cyan), var(--green));
}

.service-plan h4 {
  margin: 0 0 14px;
  font-size: 20px;
}

.service-plan ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-plan li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
}

.service-plan li + li {
  margin-top: 9px;
}

.service-plan li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.contact-section {
  padding-top: 54px;
}

.contact-layout {
  grid-template-columns: 0.8fr 1.2fr;
  align-items: stretch;
}

.contact-copy {
  padding: 36px;
  border: 1px solid rgba(22, 228, 255, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(22, 228, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(10, 15, 30, 0.84);
}

.contact-copy h2 {
  margin: 18px 0 14px;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.12;
}

.contact-copy p {
  margin: 0 0 28px;
  color: var(--muted);
}

.contact-phone {
  display: grid;
  grid-template-columns: 46px 1fr;
  grid-template-areas:
    "icon number"
    "icon label";
  gap: 0 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(49, 242, 161, 0.28);
  border-radius: 7px;
  background: rgba(49, 242, 161, 0.07);
}

.contact-phone span {
  grid-area: icon;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--bg);
  background: var(--green);
  border-radius: 7px;
}

.contact-phone svg {
  width: 22px;
  height: 22px;
}

.contact-phone strong {
  grid-area: number;
  font-size: 24px;
  line-height: 1.1;
}

.contact-phone small {
  grid-area: label;
  color: var(--muted);
}

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

.contact-card {
  padding: 24px;
  text-align: center;
}

.contact-card p {
  min-height: 44px;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13px;
}

.contact-card img {
  width: 142px;
  height: 142px;
  margin: 0 auto 18px;
  object-fit: cover;
  border: 6px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
}

.copy-row {
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
}

.copy-row + .copy-row {
  margin-top: 10px;
}

.copy-row span {
  display: block;
  color: var(--green);
  font-size: 18px;
  font-weight: 1000;
}

.copy-row small {
  color: var(--muted);
}

.qq-number {
  display: block;
  margin: 8px 0 20px;
  color: var(--cyan);
  font-size: 26px;
}

.footer {
  padding: 54px 0 94px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 16% 0%, rgba(22, 228, 255, 0.12), transparent 30rem),
    rgba(3, 5, 12, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) repeat(4, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.footer-brand p {
  max-width: 390px;
  margin: 18px 0 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(22, 228, 255, 0.22);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(22, 228, 255, 0.07);
  font-size: 12px;
  font-weight: 900;
}

.footer-col {
  display: grid;
  gap: 10px;
}

.footer-col h3 {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 16px;
}

.footer-col a,
.footer-col button {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 28px;
  padding: 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.footer-col a:hover,
.footer-col button:hover {
  color: var(--cyan);
}

.footer-contact a:first-of-type {
  color: var(--green);
  font-size: 18px;
  font-weight: 1000;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--dim);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

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

.footer-bottom a + a {
  margin-left: 16px;
}

.mobile-cta {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 380px);
  padding: 28px;
  border: 1px solid rgba(22, 228, 255, 0.35);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(16, 24, 48, 0.98), rgba(8, 13, 29, 0.98));
  box-shadow: var(--shadow), 0 0 38px rgba(22, 228, 255, 0.12);
  text-align: center;
  animation: modal-in 180ms ease both;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.modal-close svg {
  width: 18px;
  height: 18px;
}

.modal-panel h2 {
  margin: 12px 0 8px;
  font-size: 24px;
}

.modal-panel p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.modal-panel img {
  width: 220px;
  height: 220px;
  margin: 0 auto 14px;
  object-fit: cover;
  border: 8px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
}

.modal-panel small {
  display: block;
  color: var(--dim);
}

.text-button {
  display: block;
  margin: 12px auto 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 620ms ease, transform 620ms ease;
  transition-delay: var(--delay, 0ms);
}

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

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1120px) {
  .topbar {
    gap: 10px;
    height: 72px;
  }

  .nav a {
    min-height: 42px;
    padding: 0 9px;
    font-size: 13px;
  }

  .hero-inner,
  .poster-layout,
  .video-layout,
  .contact-layout,
  .home-showcase-layout,
  .support-layout,
  .support-cta,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 560px;
  }

  .feature-grid,
  .pricing-grid,
  .home-directory-grid,
  .function-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .release-mini-grid,
  .contact-grid,
  .faq-grid,
  .module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-panel {
    position: relative;
    top: auto;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .topbar {
    height: 66px;
    top: 10px;
    width: calc(100% - 20px);
    gap: 8px;
    padding: 0 12px;
  }

  .nav-toggle {
    display: block;
    order: 3;
    flex: 0 0 42px;
    margin-left: 0;
  }

  .topbar-phone {
    display: none;
  }

  .topbar-phone span {
    display: none;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px;
    max-height: calc(100vh - 94px);
    overflow-y: auto;
    border: 1px solid rgba(126, 156, 177, 0.22);
    border-radius: 10px;
    background: rgba(7, 14, 20, 0.98);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(18px);
  }

  .nav.is-open {
    display: grid;
  }

  .nav-group {
    border: 1px solid rgba(126, 156, 177, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
  }

  .nav a,
  .nav-trigger {
    justify-content: flex-start;
    min-height: 46px;
    width: 100%;
  }

  .dropdown {
    position: static;
    width: auto;
    padding: 0 8px 8px;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .dropdown::before {
    content: none;
  }

  .nav-group:hover .dropdown,
  .nav-group:focus-within .dropdown {
    transform: none;
  }

  .dropdown a {
    padding: 11px 12px;
    background: rgba(0, 0, 0, 0.16);
  }

  .hero {
    min-height: auto;
    padding: 110px 0 48px;
  }

  .hero-inner {
    gap: 30px;
  }

  .hero h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: clamp(42px, 14.2vw, 68px);
  }

  .hero h1::after {
    font-size: clamp(22px, 7vw, 32px);
  }

  .hero-lead {
    max-width: 100%;
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  .hero-panel {
    width: 100%;
    overflow: hidden;
  }

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

  .section {
    padding: 74px 0;
  }

  .home-directory,
  .home-showcase,
  .home-video-section {
    padding-top: 62px;
  }

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

  .feature-grid,
  .pricing-grid,
  .phone-grid,
  .feature-stats,
  .home-directory-grid,
  .home-showcase-layout,
  .support-layout,
  .support-cta,
  .function-wall,
  .release-columns,
  .release-mini-grid,
  .contact-grid,
  .faq-grid,
  .module-grid {
    grid-template-columns: 1fr;
  }

  .group-head {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .group-head a {
    grid-column: 2;
    justify-self: start;
  }

  .release,
  .release-mini-grid {
    margin-left: 34px;
  }

  .timeline::before {
    left: 12px;
  }

  .release::after {
    left: -29px;
  }

  .contact-card p {
    min-height: 0;
  }

  .support-panel {
    position: relative;
    top: auto;
  }

  .support-cta {
    align-items: stretch;
  }

  .home-showcase-layout {
    gap: 28px;
  }

  .home-mini-shots {
    grid-template-columns: repeat(3, minmax(74px, 1fr));
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 75;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 8px;
    padding: 8px;
    background: rgba(6, 9, 20, 0.92);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(18px);
  }

  .mobile-cta a,
  .mobile-cta button {
    min-width: 0;
    min-height: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
    font-size: 11px;
    font-weight: 900;
    cursor: pointer;
  }

  .mobile-cta button {
    color: #03111a;
    background: linear-gradient(135deg, var(--cyan), var(--green));
  }

  .mobile-cta svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 560px) {
  .brand {
    font-size: 16px;
    min-width: 0;
    max-width: calc(100% - 54px);
  }

  .brand > span:last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero-actions,
  .dual-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .eyebrow,
  .section-kicker {
    max-width: 100%;
    min-height: 28px;
    font-size: 10px;
  }

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

  .strip-grid div {
    min-height: 66px;
  }

  .feature-card,
  .function-group,
  .price-card,
  .release,
  .release-mini,
  .contact-card,
  .contact-copy {
    padding: 22px;
  }

  .release,
  .release-mini-grid {
    margin-left: 24px;
  }

  .release::after {
    left: -24px;
  }

  .phone-shot img {
    width: min(100%, 250px);
  }

  .contact-phone {
    grid-template-columns: 1fr;
    grid-template-areas:
      "icon"
      "number"
      "label";
    justify-items: center;
    text-align: center;
  }

  .compare-table table {
    min-width: 690px;
  }
}

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

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

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

.pricing .license-shot {
  display: block !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  overflow: visible !important;
}

.pricing .license-shot img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: top center !important;
}

.subpage {
  min-height: 100vh;
  background:
    radial-gradient(circle at 16% 4%, rgba(22, 228, 255, 0.24), transparent 32rem),
    radial-gradient(circle at 86% 0%, rgba(255, 62, 201, 0.14), transparent 34rem),
    linear-gradient(180deg, #070b18 0%, #0b1020 46%, #050711 100%);
}

.sub-site {
  min-height: 100vh;
  overflow: clip;
}

.sub-hero {
  padding: 118px 0 70px;
  border-bottom: 1px solid rgba(139, 156, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    radial-gradient(circle at 50% 0%, rgba(22, 228, 255, 0.12), transparent 38rem);
}

.sub-hero .topbar {
  position: fixed;
}

.sub-nav {
  width: min(1240px, calc(100% - 28px));
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 auto;
  padding: 0 16px;
  border: 1px solid rgba(139, 156, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(6, 9, 20, 0.72);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.sub-hero-inner {
  padding-top: 78px;
}

.sub-hero h1 {
  margin: 18px 0 14px;
  max-width: 920px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.98;
  font-weight: 1000;
}

.sub-hero p {
  max-width: 820px;
  margin: 0;
  color: #cdd6ee;
  font-size: 18px;
  line-height: 1.85;
}

.sub-main {
  padding: 72px 0 96px;
}

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

.detail-card {
  padding: 28px;
  border: 1px solid rgba(139, 156, 255, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(16, 24, 48, 0.84), rgba(8, 13, 29, 0.86));
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.22);
}

.detail-card h2 {
  margin: 0 0 16px;
  font-size: 24px;
}

.detail-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 15px;
}

.detail-card li + li {
  margin-top: 10px;
}

.detail-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.link-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.link-cloud a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(22, 228, 255, 0.28);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(22, 228, 255, 0.07);
  font-size: 13px;
  font-weight: 900;
}

.link-cloud a:hover {
  color: #03111a;
  background: linear-gradient(135deg, var(--green), #9cf7c1);
}

.sub-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.sub-proof div {
  min-height: 92px;
  padding: 18px;
  border: 1px solid rgba(126, 156, 177, 0.16);
  border-radius: var(--radius-sm);
  background: rgba(9, 17, 23, 0.66);
}

.sub-proof strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.1;
}

.sub-proof span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.sub-section {
  margin-top: 26px;
  padding: 30px;
  border: 1px solid rgba(126, 156, 177, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(14, 27, 37, 0.72), rgba(7, 13, 18, 0.88));
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
}

.sub-section h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 38px);
}

.sub-section > p {
  max-width: 920px;
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.8;
}

.value-grid,
.scenario-grid,
.module-list,
.flow-steps,
.selling-grid,
.source-grid {
  display: grid;
  gap: 14px;
}

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

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

.module-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.flow-steps {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  counter-reset: step;
}

.info-tile,
.scenario-card,
.module-item,
.flow-step,
.source-card,
.selling-card {
  border: 1px solid rgba(126, 156, 177, 0.15);
  border-radius: var(--radius-sm);
  background: rgba(6, 12, 17, 0.58);
}

.info-tile,
.scenario-card,
.source-card,
.selling-card {
  padding: 20px;
}

.info-tile strong,
.scenario-card strong,
.source-card strong,
.selling-card strong {
  display: block;
  margin-bottom: 9px;
  color: #ffffff;
  font-size: 18px;
}

.info-tile p,
.scenario-card p,
.source-card p,
.selling-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.module-item {
  min-height: 88px;
  padding: 16px;
}

.module-item span {
  display: block;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.module-item strong {
  display: block;
  margin-top: 6px;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.45;
}

.flow-step {
  position: relative;
  padding: 18px;
  min-height: 132px;
}

.flow-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 50%;
  color: #03111a;
  background: linear-gradient(135deg, var(--green), #9cf7c1);
  font-size: 12px;
  font-weight: 1000;
}

.flow-step strong {
  display: block;
  color: #ffffff;
  font-size: 16px;
}

.flow-step span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.feature-table {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(126, 156, 177, 0.16);
  border-radius: var(--radius-sm);
  background: rgba(5, 10, 14, 0.28);
}

.feature-table table {
  width: 100%;
  border-collapse: collapse;
}

.feature-table th,
.feature-table td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(126, 156, 177, 0.12);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  text-align: left;
  vertical-align: top;
}

.feature-table th {
  color: #ffffff;
  background: rgba(36, 214, 177, 0.07);
  font-size: 13px;
}

.feature-table tr:last-child td {
  border-bottom: 0;
}

.feature-table td:first-child {
  width: 22%;
  color: #ffffff;
  font-weight: 900;
}

.buy-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
  padding: 28px;
  border: 1px solid rgba(241, 182, 74, 0.38);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 0, rgba(241, 182, 74, 0.13), transparent 24rem),
    linear-gradient(135deg, rgba(17, 26, 25, 0.94), rgba(7, 13, 18, 0.9));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
}

.buy-cta h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 4vw, 44px);
}

.buy-cta p {
  margin: 0;
  color: #d8e5f5;
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.sub-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.demo-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 7, 17, 0.88), rgba(5, 7, 17, 0.58)),
    url("assets/hero-system.png");
  background-size: cover;
  background-position: center 18%;
}

.demo-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(0deg, rgba(5, 7, 17, 0.92), transparent 52%),
    linear-gradient(90deg, rgba(22, 228, 255, 0.14), transparent 34%, rgba(255, 194, 71, 0.1));
  pointer-events: none;
}

.demo-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: end;
}

.demo-hero-copy h1 {
  max-width: 760px;
}

.demo-hero-actions {
  margin-top: 24px;
}

.demo-live-panel {
  padding: 24px;
  border: 1px solid rgba(241, 182, 74, 0.52);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(241, 182, 74, 0.14), rgba(10, 18, 24, 0.94)),
    rgba(10, 18, 24, 0.9);
  box-shadow: var(--shadow), 0 0 34px rgba(241, 182, 74, 0.1);
  backdrop-filter: blur(16px);
}

.demo-live-panel span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(49, 242, 161, 0.32);
  border-radius: 999px;
  color: var(--green);
  background: rgba(49, 242, 161, 0.08);
  font-size: 12px;
  font-weight: 1000;
}

.demo-live-panel strong {
  display: block;
  margin: 16px 0 10px;
  color: var(--amber);
  font-size: 22px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.demo-live-panel p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.demo-proof div:first-child {
  border-color: rgba(241, 182, 74, 0.52);
  background:
    linear-gradient(135deg, rgba(241, 182, 74, 0.14), rgba(36, 214, 177, 0.05)),
    rgba(12, 22, 30, 0.8);
}

.demo-proof div:not(:first-child) {
  border-color: rgba(126, 156, 177, 0.16);
  background: rgba(9, 17, 23, 0.62);
}

.demo-entry-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1.45fr) repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.demo-entry-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid rgba(126, 156, 177, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(16, 29, 39, 0.82), rgba(8, 14, 20, 0.92));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.demo-entry-primary {
  border-color: rgba(241, 182, 74, 0.62);
  background:
    radial-gradient(circle at 12% 0, rgba(241, 182, 74, 0.16), transparent 20rem),
    linear-gradient(180deg, rgba(30, 31, 29, 0.9), rgba(10, 16, 20, 0.94));
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(241, 182, 74, 0.16);
}

.demo-entry-card span {
  color: var(--green);
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
}

.demo-entry-primary span,
.demo-entry-primary h2 {
  color: #fff6df;
}

.demo-entry-card h2 {
  margin: 12px 0 10px;
  font-size: 22px;
  line-height: 1.2;
}

.demo-entry-primary h2 {
  font-size: 30px;
}

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

.demo-entry-card .btn {
  margin-top: auto;
}

.demo-url,
.demo-contact-line {
  width: 100%;
  margin: auto 0 16px;
  padding: 12px;
  border: 1px solid rgba(36, 214, 177, 0.24);
  border-radius: 6px;
  color: var(--green);
  background: rgba(0, 0, 0, 0.22);
  font-size: 13px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.demo-contact-line {
  color: var(--muted);
  font-size: 18px;
}

.demo-entry-primary .demo-url {
  border-color: rgba(241, 182, 74, 0.34);
  color: #ffe2a0;
  background: rgba(0, 0, 0, 0.26);
}

.demo-flow {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.demo-sell-section {
  border-color: rgba(255, 194, 71, 0.24);
}

.demo-account-grid,
.case-grid,
.case-link-grid {
  display: grid;
  gap: 14px;
}

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

.demo-account-card,
.case-card,
.case-link-grid a {
  border: 1px solid rgba(126, 156, 177, 0.18);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(180deg, rgba(14, 27, 37, 0.72), rgba(7, 13, 18, 0.8));
}

.demo-account-card {
  min-height: 148px;
  padding: 18px;
}

.demo-account-card span,
.case-card span,
.case-link-grid span {
  display: block;
  margin-bottom: 9px;
  color: var(--green);
  font-size: 12px;
  font-weight: 1000;
}

.demo-account-card strong,
.case-card strong,
.case-link-grid strong {
  display: block;
  color: #fff;
  font-size: 18px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.demo-account-card small,
.case-card p {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.demo-account-card a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--green);
  font-weight: 900;
}

.admin-account {
  border-color: rgba(241, 182, 74, 0.42);
  background:
    radial-gradient(circle at 12% 0, rgba(241, 182, 74, 0.13), transparent 18rem),
    rgba(9, 16, 21, 0.82);
}

.case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 14px;
}

.case-card {
  padding: 20px;
}

.miniapp-case {
  border-color: rgba(53, 230, 155, 0.28);
}

.case-link-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.case-link-grid a {
  min-height: 108px;
  padding: 18px;
  color: inherit;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.case-link-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(36, 214, 177, 0.44);
  background: rgba(36, 214, 177, 0.08);
}

/* Global visual hierarchy pass: calmer panels, clear primary actions. */
.feature-card,
.price-card,
.contact-card,
.detail-card,
.docs-pricing-grid article,
.docs-value-grid article,
.docs-highlight-grid article,
.docs-compare article,
.service-diff-card,
.release,
.release-mini-grid article,
.module-card {
  border-color: rgba(126, 156, 177, 0.16) !important;
  background:
    linear-gradient(180deg, rgba(14, 27, 37, 0.74), rgba(7, 13, 18, 0.88)) !important;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.18) !important;
}

.feature-card:hover,
.price-card:hover,
.contact-card:hover,
.home-directory-card:hover,
.detail-card:hover,
.docs-pricing-grid article:hover,
.case-link-grid a:hover {
  border-color: rgba(36, 214, 177, 0.36) !important;
}

.price-card.featured,
.docs-pricing-grid article.featured,
.home-directory-card.feature-entry,
.demo-entry-primary,
.admin-account {
  border-color: rgba(241, 182, 74, 0.52) !important;
  background:
    radial-gradient(circle at 12% 0, rgba(241, 182, 74, 0.14), transparent 20rem),
    linear-gradient(180deg, rgba(25, 29, 28, 0.9), rgba(8, 14, 20, 0.92)) !important;
}

.section-kicker,
.eyebrow,
.home-directory-card > span,
.module-item span,
.demo-entry-card span,
.demo-account-card span,
.case-card span,
.case-link-grid span,
.docs-pricing-grid span {
  color: var(--green);
  border-color: rgba(53, 230, 155, 0.24);
  background: rgba(53, 230, 155, 0.055);
}

.price-card.featured .badge,
.docs-pricing-grid article.featured span,
.demo-entry-primary span {
  color: #161006;
  border-color: rgba(241, 182, 74, 0.44);
  background: linear-gradient(135deg, var(--amber), #ffe2a0);
}

.docs-hero {
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 194, 71, 0.16), transparent 30rem),
    radial-gradient(circle at 82% 18%, rgba(22, 228, 255, 0.14), transparent 34rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent);
}

.docs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.docs-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(22, 228, 255, 0.24);
  border-radius: 999px;
  color: #dce5ff;
  background: rgba(22, 228, 255, 0.07);
  font-size: 12px;
  font-weight: 900;
}

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

.docs-compare-card {
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.2);
}

.docs-compare-card.warning {
  border: 1px solid rgba(255, 93, 125, 0.32);
  background:
    linear-gradient(180deg, rgba(255, 93, 125, 0.11), rgba(8, 13, 29, 0.88)),
    rgba(8, 13, 29, 0.84);
}

.docs-compare-card.success {
  border: 1px solid rgba(49, 242, 161, 0.32);
  background:
    linear-gradient(180deg, rgba(49, 242, 161, 0.11), rgba(8, 13, 29, 0.88)),
    rgba(8, 13, 29, 0.84);
}

.docs-compare-card h2 {
  margin: 0 0 16px;
  font-size: 26px;
}

.docs-compare-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.docs-compare-card li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
}

.docs-compare-card li + li {
  margin-top: 10px;
}

.docs-compare-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.docs-compare-card.warning li::before {
  background: var(--red);
  box-shadow: 0 0 12px var(--red);
}

.docs-compare-card.success li::before {
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
}

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

.docs-highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.docs-highlight-grid article {
  min-height: 210px;
  padding: 20px;
  border: 1px solid rgba(139, 156, 255, 0.18);
  border-radius: var(--radius-sm);
  background:
    radial-gradient(circle at 0 0, rgba(22, 228, 255, 0.08), transparent 14rem),
    rgba(6, 10, 24, 0.58);
}

.docs-highlight-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 28px;
  margin-bottom: 14px;
  border: 1px solid rgba(22, 228, 255, 0.28);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(22, 228, 255, 0.08);
  font-size: 12px;
  font-weight: 1000;
}

.docs-highlight-grid strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 17px;
}

.docs-highlight-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.docs-table table {
  min-width: 900px;
}

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

.docs-pricing-grid article {
  padding: 26px;
  border: 1px solid rgba(139, 156, 255, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(16, 24, 48, 0.84), rgba(8, 13, 29, 0.9));
}

.docs-pricing-grid article.featured {
  border-color: rgba(22, 228, 255, 0.45);
  background:
    linear-gradient(180deg, rgba(22, 228, 255, 0.13), rgba(8, 13, 29, 0.9)),
    rgba(8, 13, 29, 0.9);
  box-shadow: 0 22px 70px rgba(22, 228, 255, 0.12);
}

.docs-pricing-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #03111a;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  font-size: 13px;
  font-weight: 1000;
}

.docs-pricing-grid h3 {
  margin: 16px 0 8px;
  font-size: 22px;
}

.docs-pricing-grid strong {
  display: block;
  color: var(--cyan);
  font-size: 34px;
  line-height: 1.1;
}

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

@media (max-width: 860px) {
  .sub-nav {
    min-height: 62px;
  }

  .sub-nav .btn {
    width: auto;
    min-height: 40px;
    padding: 0 12px;
    font-size: 12px;
  }

  .sub-hero-inner {
    padding-top: 54px;
  }

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

  .service-diff-grid {
    grid-template-columns: 1fr;
  }

  .sub-proof,
  .value-grid,
  .scenario-grid,
  .selling-grid,
  .source-grid,
  .pricing-note,
  .pricing-compare-head,
  .pricing-service-grid,
  .demo-account-grid,
  .case-grid,
  .case-link-grid,
  .demo-entry-grid,
  .docs-compare,
  .docs-value-grid,
  .docs-highlight-grid,
  .docs-pricing-grid,
  .module-list,
  .flow-steps,
  .buy-cta {
    grid-template-columns: 1fr;
  }

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

  .buy-cta {
    align-items: stretch;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .feature-table {
    overflow-x: auto;
  }

  .feature-table table {
    min-width: 680px;
  }

  .pricing-table table {
    min-width: 920px;
  }

  .pricing-note {
    align-items: stretch;
  }

  .pricing-note a {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .sub-nav {
    width: calc(100% - 20px);
    padding: 0 10px;
  }

  .sub-nav .brand {
    max-width: calc(100% - 106px);
  }

  .sub-hero h1 {
    font-size: clamp(38px, 14vw, 58px);
  }

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

  .detail-card {
    padding: 22px;
  }

  .sub-section,
  .buy-cta {
    padding: 22px;
  }

  .sub-proof div {
    min-height: 82px;
  }
}
