:root {
  --bg: #000000;
  --bg-soft: #050505;
  --surface: rgba(18, 18, 18, 0.88);
  --surface-strong: #121212;
  --surface-dark: #0a0a0a;
  --primary: #4da6ff;
  --primary-deep: #2d6fb8;
  --accent: #5dd39e;
  --accent-soft: #2f8a66;
  --ink: #ffffff;
  --muted: #a0a0a0;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --shadow-soft: none;
  --shadow-strong: 0 28px 80px rgba(0, 0, 0, 0.55);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "IBM Plex Sans Arabic", system-ui, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #000 0%, #050505 48%, #000 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 78%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 78%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

.wrap {
  width: min(var(--max-width), calc(100% - 2rem));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -40px;
  inset-inline-start: 1rem;
  padding: 0.75rem 1rem;
  background: var(--surface-dark);
  color: #fff;
  border-radius: 999px;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 6, 8, 0.88);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.header-shell {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1rem;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand__mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand__eyebrow {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.74rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand strong {
  font-size: 1.25rem;
}

.site-nav {
  display: inline-flex;
  justify-content: center;
  gap: 1rem;
}

.site-nav a {
  position: relative;
  padding: 0.5rem 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: background-color 160ms ease;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--header {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  border-color: var(--line);
}

.button--header:hover {
  background: rgba(255, 255, 255, 0.15);
}

.button--primary {
  background: linear-gradient(135deg, var(--accent), #f08c48);
  color: #1f130b;
  box-shadow: 0 16px 30px rgba(216, 111, 45, 0.24);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  border-color: var(--line-strong);
}

.button--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.button--block {
  width: 100%;
}

.button.is-disabled {
  opacity: 0.62;
  cursor: not-allowed;
  box-shadow: none;
}

.hero {
  position: relative;
  padding: clamp(4rem, 10vw, 7rem) 0 2.5rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--primary);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section-head h2,
.section-copy h2,
.fact-panel h2,
.download-copy h2 {
  margin: 0;
  line-height: 1.08;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.hero .lead,
.section-head p,
.section-copy p,
.download-copy p {
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.9;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  margin: 1.6rem 0 0;
  list-style: none;
}

.hero__proof li {
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(15, 139, 141, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  color: var(--ink);
  font-size: 0.95rem;
}

.hero__visual {
  position: relative;
}

.device-card {
  position: relative;
  padding: 1.2rem;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(216, 111, 45, 0.22), transparent 28%),
    linear-gradient(165deg, #22364a, #182332 72%);
  color: #f4f7fb;
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.device-card::after {
  content: "";
  position: absolute;
  inset-inline-start: 1rem;
  inset-block-end: 1rem;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(15, 139, 141, 0.16);
  filter: blur(16px);
}

.device-card__topbar,
.device-card__router,
.queue-item,
.hero-band article,
.feature-card,
.audience-card,
.remote-card,
.workflow-step,
.fact-panel,
.note-panel,
.faq-item,
.download-shell,
.download-card,
.site-footer {
  border: 1px solid var(--line);
}

.device-card__topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 0.85rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.device-card__pill,
.device-card__status {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.86rem;
}

.device-card__pill {
  background: rgba(255, 255, 255, 0.08);
}

.device-card__status {
  background: #8fd7d6;
  color: #103536;
}

.device-card__screen {
  position: relative;
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.device-card__router {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.device-card__router p,
.device-card__router strong,
.queue-item span,
.queue-item b,
.fact-list span,
.fact-list strong {
  display: block;
}

.device-card__router p,
.queue-item span,
.download-card p,
.footer-meta,
.contact-list span,
.fact-list span {
  color: rgba(244, 247, 251, 0.72);
}

.device-card__router strong,
.queue-item b,
.remote-card h3,
.feature-card h3,
.audience-card h3,
.workflow-step h3,
.download-card h3,
.faq-item summary,
.fact-panel h2,
.note-panel h3 {
  margin: 0;
}

.device-card__router span {
  font-family: "Space Grotesk", sans-serif;
  color: #8fd7d6;
}

.device-card__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.device-card__metrics article {
  padding: 0.9rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.device-card__metrics small {
  display: block;
  color: rgba(244, 247, 251, 0.72);
  margin-bottom: 0.45rem;
}

.device-card__metrics strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
}

.device-card__queue {
  display: grid;
  gap: 0.75rem;
}

.queue-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.queue-item--alert b {
  color: #ffd4bf;
}

.hero-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.hero-band article,
.feature-card,
.audience-card,
.remote-card,
.workflow-step,
.fact-panel,
.note-panel,
.download-card,
.faq-item,
.download-shell,
.site-footer {
  background: var(--surface);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
}

.hero-band article {
  padding: 1rem 1.15rem;
  border-radius: 20px;
}

.hero-band span,
.feature-card__marker,
.audience-card span,
.workflow-step span,
.download-note,
.faq-item p,
.feature-card p,
.audience-card p,
.remote-card p,
.remote-card li,
.workflow-step p,
.note-panel li,
.footer-shell p,
.footer-meta {
  color: var(--muted);
}

.hero-band strong,
.feature-card h3,
.audience-card h3,
.remote-card h3,
.workflow-step h3,
.download-card h3,
.fact-list strong,
.contact-list a {
  color: var(--ink);
}

.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-head h2,
.section-copy h2,
.fact-panel h2,
.download-copy h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section--split {
  padding-top: 3rem;
}

.split-layout,
.workflow-layout,
.facts-grid,
.download-shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.section-copy,
.audience-grid,
.workflow-steps,
.download-copy,
.download-grid {
  align-self: start;
}

.audience-grid,
.feature-grid,
.remote-grid,
.workflow-steps,
.faq-grid,
.download-grid {
  display: grid;
  gap: 1rem;
}

.audience-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.audience-card,
.feature-card,
.remote-card,
.workflow-step,
.fact-panel,
.note-panel,
.download-card,
.faq-item {
  padding: 1.35rem;
  border-radius: var(--radius-md);
}

.audience-card span,
.feature-card__marker {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: rgba(15, 139, 141, 0.07);
  transform: translate(-32%, 38%);
}

.feature-card__marker {
  color: var(--primary);
}

.feature-card p,
.audience-card p,
.remote-card p,
.workflow-step p,
.faq-item p,
.download-card p,
.footer-shell p,
.note-panel li,
.contact-list span {
  line-height: 1.85;
}

.section--remote {
  background:
    radial-gradient(circle at left center, rgba(15, 139, 141, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0));
}

.section--showcase {
  position: relative;
}

.section--showcase::before {
  content: "";
  position: absolute;
  inset: 8% auto auto 0;
  width: min(28vw, 320px);
  height: min(28vw, 320px);
  border-radius: 50%;
  background: rgba(216, 111, 45, 0.08);
  filter: blur(10px);
  pointer-events: none;
}

.showcase-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 1.5rem;
  align-items: start;
}

.showcase-points {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.showcase-points article {
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow-soft);
}

.showcase-points strong {
  display: block;
  margin-bottom: 0.35rem;
}

.showcase-points p,
.shot-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.showcase-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.shot-card {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
}

.shot-card--tall {
  grid-row: span 2;
}

.shot-card--wide {
  grid-column: 1 / -1;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
}

.shot-frame {
  position: relative;
  padding: 0.75rem;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(24, 35, 50, 0.95), rgba(24, 35, 50, 0.88)),
    linear-gradient(135deg, rgba(15, 139, 141, 0.18), rgba(216, 111, 45, 0.18));
  box-shadow: 0 24px 52px rgba(24, 35, 50, 0.2);
  overflow: hidden;
}

.shot-frame::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 50%;
  width: 34%;
  height: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-50%);
}

.shot-frame img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.shot-frame--devices {
  max-width: 360px;
}

.shot-copy {
  display: grid;
  gap: 0.55rem;
}

.shot-copy span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

.shot-copy h3 {
  margin: 0;
  font-size: clamp(1.12rem, 2vw, 1.5rem);
  line-height: 1.35;
}

.remote-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.remote-card {
  position: relative;
  padding-top: 1.6rem;
}

.remote-card::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 5px;
  border-radius: 999px 999px 0 0;
}

.remote-card--teal::before {
  background: linear-gradient(90deg, var(--primary), #53b0ae);
}

.remote-card--orange::before {
  background: linear-gradient(90deg, var(--accent), #f0b58e);
}

.remote-card--ink::before {
  background: linear-gradient(90deg, #182332, #46566b);
}

.remote-card ul,
.note-panel ul,
.contact-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.remote-card li,
.note-panel li,
.contact-list li {
  position: relative;
  padding-inline-start: 1rem;
  margin-top: 0.75rem;
}

.remote-card li::before,
.note-panel li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.8rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--primary);
}

.workflow-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.workflow-step span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(216, 111, 45, 0.1);
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.fact-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.fact-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.download-shell {
  padding: 1.5rem;
}

.download-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.download-card--support {
  grid-column: 1 / -1;
}

.download-card__actions {
  display: grid;
  gap: 0.75rem;
}

.contact-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 0;
}

.contact-list li::before {
  display: none;
}

.contact-list a {
  word-break: break-word;
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: left;
  font-family: "Space Grotesk", sans-serif;
  color: var(--accent);
}

.faq-item[open] summary::after {
  content: "−";
}

.site-footer {
  margin: 0 1rem 1rem;
  border-radius: var(--radius-lg);
}

.footer-shell {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.4rem 1.6rem;
}

.footer-shell strong {
  font-size: 1.1rem;
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-nav strong,
.footer-contact strong {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.footer-nav a,
.footer-contact a {
  font-size: 0.9rem;
  color: var(--ink);
  opacity: 0.75;
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-nav a:hover,
.footer-contact a:hover {
  opacity: 1;
}

.footer-meta {
  display: grid;
  gap: 0.45rem;
  text-align: left;
}

.footer-meta b {
  color: var(--ink);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 420ms ease,
    transform 420ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Shot placeholder ───────────────────────────────── */
.shot-placeholder {
  aspect-ratio: 9/16;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border: 1.5px dashed rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  min-height: 180px;
}

.shot-placeholder__screen {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(244, 247, 251, 0.7);
}

.shot-placeholder__label {
  font-size: 0.78rem;
  color: rgba(244, 247, 251, 0.35);
}

/* ── Comparison table ──────────────────────────────── */
.section--compare {
  background:
    radial-gradient(circle at top left, rgba(15, 139, 141, 0.07), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
}

.compare-wrap {
  overflow-x: auto;
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.97rem;
  min-width: 520px;
}

.compare-table th,
.compare-table td {
  padding: 1rem 1.3rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.compare-table th:first-child,
.compare-table td:first-child {
  text-align: right;
  font-weight: 500;
}

.compare-table thead th {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  padding-block: 1.15rem;
  color: var(--muted);
}

.compare-table thead th:nth-child(2) {
  background: rgba(15, 139, 141, 0.06);
  color: var(--primary);
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-check {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(15, 139, 141, 0.12);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
}

.compare-x {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.04);
  color: #b0b8c4;
  font-size: 0.72rem;
}

.compare-partial {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(216, 111, 45, 0.1);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
}

/* ── Stats row ─────────────────────────────────────── */
.section--stats {
  padding-block: 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card {
  padding: 1.4rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.stat-card__num {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.55rem;
}

.stat-card__label {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ── Admin App section ──────────────────────────────── */
.section--admin-app {
  background:
    radial-gradient(circle at right center, rgba(15, 139, 141, 0.07), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
}

.admin-app-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.admin-app-features {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.admin-app-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.65);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
}

.admin-app-feature__num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
  color: var(--primary);
  letter-spacing: 0.1em;
  flex-shrink: 0;
  margin-top: 0.18em;
}

.admin-app-feature h4 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
}

.admin-app-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.78;
}

.admin-app-card {
  padding: 1.4rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(165deg, #1d3347, #182332);
  color: #f4f7fb;
  box-shadow: var(--shadow-strong);
  display: grid;
  gap: 1rem;
}

.admin-app-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-app-card__title {
  font-size: 0.97rem;
  font-weight: 600;
}

.admin-app-card__badge {
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(15, 139, 141, 0.22);
  color: #8fd7d6;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

.admin-user-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0.9rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  gap: 0.75rem;
}

.admin-user-row__name {
  font-size: 0.93rem;
  font-weight: 600;
}

.admin-user-row__meta {
  font-size: 0.78rem;
  color: rgba(244, 247, 251, 0.52);
  margin-top: 0.18rem;
}

.admin-user-row__status {
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.admin-user-row__status--active {
  background: rgba(143, 215, 214, 0.18);
  color: #8fd7d6;
}

.admin-user-row__status--warning {
  background: rgba(240, 181, 142, 0.2);
  color: #f0b58e;
}

/* ── Pricing ────────────────────────────────────────── */
.section--pricing {
  background:
    radial-gradient(circle at bottom right, rgba(216, 111, 45, 0.08), transparent 28%),
    radial-gradient(circle at top left, rgba(15, 139, 141, 0.06), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3));
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2.5rem;
  align-items: start;
}

.pricing-card {
  position: relative;
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pricing-card--featured {
  border-color: rgba(15, 139, 141, 0.38);
  background: linear-gradient(165deg, rgba(15, 139, 141, 0.06), rgba(255, 255, 255, 0.9));
  box-shadow: 0 32px 80px rgba(15, 139, 141, 0.14);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.38rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(15, 139, 141, 0.3);
}

.pricing-card__head h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.pricing-card__head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.75;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
}

.pricing-price strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.1rem;
  line-height: 1;
  color: var(--ink);
}

.pricing-price span {
  color: var(--muted);
  font-size: 0.88rem;
}

.pricing-features {
  flex: 1;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.72rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.94rem;
  line-height: 1.65;
}

.pricing-features li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.06em;
}

.pricing-features li.is-muted::before {
  content: "–";
  color: #c5cdd6;
}

.pricing-features li.is-muted {
  color: var(--muted);
}

.pricing-note {
  margin-top: 1.5rem;
  font-size: 0.84rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.7;
}

/* ── Mobile sticky CTA ──────────────────────────────── */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 0.8rem 1rem;
  padding-bottom: calc(0.8rem + env(safe-area-inset-bottom, 0px));
  background: rgba(5, 6, 8, 0.92);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.45);
}

.mobile-cta__inner {
  display: flex;
  gap: 0.65rem;
}

.mobile-cta__inner .button {
  flex: 1;
  min-height: 44px;
  font-size: 0.95rem;
}

@media (max-width: 1120px) {
  .feature-grid,
  .remote-grid,
  .audience-grid,
  .faq-grid,
  .download-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase-layout {
    grid-template-columns: 1fr;
  }

  .hero-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid,
  .admin-app-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin-inline: auto;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .header-shell {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    inset-inline: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0.9rem;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(18, 18, 18, 0.96);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-strong);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.75rem 0.5rem;
  }

  .button--header {
    justify-self: end;
  }

  .hero__grid,
  .split-layout,
  .workflow-layout,
  .admin-app-grid,
  .facts-grid,
  .download-shell,
  .shot-card--wide,
  .footer-shell {
    grid-template-columns: 1fr;
    display: grid;
  }
}

@media (max-width: 720px) {
  .wrap {
    width: min(var(--max-width), calc(100% - 1.25rem));
  }

  .header-shell {
    min-height: 74px;
  }

  .brand__mark {
    width: 46px;
    height: 46px;
  }

  .button {
    width: 100%;
  }

  .hero__cta {
    flex-direction: column;
  }

  .hero__proof,
  .hero-band,
  .feature-grid,
  .showcase-gallery,
  .remote-grid,
  .audience-grid,
  .faq-grid,
  .download-grid,
  .stats-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .mobile-cta {
    display: block;
  }

  .section--download {
    padding-bottom: 6rem;
  }

  .shot-card--tall,
  .shot-card--wide {
    grid-column: auto;
    grid-row: auto;
  }

  .shot-frame--devices {
    max-width: none;
  }

  .device-card__metrics {
    grid-template-columns: 1fr;
  }

  .contact-list li,
  .fact-list div {
    grid-template-columns: 1fr;
    display: grid;
  }

  .footer-meta {
    text-align: right;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .button,
  .site-nav a::after {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
/* ═══════════════════════════════════════════════════════
   NEW COMPONENTS — Added for v2 redesign
   ═══════════════════════════════════════════════════════ */

/* ── Badges ──────────────────────────────────────────── */
.hero__badge {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.badge--version {
  background: rgba(15, 139, 141, 0.12);
  color: var(--primary-deep);
  border: 1px solid rgba(15, 139, 141, 0.2);
}
.badge--android {
  background: rgba(24, 35, 50, 0.07);
  color: var(--ink);
  border: 1px solid var(--line);
}
.badge--routeros {
  background: rgba(216, 111, 45, 0.1);
  color: #b35b1e;
  border: 1px solid rgba(216, 111, 45, 0.18);
}

/* ── Phone hero ───────────────────────────────────────── */
.phone-hero-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 2rem;
}
.phone-frame {
  position: relative;
  width: 240px;
  flex-shrink: 0;
  border-radius: 40px;
  border: 2px solid rgba(24, 35, 50, 0.18);
  background: #0e1520;
  box-shadow: var(--shadow-strong), 0 0 0 6px rgba(24, 35, 50, 0.06);
  overflow: hidden;
}
.phone-frame__notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 18px;
  background: #0e1520;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.phone-frame__screen {
  padding: 6px 5px 5px;
}
.phone-frame__screen img {
  width: 100%;
  border-radius: 34px;
  display: block;
}
.phone-float--2 {
  position: absolute;
  bottom: 0;
  inset-inline-end: -10px;
  width: 130px;
  border-radius: 22px;
  overflow: hidden;
  border: 2px solid rgba(24, 35, 50, 0.16);
  box-shadow: var(--shadow-strong);
  background: #0e1520;
}
.phone-float--2 img {
  width: 100%;
  display: block;
}

/* ── Feature grid wider ───────────────────────────────── */
.feature-grid--wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* ── Spotlight sections ───────────────────────────────── */
.section--spotlight {
  position: relative;
  overflow: hidden;
}
.section--cards {
  background:
    radial-gradient(circle at bottom left, rgba(216, 111, 45, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
}
.section--usermgr {
  background:
    radial-gradient(circle at top right, rgba(15, 139, 141, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3));
}
.spotlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 3rem;
  align-items: center;
}
.spotlight-grid--reverse {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}
.spotlight-copy p {
  color: var(--muted);
  line-height: 1.85;
  margin: 1rem 0 0;
}
.spotlight-stats {
  display: flex;
  gap: 2rem;
  margin: 1.5rem 0;
  padding: 1.2rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.spotlight-stat {
  text-align: center;
}
.spotlight-stat strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.spotlight-stat span {
  font-size: 0.82rem;
  color: var(--muted);
}
.spotlight-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}
.spotlight-list li {
  position: relative;
  padding-inline-start: 1.4rem;
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--ink);
}
.spotlight-list li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  color: var(--primary);
  font-weight: 700;
}

/* ── Spotlight screens ────────────────────────────────── */
.spotlight-screens {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.85rem;
}
.spotlight-screen--main {
  grid-row: span 2;
}
.spotlight-screen .shot-frame {
  border-radius: 24px;
  overflow: hidden;
}
.spotlight-screen .shot-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  border: none;
}
.screen-label {
  margin: 0.45rem 0 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}

/* ── Showcase tabs ────────────────────────────────────── */
.showcase-tabs {
  margin-top: 2rem;
}
.tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.tab-btn {
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 140ms, color 140ms, border-color 140ms;
}
.tab-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}
.tab-btn.is-active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.tab-content {
  display: none;
}
.tab-content.is-active {
  display: block;
}

/* ── Shots grid ───────────────────────────────────────── */
.shots-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}
.shot-item {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.shot-item--lg {
  grid-row: span 1;
}
.shot-item .shot-frame {
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.shot-item .shot-frame:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-strong);
}
.shot-item .shot-frame img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.shot-label {
  margin: 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
}

/* ── Remote screens strip ─────────────────────────────── */
.remote-screens {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  max-width: 520px;
  margin-inline: auto;
}
.remote-screens .shot-frame {
  border-radius: 24px;
}
.remote-screens .shot-frame img {
  width: 100%;
  border-radius: 24px;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── Lightbox ─────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(12, 18, 28, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 1.5rem;
}
.lightbox[hidden] {
  display: none;
}
.lightbox__img {
  max-width: min(420px, 90vw);
  max-height: 90vh;
  border-radius: 28px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}
.lightbox__close {
  position: absolute;
  top: 1.25rem;
  inset-inline-end: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 140ms;
}
.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* ── Counter animation ────────────────────────────────── */
.stat-card__num.is-counting {
  transition: none;
}

/* ── Responsive overrides ─────────────────────────────── */
@media (max-width: 1120px) {
  .spotlight-grid,
  .spotlight-grid--reverse {
    grid-template-columns: 1fr;
  }
  .spotlight-grid--reverse .spotlight-screens {
    order: -1;
  }
  .shots-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .feature-grid--wide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .phone-hero-wrap {
    max-width: 300px;
    margin-inline: auto;
  }
  .remote-screens {
    grid-template-columns: 1fr;
    max-width: 280px;
  }
}

@media (max-width: 720px) {
  .phone-float--2 {
    display: none;
  }
  .spotlight-screens {
    grid-template-columns: 1fr;
  }
  .spotlight-screen--main {
    grid-row: auto;
  }
  .shots-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .feature-grid--wide {
    grid-template-columns: 1fr;
  }
  .tab-nav {
    gap: 0.4rem;
  }
  .tab-btn {
    font-size: 0.84rem;
    padding: 0.5rem 0.85rem;
  }
  .spotlight-stats {
    gap: 1rem;
  }
  .remote-screens {
    max-width: none;
  }
}
/* ═══════════════════════════════════════════════════════
   NEW COMPONENTS — Added for v2 redesign
   ═══════════════════════════════════════════════════════ */

/* ── Badges ──────────────────────────────────────────── */
.hero__badge {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.badge--version {
  background: rgba(15, 139, 141, 0.12);
  color: var(--primary-deep);
  border: 1px solid rgba(15, 139, 141, 0.2);
}
.badge--android {
  background: rgba(24, 35, 50, 0.07);
  color: var(--ink);
  border: 1px solid var(--line);
}
.badge--routeros {
  background: rgba(216, 111, 45, 0.1);
  color: #b35b1e;
  border: 1px solid rgba(216, 111, 45, 0.18);
}

/* ── Phone hero ───────────────────────────────────────── */
.phone-hero-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 2rem;
}
.phone-frame {
  position: relative;
  width: 240px;
  flex-shrink: 0;
  border-radius: 40px;
  border: 2px solid rgba(24, 35, 50, 0.18);
  background: #0e1520;
  box-shadow: var(--shadow-strong), 0 0 0 6px rgba(24, 35, 50, 0.06);
  overflow: hidden;
}
.phone-frame__notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 18px;
  background: #0e1520;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.phone-frame__screen {
  padding: 6px 5px 5px;
}
.phone-frame__screen img {
  width: 100%;
  border-radius: 34px;
  display: block;
}
.phone-float--2 {
  position: absolute;
  bottom: 0;
  inset-inline-end: -10px;
  width: 130px;
  border-radius: 22px;
  overflow: hidden;
  border: 2px solid rgba(24, 35, 50, 0.16);
  box-shadow: var(--shadow-strong);
  background: #0e1520;
}
.phone-float--2 img {
  width: 100%;
  display: block;
}

/* ── Feature grid wider ───────────────────────────────── */
.feature-grid--wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* ── Spotlight sections ───────────────────────────────── */
.section--spotlight {
  position: relative;
  overflow: hidden;
}
.section--cards {
  background:
    radial-gradient(circle at bottom left, rgba(216, 111, 45, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
}
.section--usermgr {
  background:
    radial-gradient(circle at top right, rgba(15, 139, 141, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3));
}
.spotlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 3rem;
  align-items: center;
}
.spotlight-grid--reverse {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}
.spotlight-copy p {
  color: var(--muted);
  line-height: 1.85;
  margin: 1rem 0 0;
}
.spotlight-stats {
  display: flex;
  gap: 2rem;
  margin: 1.5rem 0;
  padding: 1.2rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.spotlight-stat {
  text-align: center;
}
.spotlight-stat strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.spotlight-stat span {
  font-size: 0.82rem;
  color: var(--muted);
}
.spotlight-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}
.spotlight-list li {
  position: relative;
  padding-inline-start: 1.4rem;
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--ink);
}
.spotlight-list li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  color: var(--primary);
  font-weight: 700;
}

/* ── Spotlight screens ────────────────────────────────── */
.spotlight-screens {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.85rem;
}
.spotlight-screen--main {
  grid-row: span 2;
}
.spotlight-screen .shot-frame {
  border-radius: 24px;
  overflow: hidden;
}
.spotlight-screen .shot-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  border: none;
}
.screen-label {
  margin: 0.45rem 0 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}

/* ── Showcase tabs ────────────────────────────────────── */
.showcase-tabs {
  margin-top: 2rem;
}
.tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.tab-btn {
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 140ms, color 140ms, border-color 140ms;
}
.tab-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}
.tab-btn.is-active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.tab-content {
  display: none;
}
.tab-content.is-active {
  display: block;
}

/* ── Shots grid ───────────────────────────────────────── */
.shots-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}
.shot-item {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.shot-item--lg {
  grid-row: span 1;
}
.shot-item .shot-frame {
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.shot-item .shot-frame:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-strong);
}
.shot-item .shot-frame img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.shot-label {
  margin: 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
}

/* ── Remote screens strip ─────────────────────────────── */
.remote-screens {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  max-width: 520px;
  margin-inline: auto;
}
.remote-screens .shot-frame {
  border-radius: 24px;
}
.remote-screens .shot-frame img {
  width: 100%;
  border-radius: 24px;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── Lightbox ─────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(12, 18, 28, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 1.5rem;
}
.lightbox[hidden] {
  display: none;
}
.lightbox__img {
  max-width: min(420px, 90vw);
  max-height: 90vh;
  border-radius: 28px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}
.lightbox__close {
  position: absolute;
  top: 1.25rem;
  inset-inline-end: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 140ms;
}
.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* ── Counter animation ────────────────────────────────── */
.stat-card__num.is-counting {
  transition: none;
}

/* ── Responsive overrides ─────────────────────────────── */
@media (max-width: 1120px) {
  .spotlight-grid,
  .spotlight-grid--reverse {
    grid-template-columns: 1fr;
  }
  .spotlight-grid--reverse .spotlight-screens {
    order: -1;
  }
  .shots-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .feature-grid--wide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .phone-hero-wrap {
    max-width: 300px;
    margin-inline: auto;
  }
  .remote-screens {
    grid-template-columns: 1fr;
    max-width: 280px;
  }
}

@media (max-width: 720px) {
  .phone-float--2 {
    display: none;
  }
  .spotlight-screens {
    grid-template-columns: 1fr;
  }
  .spotlight-screen--main {
    grid-row: auto;
  }
  .shots-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .feature-grid--wide {
    grid-template-columns: 1fr;
  }
  .tab-nav {
    gap: 0.4rem;
  }
  .tab-btn {
    font-size: 0.84rem;
    padding: 0.5rem 0.85rem;
  }
  .spotlight-stats {
    gap: 1rem;
  }
  .remote-screens {
    max-width: none;
  }
}
/* ═══════════════════════════════════════════════════════
   SCREENSHOT DISPLAY FIXES — v2.1
   Controls all phone screenshot sizes across the site
   ═══════════════════════════════════════════════════════ */

/* ── Gallery (shots-grid) ────────────────────────────────
   4-column grid: cap each thumbnail at 200px tall        */
.shot-item .shot-frame {
  overflow: hidden;
  border-radius: 24px;
}
.shot-item .shot-frame img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: top center;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Larger featured items in gallery */
.shot-item--lg .shot-frame img {
  height: 240px;
}

/* ── Spotlight section screens ────────────────────────── */
/* Main screen (left col spanning 2 rows) */
.spotlight-screen--main .shot-frame {
  overflow: hidden;
  border-radius: 24px;
}
.spotlight-screen--main .shot-frame img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top center;
  border-radius: 0;
}

/* Side screens (right col, 2 stacked) */
.spotlight-screen--side .shot-frame {
  overflow: hidden;
  border-radius: 20px;
}
.spotlight-screen--side .shot-frame img {
  width: 100%;
  height: 148px;
  object-fit: cover;
  object-position: top center;
  border-radius: 0;
}

/* ── Remote access screens ────────────────────────────── */
.remote-screens .shot-frame {
  overflow: hidden;
  border-radius: 24px;
}
.remote-screens .shot-frame img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: top center;
  border-radius: 0;
}

