@font-face {
  font-family: "Geom";
  src: url("assets/fonts/geom-700.woff2") format("woff2");
  font-weight: 700;
}

@font-face {
  font-family: "Geom";
  src: url("assets/fonts/geom-900.woff2") format("woff2");
  font-weight: 900;
}

@font-face {
  font-family: "Exo 2";
  src: url("assets/fonts/exo2-wght.ttf") format("truetype");
  font-weight: 400 900;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-opsz-wght.ttf") format("truetype");
  font-weight: 100 900;
}

:root {
  --bg: #080808;
  --bg-deep: #050505;
  --surface: #0f0f12;
  --surface-2: #151518;
  --surface-3: #1b1b20;
  --line: rgba(255, 255, 255, 0.105);
  --line-hot: rgba(255, 18, 63, 0.56);
  --text: #ffffff;
  --muted: #b7b8c2;
  --soft: #83848e;
  --brand: #ff123f;
  --brand-red: #ff123f;
  --brand-magenta: #b9a7ff;
  --brand-violet: #7d5cff;
  --brand-warm: #ff123f;
  --success: #77e1a0;
  --warning: #ff2850;
  --danger: #ff655d;
  --brand-flow: linear-gradient(135deg, #d8ccff 0%, #9b7cff 44%, #ff123f 100%);
  --brand-flow-vertical: linear-gradient(180deg, #d8ccff 0%, #9b7cff 44%, #ff123f 100%);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  --radius: 8px;
  --wrap: min(1380px, calc(100% - 56px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #070707;
  color: var(--text);
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  content: none;
}

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

button,
input,
textarea {
  font: inherit;
}

.wrap {
  width: var(--wrap);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 8, 8, 0.96);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease;
}

.topbar.is-scrolled {
  border-color: rgba(185, 167, 255, 0.20);
  background: rgba(8, 8, 8, 0.98);
}

.nav {
  min-height: 72px;
  display: grid;
  grid-template-columns: 230px 1fr 150px;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: none;
}

.brand span {
  font-family: "Geom", "Exo 2", sans-serif;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 5px;
  line-height: 1;
  background: var(--brand-flow);
  -webkit-background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-links a {
  padding: 10px 11px;
  border-radius: 7px;
  color: #d9d9e0;
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 800;
  transition: color 160ms ease, background 160ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: #fff;
  background: #141414;
  box-shadow: inset 3px 0 0 var(--brand-magenta);
}

.nav-cta {
  justify-self: end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  color: #f7f7fb;
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease, box-shadow 170ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.20);
  background: #171717;
}

.btn.primary {
  border-color: rgba(185, 167, 255, 0.48);
  background: #161616;
  color: #ffffff;
  text-shadow: none;
  box-shadow: inset 3px 0 0 var(--brand-magenta);
}

.btn.primary:hover {
  border-color: rgba(255, 18, 63, 0.44);
  box-shadow: inset 3px 0 0 var(--brand-red);
}

.mobile-toggle {
  display: none;
}

.website-main {
  padding-top: 18px;
}

.site-app-topbar {
  border-bottom-color: rgba(185, 167, 255, 0.16);
  background: rgba(8, 8, 8, 0.96);
}

.site-app-topbar::after {
  content: "ARGUS ARGUS ARGUS ARGUS ARGUS ARGUS ARGUS";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.045);
  font-family: "Geom", "Exo 2", sans-serif;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 28px;
  white-space: nowrap;
  pointer-events: none;
}

.site-app-topbar .wrap {
  width: calc(100% - 20px);
}

.site-app-topbar .nav {
  position: relative;
  z-index: 2;
}

.site-app-topbar .nav {
  min-height: 42px;
  grid-template-columns: 230px 1fr 150px;
}

.site-app-topbar .brand img {
  width: 26px;
  height: 26px;
}

.site-app-topbar .brand span {
  font-size: 17px;
  letter-spacing: 4px;
}

.site-app-topbar .nav-links a {
  padding: 7px 10px;
  font-size: 12px;
}

.site-app-topbar .btn {
  min-height: 32px;
}

.site-app-shell {
  display: grid;
  grid-template-columns: 214px minmax(0, 1fr) 200px;
  min-height: calc(100vh - 42px);
}

.site-app-sidebar {
  position: sticky;
  top: 42px;
  height: calc(100vh - 42px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 26px 12px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 26%),
    #101012;
  overflow: hidden;
}

.site-app-sidebar::before {
  content: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(185, 167, 255, 0.09), transparent);
  transform: translateY(-100%);
  animation: sidebar-flow 9s linear infinite;
  pointer-events: none;
  opacity: 0.56;
}

.site-app-sidebar > * {
  position: relative;
  z-index: 1;
}

.site-side-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 8px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.site-side-brand img {
  width: 45px;
  height: 45px;
  filter: none;
}

.site-side-brand strong {
  font-family: "Geom", "Exo 2", sans-serif;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: 5px;
  background: var(--brand-flow);
  -webkit-background-clip: text;
  color: transparent;
}

.site-side-group {
  display: grid;
  gap: 7px;
}

.site-side-group span {
  margin: 0 10px 3px;
  color: var(--brand);
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.15px;
}

.site-side-group a {
  min-height: 36px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #b7b7b7;
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 850;
}

.site-side-group a::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.site-side-group a.is-active {
  color: #ffffff;
  border-color: rgba(185, 167, 255, 0.76);
  background: rgba(185, 167, 255, 0.10);
  box-shadow: inset 3px 0 0 rgba(255, 63, 46, 0.92);
}

.site-side-group a.is-active::before {
  border-color: rgba(185, 167, 255, 0.58);
  background: #161616;
  box-shadow: none;
}

.site-side-status {
  margin-top: auto;
  display: grid;
  gap: 7px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.028);
}

