:root {
  --bg: #080506;
  --bg-soft: #130a0c;
  --surface: #1b1013;
  --surface-strong: #231419;
  --line: #3b232a;
  --text: #ffe6db;
  --text-soft: #e2bcae;
  --primary: #ff5a3d;
  --primary-strong: #ff3a26;
  --accent: #ffb36b;
  --ok: #5dffba;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(1200px 700px at 18% -10%, rgba(255, 90, 61, 0.18), transparent 60%),
    radial-gradient(1000px 650px at 100% 20%, rgba(255, 179, 107, 0.1), transparent 55%),
    linear-gradient(160deg, var(--bg) 0%, #0f0709 55%, #140b0e 100%);
  color: var(--text);
  font-family: "Sora", sans-serif;
}

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

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(44px);
  pointer-events: none;
  z-index: -1;
}

.orb-a {
  top: -140px;
  left: -120px;
  width: 380px;
  height: 380px;
  background: rgba(255, 90, 61, 0.2);
}

.orb-b {
  right: -160px;
  bottom: 8vh;
  width: 420px;
  height: 420px;
  background: rgba(255, 179, 107, 0.14);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 3vw, 2.5rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  background: rgba(8, 5, 6, 0.72);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 7px;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 0 2px rgba(255, 90, 61, 0.2);
}

.brand-text {
  font-family: "Oxanium", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links {
  display: inline-flex;
  gap: 1.2rem;
  color: var(--text-soft);
  font-size: 0.94rem;
}

.nav-links a {
  transition: color 0.18s ease;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 0.72rem 1.08rem;
  font-size: 0.92rem;
  font-weight: 600;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-strong) 100%);
  color: #fff4ef;
  box-shadow: 0 12px 26px rgba(255, 90, 61, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 16px 34px rgba(255, 90, 61, 0.35);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
  padding: 0.55rem 0.95rem;
}

main {
  width: min(1150px, 92vw);
  margin: 0 auto;
  padding: 2.3rem 0 5rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.2rem, 3vw, 2.2rem);
  align-items: start;
  padding-top: 1.2rem;
}

.eyebrow {
  margin: 0 0 0.6rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

h1 {
  margin: 0;
  font-family: "Oxanium", sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
}

.lead {
  margin: 1rem 0 1.5rem;
  color: var(--text-soft);
  max-width: 60ch;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.legal-strip {
  margin-top: 0.95rem;
  border: 1px solid rgba(93, 255, 186, 0.5);
  background: linear-gradient(140deg, rgba(93, 255, 186, 0.14), rgba(93, 255, 186, 0.05));
  border-radius: 14px;
  padding: 0.72rem 0.85rem;
}

.legal-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(93, 255, 186, 0.75);
  background: rgba(93, 255, 186, 0.16);
  color: #b8ffd7;
  font-family: "Oxanium", sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.07em;
  font-weight: 700;
  padding: 0.25rem 0.56rem;
  margin-bottom: 0.45rem;
}

.legal-strip p {
  margin: 0;
  color: #d6f8e6;
  line-height: 1.52;
  font-size: 0.86rem;
}

.hero-kpis {
  margin-top: 1.45rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.hero-kpis article {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.025);
  border-radius: 14px;
  padding: 0.85rem;
}

.hero-kpis h3 {
  margin: 0;
  font-family: "Oxanium", sans-serif;
  font-size: 1.02rem;
}

.hero-kpis p {
  margin: 0.25rem 0 0;
  color: var(--text-soft);
  font-size: 0.83rem;
}

.hero-panel {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(35, 20, 25, 0.94), rgba(20, 12, 15, 0.96));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel-head {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.88rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--text-soft);
}

.panel-head strong {
  margin-left: 0.28rem;
  font-size: 0.92rem;
  color: var(--text);
}

.dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
}

.dot-red {
  background: #ff6154;
}

.dot-yellow {
  background: #ffcd63;
}

.dot-green {
  background: var(--ok);
}