/* ── Hero phone frame ─────────────────────────────────── */
/* Phone in hero: controlled via phone-frame width (240px)
   but cap the screen to avoid oversized hero             */
.phone-frame__screen img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: top center;
  border-radius: 30px;
}

/* Float mini phone */
.phone-float--2 img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: top center;
}

/* ── Responsive overrides for screenshot heights ──────── */
@media (max-width: 1120px) {
  .shot-item .shot-frame img {
    height: 180px;
  }
  .shot-item--lg .shot-frame img {
    height: 210px;
  }
  .spotlight-screen--main .shot-frame img {
    height: 280px;
  }
  .spotlight-screen--side .shot-frame img {
    height: 128px;
  }
}

@media (max-width: 720px) {
  .shot-item .shot-frame img,
  .shot-item--lg .shot-frame img {
    height: 170px;
  }
  .spotlight-screen--main .shot-frame img {
    height: 240px;
  }
  .spotlight-screen--side .shot-frame img {
    height: 160px;
  }
  .remote-screens .shot-frame img {
    height: 200px;
  }
  .phone-frame__screen img {
    height: 280px;
  }
}

/* ═══════════════════════════════════════════════════════
   ADDITIONAL PROFESSIONAL POLISH — v2.1
   ═══════════════════════════════════════════════════════ */

