﻿:root {
  color-scheme: dark;
  --bg: #07111f;
  --bg-soft: #0b1830;
  --surface: rgba(11, 24, 48, 0.78);
  --surface-strong: rgba(13, 29, 56, 0.94);
  --line: rgba(109, 168, 255, 0.22);
  --line-strong: rgba(109, 168, 255, 0.4);
  --text: #e8f1ff;
  --muted: #97aac9;
  --primary: #58a6ff;
  --primary-strong: #3f8cff;
  --accent: #3ce2d1;
  --warning: #f6b14b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --content: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background-color: var(--bg);
}
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background-color: var(--bg);
  background:
    radial-gradient(circle at 20% 20%, rgba(88, 166, 255, 0.16), transparent 34%),
    radial-gradient(circle at 80% 10%, rgba(60, 226, 209, 0.16), transparent 25%),
    linear-gradient(180deg, #050c17 0%, #07111f 52%, #09182d 100%);
  min-height: 100vh;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  color: var(--text);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button,
input,
textarea,
select {
  font: inherit;
}
.site-shell {
  position: relative;
  isolation: isolate;
}
.bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  opacity: 0.72;
}
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(88, 166, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88, 166, 255, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 90%);
  pointer-events: none;
}
.container {
  width: min(var(--content), calc(100% - 32px));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: rgba(5, 12, 23, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.brand img {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(63, 140, 255, 0.18);
}
.brand-title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.brand-subtitle {
  color: var(--muted);
  font-size: 0.8rem;
}
.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 12px;
  width: 44px;
  height: 44px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.main-nav a {
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 999px;
  transition: 0.25s ease;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
  background: rgba(88, 166, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(88, 166, 255, 0.18);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  color: #04101d;
  background: linear-gradient(135deg, var(--accent), #9cf6ff);
  font-weight: 700;
}
.hero {
  padding: 88px 0 48px;
}
.hero-grid,
.two-col {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}
.hero-copy,
.panel,
.metric,
.card,
.timeline-item,
.pricing-card,
.table-wrap,
.quote,
.cta-banner,
.info-block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.hero-copy {
  padding: 34px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #bfe4ff;
  background: rgba(88, 166, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(88, 166, 255, 0.15);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero h1,
.page-hero h1 {
  margin: 20px 0 18px;
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 1.02;
}
.hero p,
.page-hero p,
.card p,
.panel p,
.info-block p,
.timeline-item p,
.pricing-card p,
.quote p {
  color: var(--muted);
  line-height: 1.78;
}
.hero-actions,
.inline-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.button,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: 0.25s ease;
  font-weight: 700;
}
.button {
  color: #03101e;
  background: linear-gradient(135deg, var(--primary), #9bd0ff);
}
.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}
.button-ghost {
  color: #bfe4ff;
  background: transparent;
  border-color: rgba(88, 166, 255, 0.2);
}
.button:hover,
.button-secondary:hover,
.button-ghost:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.hero-notes {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.tag,
.stat-label,
.kicker {
  color: #c7dcff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.92rem;
}
.hero-visual {
  position: relative;
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 26px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(10, 24, 44, 0.9), rgba(7, 18, 33, 0.95));
  border: 1px solid rgba(88, 166, 255, 0.22);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.35);
}
.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(24px);
  pointer-events: none;
}
.hero-visual::before {
  width: 220px;
  height: 220px;
  background: rgba(88, 166, 255, 0.24);
  top: -20px;
  right: -30px;
}
.hero-visual::after {
  width: 180px;
  height: 180px;
  background: rgba(60, 226, 209, 0.18);
  bottom: -20px;
  left: -10px;
}
.visual-frame {
  position: relative;
  overflow: visible;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.visual-frame > img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 22px;
}
.visual-hover-panel {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
  z-index: 120;
}
.visual-hover-panel img {
  display: block;
  width: auto;
  height: auto;
  max-width: none;
  max-height: none;
  border-radius: 16px;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.34);
}
.visual-frame:hover .visual-hover-panel {
  opacity: 1;
  visibility: visible;
}
.visual-float {
  position: relative;
  min-width: 180px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(4, 14, 26, 0.74);
  border: 1px solid rgba(88, 166, 255, 0.22);
  backdrop-filter: blur(12px);
}
.visual-float strong {
  display: block;
  margin-bottom: 6px;
}
.float-top {
  margin: 0;
}
.float-bottom {
  margin: 0;
  padding: 8px 12px;
}
.hero-gif-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.hero-gif-card {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 14, 26, 0.8);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
}
.hero-gif-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.hero-gif-summary {
  display: grid;
  gap: 8px;
  margin-top: 0;
}
.hero-gif-summary-item {
  padding: 8px 10px;
  border-radius: 14px;
  color: #c7dcff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 1.55;
  font-size: 0.92rem;
}
section {
  padding: 34px 0;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}
.section-head h2 {
  margin: 10px 0 0;
  font-size: clamp(1.9rem, 3vw, 2.9rem);
}
.section-head p {
  max-width: 660px;
  color: var(--muted);
  line-height: 1.7;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.metric {
  padding: 24px;
}
.metric strong {
  font-size: clamp(1.9rem, 4vw, 3rem);
  display: block;
  margin-bottom: 8px;
}
.grid-3,
.grid-2,
.grid-4 {
  display: grid;
  gap: 18px;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.card,
.panel,
.timeline-item,
.pricing-card,
.info-block,
.quote,
.cta-banner {
  padding: 24px;
}
.card h3,
.panel h3,
.timeline-item h3,
.pricing-card h3,
.info-block h3,
.quote h3 {
  margin: 14px 0 12px;
  font-size: 1.2rem;
}
.icon-box {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(88, 166, 255, 0.18), rgba(60, 226, 209, 0.14));
  border: 1px solid rgba(88, 166, 255, 0.16);
}
.icon-box img {
  width: 36px;
  height: 36px;
}
.list-clean {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}
.list-clean li + li {
  margin-top: 6px;
}
.timeline {
  display: grid;
  gap: 16px;
}
.timeline-item {
  position: relative;
  overflow: hidden;
}
.timeline-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent), var(--primary));
}
.table-wrap {
  overflow: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}
