:root {
  color-scheme: dark;
  --ink: #07111f;
  --ink-2: #0c1b2e;
  --panel: #101c2c;
  --panel-soft: #142338;
  --paper: #f5f7fb;
  --paper-2: #eaf0f7;
  --text: #f8fbff;
  --muted: #a9b7ca;
  --dark-muted: #536072;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(7, 17, 31, 0.12);
  --cyan: #32d8ff;
  --cyan-2: #7be7ff;
  --red: #ff4b5d;
  --red-2: #ff8a96;
  --green: #42e59b;
  --yellow: #ffcf5a;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --shadow-soft: 0 18px 50px rgba(7, 17, 31, 0.14);
  --radius: 8px;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::selection {
  background: rgba(50, 216, 255, 0.3);
  color: var(--text);
}

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

button,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  position: fixed;
  inset: 18px 24px auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 14px 12px 16px;
  background: rgba(8, 17, 31, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--ink);
  background:
    linear-gradient(145deg, var(--cyan), var(--cyan-2) 48%, var(--red-2));
  border-radius: var(--radius);
  box-shadow: 0 0 28px rgba(50, 216, 255, 0.35);
}

.brand-mark svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.91rem;
  font-weight: 650;
}

.nav-links a,
.footer-links a {
  transition: color 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--cyan);
  transform: translateY(-1px);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--text);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}

.header-cta:hover {
  background: var(--cyan-2);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  gap: clamp(34px, 5vw, 74px);
  align-items: center;
  min-height: 100svh;
  max-width: var(--max);
  margin: 0 auto;
  padding: 140px 24px 86px;
}

.hero > * {
  min-width: 0;
}

.hero-bg-grid {
  position: absolute;
  inset: 0 -15vw;
  z-index: -2;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(130deg, rgba(50, 216, 255, 0.14), transparent 34%),
    linear-gradient(320deg, rgba(255, 75, 93, 0.18), transparent 28%),
    var(--ink);
  background-size: 58px 58px, 58px 58px, auto, auto, auto;
  mask-image: linear-gradient(to bottom, #000 0%, #000 78%, transparent 100%);
  animation: grid-drift 18s linear infinite;
}

.hero-scanline {
  position: absolute;
  inset: 0 -20vw;
  z-index: -1;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 43%,
    rgba(50, 216, 255, 0.17) 48%,
    transparent 54%,
    transparent 100%
  );
  opacity: 0.9;
  animation: scan-sweep 6.5s var(--ease) infinite;
}

.hero-copy h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(3.15rem, 7vw, 6.25rem);
  line-height: 0.92;
  font-weight: 850;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-copy p {
  max-width: 610px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.55vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
  overflow: hidden;
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    background 200ms ease,
    color 200ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--cyan), var(--cyan-2) 55%, #ffffff);
  box-shadow: 0 16px 36px rgba(50, 216, 255, 0.26);
}

.button-primary::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -60%;
  width: 42%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.65), transparent);
  animation: sheen 3.2s ease-in-out infinite;
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

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

.button-secondary:hover {
  border-color: rgba(50, 216, 255, 0.52);
  background: rgba(50, 216, 255, 0.1);
}

.hero-points {
  display: grid;
  gap: 12px;
  max-width: 520px;
  margin-top: 34px;
  color: var(--muted);
  font-weight: 650;
}

.hero-points div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mini-icon,
.feature-icon,
.step-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border: 1px solid rgba(50, 216, 255, 0.34);
  border-radius: var(--radius);
  background: rgba(50, 216, 255, 0.1);
}

.mini-icon::before,
.feature-icon::before,
.step-icon::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  color: var(--cyan);
}

.target-icon::before {
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px rgba(50, 216, 255, 0.18);
}

.shield-icon::before {
  width: 13px;
  height: 15px;
  border-radius: 8px 8px 4px 4px;
  transform: perspective(16px) rotateX(10deg);
}

.alert-icon::before,
.warning-icon::before {
  width: 0;
  height: 0;
  border: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 15px solid var(--red);
}

.upload-icon::before {
  width: 14px;
  height: 10px;
  border-top: 0;
  border-radius: 0 0 4px 4px;
}

.scan-icon::before {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  box-shadow: inset 0 -5px 0 rgba(50, 216, 255, 0.22);
}

.hero-product {
  position: relative;
  min-height: 640px;
}

.discord-window,
.scan-card,
.product-shot,
.feature-item {
  will-change: transform;
}