/* ── Stats section ────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  gap: 0.6rem;
}

.stat-card__num {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.6rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-card__label {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 200px;
}

@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Pricing section fix ──────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.pricing-card--featured {
  background: linear-gradient(160deg, #182332, #22364a);
  border-color: rgba(15, 139, 141, 0.3);
  box-shadow: var(--shadow-strong), 0 0 0 1px rgba(15, 139, 141, 0.15);
  color: #f4f7fb;
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -13px;
  inset-inline-start: 50%;
  transform: translateX(50%);
  background: linear-gradient(135deg, var(--accent), #f08c48);
  color: #1f130b;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.32rem 1rem;
  border-radius: 999px;
}

.pricing-card__head h3 {
  margin: 0 0 0.5rem;
  font-size: 1.3rem;
}

.pricing-card__head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.pricing-card--featured .pricing-card__head p {
  color: rgba(244, 247, 251, 0.7);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.pricing-price strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary);
}

.pricing-card--featured .pricing-price strong {
  color: #8fd7d6;
}

.pricing-price span {
  color: var(--muted);
  font-size: 0.95rem;
}

.pricing-card--featured .pricing-price span {
  color: rgba(244, 247, 251, 0.55);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.pricing-features li {
  position: relative;
  padding-inline-start: 1.4rem;
  font-size: 0.94rem;
  line-height: 1.6;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  color: var(--primary);
  font-weight: 700;
}

.pricing-features li.is-muted {
  color: var(--muted);
  opacity: 0.6;
}

.pricing-features li.is-muted::before {
  content: "–";
  color: var(--muted);
}

.pricing-card--featured .pricing-features li::before {
  color: #8fd7d6;
}

@media (max-width: 720px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Comparison table ─────────────────────────────────── */
.compare-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.compare-table {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  font-size: 0.95rem;
}

