:root {
  --bg: #05080b;
  --bg-2: #0b1118;
  --panel: rgba(15, 21, 31, 0.86);
  --panel-strong: rgba(8, 12, 19, 0.96);
  --line: rgba(109, 255, 219, 0.24);
  --line-soft: rgba(255, 255, 255, 0.12);
  --text: #f6fbff;
  --muted: #a9b3bf;
  --mint: #5df2c7;
  --blue: #61b6ff;
  --amber: #f4c76d;
  --rose: #ff7f91;
  --steel: #93a4b6;
  --radius: 8px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 8%, rgba(93, 242, 199, 0.14), transparent 28%),
    radial-gradient(circle at 82% 22%, rgba(97, 182, 255, 0.12), transparent 30%),
    linear-gradient(145deg, #040608 0%, #0b1017 48%, #05080b 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(115deg, transparent 0 48%, rgba(93, 242, 199, 0.08) 49%, transparent 50%),
    radial-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 160px 160px, 24px 24px;
  opacity: 0.34;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(5, 8, 11, 0.84);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.35rem;
  font-weight: 950;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(93, 242, 199, 0.72);
  border-radius: var(--radius);
  color: #06100f;
  background: linear-gradient(135deg, var(--mint), var(--blue) 58%, var(--amber));
  box-shadow: 0 0 34px rgba(93, 242, 199, 0.26);
}

.navlinks {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

.navlinks a {
  padding: 9px 10px;
  border-radius: var(--radius);
  color: rgba(246, 251, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 850;
}

.navlinks a:hover,
.navlinks a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.download-link,
.button.primary {
  color: #04110f;
  background: linear-gradient(135deg, var(--mint), var(--blue));
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 76px);
  border-bottom: 1px solid var(--line-soft);
}

#vixorField {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.82;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 8, 11, 0.96), rgba(5, 8, 11, 0.54) 54%, rgba(5, 8, 11, 0.9)),
    linear-gradient(180deg, transparent, rgba(93, 242, 199, 0.06), transparent);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  padding: 78px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  align-items: center;
  gap: 42px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 950;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3.4rem, 8.4vw, 8rem);
  font-weight: 950;
  color: transparent;
  background: linear-gradient(120deg, var(--mint), #ffffff 40%, var(--blue) 70%, var(--amber));
  background-clip: text;
  -webkit-background-clip: text;
}

.subtitle,
.lead {
  color: rgba(246, 251, 255, 0.76);
  font-size: clamp(1rem, 1.75vw, 1.2rem);
}

.subtitle {
  max-width: 760px;
  margin: 22px 0 0;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  font-weight: 950;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.34);
}

.button.primary {
  box-shadow: 0 18px 54px rgba(93, 242, 199, 0.2);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.06);
}

.device-panel,
.legal-card,
.support-panel,
.feature-card,
.stat-card,
.workflow-grid article {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(16, 23, 34, 0.88), rgba(8, 13, 21, 0.95));
  box-shadow: var(--shadow);
}

.device-panel {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-color: var(--line);
}

.device-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 42%, rgba(93, 242, 199, 0.2) 48%, transparent 55%);
  transform: translateX(-120%);
  animation: scanner 5.6s ease-in-out infinite;
}

@keyframes scanner {
  0%, 35% { transform: translateX(-120%); }
  70%, 100% { transform: translateX(120%); }
}

.panel-head,
.mini-tabs,
.search-shell,
.media-grid {
  position: relative;
  z-index: 1;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
}

.panel-head strong {
  color: var(--mint);
}

.mini-tabs {
  display: flex;
  gap: 10px;
  margin: 24px 0 18px;
  flex-wrap: wrap;
}

.mini-tabs span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--muted);
  font-weight: 900;
}

.mini-tabs .active {
  color: var(--mint);
  background: rgba(93, 242, 199, 0.17);
}

.search-shell {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 1.1rem;
}

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

.media-card {
  min-height: 138px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(93, 242, 199, 0.16), rgba(14, 20, 30, 0.82));
}

.media-card span {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(93, 242, 199, 0.2);
  color: var(--mint);
  font-weight: 950;
}

.media-card strong {
  font-size: 1.25rem;
}

.media-card.warm {
  background: linear-gradient(135deg, rgba(244, 199, 109, 0.16), rgba(14, 20, 30, 0.82));
}

.media-card.warm span {
  background: rgba(244, 199, 109, 0.22);
  color: var(--amber);
}

.media-card.coral {
  background: linear-gradient(135deg, rgba(255, 127, 145, 0.16), rgba(14, 20, 30, 0.82));
}

.media-card.coral span {
  background: rgba(255, 127, 145, 0.2);
  color: var(--rose);
}

.media-card.steel span {
  background: rgba(147, 164, 182, 0.2);
  color: var(--steel);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0;
}

.section-title {
  max-width: 850px;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 950;
}

.lead {
  max-width: 900px;
  margin: 22px 0 0;
}

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

.feature-card {
  padding: 24px;
  box-shadow: none;
}

.feature-number {
  color: var(--mint);
  font-weight: 950;
}

.feature-card h3 {
  margin-top: 18px;
  font-size: 1.28rem;
}

.feature-card p,
.legal-card p,
.workflow-grid span,
.stat-card span {
  color: var(--muted);
}

.showcase {
  border-block: 1px solid var(--line-soft);
  background: linear-gradient(135deg, rgba(93, 242, 199, 0.08), rgba(97, 182, 255, 0.05));
}

.showcase-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.74fr);
  gap: 28px;
  align-items: start;
}

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

.stat-card {
  padding: 22px;
  box-shadow: none;
}

.stat-card strong {
  display: block;
  color: var(--mint);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 12px;
}

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

.workflow-grid article {
  padding: 18px;
  box-shadow: none;
}

.workflow-grid strong,
.workflow-grid span {
  display: block;
}

.workflow-grid strong {
  color: var(--mint);
  margin-bottom: 10px;
}

.page-hero {
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(135deg, rgba(93, 242, 199, 0.1), rgba(97, 182, 255, 0.06));
}

.page-hero h1 {
  font-size: clamp(2.8rem, 7vw, 6.5rem);
}

.legal-wrap {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0 88px;
}

.legal-card {
  padding: clamp(24px, 5vw, 54px);
  box-shadow: none;
}

.legal-card h2 {
  margin-top: 34px;
  font-size: 1.35rem;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.callout {
  margin: 28px 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(93, 242, 199, 0.08);
  color: rgba(246, 251, 255, 0.86);
}

.support-panel {
  padding: clamp(24px, 5vw, 48px);
  box-shadow: none;
}

.footer {
  border-top: 1px solid var(--line-soft);
  background: rgba(5, 8, 11, 0.9);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .navlinks {
    justify-content: flex-start;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner,
  .showcase-inner {
    grid-template-columns: 1fr;
    padding: 58px 0;
  }

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

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

@media (max-width: 620px) {
  .section {
    padding: 64px 0;
  }

  .navlinks a {
    font-size: 0.82rem;
    padding: 8px;
  }

  .media-grid,
  .feature-grid,
  .support-grid,
  .stats,
  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px 0;
  }
}