th,
td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
th {
  color: #bfe4ff;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.03);
}
.code-chip {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  font-family: Consolas, monospace;
  background: rgba(88, 166, 255, 0.12);
  color: #c8e6ff;
}
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pricing-card.featured {
  border-color: rgba(60, 226, 209, 0.34);
  transform: translateY(-6px);
}
.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 16px 0;
}
.price strong {
  font-size: 2.3rem;
}
.muted {
  color: var(--muted);
}
.cta-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.quote {
  position: relative;
}
.quote::before {
  content: "\201C";
  position: absolute;
  top: 8px;
  right: 18px;
  font-size: 4rem;
  line-height: 1;
  color: rgba(88, 166, 255, 0.16);
}
.page-hero {
  padding: 72px 0 22px;
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.site-footer {
  padding: 28px 0 44px;
}
.footer-panel {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(5, 12, 23, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
}
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.note-box {
  border-left: 4px solid var(--warning);
  background: rgba(246, 177, 75, 0.08);
  padding: 16px 18px;
  border-radius: 16px;
  color: #f7d7a4;
}
@media (max-width: 1080px) {
  .hero-grid,
  .two-col,
  .grid-4,
  .grid-3,
  .metrics,
  .pricing {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 22px;
    background: rgba(5, 12, 23, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  .main-nav.open {
    display: flex;
  }
  .nav-cta {
    display: none;
  }
  .hero,
  .page-hero {
    padding-top: 56px;
  }
}
@media (max-width: 720px) {
  .hero-grid,
  .two-col,
  .grid-4,
  .grid-3,
  .grid-2,
  .metrics,
  .pricing,
  .cta-banner {
    grid-template-columns: 1fr;
    display: grid;
  }
  .hero-copy,
  .hero-visual,
  .card,
  .panel,
  .timeline-item,
  .pricing-card,
  .quote,
  .cta-banner,
  .info-block {
    padding: 20px;
  }
  .hero h1,
  .page-hero h1 {
    font-size: 2.3rem;
  }
  .visual-float {
    position: static;
  }
  .hero-gif-grid {
    grid-template-columns: 1fr;
  }
  table {
    min-width: 640px;
  }
}

/* COMMAND PAGE STYLES START */
.command-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.command-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  padding: 13px 20px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.25s ease;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.command-tab:hover,
.command-tab.active {
  color: var(--text);
  background: rgba(88, 166, 255, 0.14);
  border-color: rgba(88, 166, 255, 0.24);
}
.command-table-wrap {
  overflow-x: auto;
}
.command-table {
  min-width: 1040px;
}
.command-table th:last-child,
.command-table td:last-child {
  width: 138px;
  text-align: center;
}
.command-row td {
  vertical-align: middle;
  transition: background 0.22s ease;
}
.command-row:hover td,
.command-preview-row:hover td {
  background: rgba(88, 166, 255, 0.05);
}
.command-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}
.command-meta {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-family: Consolas, monospace;
}
.command-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(88, 166, 255, 0.18), rgba(60, 226, 209, 0.12));
  border: 1px solid rgba(88, 166, 255, 0.16);
}
.command-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.command-preview-row td {
  padding-top: 0;
  padding-bottom: 0;
}
.command-preview {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.28s ease, opacity 0.28s ease, padding 0.28s ease;
  padding: 0;
}
.command-row:hover + .command-preview-row .command-preview,
.command-preview-row:hover .command-preview {
  max-height: 760px;
  opacity: 1;
  padding: 8px 0 18px;
}
.gif-gallery {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  overflow-x: auto;
  padding: 6px 0;
}
.command-gif-card {
  flex: 0 0 auto;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 14, 26, 0.72);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
}
.command-gif-card img {
  width: 220px;
  height: 220px;
  object-fit: cover;
}
.command-gif-empty {
  color: var(--muted);
  padding: 8px 0 16px;
}
@media (max-width: 720px) {
  .command-tab {
    min-width: 0;
    width: calc(50% - 6px);
  }
  .command-table {
    min-width: 880px;
  }
  .command-gif-card img {
    width: 180px;
    height: 180px;
  }
}
/* COMMAND PAGE STYLES END */