.compare-table th,
.compare-table td {
  padding: 0.9rem 1.1rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.compare-table th:first-child,
.compare-table td:first-child {
  text-align: right;
  font-weight: 500;
  color: var(--ink);
}

.compare-table thead th {
  background: rgba(24, 35, 50, 0.04);
  font-weight: 700;
  font-size: 0.9rem;
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table tbody tr:hover td {
  background: rgba(15, 139, 141, 0.04);
}

.compare-check {
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
}

.compare-x {
  color: var(--muted);
  opacity: 0.5;
}

.compare-partial {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ── Download section ─────────────────────────────────── */
.section--download {
  background: linear-gradient(180deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
}

.download-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

/* ── Mobile CTA bar ───────────────────────────────────── */
.mobile-cta {
  display: none;
  position: fixed;
  inset-block-end: 0;
  inset-inline: 0;
  z-index: 40;
  padding: 0.85rem 1rem;
  background: rgba(5, 6, 8, 0.92);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--line);
}

@media (max-width: 720px) {
  .mobile-cta {
    display: flex;
    gap: 0.75rem;
    align-items: center;
  }
}

/* ── Responsive tweaks ────────────────────────────────── */
@media (max-width: 1120px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero__visual {
    display: flex;
    justify-content: center;
  }
  .phone-hero-wrap {
    max-width: 320px;
  }
}

@media (max-width: 900px) {
  .hero-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .shots-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .feature-grid,
  .feature-grid--wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .audience-grid {
    grid-template-columns: 1fr;
  }
  .remote-grid {
    grid-template-columns: 1fr;
  }
  .facts-grid {
    grid-template-columns: 1fr;
  }
  .workflow-layout {
    grid-template-columns: 1fr;
  }
  .split-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero-band {
    grid-template-columns: 1fr;
  }
  .shots-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .feature-grid,
  .feature-grid--wide {
    grid-template-columns: 1fr;
  }
  .download-shell {
    grid-template-columns: 1fr;
  }
  .download-grid {
    grid-template-columns: 1fr;
  }
}
/* ═══════════════════════════════════════════════════════
   FIXES v2.2 — Pricing layout, mobile CTA, misc
   ═══════════════════════════════════════════════════════ */

/* ── Pricing: 3-column layout for 3 cards ────────────── */
.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

/* Centre badge correctly in RTL */
.pricing-badge {
  inset-inline-start: auto !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
}

/* ── Pricing note ─────────────────────────────────────── */
.pricing-note {
  margin-top: 1.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
}

/* ── Mobile CTA inner ─────────────────────────────────── */
.mobile-cta__inner {
  display: flex;
  gap: 0.75rem;
  width: 100%;
  align-items: center;
}

/* ── Fix: download-shell grid padding ─────────────────── */
.download-shell {
  padding: 2rem;
  border-radius: var(--radius-xl);
  gap: 2rem;
}

/* ── Contact list fix ─────────────────────────────────── */
.contact-list li {
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}
.contact-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.contact-list a {
  color: var(--primary);
  font-weight: 500;
}
.contact-list a:hover {
  text-decoration: underline;
}

/* ── Stat card: gradient text fix for Firefox ─────────── */
@supports not (-webkit-background-clip: text) {
  .stat-card__num {
    background: none;
    color: var(--primary);
  }
}

/* ── Section backgrounds polish ──────────────────────────*/
.section--compare {
  padding-top: 3rem;
}

.section--stats {
  background: linear-gradient(180deg,
    rgba(15, 139, 141, 0.04) 0%,
    rgba(216, 111, 45, 0.04) 100%);
}

/* ── Pricing cards responsive ─────────────────────────── */
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr !important;
  }
  .pricing-card--featured {
    order: -1;
  }
}

/* ── FAQ expand arrow: fix for RTL ───────────────────────*/
.faq-item summary::after {
  float: inline-start;
  margin-inline-end: 0.5rem;
}
/* ═══════════════════════════════════════════════════════
   POLISH v2.3 — Spotlight stretch + footer direction
   ═══════════════════════════════════════════════════════ */

/* Main spotlight screen fills grid span height exactly */
.spotlight-screens {
  align-items: stretch;
}
.spotlight-screen--main {
  display: flex;
  flex-direction: column;
}
.spotlight-screen--main .shot-frame {
  flex: 1;
  overflow: hidden;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
}
.spotlight-screen--main .shot-frame img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: top center;
  border-radius: 0;
}