.site-side-status div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.site-side-status span,
.site-side-status strong {
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 11px;
  font-weight: 900;
}

.site-side-status span {
  color: #969696;
}

.site-side-status strong {
  color: var(--brand);
}

.site-app-content {
  min-width: 0;
  padding: 22px 14px 0;
  background: transparent;
}

.site-app-events {
  position: sticky;
  top: 42px;
  height: calc(100vh - 42px);
  padding: 32px 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), transparent 28%),
    #0d0d10;
}

.site-events-head h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1;
  font-weight: 900;
}

.site-events-head span {
  display: block;
  margin-top: 6px;
  color: #a7b3bd;
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
}

.site-app-events article {
  margin-top: 14px;
  padding: 13px 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left-color: rgba(185, 167, 255, 0.9);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.034);
}

.site-app-events article span {
  display: block;
  color: var(--brand);
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 11px;
  font-weight: 900;
}

.site-app-events article strong {
  display: block;
  margin-top: 5px;
  color: #f0f0f6;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 760;
}

.hero {
  position: relative;
  min-height: calc(100vh - 64px);
  padding: 54px 0 30px;
  display: flex;
  align-items: center;
}

.argus-home-hero {
  min-height: 0;
  padding: 58px 0 34px;
  display: block;
}

.lanzo-argus-hero {
  position: relative;
  min-height: calc(100vh - 92px);
  display: grid;
  align-content: center;
  padding: 74px 0 42px;
  overflow: hidden;
}

.home-intro {
  position: relative;
  z-index: 1;
  max-width: 1220px;
  margin: 0 auto;
  text-align: center;
}

.home-intro h1 {
  max-width: 1180px;
  margin: 0 auto;
  font-size: clamp(58px, 7.1vw, 118px);
  line-height: 0.86;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: none;
}

.home-intro .hero-copy {
  max-width: 820px;
  margin: 24px auto 0;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.76);
}

.hero-proof-pill {
  width: fit-content;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: #121212;
  color: #d8d8d8;
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  box-shadow: inset 3px 0 0 var(--brand-magenta);
}

.hero-actions-center {
  justify-content: center;
  margin-top: 30px;
}

.hero-safe-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.hero-safe-line span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: #111111;
  color: rgba(255, 255, 255, 0.68);
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.hero-feature-six {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 48px;
}

.hero-feature-card {
  position: relative;
  min-height: 168px;
  padding: 20px 20px 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 10px;
  background: #141414;
  box-shadow: none;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.hero-feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.hero-feature-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--brand-flow-vertical);
}

.hero-feature-card:nth-child(2)::before,
.hero-feature-card:nth-child(5)::before {
  background: linear-gradient(180deg, #b9a7ff 0%, #7d5cff 100%);
}

.hero-feature-card:nth-child(3)::before,
.hero-feature-card:nth-child(6)::before {
  background: linear-gradient(180deg, #ff123f 0%, #b9a7ff 100%);
}

.hero-feature-card::after {
  content: none;
}

.hero-feature-card:hover::after {
  content: none;
}

.hero-feature-card span,
.hero-feature-card strong,
.hero-feature-card p {
  position: relative;
  z-index: 1;
}

.hero-feature-card span {
  display: block;
  margin-bottom: 12px;
  color: #cfd0da;
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.15px;
}

.hero-feature-card strong {
  display: block;
  color: #fff;
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 21px;
  line-height: 1.1;
  font-weight: 900;
}

.hero-feature-card p {
  margin: 12px 0 0;
  color: #b8b8c2;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 650;
}


.hero-grid {
  display: grid;
  grid-template-columns: minmax(440px, 0.82fr) minmax(620px, 1.18fr);
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
  color: var(--brand-magenta);
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.35px;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--brand-flow);
  box-shadow: none;
}

h1,
h2,
h3 {
  font-family: "Exo 2", "Inter", sans-serif;
  letter-spacing: 0;
}

.hero h1,
.page-hero h1 {
  max-width: 600px;
  margin: 0;
  font-size: clamp(40px, 3.75vw, 62px);
  line-height: 0.95;
  font-weight: 900;
}

.hero-copy,
.page-copy {
  max-width: 590px;
  margin: 18px 0 0;
  color: #d8d8e0;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.signal-board {
  width: min(610px, 100%);
  margin-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: #101010;
}

.signal-row {
  display: grid;
  grid-template-columns: 114px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.signal-row:last-child {
  border-bottom: 0;
}

.signal-row span {
  padding-left: 15px;
  border-left: 2px solid rgba(185, 167, 255, 0.82);
  color: var(--brand-magenta);
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.signal-row strong {
  color: #f0f0f6;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 800;
}

.hero-brief-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(610px, 100%);
  margin-top: 22px;
}

.hero-brief-grid article {
  position: relative;
  min-height: 92px;
  padding: 14px 14px 13px 17px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  background: #141414;
  overflow: hidden;
}

.hero-brief-grid article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--brand-flow);
}