.panel-list {
  list-style: none;
  margin: 0;
  padding: 0.2rem 0;
}

.panel-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.panel-list li:last-child {
  border-bottom: 0;
}

.panel-list span {
  color: var(--text-soft);
  font-size: 0.93rem;
}

.panel-list em {
  color: var(--ok);
  font-style: normal;
  font-weight: 700;
  font-size: 0.9rem;
}

.section {
  margin-top: 4.2rem;
}

.proof-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.proof-column {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(170deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.012)),
    rgba(15, 9, 11, 0.72);
  padding: 1rem;
}

.proof-column .section-head h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.85rem);
}

.proof-column .snipes-carousel {
  margin-top: 1rem;
}

.proof-column .carousel-stage {
  min-height: clamp(430px, 46vw, 560px);
}

.section-head h2 {
  margin: 0;
  font-family: "Oxanium", sans-serif;
  font-size: clamp(1.45rem, 3.4vw, 2.35rem);
  line-height: 1.1;
}

.feature-grid {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.feature-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  border-radius: 15px;
  padding: 0.95rem;
}

.feature-media {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: linear-gradient(140deg, rgba(255, 90, 61, 0.19), rgba(255, 179, 107, 0.09));
  background-repeat: no-repeat;
  background-position: center, center;
  background-size: 76px 76px, cover;
  height: 84px;
  margin-bottom: 0.8rem;
  position: relative;
  overflow: hidden;
}

.feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 65% 25%, rgba(255, 255, 255, 0.08), transparent 45%);
  pointer-events: none;
}

.media-scan {
  background-image: url("../media/icons/feature-scan.svg"), linear-gradient(140deg, rgba(255, 90, 61, 0.19), rgba(255, 179, 107, 0.09));
}

.media-profit {
  background-image: url("../media/icons/feature-profit.svg"), linear-gradient(140deg, rgba(255, 90, 61, 0.19), rgba(255, 179, 107, 0.09));
}

.media-volume {
  background-image: url("../media/icons/feature-volume.svg"), linear-gradient(140deg, rgba(255, 90, 61, 0.19), rgba(255, 179, 107, 0.09));
}

.media-alerts {
  background-image: url("../media/icons/feature-alerts.svg"), linear-gradient(140deg, rgba(255, 90, 61, 0.19), rgba(255, 179, 107, 0.09));
}

.media-overlay {
  background-image: url("../media/icons/feature-api.svg"), linear-gradient(140deg, rgba(255, 90, 61, 0.19), rgba(255, 179, 107, 0.09));
}

.media-history {
  background-image: url("../media/icons/feature-history.svg"), linear-gradient(140deg, rgba(255, 90, 61, 0.19), rgba(255, 179, 107, 0.09));
}

.feature-card h3 {
  margin: 0;
  font-family: "Oxanium", sans-serif;
  font-size: 1.08rem;
}

.feature-card p {
  margin: 0.5rem 0 0;
  color: var(--text-soft);
  line-height: 1.55;
  font-size: 0.89rem;
}

.preview-carousel {
  margin-top: 1.2rem;
  position: relative;
  padding: 0 3.35rem;
}

.preview-carousel:focus-visible {
  outline: 2px solid rgba(255, 179, 107, 0.68);
  outline-offset: 6px;
  border-radius: 14px;
}

.preview-stage {
  position: relative;
  min-height: clamp(340px, 41vw, 500px);
}

.preview-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(330px, 41vw, 540px);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(26, 14, 19, 0.9), rgba(18, 11, 14, 0.97));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
  opacity: 0;
  pointer-events: none;
  filter: saturate(0.82) brightness(0.7);
  transform: translate(-50%, -50%) scale(0.76);
  transition: transform 0.44s ease, box-shadow 0.3s ease, border-color 0.3s ease, opacity 0.32s ease, filter 0.32s ease;
}

