:root {
  --ink: #f6f9ff;
  --muted: #9db2c9;
  --muted-strong: #c4d2e1;
  --navy-950: #050b14;
  --navy-900: #07111f;
  --navy-850: #0a1626;
  --navy-800: #0e1c2e;
  --navy-750: #13243a;
  --line: rgba(123, 174, 223, 0.18);
  --blue: #167dff;
  --blue-strong: #0868eb;
  --cyan: #16c9ff;
  --amber: #eaae38;
  --success: #43d2a0;
  --danger: #ff7182;
  --radius: 18px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --container: 1240px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--navy-950);
  font-family:
    "Manrope",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at 75% 10%,
    rgba(15, 110, 255, 0.08),
    transparent 34%
  );
  z-index: -1;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button,
input,
textarea,
select {
  font: inherit;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  line-height: 1.14;
  letter-spacing: -0.035em;
}
h1 {
  font-size: clamp(3rem, 5.2vw, 5rem);
  margin-bottom: 26px;
}
h2 {
  font-size: clamp(2.15rem, 3.5vw, 3.45rem);
  margin-bottom: 22px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
p {
  color: var(--muted);
}
ul {
  margin: 0;
  padding: 0;
}
.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}
.narrow {
  max-width: 820px;
}
.section {
  padding: 112px 0;
}
.muted-section {
  background: linear-gradient(
    180deg,
    rgba(13, 29, 48, 0.75),
    rgba(7, 17, 31, 0.75)
  );
  border-block: 1px solid var(--line);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 16px;
  background: white;
  color: #07111f;
  z-index: 1000;
  border-radius: 8px;
}
.skip-link:focus {
  transform: translateY(0);
}
.eyebrow {
  margin-bottom: 15px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-header {
  position: relative;
  z-index: 50;
  min-height: 86px;
  border-bottom: 1px solid rgba(86, 152, 216, 0.12);
  background: rgba(5, 12, 22, 0.82);
  backdrop-filter: blur(18px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
}
.brand-name {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}
.brand-name strong {
  color: var(--cyan);
}
.site-logo {
  display: block;
  width: 218px;
  height: auto;
}
.footer-logo {
  width: 196px;
}
.logo-placeholder {
  display: grid;
  place-items: center;
  min-width: 112px;
  height: 38px;
  padding: 0 14px;
  border: 1px dashed rgba(130, 186, 239, 0.55);
  color: #dcecff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  border-radius: 8px;
}
.logo-placeholder.small {
  min-width: 64px;
  width: 64px;
  height: 32px;
  font-size: 0.57rem;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 38px;
}
.nav-link {
  position: relative;
  padding: 31px 0 27px;
  color: #d8e3ef;
  font-size: 0.94rem;
  font-weight: 600;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 21px;
  height: 2px;
  background: var(--cyan);
  transition: right 0.18s ease;
}
.nav-link:hover,
.nav-link.active {
  color: var(--cyan);
}
.nav-link:hover::after,
.nav-link.active::after {
  right: 0;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 10px;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: white;
}

.hero {
  position: relative;
  min-height: 790px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 72% 42%,
      rgba(0, 124, 255, 0.16),
      transparent 33%
    ),
    linear-gradient(135deg, #050b14, #071426 58%, #06101e);
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(22, 201, 255, 0.45),
    transparent
  );
}
.hero-grid-bg {
  position: absolute;
  top: 0;
  right: -12%;
  width: 70%;
  height: 100%;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(22, 201, 255, 0.32) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 201, 255, 0.32) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to left, black, transparent);
  transform: perspective(500px) rotateY(-7deg);
}
.hero-layout {
  display: grid;
  grid-template-columns: 0.83fr 1.25fr;
  align-items: center;
  gap: 60px;
  padding-block: 80px;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.hero-copy h1 {
  max-width: 620px;
}
.hero-lead {
  max-width: 600px;
  font-size: clamp(1.08rem, 1.55vw, 1.32rem);
  color: #a9c1d8;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 35px;
}
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 11px;
  color: white;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button.primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-strong));
  box-shadow: 0 12px 32px rgba(22, 125, 255, 0.26);
}
.button.primary:hover {
  box-shadow: 0 16px 42px rgba(22, 125, 255, 0.4);
}
.button.secondary {
  color: #64d8ff;
  border-color: #168cff;
  background: rgba(5, 15, 29, 0.44);
}
.button.secondary:hover {
  background: rgba(22, 125, 255, 0.12);
}
.button.full {
  width: 100%;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 28px;
  color: #7f9bb5;
  font-size: 0.82rem;
}
.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-proof span::before {
  content: "✓";
  color: var(--success);
  font-weight: 800;
}