.hero-brief-grid span {
  display: block;
  margin-bottom: 9px;
  color: var(--brand);
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
}

.hero-brief-grid strong {
  display: block;
  color: #f2f2f7;
  font-size: 13px;
  line-height: 1.36;
  font-weight: 790;
}

.trust-panel {
  width: min(610px, 100%);
  margin-top: 16px;
  display: grid;
  grid-template-columns: 138px 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #111111;
}

.trust-panel-label {
  padding: 14px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-panel-label span {
  display: block;
  margin-bottom: 5px;
  color: var(--brand);
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.trust-panel-label strong {
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 900;
}

.trust-panel p {
  margin: 0;
  padding: 14px 16px;
  color: #d9d0c8;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 650;
}

.product-visual {
  position: relative;
}

.product-shell {
  position: relative;
  max-width: 760px;
  margin-left: auto;
  border: 1px solid rgba(185, 167, 255, 0.32);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 12%),
    linear-gradient(140deg, rgba(255, 63, 46, 0.075), transparent 38%),
    var(--surface);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.045);
  overflow: hidden;
  animation: panelFloat 5.5s ease-in-out infinite;
}

.product-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-top: 2px solid rgba(185, 167, 255, 0.72);
  box-shadow: 0 -1px 24px rgba(255, 63, 46, 0.2) inset;
}

.scan-line {
  position: absolute;
  left: 0;
  right: 0;
  top: -20%;
  height: 110px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(185, 167, 255, 0.08), transparent);
  animation: scanMove 5.2s linear infinite;
}

.product-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 54px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
}

.product-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 900;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 18px rgba(119, 225, 160, 0.75);
  animation: pulse 1.8s ease-in-out infinite;
}

.product-meta {
  color: var(--soft);
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-body {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 18px;
  padding: 18px;
}

.track-list {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.track-row {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 13px;
  min-height: 78px;
  padding: 13px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.track-row:last-child {
  border-bottom: 0;
}

.track-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(185, 167, 255, 0.34);
  border-radius: var(--radius);
  background: #151519;
}

.track-icon img {
  width: 20px;
  height: 20px;
  filter: invert(72%) sepia(84%) saturate(816%) hue-rotate(329deg) brightness(105%) contrast(102%);
}

.track-row strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 15px;
  font-weight: 900;
}

.track-row span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.tag {
  justify-self: end;
  padding: 6px 8px;
  border-radius: 7px;
  color: #120b06;
  background: var(--warning);
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 11px;
  font-weight: 900;
}

.tag.ok {
  background: var(--success);
}

.tag.danger {
  color: #fff8f4;
  background: var(--danger);
}

.visual-rail {
  display: grid;
  gap: 12px;
}

.logo-plate,
.mini-stat {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.18);
}

.logo-plate {
  display: grid;
  place-items: center;
  min-height: 158px;
  background:
    linear-gradient(180deg, rgba(185, 167, 255, 0.07), transparent),
    rgba(0, 0, 0, 0.18);
}

.logo-plate img {
  width: 106px;
  max-width: 76%;
  filter: drop-shadow(0 0 24px rgba(255, 63, 46, 0.42));
}

.mini-stat {
  padding: 13px;
}

.mini-stat span {
  display: block;
  color: var(--soft);
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.mini-stat strong {
  display: block;
  margin-top: 6px;
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 22px;
  font-weight: 900;
}

.telegram-card {
  position: absolute;
  right: -10px;
  bottom: 34px;
  width: 286px;
  border: 1px solid rgba(164, 91, 255, 0.46);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(16, 14, 18, 0.96);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.48), 0 0 28px rgba(164, 91, 255, 0.18);
  animation: toastIn 4.4s ease-in-out infinite;
}

.telegram-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--brand-magenta);
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.telegram-card strong {
  display: block;
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 900;
}

.argus-app-preview {
  position: relative;
  max-width: 940px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: #060606;
  box-shadow: var(--shadow), 0 0 0 1px rgba(185, 167, 255, 0.09);
  overflow: hidden;
  animation: panelFloat 6s ease-in-out infinite;
}

.argus-app-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(185, 167, 255, 0.08), transparent 20%, transparent 78%, rgba(164, 91, 255, 0.07)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 18%);
  z-index: 2;
}

.preview-topline {
  position: relative;
  z-index: 3;
  min-height: 36px;
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 10px;
  align-items: center;
  padding: 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
}

.preview-topline span,
.preview-topline strong,
.preview-topline em,
.preview-topline b {
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.7px;
  font-style: normal;
}

.preview-topline span {
  color: #23d7ff;
}

.preview-topline strong,
.preview-topline em,
.preview-topline b {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #cfd4d6;
}

.preview-topline em {
  border-color: rgba(185, 167, 255, 0.34);
  color: var(--brand);
}