.discord-window {
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: 520px;
  background: rgba(13, 24, 40, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform-style: preserve-3d;
}

.window-sidebar {
  padding: 22px 16px;
  background: rgba(4, 12, 24, 0.78);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.server-dot {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, var(--red), var(--yellow)),
    var(--red);
  box-shadow: 0 12px 26px rgba(255, 75, 93, 0.28);
}

.server-title {
  margin-top: 14px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 800;
}

.channel-list {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.channel-list span {
  padding: 9px 10px;
  color: var(--muted);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 650;
}

.channel-list .active {
  color: var(--text);
  background: rgba(50, 216, 255, 0.12);
}

.window-main {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.window-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 0 20px;
  color: var(--text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.topbar-actions {
  display: flex;
  gap: 7px;
}

.topbar-actions i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.alert-card {
  position: relative;
  margin: 22px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(255, 75, 93, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  overflow: hidden;
}

.alert-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 42%,
    rgba(50, 216, 255, 0.2) 50%,
    transparent 58%,
    transparent 100%
  );
  transform: translateY(-100%);
  animation: panel-scan 4.5s var(--ease) infinite;
  pointer-events: none;
}

.alert-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bot-avatar {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--ink);
  background: var(--cyan);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 900;
}

.alert-header strong,
.alert-header span,
.match-grid strong,
.match-grid span {
  display: block;
}

.alert-header span,
.match-grid span,
.scan-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
}

.match-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.match-grid div {
  padding: 12px;
  background: rgba(7, 17, 31, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

.match-grid strong {
  margin-top: 6px;
  font-size: 0.82rem;
}

.image-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 20px;
}

.mock-image,
.preview-image,
.scan-thumbnail,
.alert-thumb {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 8px, transparent 8px 16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
}

.mock-image {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 132px;
  padding: 12px;
}

.mock-image::after,
.preview-image::after,
.scan-thumbnail::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent, rgba(50, 216, 255, 0.22), transparent);
  transform: translateX(-100%);
  animation: shimmer 4.2s ease-in-out infinite;
}

.mock-image span {
  position: relative;
  z-index: 1;
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 800;
}

.mock-image i {
  position: absolute;
  right: 18px;
  top: 24px;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
}

.mock-image.blocked {
  border-color: rgba(255, 75, 93, 0.34);
}

.mock-image.detected {
  border-color: rgba(50, 216, 255, 0.34);
}

.compare-line {
  min-width: 76px;
  color: var(--cyan);
  text-align: center;
  font-size: 0.76rem;
  font-weight: 900;
}

.compare-line::before,
.compare-line::after {
  content: "";
  display: block;
  height: 1px;
  margin: 8px 0;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.alert-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.alert-actions button {
  min-height: 38px;
  padding: 0 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 800;
}

.scan-card {
  position: absolute;
  right: -20px;
  bottom: 34px;
  width: min(330px, 52vw);
  padding: 18px;
  background: rgba(246, 249, 253, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: var(--radius);
  color: var(--ink);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
  animation: float-card 5.5s ease-in-out infinite;
}

.scan-card strong,
.scan-card span {
  display: block;
}

.scan-card span {
  color: var(--dark-muted);
  margin-top: 4px;
}

.scan-progress {
  height: 8px;
  margin-top: 16px;
  background: rgba(7, 17, 31, 0.1);
  border-radius: 99px;
  overflow: hidden;
}

.scan-progress i {
  display: block;
  width: 68%;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  border-radius: inherit;
  animation: progress-pulse 2.4s ease-in-out infinite;
}

.scan-thumbnail {
  height: 78px;
  margin-top: 14px;
  border-color: rgba(7, 17, 31, 0.1);
}

.feature-band {
  position: relative;
  background: var(--paper);
  color: var(--ink);
  padding: 92px 24px;
}

.product-section {
  position: relative;
  overflow: hidden;
  padding: 110px 24px 118px;
  background:
    radial-gradient(circle at 18% 16%, rgba(50, 216, 255, 0.16), transparent 28%),
    radial-gradient(circle at 82% 46%, rgba(255, 75, 93, 0.14), transparent 30%),
    linear-gradient(180deg, #07111f 0%, #0b1626 55%, #09111d 100%);
  color: var(--text);
}

.feature-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(50, 216, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(7, 17, 31, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

.product-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 66px 66px;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 16%, #000 86%, transparent 100%);
  animation: grid-drift 22s linear infinite;
  pointer-events: none;
}

.product-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 32%, rgba(50, 216, 255, 0.12) 44%, transparent 56% 100%);
  transform: translateX(-58%);
  animation: gallery-sweep 8s var(--ease) infinite;
  pointer-events: none;
}

.section-heading {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto 44px;
}

.section-heading h2,
.contact-copy h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0;
}

.section-heading p,
.contact-copy p {
  max-width: 650px;
  margin: 16px 0 0;
  color: var(--dark-muted);
  font-size: 1.05rem;
}

.section-heading.dark p {
  color: var(--muted);
}

.product-section .section-heading p {
  color: var(--muted);
}

.feature-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
}