.preview-card:hover {
  border-color: rgba(255, 179, 107, 0.55);
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.44), 0 0 0 1px rgba(255, 179, 107, 0.22);
}

.preview-card.is-center {
  opacity: 1;
  z-index: 5;
  pointer-events: auto;
  filter: saturate(1.06) brightness(1);
  transform: translate(-50%, -50%) scale(1);
}

.preview-card.is-left {
  opacity: 0.88;
  z-index: 4;
  pointer-events: auto;
  transform: translate(calc(-50% - clamp(250px, 27vw, 360px)), -50%) scale(0.84);
}

.preview-card.is-right {
  opacity: 0.88;
  z-index: 4;
  pointer-events: auto;
  transform: translate(calc(-50% + clamp(250px, 27vw, 360px)), -50%) scale(0.84);
}

.preview-card.is-hidden {
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

.preview-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  cursor: zoom-in;
}

.preview-meta {
  padding: 0.75rem 0.86rem 0.9rem;
}

.preview-meta strong {
  display: block;
  font-family: "Oxanium", sans-serif;
  color: #ffe1d2;
  font-size: 1.02rem;
}

.preview-meta span {
  display: block;
  margin-top: 0.26rem;
  color: var(--text-soft);
  font-size: 0.84rem;
}

.preview-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  pointer-events: auto;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(11, 8, 9, 0.72);
  color: #ffe7da;
  font-family: "Oxanium", sans-serif;
  font-size: 1.18rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.preview-arrow:hover {
  border-color: rgba(255, 179, 107, 0.62);
  background: rgba(20, 13, 15, 0.88);
  transform: translateY(calc(-50% - 1px));
}

.preview-prev {
  left: 0;
}

.preview-next {
  right: 0;
}

.preview-dots {
  margin-top: 0.85rem;
}

.ingame-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.ingame-card {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(170deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(16, 10, 12, 0.74);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.ingame-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 179, 107, 0.56);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.32);
}

.ingame-shot {
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  background: #090607;
}

.ingame-shot img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  display: block;
  cursor: zoom-in;
  transition: transform 0.28s ease;
}

.ingame-card:hover .ingame-shot img {
  transform: scale(1.04);
}

.ingame-meta {
  padding: 0.85rem 0.9rem 0.95rem;
}

.ingame-meta strong {
  display: block;
  font-family: "Oxanium", sans-serif;
  font-size: 1rem;
  color: #ffe2d4;
}

.ingame-meta span {
  display: block;
  margin-top: 0.32rem;
  color: var(--text-soft);
  font-size: 0.84rem;
  line-height: 1.5;
}

.discord-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.discord-config-card,
.discord-preview-card {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(170deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(16, 10, 12, 0.76);
  padding: 1rem;
}

.discord-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.discord-logo {
  width: 3.05rem;
  height: 3.05rem;
  border-radius: 12px;
  overflow: hidden;
  background: #5865f2;
  padding: 0.62rem;
  box-shadow: 0 12px 22px rgba(88, 101, 242, 0.25);
  flex: 0 0 auto;
}

.discord-logo svg {
  width: 100%;
  height: 100%;
  display: block;
}

.discord-brand strong {
  display: block;
  font-family: "Oxanium", sans-serif;
  font-size: 1.05rem;
  color: #ffe0d0;
}

.discord-brand p {
  margin: 0.28rem 0 0;
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.5;
}

.discord-list {
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.discord-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(0, 0, 0, 0.2);
  padding: 0.6rem 0.72rem;
}

.discord-list span {
  color: #ffe1d3;
  font-family: "Oxanium", sans-serif;
  font-size: 0.92rem;
}

.discord-list em {
  color: var(--text-soft);
  font-style: normal;
  font-size: 0.79rem;
  text-align: right;
}

.discord-preview-title {
  margin: 0;
  font-family: "Oxanium", sans-serif;
  font-size: 1.04rem;
  color: #ffe0d0;
}

.discord-message {
  margin-top: 0.82rem;
  border-radius: 14px;
  border: 1px solid rgba(126, 137, 255, 0.38);
  background:
    linear-gradient(170deg, rgba(88, 101, 242, 0.18), rgba(88, 101, 242, 0.06)),
    rgba(19, 14, 32, 0.9);
  padding: 0.84rem;
}

.discord-message header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.discord-message time {
  color: #ccd2ff;
  font-size: 0.73rem;
}

.discord-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  border: 1px solid rgba(126, 137, 255, 0.46);
  background: rgba(126, 137, 255, 0.22);
  color: #eef1ff;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.discord-message strong {
  display: block;
  margin-top: 0.68rem;
  font-family: "Oxanium", sans-serif;
  color: #f7f9ff;
  font-size: 1rem;
}