.preview-shell {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 156px 1fr 138px;
  min-height: 510px;
}

.preview-sidebar {
  padding: 22px 10px 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.075);
  background: rgba(255, 255, 255, 0.012);
}

.preview-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 8px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 16px;
}

.preview-brand img {
  width: 28px;
  height: 28px;
}

.preview-brand strong {
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 20px;
  font-weight: 900;
}

.preview-sidebar > span {
  display: block;
  margin: 13px 8px 8px;
  color: var(--brand);
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
}

.preview-sidebar button {
  width: 100%;
  min-height: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 7px;
  background: transparent;
  color: #aeb3b8;
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 11px;
  font-weight: 850;
  text-align: left;
}

.preview-sidebar button::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.03);
}

.preview-sidebar button.is-active {
  color: #28d8ff;
  border-color: rgba(35, 215, 255, 0.32);
  background: rgba(35, 215, 255, 0.07);
}

.preview-main {
  padding: 18px 18px 16px;
  background: radial-gradient(circle at 50% 5%, rgba(255, 255, 255, 0.035), transparent 36%);
}

.preview-title {
  text-align: center;
  margin-bottom: 14px;
}

.preview-title span {
  color: #23d7ff;
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
}

.preview-title h2 {
  margin: 4px 0 2px;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  text-shadow: 0 0 22px rgba(255, 255, 255, 0.12);
}

.preview-title p {
  margin: 0;
  color: #f0b75e;
  font-size: 12px;
  font-weight: 700;
}

.preview-status-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 10px;
}

.preview-status-grid article,
.preview-event,
.preview-jobs,
.preview-summary {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 46%),
    #141414;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.preview-status-grid article::before,
.preview-event::before,
.preview-jobs::before,
.preview-summary::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--brand-flow);
}

.preview-status-grid article {
  min-height: 74px;
  padding: 10px 10px 8px;
}

.preview-status-grid span,
.preview-event span,
.preview-jobs span,
.preview-summary span {
  display: block;
  color: #9aa7b5;
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.2px;
}

.preview-status-grid strong {
  display: block;
  margin-top: 7px;
  color: #23d7ff;
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 17px;
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.preview-status-grid em {
  display: block;
  margin-top: 8px;
  color: #b8bdc1;
  font-size: 10px;
  font-style: normal;
  font-weight: 650;
}

.preview-controls {
  display: grid;
  grid-template-columns: 1fr 1fr 2.15fr 1fr 1fr;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: #171717;
}

.preview-controls button,
.preview-controls strong {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(185, 167, 255, 0.34);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  color: #fff;
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 10px;
  font-weight: 900;
}

.preview-controls button i {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--brand);
  box-shadow: 0 0 10px rgba(185, 167, 255, 0.74);
}

.preview-controls strong {
  border-radius: 8px;
  color: #08100e;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #79d8cf, #e7b158);
}

.preview-bottom {
  display: grid;
  grid-template-columns: 1.05fr 0.86fr 1.05fr;
  gap: 10px;
}

.preview-event,
.preview-jobs,
.preview-summary {
  min-height: 168px;
  padding: 14px;
}

.preview-event strong {
  display: block;
  margin: 22px 0 10px;
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}

.preview-event em {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(185, 167, 255, 0.11);
  color: #ffb15f;
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
}

.preview-jobs strong,
.preview-summary strong {
  display: block;
  margin: 6px 0 10px;
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
}

.preview-jobs p,
.preview-summary p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 0 0 7px;
  padding: 7px 8px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.035);
  color: #e7edf2;
  font-size: 11px;
  font-weight: 750;
}

.preview-jobs b {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--brand);
  box-shadow: 0 0 9px rgba(185, 167, 255, 0.72);
}

.preview-jobs b.off {
  background: #7d858b;
  box-shadow: none;
}

.preview-jobs em {
  margin-left: auto;
  color: #c7d8ed;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
}

.preview-events {
  padding: 24px 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.075);
  background: rgba(255, 255, 255, 0.012);
}

.preview-events h3 {
  margin: 0 0 18px;
  font-size: 21px;
  line-height: 1;
  font-weight: 900;
}

.preview-events article {
  padding: 11px 10px;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left-color: rgba(185, 167, 255, 0.85);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.preview-events span {
  display: block;
  color: var(--brand);
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 11px;
  font-weight: 900;
}

.preview-events strong {
  display: block;
  margin-top: 4px;
  color: #f3e8dd;
  font-size: 11px;
  line-height: 1.35;
  font-weight: 750;
}

.argus-hero-panel {
  padding: 0;
}

.hero-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(185, 167, 255, 0.10), transparent 50%, rgba(164, 91, 255, 0.08)),
    rgba(20, 20, 20, 0.82);
}

.hero-panel-head span,
.hero-panel-head a {
  display: block;
  color: var(--brand);
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
}

.hero-panel-head strong {
  display: block;
  margin-top: 5px;
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 900;
}

.hero-panel-head a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(185, 167, 255, 0.34);
  border-radius: 999px;
  background: rgba(185, 167, 255, 0.08);
  color: #ffc18f;
  white-space: nowrap;
}