.display-stage {
  position: relative;
  z-index: 2;
  padding: 34px 12px 50px;
}
.display-glow {
  position: absolute;
  inset: 16% 10% 10%;
  background: #087dff;
  opacity: 0.23;
  filter: blur(55px);
  border-radius: 50%;
}
.display-shell {
  position: relative;
  padding: 10px;
  border: 1px solid rgba(22, 201, 255, 0.75);
  background: #050a11;
  border-radius: 14px;
  box-shadow:
    0 0 0 4px #101a25,
    0 0 30px rgba(0, 145, 255, 0.3),
    var(--shadow);
  transform: perspective(1200px) rotateY(-4deg);
}
.display-screen {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  grid-template-rows: 1fr 1fr 48px;
  gap: 8px;
  min-height: 420px;
  overflow: hidden;
  background: #06101d;
}
.demo-photo {
  grid-row: 1 / 3;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 34px;
  overflow: hidden;
  background:
    linear-gradient(180deg, transparent, rgba(3, 8, 15, 0.86)),
    radial-gradient(
      circle at 72% 28%,
      rgba(234, 174, 56, 0.46),
      transparent 17%
    ),
    linear-gradient(135deg, #1e2a33, #4b2e1b 47%, #0d1823);
}
.demo-photo::before,
.demo-photo::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: #ffc761;
  box-shadow: 0 0 22px #eaae38;
}
.demo-photo::before {
  width: 14px;
  height: 14px;
  top: 25%;
  right: 27%;
}
.demo-photo::after {
  width: 10px;
  height: 10px;
  top: 34%;
  right: 43%;
}
.photo-copy {
  position: relative;
  z-index: 2;
}
.photo-copy span {
  color: var(--amber);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}