.discord-message p {
  margin: 0.42rem 0 0;
  color: #d6dcff;
  font-size: 0.86rem;
}

.discord-message b {
  color: #ffffff;
}

.discord-profit {
  color: #b9ffd8 !important;
  font-weight: 700;
}

.discord-tags {
  margin-top: 0.74rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.discord-tags span {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #f3f5ff;
  font-size: 0.74rem;
  padding: 0.26rem 0.55rem;
}

.workflow-grid {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.workflow-step {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 14px;
  padding: 0.95rem;
}

.workflow-step span {
  display: inline-flex;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.55rem;
  font-family: "Oxanium", sans-serif;
  font-weight: 700;
  background: rgba(255, 90, 61, 0.2);
  color: #ffd7c8;
}

.workflow-step h3 {
  margin: 0;
  font-family: "Oxanium", sans-serif;
  font-size: 1.04rem;
}

.workflow-step p {
  margin: 0.4rem 0 0;
  color: var(--text-soft);
  font-size: 0.89rem;
}

.chat-layout {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
}

.chat-intro {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(165deg, rgba(255, 90, 61, 0.14), rgba(255, 179, 107, 0.06)),
    rgba(22, 13, 16, 0.84);
  padding: 1rem;
}

.chat-lead {
  margin: 0;
  color: #ffe1d4;
  line-height: 1.6;
}

.chat-kpis {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.chat-kpis span {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.2);
  color: var(--text-soft);
  border-radius: 999px;
  font-size: 0.76rem;
  padding: 0.3rem 0.6rem;
}

.chat-stream {
  display: grid;
  gap: 0.7rem;
}

.chat-card {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(26, 15, 19, 0.92), rgba(16, 10, 12, 0.98));
  padding: 0.66rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.chat-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 179, 107, 0.5);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.32);
}

.chat-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.chat-card-head strong {
  font-family: "Oxanium", sans-serif;
  font-size: 0.94rem;
  color: #ffe5d7;
}

.chat-card-head em {
  font-style: normal;
  font-size: 0.74rem;
  color: #ffcfaa;
}

.chat-shot {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #080506;
}

.chat-shot img {
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 1;
  object-fit: contain;
  display: block;
  image-rendering: pixelated;
}

.snipe-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.snipe-stats span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 999px;
  padding: 0.38rem 0.7rem;
  font-size: 0.78rem;
  color: var(--text-soft);
  letter-spacing: 0.03em;
}

.snipes-carousel {
  margin-top: 1.15rem;
  position: relative;
  padding: 2.7rem 0;
}

.carousel-stage {
  position: relative;
  min-height: clamp(500px, 54vw, 650px);
}

.carousel-stage .snipe-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(290px, 34vw, 430px);
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #130b0d;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  filter: saturate(0.86) brightness(0.7);
  transform: translate(-50%, -50%) scale(0.74);
  transition: transform 0.44s ease, box-shadow 0.3s ease, border-color 0.3s ease, opacity 0.32s ease, filter 0.32s ease;
}

.carousel-stage .snipe-card::after {
  content: "VIEW FULL";
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.45);
  color: #ffe9df;
  font-family: "Oxanium", sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  border-radius: 999px;
  padding: 0.24rem 0.54rem;
}