.web-status-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.web-status-grid article,
.web-event,
.web-active,
.web-summary {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 11px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.038), transparent 46%),
    rgba(20, 20, 20, 0.96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.web-status-grid article::before,
.web-event::before,
.web-active::before,
.web-summary::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--brand-flow);
}

.web-status-grid article {
  min-height: 98px;
  padding: 14px 13px 12px;
}

.web-status-grid span,
.web-event span,
.web-active span,
.web-summary span {
  display: block;
  color: #9b9290;
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
}

.web-status-grid strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 20px;
  line-height: 1.05;
  font-weight: 900;
}

.web-status-grid em {
  display: block;
  margin-top: 8px;
  color: #aaa39e;
  font-size: 11px;
  line-height: 1.25;
  font-style: normal;
  font-weight: 650;
}

.web-module-bar {
  display: grid;
  grid-template-columns: repeat(2, minmax(110px, 1fr)) 1.25fr repeat(2, minmax(110px, 1fr));
  gap: 10px;
  align-items: center;
  margin-top: 16px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 13px;
  background: #141414;
}

.web-module-bar button,
.web-module-bar strong {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #111111;
  color: #fff;
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.20);
}

.web-module-bar button i {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--brand);
  box-shadow: none;
}

.web-module-bar strong {
  min-height: 72px;
  border-color: rgba(185, 167, 255, 0.86);
  box-shadow: inset 3px 0 0 var(--brand);
}

.web-module-bar strong img {
  width: 34px;
  height: 34px;
  filter: none;
}

.web-lower-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.82fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.web-event,
.web-active,
.web-summary {
  min-height: 216px;
  padding: 18px;
}

.web-event strong,
.web-active strong,
.web-summary strong {
  display: block;
  margin-top: 10px;
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 23px;
  line-height: 1.05;
  font-weight: 900;
}

.web-event p {
  margin: 18px 0 0;
  max-width: 420px;
  color: #c8c0ba;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 650;
}

.web-active p,
.web-summary p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 10px 0 0;
  padding: 10px 11px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 9px;
  background: rgba(0, 0, 0, 0.24);
  color: #fff;
  font-size: 12px;
  font-weight: 780;
}

.web-active b {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--brand);
  box-shadow: none;
}

.web-active em {
  margin-left: auto;
  color: #b6b1ae;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}

.hero-band {
  margin-top: 54px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.018);
}

.hero-band-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.band-item {
  min-height: 94px;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.band-item:last-child {
  border-right: 0;
}

.band-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-magenta);
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.band-item strong {
  display: block;
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 850;
}

.section {
  padding: 84px 0;
}

.section.alt {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: #0b0b0b;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 30px;
}

.section-head h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.05;
  font-weight: 900;
}

.section-head p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 650;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 18px;
}

.feature-panel,
.info-panel,
.price-card,
.faq-item,
.contact-panel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #141414;
  box-shadow: none;
}

.feature-panel {
  position: relative;
  padding: 24px;
  overflow: hidden;
}

.feature-panel::before,
.price-card::before,
.info-panel::before,
.contact-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--brand-flow);
}

.feature-panel h3,
.info-panel h3,
.contact-panel h3 {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 900;
}

.feature-line {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.feature-line:last-child {
  border-bottom: 0;
}

.feature-line img {
  width: 22px;
  height: 22px;
  margin: 3px auto 0;
  filter: invert(46%) sepia(93%) saturate(3678%) hue-rotate(294deg) brightness(106%) contrast(103%);
}

.feature-line strong {
  display: block;
  margin-bottom: 5px;
  font-family: "Exo 2", "Inter", sans-serif;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
}

.feature-line span,
.info-panel p,
.faq-item p,
.contact-panel p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
  font-weight: 600;
}

.module-matrix {
  display: grid;
  gap: 12px;
}

.module-row {
  display: grid;
  grid-template-columns: 98px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 66px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left-color: rgba(35, 215, 255, 0.44);
  border-radius: var(--radius);
  background: #111111;
}

.module-row span {
  color: #23d7ff;
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.module-row strong {
  display: block;
  margin-bottom: 3px;
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 15px;
  font-weight: 900;
}

.module-row em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
}

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

.price-card {
  position: relative;
  min-height: 278px;
  padding: 22px;
  border-top-color: rgba(185, 167, 255, 0.38);
  overflow: hidden;
}

.price-card.featured {
  border-color: rgba(185, 167, 255, 0.48);
  box-shadow: inset 3px 0 0 var(--brand-magenta);
}

.price-card.featured::before {
  content: "";
}

.price-card.featured::after {
  content: "ÖNERİLEN";
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 9px;
  border-radius: 7px;
  color: #ffffff;
  background: rgba(185, 167, 255, 0.13);
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
}

.price-card span {
  display: block;
  color: var(--soft);
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.price-card strong {
  display: block;
  margin-top: 18px;
  color: #c7b8ff;
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 36px;
  line-height: 1;
  font-weight: 900;
}

.price-card p {
  min-height: 54px;
  margin: 17px 0 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 650;
}

.price-card ul {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  color: #d8d8e0;
  font-size: 13px;
  line-height: 1.8;
  font-weight: 650;
}

.price-card li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 99px;
  background: var(--brand-magenta);
  box-shadow: none;
}

