:root {
  --bg: #090d14;
  --bg-soft: #0f1622;
  --surface: rgba(12, 18, 29, 0.82);
  --surface-strong: rgba(17, 25, 39, 0.94);
  --line: rgba(126, 156, 194, 0.22);
  --line-strong: rgba(126, 156, 194, 0.38);
  --text: #f4f8ff;
  --muted: #9fb2ce;
  --cyan: #20c9ff;
  --cyan-soft: rgba(32, 201, 255, 0.14);
  --gold: #ffbf47;
  --gold-soft: rgba(255, 191, 71, 0.13);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(32, 201, 255, 0.18), transparent 26%),
    radial-gradient(circle at 82% 12%, rgba(255, 191, 71, 0.13), transparent 18%),
    linear-gradient(180deg, #07101a 0%, #090d14 46%, #06080d 100%);
}

body.lightbox-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.44), transparent 90%);
}

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

img {
  display: block;
  max-width: 100%;
}

.page-shell {
  width: 100%;
  margin: 0 auto;
  padding: 26px 40px 64px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand img {
  width: 46px;
  height: 46px;
  filter: drop-shadow(0 10px 24px rgba(32, 201, 255, 0.3));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.96rem;
}

.site-nav a:hover {
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(540px, 0.8fr);
  gap: clamp(34px, 5vw, 96px);
  align-items: center;
  padding: 34px 0 26px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

.hero h1 {
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  max-width: 14ch;
}

.hero-text,
.section-heading p,
.plugin-copy p,
.feature-card p,
.deploy-card li,
.proof-strip span {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  margin: 18px 0 0;
  max-width: 72ch;
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, #20c9ff 0%, #0fa1ff 100%);
  color: #03101b;
  box-shadow: 0 18px 36px rgba(32, 201, 255, 0.24);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
}

.hero-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 18px;
  color: #d4e2f8;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.support-card {
  margin-top: 26px;
  padding: 18px 20px 20px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  max-width: 560px;
}

.support-label {
  margin: 0 0 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.support-text {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.7;
}

.paypal-support-form {
  margin: 0;
}

.paypal-support-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  min-width: 240px;
  padding: 0 28px;
  border: 1px solid rgba(255, 209, 90, 0.55);
  border-radius: 20px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.28), transparent 38%),
    linear-gradient(135deg, #ffd86f 0%, #ffbf47 44%, #ff9f1c 100%);
  color: #08111d;
  font: inherit;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0.015em;
  cursor: pointer;
  box-shadow:
    0 22px 42px rgba(255, 181, 43, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.paypal-support-button:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow:
    0 28px 48px rgba(255, 181, 43, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  filter: saturate(1.05);
}

.paypal-support-button:focus-visible {
  outline: 3px solid rgba(32, 201, 255, 0.42);
  outline-offset: 3px;
}

.support-footnote {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-panel,
.proof-strip,
.feature-card,
.screen-card,
.deploy-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-panel {
  padding: 18px;
}

.panel-window {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(25, 40, 61, 0.88), rgba(11, 18, 29, 0.95)),
    rgba(12, 18, 29, 0.92);
  overflow: hidden;
}

.panel-bar {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.panel-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

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

.panel-card {
  min-height: 150px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(7, 11, 18, 0.68);
}

.panel-card h2 {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.panel-card ul {
  margin: 8px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.panel-card-accent {
  background:
    radial-gradient(circle at top left, rgba(32, 201, 255, 0.22), transparent 48%),
    linear-gradient(160deg, rgba(8, 18, 30, 0.94), rgba(10, 13, 23, 0.84));
}

.panel-label {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--gold);
}

.chart-lines {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.chart-lines span {
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(32, 201, 255, 0.72), rgba(32, 201, 255, 0.08));
}

.chart-lines span:nth-child(2) {
  width: 72%;
}

.chart-lines span:nth-child(3) {
  width: 48%;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 22px 0 34px;
  padding: 22px;
}

.proof-strip strong {
  display: block;
  margin-bottom: 7px;
  font-size: 1rem;
}

.section {
  padding: 42px 0 12px;
}

.section-heading {
  max-width: 1100px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.section-heading p {
  margin: 12px 0 0;
}

.feature-grid,
.screens-grid {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

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

.feature-card {
  padding: 22px;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.section-screens .section-heading,
.section-plugins .section-heading {
  margin-bottom: 6px;
}

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

.screen-card {
  padding: 18px;
}

.real-screen-card {
  margin: 0;
  width: 100%;
  min-height: 300px;
  padding: 0;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(180deg, rgba(24, 36, 56, 0.9), rgba(8, 13, 22, 0.96));
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  cursor: zoom-in;
}

.real-screen-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: top center;
}

.real-screen-card:hover img,
.real-screen-card:focus-visible img {
  transform: scale(1.02);
}

.real-screen-card img {
  transition: transform 0.2s ease;
}

.screen-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.88rem;
}

.mock-screen {
  min-height: 300px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(180deg, rgba(24, 36, 56, 0.9), rgba(8, 13, 22, 0.96));
  overflow: hidden;
}

.mock-sidebar {
  float: left;
  display: grid;
  gap: 12px;
  width: 22%;
  min-height: 300px;
  padding: 18px 14px;
  background: rgba(255, 255, 255, 0.03);
}

.mock-sidebar span,
.alert-controls i {
  display: block;
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.mock-sidebar .active {
  background: linear-gradient(90deg, rgba(32, 201, 255, 0.9), rgba(32, 201, 255, 0.24));
}

.mock-content {
  margin-left: 22%;
  padding: 18px;
}

.mock-box {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.mock-box.tall {
  padding: 16px;
  min-height: 166px;
}

.mock-title {
  margin-bottom: 14px;
  font-weight: 700;
}

.mock-list {
  display: grid;
  gap: 12px;
}

.mock-list i,
.mock-box.short {
  display: block;
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

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

.mock-box.short {
  min-height: 74px;
}

.mock-box.short.accent {
  background: linear-gradient(135deg, rgba(32, 201, 255, 0.18), rgba(32, 201, 255, 0.04));
}

.mock-alerts {
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 18px;
}

.alert-preview {
  display: grid;
  align-content: end;
  border-radius: 18px;
  background:
    radial-gradient(circle at 22% 24%, rgba(255, 191, 71, 0.28), transparent 20%),
    radial-gradient(circle at 88% 16%, rgba(32, 201, 255, 0.18), transparent 22%),
    linear-gradient(180deg, rgba(7, 9, 15, 0.5), rgba(5, 8, 13, 0.94));
  overflow: hidden;
}

.alert-media {
  min-height: 178px;
}

.alert-caption {
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(9, 12, 20, 0.12), rgba(9, 12, 20, 0.9));
}

.alert-caption strong {
  font-size: 1.05rem;
}

.alert-caption span {
  color: var(--muted);
  font-size: 0.95rem;
}

.alert-controls {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.mock-credits {
  display: grid;
  place-items: center;
  padding: 18px;
}

.credits-column {
  width: min(86%, 250px);
  padding: 26px 24px;
  border-radius: 18px;
  background: rgba(3, 6, 11, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.credits-column b,
.credits-column em,
.credits-column span {
  display: block;
}

.credits-column b {
  margin-bottom: 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
}

.credits-column em {
  margin: 12px 0 8px;
  color: var(--gold);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
}

.credits-column span {
  color: #dce8f8;
  line-height: 1.75;
}

.plugin-layout {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 22px;
  align-items: start;
  margin-top: 24px;
}

.plugin-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.plugin-stack span {
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  color: #dce8f8;
  font-weight: 700;
  box-shadow: var(--shadow);
}

code {
  padding: 0.16em 0.42em;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9em;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(2, 6, 12, 0.82);
  backdrop-filter: blur(10px);
  cursor: zoom-out;
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), 1320px);
  max-height: calc(100vh - 32px);
  padding: 18px;
  border-radius: 24px;
  border: 1px solid var(--line-strong);
  background: rgba(8, 13, 22, 0.94);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.45);
}

.lightbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.lightbox-header strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
}

.lightbox-close {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.08);
}

.lightbox-dialog img {
  display: block;
  width: 100%;
  max-height: calc(100vh - 130px);
  border-radius: 18px;
  object-fit: contain;
  background: #040810;
}

.lightbox-image-wrap {
  overflow: auto;
  max-height: calc(100vh - 130px);
  border-radius: 18px;
}

.lightbox-image-wrap.zoomed img {
  width: auto !important;
  max-width: none;
  max-height: none !important;
  height: auto;
}

@media (max-width: 1080px) {
  .hero,
  .plugin-layout,
  .proof-strip,
  .feature-grid,
  .screens-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
  }
}

@media (max-width: 820px) {
  .page-shell {
    width: 100%;
    padding: 18px 12px 64px;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  .panel-grid,
  .mock-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .screen-topline {
    flex-direction: column;
    gap: 4px;
  }

  .mock-sidebar {
    width: 28%;
  }

  .mock-content {
    margin-left: 28%;
  }

  .lightbox-dialog {
    width: min(calc(100% - 18px), 1320px);
    padding: 12px;
  }

  .lightbox-header {
    align-items: flex-start;
    flex-direction: column;
  }
}