.photo-copy strong {
  display: block;
  margin-top: 9px;
  font-size: clamp(1.45rem, 2.1vw, 2.15rem);
  line-height: 1.14;
}
.demo-counter,
.demo-special {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px;
  text-align: center;
  background: linear-gradient(145deg, #0c2843, #07192b);
  border: 1px solid rgba(22, 201, 255, 0.3);
}
.counter-icon {
  color: var(--cyan);
  font-size: 1.5rem;
}
.demo-counter strong {
  font-size: clamp(2.3rem, 4.3vw, 4rem);
  line-height: 1;
}
.demo-counter > span:last-child {
  color: #a4bad0;
  font-size: 1.05rem;
}
.demo-special {
  border-color: rgba(234, 174, 56, 0.72);
  background: linear-gradient(145deg, #17273a, #0b1725);
}
.demo-special span {
  color: var(--amber);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}
.demo-special strong {
  margin-top: 5px;
  color: #ffd37c;
  font-size: 1.17rem;
}
.demo-special p {
  margin: 6px 0 0;
  font-size: 0.73rem;
  line-height: 1.4;
}
.demo-ticker {
  grid-column: 1 / 3;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(22, 201, 255, 0.28);
  background: #07111f;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: max-content;
  color: white;
  animation: ticker 28s linear infinite;
}
.ticker-track i {
  width: 5px;
  height: 5px;
  background: var(--cyan);
  border-radius: 50%;
}
.display-stand {
  position: relative;
  width: 23%;
  height: 14px;
  margin: 22px auto 0;
  border-radius: 50%;
  background: #111f2e;
  box-shadow: 0 10px 34px rgba(0, 138, 255, 0.48);
}
@keyframes ticker {
  to {
    transform: translateX(-45%);
  }
}

.centered-copy {
  max-width: 780px;
  margin-bottom: 50px;
  text-align: center;
}
.centered-copy > p:last-child {
  font-size: 1.08rem;
}
.feature-grid {
  display: grid;
  gap: 18px;
}
.four-up {
  grid-template-columns: repeat(4, 1fr);
}
.feature-card {
  position: relative;
  min-height: 255px;
  padding: 30px;
  border: 1px solid var(--line);
  background: linear-gradient(
    145deg,
    rgba(17, 35, 56, 0.9),
    rgba(8, 20, 34, 0.85)
  );
  border-radius: var(--radius);
  overflow: hidden;
}
.feature-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -55px;
  bottom: -55px;
  border: 1px solid rgba(22, 201, 255, 0.23);
  border-radius: 50%;
}
.feature-number {
  display: inline-flex;
  margin-bottom: 46px;
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.feature-card p {
  margin-bottom: 0;
  font-size: 0.92rem;
}
.live-demo-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 62%, rgba(22, 125, 255, 0.16), transparent 38%),
    linear-gradient(180deg, #07111f, #050b14);
}
.live-demo-heading {
  margin-bottom: 52px;
}
.live-demo-heading > p {
  max-width: 560px;
}
.live-display-stage {
  position: relative;
  max-width: 1120px;
  margin-inline: auto;
  padding: 0 14px;
}
.live-display-glow {
  position: absolute;
  inset: 12% 5% 4%;
  border-radius: 50%;
  background: rgba(22, 125, 255, 0.28);
  filter: blur(70px);
}
.live-display-frame {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 10px;
  border: 1px solid rgba(22, 201, 255, 0.72);
  border-radius: 18px;
  background: #02060b;
  box-shadow:
    0 0 0 5px #111d29,
    0 30px 80px rgba(0, 0, 0, 0.48),
    0 0 42px rgba(22, 125, 255, 0.22);
}
.live-display-topbar {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 12px 8px;
  color: #6f8ca8;
  font-size: 0.74rem;
  letter-spacing: 0.02em;
}
.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #d8e8f7;
  font-weight: 700;
}
.live-indicator i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 12px rgba(67, 210, 160, 0.82);
}
.live-display-viewport {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #02060b;
  border-radius: 8px;
}
.live-display-viewport iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #02060b;
}
.live-display-neck {
  position: relative;
  z-index: 1;
  width: 82px;
  height: 36px;
  margin: 5px auto 0;
  background: linear-gradient(90deg, #0a1420, #26384a 50%, #0a1420);
}
.live-display-base {
  position: relative;
  z-index: 2;
  width: 260px;
  height: 16px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(180deg, #34485b, #0b1622);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.52);
}
.live-demo-actions {
  display: flex;
  max-width: 1120px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 42px auto 0;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(10, 22, 38, 0.72);
}
.live-demo-actions p {
  max-width: 720px;
  margin: 0;
  font-size: 0.88rem;
}
.live-demo-actions .button {
  flex: 0 0 auto;
}
.split-section {
  background: #060e19;
}
.split-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 80px;
  align-items: center;
}
.split-layout.reverse {
  grid-template-columns: 0.88fr 1.12fr;
}
.control-window {
  overflow: hidden;
  border: 1px solid rgba(22, 201, 255, 0.35);
  background: #081525;
  border-radius: 17px;
  box-shadow:
    var(--shadow),
    0 0 40px rgba(0, 111, 255, 0.13);
}
.window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 46px;
  padding: 0 16px;
  background: #101d2b;
  border-bottom: 1px solid var(--line);
}
.window-bar span {
  width: 9px;
  height: 9px;
  background: #41617e;
  border-radius: 50%;
}
.window-bar em {
  margin-left: auto;
  color: #7692ae;
  font-size: 0.68rem;
  font-style: normal;
}
.window-body {
  display: grid;
  grid-template-columns: 155px 1fr;
  min-height: 340px;
}
.side-menu {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 25px 20px;
  border-right: 1px solid var(--line);
  color: #7692ae;
  font-size: 0.75rem;
}
.side-menu b {
  color: white;
}
.settings-panel {
  padding: 28px;
}
.settings-panel small {
  color: var(--cyan);
  font-weight: 800;
  letter-spacing: 0.15em;
}
.mini-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 1fr 1fr 27px;
  gap: 6px;
  height: 195px;
  margin: 16px 0 22px;
  padding: 6px;
  border: 1px solid #29435b;
  background: #050d17;
}
.mini-layout div {
  background: #15304a;
}
.mini-layout div:first-child {
  grid-row: 1 / 3;
  background: linear-gradient(135deg, #15304a, #50321f);
}
.mini-layout div:last-child {
  grid-column: 1 / 3;
  background: #147dff;
}
.settings-panel button {
  width: 100%;
  min-height: 42px;
  border: 0;
  color: white;
  background: var(--blue);
  border-radius: 8px;
  font-weight: 700;
}
.split-copy > p:not(.eyebrow) {
  font-size: 1.03rem;
}
.check-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 28px 0 31px;
}
.check-list li {
  display: flex;
  gap: 11px;
  color: var(--muted-strong);
}
.check-list li::before {
  content: "✓";
  color: var(--cyan);
  font-weight: 800;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  font-weight: 700;
}
.text-link span {
  transition: transform 0.18s ease;
}
.text-link:hover span {
  transform: translateX(5px);
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 46px;
}
.section-heading > div {
  max-width: 680px;
}
.section-heading > p {
  max-width: 470px;
}
.use-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}
.use-card {
  min-height: 250px;
  padding: 30px;
  background: #07111f;
}
.use-card > span {
  color: #507292;
  font-size: 0.72rem;
  font-weight: 800;
}
.use-card h3 {
  margin-top: 60px;
}
.use-card p {
  margin-bottom: 0;
  font-size: 0.9rem;
}
.cta-band {
  padding: 76px 0;
  background: linear-gradient(105deg, #0b233d, #082a4e 54%, #0a1c31);
  border-block: 1px solid rgba(22, 201, 255, 0.25);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
}
.cta-inner h2 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 3.2vw, 3.1rem);
}
.cta-inner p:last-child {
  margin-bottom: 0;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 75% 10%,
      rgba(22, 125, 255, 0.22),
      transparent 34%
    ),
    linear-gradient(145deg, #050b14, #0a1728);
  border-bottom: 1px solid var(--line);
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0 0 0 55%;
  background-image:
    linear-gradient(rgba(22, 201, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 201, 255, 0.1) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to left, #000, transparent);
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero.compact {
  padding: 112px 0 104px;
}
.page-hero h1 {
  max-width: 960px;
  font-size: clamp(3rem, 5vw, 4.7rem);
}
.page-hero p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  font-size: 1.15rem;
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.detail-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  min-height: 380px;
  padding: 38px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #0d1d30, #081321);
  border-radius: var(--radius);
}
.detail-card .feature-number {
  margin: 6px 0 0;
}
.detail-card h2 {
  font-size: 2rem;
}
.detail-card ul {
  display: grid;
  gap: 9px;
  margin-top: 24px;
  list-style: none;
}
.detail-card li {
  color: var(--muted-strong);
  font-size: 0.92rem;
}
.detail-card li::before {
  content: "—";
  margin-right: 8px;
  color: var(--cyan);
}
.stat-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}
.stat-stack > div {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  background: #07111f;
}
.stat-stack strong {
  color: var(--cyan);
  font-size: 3.8rem;
  line-height: 1;
}
.stat-stack span {
  margin-top: 15px;
  color: var(--muted);
  font-size: 0.85rem;
}