.price-card .btn {
  width: 100%;
}

.license-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #111111;
}

.license-strip span {
  min-height: 52px;
  display: grid;
  place-items: center;
  padding: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  color: #ded6ce;
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 12px;
  font-weight: 850;
  text-align: center;
}

.license-strip span:last-child {
  border-right: 0;
}

.page-hero {
  padding: 88px 0 42px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 44px;
  align-items: end;
}

.page-kicker {
  border: 1px solid var(--line);
  border-left-color: var(--line-hot);
  border-radius: var(--radius);
  padding: 18px;
  background: #141414;
}

.page-kicker span {
  display: block;
  margin-bottom: 8px;
  color: var(--brand);
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.page-kicker strong {
  display: block;
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 900;
}

.install-steps {
  display: grid;
  gap: 12px;
  counter-reset: steps;
}

.install-step {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #141414;
}

.install-step::before {
  content: counter(steps, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(185, 167, 255, 0.42);
  border-radius: var(--radius);
  background: #111111;
  color: var(--brand);
  font-family: "Geom", "Exo 2", sans-serif;
  font-size: 16px;
  font-weight: 900;
}

.install-step h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 900;
}

.install-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
  font-weight: 620;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  cursor: pointer;
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 16px;
  font-weight: 900;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--brand);
  font-size: 22px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 20px 20px;
}

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

.contact-panel {
  padding: 24px;
}

.contact-panel a {
  color: var(--brand);
  font-weight: 800;
}

.legal-copy {
  display: grid;
  gap: 14px;
}

.info-panel {
  padding: 22px;
}

.info-panel p {
  margin: 0;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #070707;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
  padding: 32px 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-brand img {
  width: 38px;
  height: 38px;
}

.footer-brand strong {
  font-family: "Geom", "Exo 2", sans-serif;
  letter-spacing: 4px;
  background: var(--brand-flow);
  -webkit-background-clip: text;
  color: transparent;
}

.footer-note {
  max-width: 820px;
  color: #92939d;
  font-size: 12px;
  line-height: 1.65;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 12px 16px;
  color: #cfd0d8;
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.78); opacity: 0.66; }
}

@keyframes panelFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes scanMove {
  0% { transform: translateY(0); opacity: 0; }
  12% { opacity: 1; }
  88% { opacity: 1; }
  100% { transform: translateY(760px); opacity: 0; }
}