.carousel-stage .snipe-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.35s ease;
}

#chat .carousel-stage .snipe-card.chat-log-card img {
  object-fit: contain;
  image-rendering: pixelated;
  background: #050404;
}

.carousel-stage .snipe-card.is-center {
  opacity: 1;
  z-index: 5;
  pointer-events: auto;
  filter: saturate(1.08) brightness(1);
  transform: translate(-50%, -50%) scale(1);
}

.carousel-stage .snipe-card.is-left {
  opacity: 0.88;
  z-index: 4;
  pointer-events: auto;
  transform: translate(-50%, calc(-50% - clamp(145px, 15vw, 200px))) scale(0.86);
}

.carousel-stage .snipe-card.is-right {
  opacity: 0.88;
  z-index: 4;
  pointer-events: auto;
  transform: translate(-50%, calc(-50% + clamp(145px, 15vw, 200px))) scale(0.86);
}

.carousel-stage .snipe-card.is-hidden {
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

.carousel-stage .snipe-card:hover {
  border-color: rgba(255, 179, 107, 0.62);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 179, 107, 0.26);
}

.carousel-stage .snipe-card:hover img {
  transform: scale(1.02);
}

.carousel-stage .snipe-meta {
  padding: 0.78rem 0.9rem 0.92rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  background:
    linear-gradient(180deg, rgba(22, 13, 16, 0.95), rgba(18, 10, 12, 0.98));
}

.carousel-stage .snipe-meta strong {
  font-family: "Oxanium", sans-serif;
  font-size: clamp(0.92rem, 2vw, 1.08rem);
  line-height: 1.1;
  color: #ffdfce;
}

.carousel-stage .snipe-meta em {
  font-style: normal;
  color: #97ffbe;
  background: rgba(123, 255, 171, 0.13);
  border: 1px solid rgba(123, 255, 171, 0.4);
  border-radius: 999px;
  padding: 0.28rem 0.58rem;
  font-weight: 700;
  font-size: clamp(0.78rem, 1.7vw, 0.92rem);
  white-space: nowrap;
}

.carousel-btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(10, 8, 9, 0.66);
  color: #ffe8dc;
  font-family: "Oxanium", sans-serif;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
}

.carousel-btn:hover {
  border-color: rgba(255, 179, 107, 0.62);
  background: rgba(20, 13, 15, 0.88);
}

.carousel-prev {
  top: 0;
}

.carousel-next {
  bottom: 0;
}

.carousel-dots {
  margin-top: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.carousel-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.carousel-dot.active {
  background: var(--accent);
  transform: scale(1.35);
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  padding: 3.5rem 1rem 1rem;
  background: rgba(5, 4, 5, 0.88);
  backdrop-filter: blur(6px);
  z-index: 60;
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  width: min(1200px, 96vw);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.55);
}

.lightbox p {
  margin: 0.65rem 0 0;
  color: #ffe5da;
  font-family: "Oxanium", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.45);
  color: #fff2eb;
  border-radius: 10px;
  width: 2.2rem;
  height: 2.2rem;
  font-size: 1.1rem;
  cursor: pointer;
}

.download-card {
  border-radius: 18px;
  padding: clamp(1rem, 2.2vw, 1.5rem);
  border: 1px solid rgba(255, 179, 107, 0.34);
  background:
    linear-gradient(140deg, rgba(255, 90, 61, 0.14) 0%, rgba(255, 179, 107, 0.08) 100%),
    rgba(24, 14, 17, 0.86);
}

.download-card h2 {
  margin: 0;
  font-family: "Oxanium", sans-serif;
  font-size: clamp(1.5rem, 3.2vw, 2.25rem);
}

.download-card p {
  margin: 0.65rem 0 1rem;
  color: var(--text-soft);
}

.btn-wide {
  min-width: 220px;
}

.download-card small {
  display: block;
  margin-top: 0.7rem;
  color: var(--text-soft);
}