.process-list {
  position: relative;
}
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr 90px;
  align-items: center;
  gap: 38px;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}
.process-step:first-child {
  border-top: 1px solid var(--line);
}
.process-step > span {
  color: #486987;
  font-size: 0.78rem;
  font-weight: 800;
}
.process-step h2 {
  max-width: 760px;
  margin-bottom: 13px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}
.process-step p:last-child {
  max-width: 790px;
  margin-bottom: 0;
}
.process-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(22, 201, 255, 0.35);
  color: var(--cyan);
  background: rgba(13, 39, 65, 0.65);
  border-radius: 50%;
  font-size: 1.8rem;
}
.requirements-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
}
.requirements-list {
  border-top: 1px solid var(--line);
}
.requirements-list > div {
  display: grid;
  gap: 5px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}
.requirements-list strong {
  font-size: 1rem;
}
.requirements-list span {
  color: var(--muted);
  font-size: 0.9rem;
}
.faq-list {
  max-width: 860px;
  margin: 40px auto 0;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
.faq-list summary {
  position: relative;
  padding: 24px 48px 24px 0;
  cursor: pointer;
  color: #eaf4ff;
  font-weight: 700;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  color: var(--cyan);
  font-size: 1.45rem;
  font-weight: 400;
}
.faq-list details[open] summary::after {
  content: "−";
}
.faq-list details p {
  padding: 0 45px 22px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 35px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #0d1d30, #07131f);
  border-radius: var(--radius);
}
.price-card.featured {
  border-color: rgba(22, 201, 255, 0.7);
  box-shadow: 0 0 45px rgba(15, 131, 255, 0.14);
}
.popular {
  position: absolute;
  top: 0;
  right: 28px;
  transform: translateY(-50%);
  padding: 6px 13px;
  color: #02101b;
  background: var(--cyan);
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.plan-name {
  color: var(--cyan);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.price {
  display: flex;
  align-items: end;
  gap: 7px;
  margin: 12px 0 10px;
}
.price strong {
  font-size: 3.8rem;
  line-height: 0.9;
}
.price span {
  color: var(--muted);
}
.annual-price {
  margin: 0 0 22px;
  color: var(--cyan);
  font-size: 0.85rem;
  font-weight: 700;
}
.price-card .check-list {
  flex: 1;
}
.pricing-note {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.9rem;
}
.pricing-note strong {
  color: #dcecff;
}
.comparison {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
}
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}
.comparison-grid > div {
  display: flex;
  flex-direction: column;
  min-height: 210px;
  justify-content: center;
  padding: 30px;
  background: #07111f;
}
.comparison-grid .highlight {
  background: linear-gradient(145deg, #0f2c4a, #091827);
}
.comparison-grid span {
  color: var(--muted);
  font-size: 0.82rem;
}
.comparison-grid strong {
  margin: 8px 0;
  font-size: 2.6rem;
}
.comparison-grid .highlight strong {
  color: var(--cyan);
}
.comparison-grid small {
  color: #7892aa;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: start;
}
.contact-points {
  display: grid;
  margin: 32px 0;
  border-top: 1px solid var(--line);
}
.contact-points > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}
.contact-points span {
  color: var(--cyan);
  font-size: 0.7rem;
  font-weight: 800;
}
.contact-points p {
  margin: 0;
  font-size: 0.88rem;
}
.contact-points strong {
  display: block;
  margin-bottom: 3px;
  color: #eaf4ff;
}
.form-card {
  padding: 38px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #0d1d30, #07131f);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.form-card form {
  display: grid;
  gap: 18px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-card label {
  display: grid;
  gap: 8px;
  color: #dce8f4;
  font-size: 0.83rem;
  font-weight: 700;
}
.form-card label span {
  color: var(--muted);
  font-weight: 400;
}
.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  border: 1px solid #29445f;
  color: white;
  background: #06101d;
  border-radius: 9px;
  outline: none;
}
.form-card input,
.form-card select {
  height: 50px;
  padding: 0 14px;
}
.form-card textarea {
  padding: 13px 14px;
  resize: vertical;
}
.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(22, 201, 255, 0.1);
}
.form-fineprint {
  margin: -3px 0 0;
  text-align: center;
  font-size: 0.72rem;
}
.honeypot {
  position: absolute;
  left: -9999px;
}
.form-alert {
  margin-bottom: 20px;
  padding: 15px 18px;
  border-radius: 9px;
  font-size: 0.85rem;
}
.form-alert.success {
  color: #c8ffe9;
  border: 1px solid rgba(67, 210, 160, 0.4);
  background: rgba(67, 210, 160, 0.1);
}
.form-alert.error {
  color: #ffd6dc;
  border: 1px solid rgba(255, 113, 130, 0.4);
  background: rgba(255, 113, 130, 0.1);
}
.form-alert ul {
  margin: 8px 0 0 19px;
}

.legal-hero {
  padding: 86px 0;
}
.legal-hero h1 {
  margin-bottom: 12px;
}
.legal-content h2 {
  margin-top: 42px;
  font-size: 1.55rem;
}
.legal-content h2:first-child {
  margin-top: 0;
}
.legal-content a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-notice {
  margin-top: 44px;
  padding: 20px;
  border-left: 3px solid var(--amber);
  color: #d8caa8;
  background: rgba(234, 174, 56, 0.08);
  font-size: 0.86rem;
}

.site-footer {
  padding: 72px 0 24px;
  border-top: 1px solid var(--line);
  background: #040a12;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.8fr 1.1fr;
  gap: 52px;
}
.footer-brand {
  margin-bottom: 18px;
}
.footer-grid h2 {
  margin-bottom: 16px;
  color: #dce9f5;
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-grid a:not(.brand) {
  margin: 4px 0;
  color: #8fa8bf;
  font-size: 0.84rem;
}
.footer-grid a:hover {
  color: var(--cyan);
}
.footer-grid p {
  max-width: 340px;
  font-size: 0.82rem;
}
.footer-note {
  margin-top: 12px;
  font-size: 0.7rem !important;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 55px;
  padding-top: 20px;
  border-top: 1px solid rgba(123, 174, 223, 0.12);
  color: #5f7890;
  font-size: 0.73rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.62s ease,
    transform 0.62s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.delay-1 {
  transition-delay: 0.08s;
}
.delay-2 {
  transition-delay: 0.16s;
}
.delay-3 {
  transition-delay: 0.24s;
}

@media (max-width: 1050px) {
  .hero {
    min-height: auto;
  }
  .hero-layout {
    grid-template-columns: 1fr;
    padding-top: 90px;
  }
  .hero-copy {
    max-width: 740px;
  }
  .display-stage {
    width: min(100%, 800px);
    margin-inline: auto;
  }
  .four-up,
  .use-grid {
    grid-template-columns: 1fr 1fr;
  }
  .split-layout,
  .split-layout.reverse,
  .requirements-grid,
  .contact-grid,
  .comparison {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
  }
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 790px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }
  .section {
    padding: 80px 0;
  }
  .menu-toggle {
    display: block;
  }
  .primary-nav {
    position: absolute;
    top: 75px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px;
    border: 1px solid var(--line);
    background: #07111f;
    border-radius: 14px;
    box-shadow: var(--shadow);
  }
  .primary-nav.open {
    display: flex;
  }
  .nav-link {
    padding: 13px 0;
  }
  .nav-link::after {
    bottom: 7px;
  }
  .brand-name {
    display: none;
  }
  .hero-layout {
    gap: 22px;
    padding-block: 70px;
  }
  .hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }
  .display-stage {
    padding-inline: 0;
  }
  .display-shell {
    transform: none;
  }
  .display-screen {
    min-height: 330px;
    grid-template-columns: 1.35fr 1fr;
  }
  .demo-photo {
    padding: 22px;
  }
  .section-heading,
  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .process-step {
    grid-template-columns: 45px 1fr;
    gap: 18px;
  }
  .process-icon {
    display: none;
  }
  .stat-stack {
    grid-template-columns: 1fr;
  }
  .stat-stack > div {
    min-height: 145px;
  }
  .pricing-note {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
  .live-demo-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 580px) {
  .logo-placeholder {
    min-width: 96px;
  }
  .four-up,
  .use-grid,
  .comparison-grid,
  .field-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid > div:last-child {
    grid-column: auto;
  }
  .feature-card {
    min-height: 220px;
  }
  .live-display-stage {
    padding-inline: 0;
  }
  .live-display-frame {
    padding: 6px;
    border-radius: 12px;
  }
  .live-display-topbar > span:last-child {
    display: none;
  }
  .live-display-neck {
    height: 24px;
  }
  .live-display-base {
    width: 180px;
  }
  .display-screen {
    min-height: 360px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.1fr 0.8fr 44px;
  }
  .demo-photo {
    grid-column: 1 / 3;
    grid-row: 1;
  }
  .demo-counter {
    grid-column: 1;
    grid-row: 2;
  }
  .demo-special {
    grid-column: 2;
    grid-row: 2;
  }
  .demo-ticker {
    grid-row: 3;
  }
  .demo-special p {
    display: none;
  }
  .window-body {
    grid-template-columns: 95px 1fr;
  }
  .side-menu {
    padding: 20px 12px;
  }
  .settings-panel {
    padding: 20px;
  }
  .detail-card {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 28px;
  }
  .detail-card .feature-number {
    margin-bottom: 20px;
  }
  .process-step {
    grid-template-columns: 1fr;
  }
  .process-step > span {
    margin-bottom: -20px;
  }
  .form-card {
    padding: 25px;
  }
  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