/* Footer meta RTL */
.footer-meta {
  text-align: end;
}

/* screen-label: light subtle text */
.screen-label,
.shot-label {
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
  margin: 0.4rem 0 0;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════
   FINAL DARK APP-ALIGNED FINISH — v2.4
   Mirrors the Android Starlink-style theme: black canvas,
   monochrome surfaces, hairline borders, blue/green accents.
   ═══════════════════════════════════════════════════════ */

:root {
  --bg: #000000;
  --bg-soft: #050505;
  --surface: rgba(18, 18, 18, 0.88);
  --surface-strong: #121212;
  --surface-dark: #0a0a0a;
  --primary: #4da6ff;
  --primary-deep: #2d6fb8;
  --accent: #5dd39e;
  --accent-soft: #2f8a66;
  --ink: #ffffff;
  --muted: #a0a0a0;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --shadow-soft: none;
  --shadow-strong: 0 28px 80px rgba(0, 0, 0, 0.55);
}

html {
  background: #000;
}

body {
  color: var(--ink);
  background:
    linear-gradient(180deg, #000 0%, #050505 48%, #000 100%);
}

body::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 78%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 78%);
}

.site-header {
  background: rgba(0, 0, 0, 0.84);
  border-bottom-color: var(--line);
}

.brand__mark {
  box-shadow: none;
  border: 1px solid var(--line);
}