.feature-item {
  min-height: 430px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 70px rgba(7, 17, 31, 0.18);
}

.feature-icon {
  width: 42px;
  height: 42px;
  background: rgba(50, 216, 255, 0.14);
  border-color: rgba(50, 216, 255, 0.28);
}

.feature-item h3,
.product-shot h3,
.workflow-line h3 {
  margin: 18px 0 0;
  font-size: 1.25rem;
  line-height: 1.16;
}

.feature-item p,
.product-shot p,
.workflow-line p {
  margin: 11px 0 0;
  color: var(--dark-muted);
}

.product-shot p {
  color: var(--muted);
}

.feature-preview {
  margin-top: 26px;
}

.mini-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.mini-compare span {
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.preview-image {
  height: 128px;
  border-color: rgba(7, 17, 31, 0.12);
}

.preview-image.shifted {
  transform: translateY(14px);
}

.settings-preview,
.alert-preview {
  display: grid;
  gap: 12px;
  padding: 16px;
  background: var(--ink);
  color: var(--text);
  border-radius: var(--radius);
}

.settings-preview label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 44px;
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  font-weight: 700;
}

.settings-preview label:last-child {
  border-bottom: 0;
}

.toggle {
  position: relative;
  width: 44px;
  height: 24px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 99px;
}

.toggle::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 16px;
  height: 16px;
  background: rgba(255, 255, 255, 0.74);
  border-radius: 50%;
  transition: transform 220ms ease, background 220ms ease;
}

.toggle.on {
  background: rgba(50, 216, 255, 0.34);
}

.toggle.on::before {
  background: var(--cyan);
  transform: translateX(20px);
}

.alert-preview {
  position: relative;
  min-height: 172px;
  padding-left: 20px;
}

.alert-red-line {
  position: absolute;
  inset: 14px auto 14px 12px;
  width: 3px;
  background: var(--red);
  border-radius: 999px;
}

.alert-preview strong {
  margin-left: 10px;
}

.alert-preview span {
  margin-left: 10px;
  color: var(--muted);
  font-size: 0.83rem;
}

.alert-thumb {
  height: 78px;
  margin-left: 10px;
}

.workflow-section {
  position: relative;
  padding: 98px 24px;
  background:
    linear-gradient(180deg, var(--ink) 0%, #0b1929 100%);
}

.workflow-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(50, 216, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 20%, #000 80%, transparent 100%);
}

.workflow-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
}

.workflow-line::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(50, 216, 255, 0.56), rgba(255, 75, 93, 0.42), transparent);
}

.workflow-line article {
  position: relative;
  min-height: 260px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
}

.step-number {
  display: block;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.86rem;
  font-weight: 850;
}

.workflow-line .step-icon {
  width: 42px;
  height: 42px;
  margin-top: 30px;
}

.workflow-line h3 {
  color: var(--text);
}

.workflow-line p {
  color: var(--muted);
}

.screen-gallery {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  min-width: 0;
  max-width: var(--max);
  margin: 0 auto;
  align-items: stretch;
}

.product-shot {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 590px;
  padding: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04)),
    rgba(8, 17, 31, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
}

.product-shot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(50, 216, 255, 0.18), transparent 34%, rgba(255, 75, 93, 0.12));
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.product-shot:hover::before {
  opacity: 1;
}

.product-shot h3 {
  color: var(--text);
}

.shot-settings,
.shot-banned,
.shot-report,
.shot-commands {
  grid-column: auto;
}

.screenshot-frame {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  margin: 0;
  height: 380px;
  min-height: 0;
  background:
    linear-gradient(145deg, rgba(18, 20, 28, 0.98), rgba(10, 11, 20, 0.98)),
    #101116;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transform-style: preserve-3d;
}