@keyframes toastIn {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes sidebar-flow {
  0% { transform: translateY(-110%); }
  100% { transform: translateY(110%); }
}

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

@media (max-width: 1120px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .site-app-shell {
    grid-template-columns: 1fr;
  }

  .site-app-sidebar,
  .site-app-events {
    display: none;
  }

  .site-app-content {
    padding: 18px 14px 0;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .hero-grid,
  .feature-grid,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .product-shell {
    max-width: none;
    margin-left: 0;
  }

  .argus-app-preview {
    max-width: none;
    margin-left: 0;
  }

  .preview-shell {
    grid-template-columns: 128px 1fr;
  }

  .preview-events {
    display: none;
  }

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

  .preview-controls,
  .preview-bottom {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .web-module-bar strong {
    grid-column: 1 / -1;
    order: -1;
  }
}

@media (max-width: 760px) {
  :root {
    --wrap: min(100% - 28px, 1380px);
  }

  .hero {
    padding-top: 48px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 40px;
  }

  .hero-copy,
  .page-copy {
    font-size: 16px;
  }

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

  .hero-panel-head {
    display: block;
  }

  .hero-panel-head a {
    width: fit-content;
    margin-top: 12px;
  }

  .signal-row,
  .trust-panel,
  .product-body,
  .track-row,
  .module-row,
  .install-step {
    grid-template-columns: 1fr;
  }

  .trust-panel-label {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero-band-grid,
  .pricing-grid,
  .license-strip,
  .contact-grid,
  .web-status-grid,
  .web-lower-grid,
  .web-module-bar,
  .hero-feature-six {
    grid-template-columns: 1fr;
  }

  .band-item,
  .license-strip span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .telegram-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 14px;
  }

  .preview-topline {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .preview-shell {
    grid-template-columns: 1fr;
  }

  .preview-sidebar {
    display: none;
  }

  .preview-status-grid {
    grid-template-columns: 1fr;
  }

  .section-head,
  .footer-grid {
    display: block;
  }

  .footer-links {
    justify-content: start;
    margin-top: 20px;
  }
}

/* Luminary-inspired ARGUS home */
.grain {
  position: fixed;
  inset: 0;
  z-index: 900;
  pointer-events: none;
  opacity: 0.028;
  mix-blend-mode: overlay;
}

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, #0b0c10 0%, #111218 42%, #171820 72%, #08090c 100%);
}

.topbar {
  position: fixed;
  left: 0;
  right: 0;
  background: rgba(7, 7, 9, 0.54);
  border-bottom-color: rgba(255, 255, 255, 0.055);
  transition: padding 700ms cubic-bezier(0.16, 1, 0.3, 1), background 700ms cubic-bezier(0.16, 1, 0.3, 1), border-color 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.topbar.is-scrolled {
  background: rgba(10, 10, 13, 0.86);
  border-color: rgba(185, 167, 255, 0.16);
}

.topbar .nav {
  min-height: 78px;
}

.topbar.is-scrolled .nav {
  min-height: 62px;
}

.website-main.luminary-main {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 96px));
  margin: 0 auto;
  padding-top: 0;
}

.site-footer {
  position: relative;
  z-index: 1;
}

.side-panel {
  position: fixed;
  top: 50%;
  z-index: 60;
  width: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 22px 0;
  transform: translateY(-50%);
  pointer-events: none;
}

.side-panel.left {
  left: 18px;
}

.side-panel.right {
  right: 18px;
}

.side-label {
  writing-mode: vertical-rl;
  color: rgba(183, 184, 194, 0.48);
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.25em;
}

.side-track {
  position: relative;
  width: 1px;
  height: 156px;
  background: rgba(255, 255, 255, 0.08);
}

.side-track-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 26%;
  background: linear-gradient(180deg, #d8ccff 0%, #9b7cff 46%, #ff123f 100%);
  background-size: 100% 220%;
  animation: argusVerticalFlow 4.8s linear infinite;
  transition: height 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.side-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(183, 184, 194, 0.22);
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1), background 700ms cubic-bezier(0.16, 1, 0.3, 1), opacity 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.side-dot.active {
  background: #ff123f;
  opacity: 0.9;
  transform: scale(1.35);
}

.side-readout {
  color: rgba(183, 184, 194, 0.45);
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  font-variant-numeric: tabular-nums;
}

.luminary-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 132px 0 88px;
  text-align: center;
  overflow: hidden;
}

.hero-grid-light {
  position: absolute;
  left: 50%;
  bottom: -1px;
  z-index: 0;
  width: 100vw;
  height: 82%;
  transform: translateX(-50%);
  pointer-events: none;
  --mx: 50%;
  --my: 50%;
  background-image:
    linear-gradient(to right, rgba(178, 179, 190, 0.18) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(178, 179, 190, 0.18) 1px, transparent 1px);
  background-size: 118px 118px;
  background-position: center bottom;
  animation: argusGridDrift 18s linear infinite;
  mask-image:
    radial-gradient(circle 330px at var(--mx) var(--my), rgba(0, 0, 0, 1) 0%, transparent 66%),
    linear-gradient(to bottom, transparent 0%, transparent 22%, rgba(0, 0, 0, 0.13) 48%, rgba(0, 0, 0, 0.32) 100%);
  -webkit-mask-image:
    radial-gradient(circle 330px at var(--mx) var(--my), rgba(0, 0, 0, 1) 0%, transparent 66%),
    linear-gradient(to bottom, transparent 0%, transparent 22%, rgba(0, 0, 0, 0.13) 48%, rgba(0, 0, 0, 0.32) 100%);
  mask-composite: add;
}

.luminary-hero > *:not(.hero-grid-light) {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 999px;
  background: rgba(18, 18, 22, 0.72);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateY(18px);
  animation: argusFadeUp 1100ms cubic-bezier(0.16, 1, 0.3, 1) 120ms forwards;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #ff123f;
  animation: argusDotPulse 2.4s ease-in-out infinite;
}

.hero-badge span:last-child {
  color: rgba(231, 231, 238, 0.74);
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.luminary-hero h1 {
  max-width: 1080px;
  margin: 38px auto 0;
  color: #f6f6fb;
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: clamp(52px, 7vw, 112px);
  line-height: 0.93;
  font-weight: 300;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(24px);
  animation: argusFadeUp 1300ms cubic-bezier(0.16, 1, 0.3, 1) 260ms forwards;
}

.luminary-hero h1 em {
  font-style: normal;
  font-weight: 900;
  background: linear-gradient(135deg, #efeaff 0%, #b9a7ff 42%, #ff123f 100%);
  background-size: 180% 180%;
  -webkit-background-clip: text;
  color: transparent;
  animation: argusTextFlow 6s ease-in-out infinite;
}

.hero-sub {
  max-width: 760px;
  margin: 30px auto 0;
  color: rgba(220, 221, 230, 0.72);
  font-size: 16px;
  line-height: 1.8;
  font-weight: 450;
  opacity: 0;
  transform: translateY(18px);
  animation: argusFadeUp 1300ms cubic-bezier(0.16, 1, 0.3, 1) 420ms forwards;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
  opacity: 0;
  transform: translateY(18px);
  animation: argusFadeUp 1300ms cubic-bezier(0.16, 1, 0.3, 1) 580ms forwards;
}

.hero-metrics {
  display: flex;
  justify-content: center;
  gap: 58px;
  margin-top: 72px;
  opacity: 0;
  transform: translateY(18px);
  animation: argusFadeUp 1300ms cubic-bezier(0.16, 1, 0.3, 1) 760ms forwards;
}

.metric {
  min-width: 118px;
  text-align: center;
}

.metric-value {
  color: #ffffff;
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: clamp(30px, 3.1vw, 48px);
  line-height: 1;
  font-weight: 300;
  font-variant-numeric: tabular-nums;
}

.metric-value span:last-child:not(:first-child) {
  margin-left: 4px;
  color: rgba(183, 184, 194, 0.62);
  font-size: 0.42em;
  vertical-align: super;
}

.metric-label {
  margin-top: 9px;
  color: rgba(183, 184, 194, 0.55);
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.logo-ticker {
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.018);
  overflow: hidden;
}

.logo-ticker-label {
  margin-bottom: 14px;
  color: rgba(183, 184, 194, 0.48);
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.24em;
  text-align: center;
  text-transform: uppercase;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  animation: argusTicker 28s linear infinite;
}

.ticker-track span {
  color: rgba(242, 242, 247, 0.68);
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-track b {
  width: 5px;
  height: 5px;
  border-radius: 99px;
  background: #ff123f;
  opacity: 0.65;
}

.luminary-section {
  padding: 118px 0;
}

.luminary-section .section-head {
  display: block;
  max-width: 920px;
  margin-bottom: 36px;
}

.section-tag {
  margin: 0 0 18px;
  color: rgba(183, 184, 194, 0.55);
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.luminary-section .section-head h2,
.split-section h2 {
  max-width: 840px;
  margin: 0;
  color: #f4f4f8;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: -0.01em;
}

.luminary-section .section-head p:not(.section-tag) {
  max-width: 650px;
  margin: 20px 0 0;
  color: rgba(214, 215, 224, 0.68);
  font-size: 15px;
  line-height: 1.75;
}

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

.feature-card {
  position: relative;
  min-height: 196px;
  padding: 24px 24px 22px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 12px;
  background: rgba(19, 20, 25, 0.72);
  overflow: hidden;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1), border-color 700ms cubic-bezier(0.16, 1, 0.3, 1), background 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #d8ccff 0%, #9b7cff 44%, #ff123f 100%);
  background-size: 100% 220%;
  animation: argusVerticalFlow 5.2s linear infinite;
}

.feature-card:nth-child(2)::before,
.feature-card:nth-child(5)::before {
  background: linear-gradient(180deg, #d8ccff 0%, #8f72ff 48%, #ff123f 100%);
  background-size: 100% 220%;
}

.feature-card:nth-child(3)::before,
.feature-card:nth-child(6)::before {
  background: linear-gradient(180deg, #c7b8ff 0%, #9b7cff 42%, #ff123f 100%);
  background-size: 100% 220%;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 204, 255, 0.20);
  background: rgba(22, 23, 29, 0.84);
}

.feature-card span {
  color: rgba(183, 184, 194, 0.56);
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.20em;
}

.feature-card strong {
  display: block;
  margin-top: 28px;
  color: #ffffff;
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 23px;
  line-height: 1.12;
  font-weight: 850;
}

.feature-card p {
  margin: 14px 0 0;
  color: rgba(214, 215, 224, 0.68);
  font-size: 14px;
  line-height: 1.65;
}

.silk-divider {
  width: 120px;
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(185, 167, 255, 0.32), transparent);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 54px;
  align-items: center;
}

.assistant-lines {
  display: grid;
  gap: 12px;
}

.assistant-lines div {
  position: relative;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 74px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(19, 20, 25, 0.62);
}

.assistant-lines div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #d8ccff 0%, #9b7cff 48%, #ff123f 100%);
  background-size: 100% 220%;
  animation: argusVerticalFlow 5.4s linear infinite;
}

.assistant-lines span {
  color: #c7b8ff;
  font-family: "Exo 2", "Inter", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.assistant-lines strong {
  color: rgba(246, 246, 251, 0.88);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 720;
}

.pricing-luminary {
  padding-top: 106px;
}

.pricing-luminary .pricing-grid {
  margin-top: 34px;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1100ms cubic-bezier(0.16, 1, 0.3, 1), transform 1100ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-d1 {
  transition-delay: 110ms;
}

.reveal-d2 {
  transition-delay: 220ms;
}

.reveal-d3 {
  transition-delay: 330ms;
}

@keyframes argusFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes argusTicker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes argusVerticalFlow {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 220%;
  }
}

@keyframes argusTextFlow {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes argusDotPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.62);
    opacity: 0.58;
  }
}

@keyframes argusGridDrift {
  from {
    background-position: center bottom;
  }
  to {
    background-position: calc(50% + 118px) bottom;
  }
}

@media (max-width: 1120px) {
  .website-main.luminary-main {
    width: min(100% - 56px, 1180px);
  }

  .side-panel {
    display: none;
  }

  .feature-six,
  .split-section {
    grid-template-columns: 1fr;
  }

  .split-section {
    gap: 28px;
  }
}

@media (max-width: 760px) {
  .website-main.luminary-main {
    width: min(100% - 28px, 1180px);
  }

  .topbar .nav {
    min-height: 66px;
  }

  .luminary-hero {
    min-height: auto;
    padding: 116px 0 70px;
  }

  .luminary-hero h1 {
    font-size: 46px;
  }

  .hero-sub {
    font-size: 15px;
  }

  .hero-ctas,
  .hero-metrics {
    width: 100%;
  }

  .hero-ctas .btn {
    flex: 1 1 100%;
  }

  .hero-metrics {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
  }

  .luminary-section {
    padding: 76px 0;
  }

  .feature-card {
    min-height: auto;
  }

  .assistant-lines div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