.brand__eyebrow,
.site-nav a,
.hero .lead,
.section-head p,
.section-copy p,
.download-copy p,
.hero-band span,
.feature-card p,
.audience-card p,
.remote-card p,
.remote-card li,
.workflow-step p,
.note-panel li,
.footer-shell p,
.footer-meta,
.pricing-card__head p,
.pricing-price span,
.pricing-note,
.stat-card__label,
.spotlight-copy p,
.spotlight-stat span,
.screen-label,
.shot-label,
.download-card p,
.download-note,
.contact-list span,
.fact-list span,
.faq-item p {
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a.is-active,
.hero-band strong,
.feature-card h3,
.audience-card h3,
.remote-card h3,
.workflow-step h3,
.download-card h3,
.fact-list strong,
.contact-list a,
.footer-meta b,
.pricing-price strong,
.spotlight-list li,
.pricing-features li,
.faq-item summary,
.module-map strong,
.module-map article,
.download-meta-list strong {
  color: var(--ink);
}

.eyebrow,
.feature-card__marker,
.audience-card span,
.admin-app-feature__num,
.shot-copy span,
.stat-card__num,
.spotlight-stat strong,
.compare-check,
.contact-list a {
  color: var(--primary);
}

.button {
  border-radius: 999px;
}

.button--primary {
  background: #ffffff;
  color: #000000;
  box-shadow: none;
  border-color: #ffffff;
}

.button--secondary,
.button--header,
.nav-toggle,
.hero__proof li,
.showcase-points article,
.admin-app-feature,
.tab-btn,
.spotlight-stats {
  background: rgba(18, 18, 18, 0.82);
  border-color: var(--line);
  color: var(--ink);
}

.button--secondary:hover,
.button--header:hover,
.tab-btn:hover,
.hero__proof li:hover {
  background: rgba(31, 31, 31, 0.96);
  border-color: var(--line-strong);
}

.button.is-disabled {
  display: none;
}

.hero__proof li,
.badge,
.tab-btn,
.compare-partial,
.compare-check,
.compare-x,
.workflow-step span {
  box-shadow: none;
}

.badge--version {
  background: rgba(77, 166, 255, 0.14);
  color: var(--primary);
  border-color: rgba(77, 166, 255, 0.32);
}

.badge--android {
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  border-color: var(--line);
}

.badge--routeros {
  background: rgba(93, 211, 158, 0.12);
  color: var(--accent);
  border-color: rgba(93, 211, 158, 0.28);
}

.hero-band article,
.feature-card,
.audience-card,
.remote-card,
.workflow-step,
.fact-panel,
.note-panel,
.download-card,
.faq-item,
.download-shell,
.site-footer,
.pricing-card,
.stat-card,
.compare-wrap,
.compare-table,
.shot-card,
.module-map article {
  background: var(--surface);
  border-color: var(--line);
  box-shadow: none;
}

.pricing-card--featured,
.admin-app-card {
  background: linear-gradient(180deg, #1a1a1a 0%, #121212 100%);
  border-color: var(--line-strong);
  box-shadow: none;
}

.pricing-badge,
.tab-btn.is-active {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
  box-shadow: none;
}

.pricing-card--featured .pricing-card__head p,
.pricing-card--featured .pricing-price span {
  color: var(--muted);
}

.pricing-card--featured .pricing-price strong,
.pricing-card--featured .pricing-features li::before {
  color: var(--accent);
}

.pricing-features li::before,
.spotlight-list li::before,
.remote-card li::before,
.note-panel li::before {
  color: var(--accent);
}

.section--remote,
.section--compare,
.section--pricing,
.section--cards,
.section--usermgr,
.section--admin-app,
.section--stats,
.section--download {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0));
}

.section--showcase::before,
.feature-card::before {
  display: none;
}

.shot-frame,
.phone-frame,
.phone-float--2 {
  background: #050505;
  border-color: var(--line);
  box-shadow: var(--shadow-strong);
}

.shot-frame {
  background: linear-gradient(180deg, #0a0a0a, #000000);
}

.shot-frame::before {
  background: rgba(255, 255, 255, 0.12);
}

.phone-frame__notch {
  background: #050505;
}

.compare-table thead th,
.compare-table thead th:nth-child(2),
.compare-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.035);
}

.compare-x {
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
}

.compare-partial {
  background: rgba(231, 168, 91, 0.12);
  color: #e7a85b;
}

.stat-card__num {
  background: none;
  -webkit-text-fill-color: initial;
  color: var(--primary);
}

.module-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.module-map article {
  display: grid;
  align-content: start;
  gap: 0.55rem;
  min-height: 168px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.module-map strong {
  font-size: 1rem;
}

.module-map span,
.download-meta-list {
  color: var(--muted);
  line-height: 1.75;
}

.download-meta-list {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.download-meta-list li {
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--line);
}

.download-meta-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.support-actions .button {
  flex: 1 1 180px;
}

.site-nav.is-open {
  background: rgba(5, 5, 5, 0.98);
  border-color: var(--line);
}

.mobile-cta {
  background: rgba(0, 0, 0, 0.92);
  border-top-color: var(--line);
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + 16px));
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-cta.mobile-cta--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lightbox {
  background: rgba(0, 0, 0, 0.92);
}

.lightbox__close {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--line-strong);
}

@media (max-width: 1120px) {
  .module-map {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .header-shell {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 74px;
  }

  .button--header {
    display: none;
  }

  .module-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 0;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 9vw, 3.35rem);
    line-height: 1.14;
  }

  .hero .lead {
    font-size: 1.02rem;
    line-height: 1.95;
  }

  .module-map {
    grid-template-columns: 1fr;
  }

  .module-map article {
    min-height: 0;
  }

  .support-actions {
    flex-direction: column;
  }
}

/* FINAL RESPONSIVE QA PATCH - screenshots and clean dark composition */
.section--showcase::before,
.feature-card::before {
  display: none;
}

.showcase-gallery .shot-frame,
.shots-grid .shot-frame,
.spotlight-screens .shot-frame,
.remote-screens .shot-frame {
  display: grid;
  place-items: center;
  background: #050505;
}

.showcase-gallery .shot-frame img {
  width: 100%;
  height: clamp(300px, 42vw, 520px);
  max-height: 520px;
  object-fit: contain;
  background: #050505;
}

.showcase-gallery .shot-card--wide .shot-frame img {
  height: clamp(260px, 32vw, 380px);
  max-height: 380px;
}

.shots-grid .shot-frame img,
.spotlight-screens .shot-frame img,
.remote-screens .shot-frame img {
  object-fit: contain;
  background: #050505;
}

.spotlight-screen--main .shot-frame img {
  width: 100%;
  height: clamp(300px, 46vw, 520px);
  max-height: 520px;
  object-fit: contain;
}

.spotlight-screen--side .shot-frame img {
  width: 100%;
  height: clamp(160px, 24vw, 260px);
  max-height: 260px;
  object-fit: contain;
}

@media (max-width: 720px) {
  .showcase-gallery .shot-frame img {
    height: min(62vh, 360px);
  }

  .showcase-gallery .shot-card--wide .shot-frame img {
    height: 260px;
  }

  .spotlight-screen--main .shot-frame img {
    height: min(62vh, 360px);
  }

  .spotlight-screen--side .shot-frame img {
    height: 180px;
  }
}

/* Focused compact site refresh */
:root {
  --focused-max-width: 1120px;
  --focused-card: rgba(255, 255, 255, 0.055);
  --focused-card-strong: rgba(255, 255, 255, 0.085);
  --focused-line: rgba(255, 255, 255, 0.12);
}

.wrap {
  max-width: var(--focused-max-width);
}

.section[id] {
  scroll-margin-top: 94px;
}

.section-head p {
  max-width: 60ch;
}

.header-shell--focused {
  min-height: 72px;
  gap: 18px;
}

.brand__mark,
.footer-brand img,
.hero__logo,
.download-logo {
  object-fit: contain;
  background: #050608;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
}

.brand__mark {
  width: 50px;
  height: 50px;
  padding: 2px;
  border-radius: 14px;
}

.brand__eyebrow {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.72rem;
}

.site-nav a {
  font-size: 0.9rem;
}

.button--header {
  min-height: 42px;
  padding-inline: 16px;
}

.hero--focused {
  padding: 116px 0 42px;
}

.hero--focused::before {
  content: "";
  position: absolute;
  inset: 28px 0 auto;
  height: 320px;
  background:
    radial-gradient(circle at 82% 24%, rgba(77, 166, 255, 0.18), transparent 30%),
    radial-gradient(circle at 18% 10%, rgba(93, 211, 158, 0.08), transparent 28%);
  pointer-events: none;
}