.screenshot-frame img {
  cursor: zoom-in;
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  opacity: 0;
  transform: none;
  transition: opacity 260ms ease, transform 260ms ease;
}

.screenshot-frame.is-loaded img {
  opacity: 1;
  transform: none;
}

.screenshot-frame.is-loaded .screenshot-fallback {
  opacity: 0;
  pointer-events: none;
}

.screenshot-frame.is-loaded .frame-label {
  opacity: 0;
  pointer-events: none;
}

.frame-square {
  aspect-ratio: auto;
}

.frame-wide {
  aspect-ratio: auto;
}

.frame-tall {
  aspect-ratio: auto;
}

.frame-command {
  aspect-ratio: auto;
}

.frame-label {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  display: inline-flex;
  width: fit-content;
  color: var(--cyan);
  background: rgba(7, 17, 31, 0.72);
  border: 1px solid rgba(50, 216, 255, 0.28);
  border-radius: var(--radius);
  padding: 7px 9px;
  font-size: 0.75rem;
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.screenshot-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: clamp(18px, 3vw, 28px);
  color: #f2f3f5;
  background:
    linear-gradient(90deg, rgba(255, 75, 93, 0.26) 0 4px, transparent 4px),
    #111216;
  transition: opacity 260ms ease;
}

.screenshot-fallback::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, transparent, rgba(50, 216, 255, 0.12), transparent),
    radial-gradient(circle at 78% 20%, rgba(88, 101, 242, 0.22), transparent 26%);
  transform: translateX(-100%);
  animation: shimmer 4.8s ease-in-out infinite;
}

.fallback-title {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.1;
  font-weight: 850;
}

.screenshot-fallback p {
  max-width: 620px;
  margin: 0;
  color: #e4e6eb;
}

.screenshot-fallback ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding-left: 18px;
  color: #e4e6eb;
}

.fallback-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 4px;
}

.fallback-columns span,
.fallback-command,
.fallback-commands span {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 4px 7px;
  color: #c7d2ff;
  background: rgba(88, 101, 242, 0.34);
  border-radius: 5px;
  font-weight: 750;
}

.fallback-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.fallback-actions i {
  width: 114px;
  height: 38px;
  background: #358a47;
  border-radius: 8px;
}

.fallback-actions i:nth-child(2) {
  width: 92px;
  background: #1f2030;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.fallback-actions i:nth-child(3) {
  width: 118px;
  background: #5965f2;
}

.fallback-banned {
  background:
    linear-gradient(90deg, rgba(88, 101, 242, 0.28) 0 4px, transparent 4px),
    #0e0f1c;
}

.hash-row {
  height: 24px;
  max-width: 94%;
  background: linear-gradient(90deg, #272a42 0 34%, #191c30 34% 100%);
  border-radius: 5px;
}

.hash-row.short {
  width: 78%;
}

.thumb-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 4px;
}

.thumb-row i,
.large-shot {
  display: block;
  min-height: 150px;
  background:
    linear-gradient(135deg, rgba(50, 216, 255, 0.3), rgba(255, 75, 93, 0.18)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0 8px, transparent 8px 16px);
  border-radius: 8px;
}

.fallback-report {
  gap: 14px;
  padding-right: min(30%, 170px);
}

.report-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 8px 18px;
}

.report-grid span {
  color: #f2f3f5;
  font-weight: 850;
}

.report-grid strong {
  color: #d7dae2;
  font-weight: 600;
}

.large-shot {
  min-height: 240px;
  margin-top: 8px;
}

.fallback-commands {
  gap: 16px;
  padding-top: 24px;
}

.fallback-commands span {
  color: #f2f3f5;
  background: transparent;
  padding: 0;
  font-size: clamp(1rem, 1.8vw, 1.32rem);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.58fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 104px 24px;
}

.contact-copy ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
}

.contact-copy li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-weight: 650;
}

.contact-copy li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
  transform: rotate(-45deg);
}

.feedback-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feedback-card label {
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 800;
}