.download-card code {
  color: #fff1d5;
}

.faq-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.faq-item {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(170deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(16, 10, 12, 0.74);
  padding: 0.82rem 0.92rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.faq-item:hover {
  border-color: rgba(255, 179, 107, 0.52);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.28);
}

.faq-item[open] {
  border-color: rgba(255, 179, 107, 0.62);
  background:
    linear-gradient(170deg, rgba(255, 179, 107, 0.1), rgba(255, 255, 255, 0.02)),
    rgba(20, 12, 15, 0.82);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-family: "Oxanium", sans-serif;
  font-size: 1rem;
  color: #ffe4d6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

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

.faq-item summary::after {
  content: "+";
  width: 1.4rem;
  height: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffd9b6;
  font-weight: 700;
  font-size: 0.95rem;
  flex: 0 0 auto;
}

.faq-item[open] summary::after {
  content: "-";
  border-color: rgba(255, 179, 107, 0.62);
  color: #ffd27f;
}

.faq-item p {
  margin: 0.65rem 0 0;
  color: var(--text-soft);
  line-height: 1.62;
  font-size: 0.88rem;
}

.faq-item code {
  color: #ffe8b7;
  font-size: 0.82rem;
}

.site-footer {
  width: min(1150px, 92vw);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-soft);
  text-align: center;
  padding: 1rem 0 2.5rem;
  font-size: 0.9rem;
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .proof-pair {
    grid-template-columns: 1fr;
  }

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

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .preview-stage .preview-card {
    width: clamp(300px, 46vw, 480px);
  }

  .preview-card.is-left {
    transform: translate(calc(-50% - clamp(200px, 23vw, 290px)), -50%) scale(0.84);
  }

  .preview-card.is-right {
    transform: translate(calc(-50% + clamp(200px, 23vw, 290px)), -50%) scale(0.84);
  }

  .discord-grid {
    grid-template-columns: 1fr;
  }

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

  .chat-layout {
    grid-template-columns: 1fr;
  }

  .snipes-carousel {
    padding: 2.4rem 0;
  }

  .carousel-stage .snipe-card {
    width: clamp(260px, 42vw, 390px);
  }

  .carousel-stage .snipe-card.is-left {
    transform: translate(-50%, calc(-50% - clamp(120px, 14vw, 170px))) scale(0.84);
  }

  .carousel-stage .snipe-card.is-right {
    transform: translate(-50%, calc(-50% + clamp(120px, 14vw, 170px))) scale(0.84);
  }
}

@media (max-width: 760px) {
  .topbar {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
  }

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

  .feature-grid,
  .workflow-grid,
  .ingame-grid {
    grid-template-columns: 1fr;
  }

  .preview-carousel {
    padding: 0 2.3rem;
  }

  .preview-stage {
    min-height: clamp(280px, 86vw, 420px);
  }

  .preview-stage .preview-card {
    width: min(92vw, 530px);
  }

  .preview-stage .preview-card.is-left,
  .preview-stage .preview-card.is-right {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.72);
  }

  .preview-arrow {
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
  }

  .preview-arrow:hover {
    transform: translateY(-50%);
  }

  .proof-column {
    padding: 0.8rem;
  }

  .chat-card-head {
    flex-direction: column;
    align-items: start;
    gap: 0.2rem;
  }

  .snipes-carousel {
    padding: 2.2rem 0;
  }

  .carousel-stage {
    min-height: clamp(320px, 92vw, 430px);
  }

  .carousel-stage .snipe-card {
    width: min(88vw, 470px);
  }

  .carousel-stage .snipe-card.is-left,
  .carousel-stage .snipe-card.is-right {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.72);
  }

  .carousel-btn {
    width: 2rem;
    height: 2rem;
  }

  .carousel-stage .snipe-meta {
    flex-direction: column;
    align-items: start;
    gap: 0.25rem;
  }

  .carousel-stage .snipe-meta em {
    white-space: normal;
  }
}