.hero__grid--focused {
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

.hero__logo {
  width: 128px;
  height: 128px;
  padding: 5px;
  border-radius: 26px;
  margin-bottom: 22px;
}

.hero--focused h1 {
  max-width: 680px;
  font-size: clamp(3.3rem, 4.8vw, 4.3rem);
  line-height: 1.02;
  letter-spacing: 0;
  margin-bottom: 22px;
}

.hero--focused .lead {
  max-width: 680px;
  font-size: 1.1rem;
  line-height: 1.95;
  margin: 0;
}

.hero__badge {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 24px 0 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  border-radius: 999px;
  padding: 7px 12px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.84rem;
  white-space: nowrap;
}

.badge[dir="ltr"] {
  direction: ltr;
  unicode-bidi: isolate;
}

.badge--size {
  color: #dff7ea;
  border-color: rgba(93, 211, 158, 0.28);
  background: rgba(93, 211, 158, 0.1);
}

.hero__cta {
  margin-top: 28px;
}

.hero__proof--focused {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  max-width: 620px;
}

.hero__proof--focused li {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--focused-card);
  border: 1px solid var(--focused-line);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.hero-device {
  display: grid;
  justify-items: center;
  gap: 16px;
}

.hero-device__phone {
  position: relative;
  width: min(100%, 318px);
  aspect-ratio: 9 / 18.6;
  padding: 13px;
  border-radius: 34px;
  background: linear-gradient(145deg, #11161d, #050608);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.hero-device__phone img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
  object-position: top center;
}

.hero-device__panel {
  width: min(100%, 360px);
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-device__panel strong {
  color: #fff;
  font-size: 1rem;
}

.hero-device__panel span {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.8;
  font-size: 0.88rem;
}

.hero-band--focused {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.hero-band--focused article {
  min-height: 82px;
  padding: 16px 18px;
  border-radius: 8px;
  background: var(--focused-card);
  border: 1px solid var(--focused-line);
}

.hero-band--focused span {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-band--focused strong {
  display: block;
  margin-top: 5px;
  color: #fff;
  font-size: 1.03rem;
}

.section--compact,
.section--platform,
.section--screens,
.section--workflow,
.section--faq,
.section--download {
  padding: 76px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-head h2,
.section-copy h2,
.workflow-panel h2,
.download-copy h2 {
  font-size: 2.75rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.power-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.power-card {
  min-height: 206px;
  padding: 22px;
  border-radius: 8px;
  background: var(--focused-card);
  border: 1px solid var(--focused-line);
}

.power-card,
.screen-card,
.workflow-panel,
.clean-steps li,
.faq-grid--focused .faq-item,
.download-card,
.guide-card,
.guide-hub-card,
.cta-panel,
.button,
.guide-card__link,
.text-link {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.power-card,
.screen-card,
.workflow-panel,
.clean-steps li,
.download-card,
.guide-card,
.guide-hub-card,
.cta-panel,
.faq-grid--focused .faq-item {
  position: relative;
  overflow: hidden;
}

.power-card::before,
.screen-card::before,
.workflow-panel::before,
.download-card::before,
.guide-card::before,
.guide-hub-card::before,
.cta-panel::before,
.faq-grid--focused .faq-item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(77, 166, 255, 0), rgba(77, 166, 255, 0.52), rgba(93, 211, 158, 0));
  opacity: 0.8;
}

.power-card:hover,
.screen-card:hover,
.faq-grid--focused .faq-item:hover,
.download-card:hover,
.guide-card:hover,
.guide-hub-card:hover,
.cta-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(77, 166, 255, 0.24);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

.button:focus-visible,
.site-nav a:focus-visible,
.guide-card__link:focus-visible,
.text-link:focus-visible,
.faq-item summary:focus-visible {
  outline: 2px solid rgba(77, 166, 255, 0.92);
  outline-offset: 3px;
}

.power-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 28px;
  border-radius: 999px;
  color: #101214;
  background: var(--accent);
  font: 700 0.78rem/1 "Space Grotesk", sans-serif;
}

.power-card h3 {
  color: #fff;
  margin: 20px 0 9px;
  font-size: 1.12rem;
}

.section-head--platform {
  max-width: 920px;
}

.ops-card,
.platform-strip span {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.ops-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.ops-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 22px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--focused-line);
  position: relative;
  overflow: hidden;
}

.ops-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(77, 166, 255, 0), rgba(77, 166, 255, 0.52), rgba(93, 211, 158, 0));
  opacity: 0.8;
}

.ops-card:hover,
.platform-strip span:hover {
  transform: translateY(-4px);
  border-color: rgba(77, 166, 255, 0.24);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

.ops-card__media {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(108px, 0.78fr);
  gap: 12px;
  align-items: end;
  padding: 14px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ops-card__screen {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #06080b;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.ops-card__screen--primary {
  min-height: 340px;
}

.ops-card__screen--secondary {
  min-height: 244px;
}

.ops-card__screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.ops-card__body {
  display: grid;
  gap: 12px;
}

.ops-card h3 {
  margin: 0;
  color: #fff;
  font-size: 1.34rem;
  line-height: 1.34;
}

.ops-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.9;
}

.ops-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.ops-card__list li {
  position: relative;
  padding-inline-start: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}

.ops-card__list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.platform-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.platform-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--focused-line);
  background: rgba(255, 255, 255, 0.05);
}

.power-card p,
.section-copy p,
.workflow-panel p,
.download-copy p,
.screen-card p,
.faq-item p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.85;
}

.screens-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
}

.section-copy {
  position: sticky;
  top: 102px;
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.screen-card {
  padding: 12px;
  border-radius: 8px;
  background: var(--focused-card);
  border: 1px solid var(--focused-line);
  cursor: zoom-in;
}

.screen-card--wide {
  grid-row: span 2;
}

.screen-card .shot-frame {
  height: 280px;
  border-radius: 8px;
  background: #06080b;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.screen-card--wide .shot-frame {
  height: 584px;
}

.screen-card .shot-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.screen-card h3 {
  color: #fff;
  margin: 14px 4px 4px;
  font-size: 1rem;
}

.screen-card p {
  margin: 0 4px 2px;
  font-size: 0.88rem;
}

.workflow-focus {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 16px;
  align-items: stretch;
}

.workflow-panel {
  padding: 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--focused-line);
}

.workflow-panel--facts {
  background: linear-gradient(180deg, rgba(77, 166, 255, 0.08), rgba(255, 255, 255, 0.035));
}