.feedback-card textarea {
  width: 100%;
  min-height: 154px;
  resize: vertical;
  color: var(--text);
  background: rgba(7, 17, 31, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 14px;
  outline: none;
}

.feedback-card textarea:focus {
  border-color: rgba(50, 216, 255, 0.62);
  box-shadow: 0 0 0 3px rgba(50, 216, 255, 0.13);
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--cyan);
  font-size: 0.88rem;
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 30px 24px 42px;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 18px;
  font-size: 0.9rem;
  font-weight: 700;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes grid-drift {
  from {
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
  }
  to {
    background-position: 58px 58px, 58px 58px, 0 0, 0 0, 0 0;
  }
}

@keyframes scan-sweep {
  0%,
  12% {
    transform: translateY(-45%);
    opacity: 0;
  }
  28%,
  70% {
    opacity: 1;
  }
  100% {
    transform: translateY(48%);
    opacity: 0;
  }
}

@keyframes panel-scan {
  0%,
  22% {
    transform: translateY(-100%);
  }
  68%,
  100% {
    transform: translateY(100%);
  }
}

@keyframes shimmer {
  0%,
  35% {
    transform: translateX(-110%);
  }
  75%,
  100% {
    transform: translateX(110%);
  }
}

@keyframes sheen {
  0%,
  42% {
    left: -60%;
  }
  72%,
  100% {
    left: 118%;
  }
}

@keyframes float-card {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes progress-pulse {
  0%,
  100% {
    width: 58%;
  }
  50% {
    width: 82%;
  }
}

@keyframes gallery-sweep {
  0%,
  20% {
    transform: translateX(-58%);
    opacity: 0;
  }
  42%,
  62% {
    opacity: 1;
  }
  100% {
    transform: translateX(58%);
    opacity: 0;
  }
}

@media (max-width: 980px) {
  .site-header {
    inset: 12px 14px auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 126px;
  }

  .hero-product {
    min-height: 560px;
  }

  .feature-row,
  .workflow-line,
  .contact-section {
    grid-template-columns: 1fr 1fr;
  }

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

  .product-shot {
    grid-column: auto;
  }

  .workflow-line::before {
    display: none;
  }

  .contact-section {
    align-items: start;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 10px;
  }

  .header-cta {
    display: none;
  }

  .brand {
    font-size: 0.98rem;
  }

  .hero {
    display: block;
    padding: 112px 16px 64px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-copy,
  .hero-actions,
  .hero-points {
    max-width: calc(100vw - 32px);
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.45rem, 11vw, 3.2rem);
    line-height: 0.98;
  }

  .hero-copy p {
    max-width: 340px;
    font-size: 1rem;
  }

  .hero-actions,
  .alert-actions {
    flex-direction: column;
  }

  .button {
    width: min(100%, 358px);
  }

  .hero-product {
    min-height: auto;
  }

  .discord-window {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .window-sidebar {
    display: none;
  }

  .match-grid,
  .image-compare {
    grid-template-columns: 1fr;
  }

  .compare-line {
    min-width: 0;
  }

  .compare-line::before,
  .compare-line::after {
    display: none;
  }

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

  .feature-band,
  .product-section,
  .workflow-section,
  .contact-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .feature-row,
  .workflow-line,
  .screen-gallery,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .product-section .section-heading,
  .screen-gallery {
    width: 100%;
    max-width: calc(100vw - 32px);
  }

  .product-shot {
    grid-column: 1 / -1;
    width: calc(100vw - 64px);
    max-width: calc(100vw - 64px);
    min-height: auto;
    margin-inline: auto;
    padding: 12px;
    overflow: hidden;
  }

  .product-shot h3,
  .product-shot p {
    overflow-wrap: anywhere;
  }

  .product-section .section-heading h2 {
    font-size: 2rem;
    line-height: 1.05;
  }

  .screenshot-frame {
    width: 100%;
    max-width: 100%;
    height: 300px;
    min-height: 0;
  }

  .screenshot-fallback {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 18px;
  }

  .frame-label {
    max-width: calc(100% - 20px);
    overflow-wrap: anywhere;
  }

  .fallback-columns,
  .report-grid {
    grid-template-columns: 1fr;
  }

  .fallback-columns span {
    width: auto;
  }

  .fallback-report {
    padding-right: 18px;
  }

  .fallback-actions i {
    width: 31%;
    min-width: 72px;
  }

  .frame-command {
    aspect-ratio: 1.28;
  }

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

  .site-footer {
    justify-items: start;
  }
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(3, 8, 16, 0.84);
  backdrop-filter: blur(14px);
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox img {
  max-width: min(1120px, 94vw);
  max-height: 88vh;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  min-height: 40px;
  padding: 0 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 800;
}

.lightbox-close:hover {
  border-color: rgba(50, 216, 255, 0.52);
  background: rgba(50, 216, 255, 0.14);
}

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