.clean-steps {
  counter-reset: step;
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.clean-steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.clean-steps li::before {
  content: counter(step, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #061019;
  background: var(--primary);
  font: 700 0.85rem/1 "Space Grotesk", sans-serif;
}

.clean-steps strong,
.clean-steps span {
  display: block;
  grid-column: 2;
  min-width: 0;
  word-break: normal;
  overflow-wrap: normal;
}

.clean-steps strong {
  color: #fff;
  margin-bottom: 4px;
  font-size: 1.18rem;
  line-height: 1.35;
}

.clean-steps span {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
  font-size: 0.98rem;
}

.fact-list--tight {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.fact-list--tight div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 50px;
  padding: 12px 14px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.fact-list--tight span {
  color: rgba(255, 255, 255, 0.56);
}

.fact-list--tight strong {
  color: #fff;
  text-align: left;
  direction: ltr;
}

.security-note {
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
  max-width: 58ch;
}

.faq-grid--focused {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.faq-grid--focused .faq-item {
  border-radius: 8px;
  background: var(--focused-card);
  border: 1px solid var(--focused-line);
}

.download-shell--focused {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 22px;
  align-items: stretch;
  padding: 30px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(77, 166, 255, 0.11), rgba(93, 211, 158, 0.08)), rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.download-logo {
  width: 96px;
  height: 96px;
  padding: 4px;
  border-radius: 22px;
  margin-bottom: 18px;
}

.download-grid--focused {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
}

.download-card {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 20px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.download-card h3 {
  color: #fff;
  margin: 0;
}

.download-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.75;
}

.button--block {
  width: 100%;
  justify-content: center;
}

.download-meta-list,
.contact-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.download-meta-list li,
.contact-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.68);
}

.download-meta-list strong,
.contact-list a {
  color: #fff;
  direction: ltr;
  text-align: left;
}

.support-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.footer-shell--focused {
  max-width: var(--focused-max-width);
}

[data-apk-size][aria-busy="true"] {
  opacity: 0.72;
}

.section--guides {
  padding: 76px 0;
}

.section-head--guides {
  display: grid;
  gap: 14px;
  max-width: 920px;
  margin-bottom: 30px;
}

.section-head--guides h2 {
  max-width: 13.5ch;
}

.section-head--guides p {
  max-width: 64ch;
  margin-top: 0;
}

.keyword-pills--intro {
  margin-top: 18px;
}

.keyword-pills--intro span {
  min-height: 34px;
  padding: 7px 12px;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

.guide-grid-home {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.guide-card,
.article-panel,
.article-side-card,
.guide-hub-card,
.cta-panel,
.keyword-pills span,
.crumbs {
  border: 1px solid var(--focused-line);
  background: var(--focused-card);
}

.guide-card,
.article-panel,
.article-side-card,
.guide-hub-card,
.cta-panel {
  border-radius: 8px;
}

.guide-card,
.guide-hub-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 236px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.035));
}

.guide-card__label,
.article-kicker {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(93, 211, 158, 0.14);
  color: var(--accent);
  font: 700 0.74rem/1 "Space Grotesk", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-card h3,
.guide-hub-card h3,
.article-panel h2,
.article-side-card h3,
.cta-panel h2 {
  margin: 0;
  color: #fff;
  line-height: 1.35;
}

.guide-card p,
.guide-hub-card p,
.article-panel p,
.article-panel li,
.article-side-card p,
.article-side-card li,
.cta-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.9;
}

.guide-card__tags,
.keyword-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.guide-card__tags span,
.keyword-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.04);
}

.guide-card__link,
.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(77, 166, 255, 0.22);
  background: rgba(77, 166, 255, 0.1);
  width: fit-content;
  color: var(--primary);
  font-weight: 700;
}

.guide-card__link:hover,
.text-link:hover {
  color: var(--accent);
  border-color: rgba(93, 211, 158, 0.28);
  background: rgba(93, 211, 158, 0.12);
}

.article-shell {
  padding: 104px 0 64px;
}

.crumbs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.68);
}

.crumbs a {
  color: #fff;
}

.article-hero-grid,
.article-layout-grid,
.guide-hub-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: 18px;
}

.article-hero-copy,
.article-side-stack,
.guide-hub-intro {
  display: grid;
  align-content: start;
  gap: 14px;
}

.article-hero-copy h1,
.guide-hub-intro h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.08;
}

.article-lead,
.guide-hub-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.95;
  font-size: 1.05rem;
}

.article-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.article-panel,
.article-side-card,
.cta-panel {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.article-panel ul,
.article-side-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.article-panel li,
.article-side-card li {
  position: relative;
  padding-inline-start: 16px;
}

.article-panel li::before,
.article-side-card li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.article-content-stack,
.article-side-stack {
  display: grid;
  gap: 12px;
}

.guide-hub-grid {
  grid-template-columns: minmax(260px, 0.74fr) minmax(0, 1.26fr);
}

.guide-hub-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.cta-panel {
  margin-top: 6px;
  background: linear-gradient(135deg, rgba(77, 166, 255, 0.14), rgba(93, 211, 158, 0.08)), rgba(255, 255, 255, 0.04);
}

@media (max-width: 980px) {
  .hero__grid--focused,
  .ops-grid,
  .screens-layout,
  .workflow-focus,
  .download-shell--focused,
  .article-hero-grid,
  .article-layout-grid,
  .guide-hub-grid {
    grid-template-columns: 1fr;
  }

  .section-copy {
    position: static;
  }

  .power-grid,
  .hero-band--focused,
  .faq-grid--focused,
  .download-grid--focused,
  .guide-grid-home,
  .guide-hub-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-device__phone {
    width: min(70vw, 280px);
  }

  .hero--focused h1 {
    font-size: 3.4rem;
  }

  .section-head h2,
  .section-copy h2,
  .workflow-panel h2,
  .download-copy h2 {
    font-size: 2.25rem;
  }
}

@media (max-width: 720px) {
  .header-shell--focused {
    min-height: 64px;
  }

  .brand__mark {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .brand__eyebrow {
    display: none;
  }

  .button--header {
    display: none;
  }

  .hero--focused {
    padding: 28px 0 26px;
  }

  .section--compact,
  .section--platform,
  .section--screens,
  .section--workflow,
  .section--faq,
  .section--download {
    padding: 54px 0;
  }

  .hero__visual {
    display: none;
  }

  .hero__logo {
    display: none;
  }

  .hero--focused h1 {
    font-size: 2.08rem;
    line-height: 1.12;
    margin-bottom: 14px;
  }

  .hero--focused .lead {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .hero--focused .eyebrow {
    margin-bottom: 10px;
    font-size: 0.76rem;
  }

  .hero__badge {
    gap: 7px;
    margin-top: 14px;
  }

  .badge {
    min-height: 30px;
    padding: 6px 10px;
    font-size: 0.78rem;
  }

  .hero__cta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-top: 16px;
  }

  .hero__cta .button {
    min-height: 44px;
    justify-content: center;
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .hero__proof--focused {
    margin-top: 16px;
  }

  .section-head h2,
  .section-copy h2,
  .workflow-panel h2,
  .download-copy h2 {
    font-size: 1.9rem;
  }

  .workflow-panel,
  .download-shell--focused {
    padding: 20px;
  }

  .section-head p,
  .security-note {
    max-width: none;
  }

  .section-head--guides h2 {
    max-width: none;
  }

  .hero__cta,
  .support-actions {
    grid-template-columns: 1fr;
  }

  .hero__proof--focused,
  .power-grid,
  .hero-band--focused,
  .screen-grid,
  .faq-grid--focused,
  .download-grid--focused,
  .guide-grid-home,
  .guide-hub-cards {
    grid-template-columns: 1fr;
  }

  .ops-card {
    padding: 20px;
  }

  .ops-card__media {
    grid-template-columns: minmax(0, 1fr) 98px;
    padding: 12px;
  }

  .ops-card__screen--primary {
    min-height: 300px;
  }

  .ops-card__screen--secondary {
    min-height: 212px;
  }

  .platform-strip span {
    width: 100%;
    justify-content: center;
  }

  .article-shell {
    padding: 88px 0 44px;
  }

  .crumbs {
    border-radius: 18px;
  }

  .power-card {
    min-height: 0;
  }

  .screen-card--wide {
    grid-row: auto;
  }

  .screen-card .shot-frame,
  .screen-card--wide .shot-frame {
    height: min(62vh, 320px);
  }

  .clean-steps li {
    grid-template-columns: 42px 1fr;
    padding: 14px;
  }

  .clean-steps strong {
    font-size: 1.05rem;
  }

  .guide-card,
  .guide-hub-card {
    min-height: 0;
    padding: 20px;
  }

  .fact-list--tight div,
  .download-meta-list li,
  .contact-list li {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .hero--focused h1 {
    font-size: 1.95rem;
  }

  .section-head h2,
  .section-copy h2,
  .workflow-panel h2,
  .download-copy h2 {
    font-size: 1.72rem;
  }

  .badge {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .hero__cta {
    grid-template-columns: 1fr;
  }

  .hero-device__phone {
    width: min(84vw, 260px);
  }
}