@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  --bg: #070816;
  --bg-deep: #040510;
  --panel: rgba(15, 18, 39, 0.68);
  --panel-solid: #0f1227;
  --line: rgba(162, 180, 255, 0.14);
  --line-bright: rgba(119, 151, 255, 0.32);
  --text: #f2f5ff;
  --muted: #a0a8c1;
  --dim: #727b98;
  --blue: #43a2ff;
  --cyan: #71d8ff;
  --violet: #8a5cff;
  --purple: #bd61ff;
  --green: #5be3a1;
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1180px;
  --header-h: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.55;
}

body::before {
  position: fixed;
  z-index: -3;
  inset: 0;
  background:
    radial-gradient(circle at 15% 24%, rgba(36, 70, 176, 0.13), transparent 28rem),
    radial-gradient(circle at 85% 64%, rgba(115, 52, 213, 0.1), transparent 32rem),
    var(--bg);
  content: "";
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

button {
  color: inherit;
  font: inherit;
}

svg {
  display: block;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.page-noise {
  position: fixed;
  z-index: 30;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  z-index: -1;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.12;
  background: radial-gradient(circle, rgba(91, 111, 255, 0.72), transparent 67%);
  transform: translate(-50%, -50%);
  transition: opacity 0.35s ease;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    backdrop-filter 0.3s ease;
}

.site-header.scrolled {
  border-color: rgba(144, 167, 255, 0.11);
  background: rgba(6, 7, 20, 0.72);
  backdrop-filter: blur(24px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.7px;
}

.brand-name {
  display: inline-flex;
  align-items: baseline;
  text-shadow: 0 0 18px rgba(70, 173, 255, 0.13);
}

.brand-name span {
  color: #edf7ff;
}

.brand-name b {
  color: transparent;
  background: linear-gradient(110deg, #28c8ff 10%, #a94cff 92%);
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  width: 43px;
  height: 39px;
  filter: drop-shadow(0 0 9px rgba(41, 191, 255, 0.29));
  place-items: center;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  gap: 31px;
  margin-left: auto;
  margin-right: 42px;
}

.desktop-nav a {
  position: relative;
  color: #b4bdd2;
  font-size: 13px;
  font-weight: 700;
  transition: color 0.25s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--blue);
  content: "";
  opacity: 0;
  transform: scaleX(0.3);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.desktop-nav a:hover {
  color: white;
}

.desktop-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid rgba(103, 151, 255, 0.32);
  border-radius: 10px;
  color: #dbe9ff;
  background: rgba(50, 96, 205, 0.09);
  font-size: 12px;
  font-weight: 800;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.header-download:hover {
  border-color: rgba(109, 167, 255, 0.66);
  background: rgba(50, 96, 205, 0.2);
  transform: translateY(-2px);
}

.header-download svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: 790px;
  overflow: hidden;
  isolation: isolate;
}

.hero-art,
.hero-grid,
.hero-bottom-fade {
  position: absolute;
  inset: 0;
}

.hero-art {
  z-index: -3;
  background-image:
    linear-gradient(90deg, #070816 0%, rgba(7, 8, 22, 0.93) 22%, rgba(7, 8, 22, 0.43) 55%, rgba(7, 8, 22, 0.14) 100%),
    url("assets/talknpc-hero.png");
  background-position: center, center;
  background-size: cover;
  filter: saturate(0.94);
  transform: scale(1.035);
  animation: hero-drift 16s ease-in-out infinite alternate;
}

.hero-grid {
  z-index: -2;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(92, 126, 217, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 126, 217, 0.16) 1px, transparent 1px);
  background-position: center bottom;
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, transparent 5%, rgba(0, 0, 0, 0.7) 45%, transparent 96%);
}

.hero-bottom-fade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 8, 22, 0.15) 0%, rgba(7, 8, 22, 0.07) 62%, var(--bg) 100%),
    linear-gradient(90deg, rgba(7, 8, 22, 0.28), transparent 65%);
}

.hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 790px;
  padding-top: calc(var(--header-h) + 65px);
  padding-bottom: 100px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 685px;
}

.eyebrow,
.section-kicker {
  color: var(--cyan);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(100, 166, 255, 0.19);
  border-radius: 50px;
  background: rgba(10, 27, 66, 0.35);
  backdrop-filter: blur(12px);
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--blue);
  animation: pulse 1.5s ease-in-out infinite;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Space Grotesk", Arial, sans-serif;
}

h1 {
  margin-bottom: 24px;
  padding-top: 23px;
  font-size: clamp(48px, 5.45vw, 76px);
  line-height: 0.98;
  letter-spacing: -4.5px;
}

.gradient-text,
h2 span {
  color: transparent;
  background: linear-gradient(100deg, #66c7ff 5%, #8ca1ff 46%, #c079ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  max-width: 570px;
  margin-bottom: 34px;
  color: #bcc5dc;
  font-size: 18px;
  line-height: 1.72;
}

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

.hero-offer {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  padding: 10px 13px;
  border: 1px solid rgba(105, 211, 255, 0.2);
  border-radius: 14px;
  background: linear-gradient(110deg, rgba(16, 39, 78, 0.75), rgba(29, 24, 72, 0.7));
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.hero-offer-price,
.hero-offer-timer {
  display: grid;
  gap: 2px;
}

.hero-offer-old-price,
.hero-offer-timer span {
  color: #98a5c5;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.65px;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-offer-old-price {
  text-decoration: line-through;
  text-decoration-color: rgba(255, 139, 165, 0.92);
  text-decoration-thickness: 1.5px;
}

.hero-offer-price strong {
  color: #7af1b5;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.2;
}

.hero-offer-timer {
  padding-left: 16px;
  border-left: 1px solid rgba(145, 173, 255, 0.2);
}

.hero-offer-timer time {
  color: #f3f7ff;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 23px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
  text-shadow: 0 0 16px rgba(92, 184, 255, 0.38);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  transition:
    transform 0.26s ease,
    box-shadow 0.26s ease,
    border-color 0.26s ease,
    background 0.26s ease;
}

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-primary {
  overflow: hidden;
  color: white;
  background: linear-gradient(110deg, #2e88fc, #695cfb 58%, #875bf7);
  box-shadow:
    0 0 0 1px rgba(134, 174, 255, 0.42) inset,
    0 8px 34px rgba(55, 104, 255, 0.32);
}

.button-primary::before {
  position: absolute;
  top: -40%;
  bottom: -40%;
  left: -40%;
  width: 32%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  content: "";
  transform: skewX(-18deg);
  transition: left 0.55s ease;
}

.button-primary:hover {
  box-shadow:
    0 0 0 1px rgba(167, 198, 255, 0.6) inset,
    0 10px 42px rgba(76, 109, 255, 0.52);
  transform: translateY(-3px);
}

.button-primary:hover::before {
  left: 112%;
}

.button-ghost {
  border: 1px solid rgba(167, 181, 225, 0.2);
  color: #e5e9f7;
  background: rgba(18, 20, 43, 0.45);
  backdrop-filter: blur(14px);
}

.button-ghost:hover {
  border-color: rgba(133, 171, 255, 0.47);
  background: rgba(40, 49, 97, 0.45);
  transform: translateY(-3px);
}

.gallery-icon {
  display: grid;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(201, 212, 255, 0.52);
  border-radius: 6px;
  place-items: center;
}

.gallery-icon svg {
  width: 15px;
  stroke-width: 1.4;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 26px;
}

.hero-offer + .hero-meta {
  margin-top: 18px;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #8690aa;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.hero-meta svg {
  width: 15px;
  fill: none;
  stroke: #8ea7fc;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero-screenshots {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: 0;
  width: min(40vw, 470px);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(137, 167, 255, 0.34);
  border-radius: 18px;
  background: #060816;
  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.44),
    0 0 54px rgba(56, 101, 255, 0.16);
  transform: translateY(-50%);
}

.hero-screenshot-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s ease;
}

.hero-screenshot-image.changing {
  opacity: 0.28;
}

.hero-screenshot-control {
  position: absolute;
  z-index: 1;
  top: 50%;
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(188, 208, 255, 0.35);
  border-radius: 50%;
  color: #eff6ff;
  background: rgba(5, 9, 22, 0.76);
  cursor: pointer;
  place-items: center;
  transform: translateY(-50%);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.hero-screenshot-control:hover {
  border-color: rgba(120, 193, 255, 0.76);
  background: rgba(37, 74, 139, 0.82);
  transform: translateY(-50%) scale(1.06);
}

.hero-screenshot-control svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero-screenshot-prev {
  left: 13px;
}

.hero-screenshot-next {
  right: 13px;
}

.hero-status {
  position: absolute;
  z-index: 3;
  right: 1%;
  bottom: 13%;
  width: 270px;
  padding: 14px;
  animation: float 5s ease-in-out infinite;
}

.glass-panel {
  border: 1px solid rgba(137, 167, 255, 0.19);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(22, 29, 65, 0.7), rgba(11, 13, 31, 0.55));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px);
}

.status-topline,
.status-dialog,
.chat-header,
.chat-input {
  display: flex;
  align-items: center;
}

.status-topline {
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(148, 169, 237, 0.11);
}

.status-label,
.status-id {
  color: #a9b6d2;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.status-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
}

.status-label i,
.chat-presence i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 9px rgba(91, 227, 161, 0.85);
}

.waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 44px;
}

.waveform span {
  width: 2px;
  height: 14px;
  border-radius: 10px;
  background: linear-gradient(var(--cyan), var(--violet));
  box-shadow: 0 0 8px rgba(81, 163, 255, 0.58);
  animation: wave 1.15s ease-in-out infinite alternate;
}

.waveform span:nth-child(2n) {
  height: 26px;
  animation-delay: -0.35s;
}

.waveform span:nth-child(3n) {
  height: 18px;
  animation-delay: -0.7s;
}

.waveform span:nth-child(5n) {
  height: 34px;
  animation-delay: -0.95s;
}

.status-dialog {
  gap: 10px;
}

.npc-mini {
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  border: 1px solid rgba(121, 157, 254, 0.4);
  border-radius: 50%;
  background-image: url("assets/talknpc-hero.png");
  background-position: 76% 24%;
  background-size: 255px;
}

.status-dialog strong {
  display: block;
  color: #d9e4fb;
  font-size: 10px;
}

.status-dialog p {
  margin: 2px 0 0;
  color: #8d9ab8;
  font-size: 9px;
}

.hero-orb {
  position: absolute;
  z-index: 1;
  right: 27%;
  bottom: 38%;
  width: 105px;
  height: 105px;
  opacity: 0.65;
}

.orb-ring,
.orb-core {
  position: absolute;
  border-radius: 50%;
}

.orb-ring {
  inset: 0;
  border: 1px solid rgba(92, 207, 255, 0.62);
  box-shadow:
    0 0 15px rgba(75, 144, 255, 0.3),
    0 0 42px rgba(79, 96, 255, 0.23);
  animation: orbit 9s linear infinite;
}

.orb-ring-two {
  inset: 13px -24px;
  border-color: rgba(157, 91, 255, 0.46);
  transform: rotateX(64deg) rotateZ(12deg);
  animation-duration: 11s;
  animation-direction: reverse;
}

.orb-ring-three {
  inset: -16px 21px;
  border-color: rgba(79, 174, 255, 0.39);
  transform: rotateY(68deg) rotateZ(-16deg);
  animation-duration: 7s;
}

.orb-core {
  inset: 36%;
  background: #b8f0ff;
  box-shadow:
    0 0 15px #7ad7ff,
    0 0 45px #705cff;
  animation: pulse 1.9s ease-in-out infinite;
}

.scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(180, 192, 221, 0.57);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-hint span {
  display: block;
  width: 16px;
  height: 28px;
  border: 1px solid rgba(177, 193, 231, 0.34);
  border-radius: 20px;
}

.scroll-hint span::after {
  display: block;
  width: 3px;
  height: 5px;
  margin: 6px auto 0;
  border-radius: 4px;
  background: rgba(179, 204, 255, 0.86);
  content: "";
  animation: scroll-down 1.7s ease-in-out infinite;
}

.section {
  position: relative;
  padding: 122px 0;
}

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

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

h2 {
  margin-bottom: 18px;
  padding-top: 14px;
  font-size: clamp(40px, 4.3vw, 61px);
  line-height: 1.02;
  letter-spacing: -3.5px;
}

.section-heading p,
.demo-copy > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 52px;
}

.feature-card {
  position: relative;
  min-height: 255px;
  overflow: hidden;
  padding: 26px 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 22% 0%, rgba(62, 117, 245, 0.11), transparent 13rem),
    linear-gradient(145deg, rgba(17, 22, 49, 0.88), rgba(11, 13, 31, 0.56));
  transition:
    border-color 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.feature-card::after {
  position: absolute;
  right: -65px;
  bottom: -76px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(85, 59, 255, 0.12);
  content: "";
  filter: blur(34px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.feature-card:hover {
  border-color: rgba(99, 145, 255, 0.4);
  box-shadow: 0 18px 50px rgba(1, 3, 18, 0.28);
  transform: translateY(-7px);
}

.feature-card:hover::after {
  opacity: 1;
}

.icon-box,
.step-icon {
  display: grid;
  border: 1px solid rgba(105, 160, 255, 0.25);
  background: linear-gradient(135deg, rgba(53, 128, 255, 0.13), rgba(109, 64, 247, 0.12));
  box-shadow: 0 0 22px rgba(42, 100, 225, 0.08);
  place-items: center;
}

.icon-box {
  width: 48px;
  height: 48px;
  margin-bottom: 29px;
  border-radius: 13px;
}

.icon-box svg,
.step-icon svg {
  width: 23px;
  fill: none;
  stroke: #6ab7ff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.card-index {
  position: absolute;
  top: 27px;
  right: 25px;
  color: rgba(146, 166, 216, 0.35);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 1px;
}

.feature-card h3,
.step h3 {
  margin-bottom: 9px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 18px;
  letter-spacing: -0.55px;
}

.feature-card p,
.step p {
  margin-bottom: 0;
  color: #8d96b0;
  font-size: 13px;
  line-height: 1.75;
}

.how-section {
  overflow: hidden;
  padding-top: 110px;
}

.section-glow {
  position: absolute;
  z-index: -1;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(30px);
  pointer-events: none;
}

.section-glow-blue {
  top: 27%;
  left: -340px;
  background: rgba(28, 101, 238, 0.12);
}

.section-glow-violet {
  right: -250px;
  bottom: 8%;
  background: rgba(125, 66, 244, 0.14);
}

.steps-list {
  position: relative;
  display: grid;
  margin: 68px 0 0;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.steps-list::before {
  position: absolute;
  top: 41px;
  right: 11%;
  left: 11%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(83, 146, 255, 0.45) 14%, rgba(152, 87, 255, 0.44) 86%, transparent);
  content: "";
}

.step {
  position: relative;
  z-index: 1;
  padding: 0 21px;
  text-align: center;
}

.step-number {
  position: absolute;
  top: -18px;
  left: calc(50% + 29px);
  color: rgba(114, 157, 255, 0.7);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
}

.step-icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 23px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(73, 138, 255, 0.2), rgba(19, 25, 58, 0.8)),
    var(--panel-solid);
  box-shadow:
    0 0 0 8px rgba(9, 11, 29, 0.9),
    0 0 44px rgba(54, 109, 248, 0.13);
}

.step:nth-child(3) .step-icon,
.step:nth-child(4) .step-icon {
  border-color: rgba(147, 99, 255, 0.35);
  background: radial-gradient(circle, rgba(116, 75, 255, 0.19), rgba(21, 21, 57, 0.84));
}

.step:nth-child(3) .step-icon svg,
.step:nth-child(4) .step-icon svg {
  stroke: #a984ff;
}

.demo-section {
  overflow: hidden;
  padding-top: 148px;
}

.demo-layout,
.advantages-layout,
.faq-layout {
  display: grid;
  align-items: center;
  grid-template-columns: 0.89fr 1.11fr;
  gap: 76px;
}

.demo-copy h2 {
  margin-bottom: 21px;
}

.demo-copy > p {
  margin-bottom: 34px;
}

.demo-stats {
  display: flex;
  gap: 48px;
}

.demo-stats strong,
.demo-stats span {
  display: block;
}

.demo-stats strong {
  color: #78bfff;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 28px;
  letter-spacing: -1.2px;
}

.demo-stats span {
  color: var(--dim);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.screenshots-showcase {
  min-width: 0;
}

.screenshot-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-color: rgba(126, 154, 242, 0.24);
  border-radius: 20px;
  background: #090b19;
  box-shadow:
    0 24px 75px rgba(1, 3, 18, 0.43),
    0 0 65px rgba(79, 64, 220, 0.1);
}

.stage-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
  transition:
    opacity 0.28s ease,
    transform 0.65s ease;
}

.screenshot-stage:hover .stage-image {
  transform: scale(1.025);
}

.stage-image.changing {
  opacity: 0.28;
}

.stage-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(4, 6, 17, 0.52), transparent 24%),
    linear-gradient(0deg, rgba(4, 6, 17, 0.86), transparent 38%);
}

.stage-topline,
.stage-caption {
  position: absolute;
  z-index: 1;
  right: 18px;
  left: 18px;
}

.stage-topline {
  top: 16px;
  display: flex;
  justify-content: space-between;
  color: rgba(214, 229, 255, 0.78);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.stage-topline span:first-child {
  display: flex;
  align-items: center;
  gap: 7px;
}

.stage-topline i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 11px rgba(91, 227, 161, 0.88);
}

.stage-caption {
  bottom: 17px;
}

.stage-caption span,
.stage-caption strong {
  display: block;
}

.stage-caption span {
  margin-bottom: 4px;
  color: #6fc9ff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.stage-caption strong {
  color: #eef5ff;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 16px;
  letter-spacing: -0.35px;
}

.stage-control {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(188, 208, 255, 0.22);
  border-radius: 50%;
  color: #e8f2ff;
  background: rgba(6, 10, 25, 0.62);
  cursor: pointer;
  opacity: 0;
  place-items: center;
  transform: translateY(-50%);
  transition:
    opacity 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.stage-control:hover {
  border-color: rgba(120, 193, 255, 0.64);
  background: rgba(37, 74, 139, 0.68);
}

.screenshot-stage:hover .stage-control,
.stage-control:focus-visible {
  opacity: 1;
}

.stage-control svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.stage-open {
  position: absolute;
  z-index: 2;
  top: 48px;
  right: 16px;
  display: grid;
  width: 35px;
  height: 35px;
  border: 1px solid rgba(188, 208, 255, 0.22);
  border-radius: 10px;
  color: #e8f2ff;
  background: rgba(6, 10, 25, 0.62);
  cursor: pointer;
  opacity: 0;
  place-items: center;
  transition:
    opacity 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.stage-open:hover {
  border-color: rgba(120, 193, 255, 0.64);
  background: rgba(37, 74, 139, 0.68);
}

.screenshot-stage:hover .stage-open,
.stage-open:focus-visible {
  opacity: 1;
}

.stage-open svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.stage-prev {
  left: 12px;
}

.stage-next {
  right: 12px;
}

.screenshot-thumbs {
  display: grid;
  margin-top: 12px;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
}

.screenshot-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(132, 159, 231, 0.17);
  border-radius: 10px;
  background: #0b0e20;
  cursor: pointer;
  opacity: 0.52;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    opacity 0.25s ease,
    transform 0.25s ease;
}

.screenshot-thumb::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(66, 165, 255, 0.09), rgba(139, 77, 255, 0.1));
  content: "";
  opacity: 0;
  transition: opacity 0.25s ease;
}

.screenshot-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screenshot-thumb:hover,
.screenshot-thumb.active {
  border-color: rgba(111, 187, 255, 0.62);
  box-shadow: 0 0 24px rgba(61, 121, 255, 0.17);
  opacity: 1;
  transform: translateY(-3px);
}

.screenshot-thumb.active::after {
  opacity: 1;
}

.screenshot-lightbox {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  padding: 22px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  place-items: center;
  transition:
    opacity 0.28s ease,
    visibility 0s linear 0.28s;
}

.screenshot-lightbox.open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 4, 13, 0.9);
  backdrop-filter: blur(19px);
}

.lightbox-shell {
  position: relative;
  width: min(94vw, 1390px);
  max-height: calc(100vh - 44px);
  padding: 13px;
  border: 1px solid rgba(139, 172, 255, 0.23);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 0%, rgba(56, 106, 219, 0.15), transparent 40%),
    rgba(7, 9, 24, 0.95);
  box-shadow:
    0 24px 100px rgba(0, 0, 0, 0.55),
    0 0 75px rgba(88, 70, 255, 0.14);
  transform: translateY(18px) scale(0.985);
  transition: transform 0.32s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.screenshot-lightbox.open .lightbox-shell {
  transform: translateY(0) scale(1);
}

.lightbox-topline {
  display: grid;
  min-height: 35px;
  padding: 1px 43px 10px 6px;
  color: rgba(214, 229, 255, 0.78);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.lightbox-topline > span:first-child {
  display: flex;
  align-items: center;
  gap: 7px;
}

.lightbox-topline i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 11px rgba(91, 227, 161, 0.88);
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 7px;
  right: 7px;
  display: grid;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(188, 208, 255, 0.18);
  border-radius: 9px;
  color: #e5efff;
  background: rgba(24, 32, 66, 0.54);
  cursor: pointer;
  place-items: center;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.lightbox-close:hover {
  border-color: rgba(120, 193, 255, 0.64);
  background: rgba(54, 62, 124, 0.66);
}

.lightbox-close svg,
.lightbox-control svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.lightbox-stage {
  position: relative;
  display: grid;
  max-height: calc(100vh - 180px);
  overflow: hidden;
  border: 1px solid rgba(133, 164, 246, 0.18);
  border-radius: 15px;
  background: #040611;
  place-items: center;
}

.lightbox-image {
  display: block;
  width: 100%;
  max-height: calc(100vh - 180px);
  object-fit: contain;
  transition: opacity 0.2s ease;
}

.lightbox-image.changing {
  opacity: 0.28;
}

.lightbox-control {
  position: absolute;
  z-index: 1;
  top: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(188, 208, 255, 0.27);
  border-radius: 50%;
  color: #eff6ff;
  background: rgba(5, 9, 22, 0.72);
  cursor: pointer;
  place-items: center;
  transform: translateY(-50%);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.lightbox-control:hover {
  border-color: rgba(120, 193, 255, 0.7);
  background: rgba(37, 74, 139, 0.76);
  transform: translateY(-50%) scale(1.06);
}

.lightbox-prev {
  left: 17px;
}

.lightbox-next {
  right: 17px;
}

.lightbox-thumbs {
  display: flex;
  justify-content: center;
  gap: 9px;
  padding-top: 11px;
}

.lightbox-thumb {
  width: min(16vw, 145px);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(132, 159, 231, 0.17);
  border-radius: 7px;
  background: #0b0e20;
  cursor: pointer;
  opacity: 0.47;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    opacity 0.22s ease,
    transform 0.22s ease;
}

.lightbox-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox-thumb:hover,
.lightbox-thumb.active {
  border-color: rgba(111, 187, 255, 0.68);
  box-shadow: 0 0 21px rgba(61, 121, 255, 0.19);
  opacity: 1;
  transform: translateY(-2px);
}

.chat-window {
  overflow: hidden;
  border-color: rgba(126, 154, 242, 0.22);
  background:
    linear-gradient(160deg, rgba(24, 29, 64, 0.76), rgba(10, 12, 31, 0.86)),
    var(--panel-solid);
  box-shadow:
    0 24px 75px rgba(1, 3, 18, 0.39),
    0 0 65px rgba(79, 64, 220, 0.09);
}

.chat-header {
  gap: 13px;
  padding: 18px 21px;
  border-bottom: 1px solid rgba(154, 176, 241, 0.1);
}

.chat-avatar {
  position: relative;
  width: 40px;
  height: 40px;
  overflow: hidden;
  flex: 0 0 auto;
  border: 1px solid rgba(115, 163, 255, 0.39);
  border-radius: 50%;
  background-image: url("assets/talknpc-hero.png");
  background-position: 76% 24%;
  background-size: 330px;
}

.chat-avatar span {
  position: absolute;
  right: 1px;
  bottom: 1px;
  width: 8px;
  height: 8px;
  border: 1px solid #10152e;
  border-radius: 50%;
  background: var(--green);
}

.chat-name {
  color: #dbe6ff;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.chat-presence {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 3px;
  color: #7d8daa;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.chat-presence i {
  display: inline-block;
  width: 5px;
  height: 5px;
}

.chat-header-actions {
  display: flex;
  gap: 4px;
  margin-left: auto;
}

.chat-header-actions span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #64708f;
}

.chat-body {
  display: flex;
  min-height: 460px;
  padding: 18px 20px 21px;
  flex-direction: column;
  gap: 12px;
}

.chat-time {
  align-self: center;
  margin-bottom: 4px;
  color: #687591;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.message {
  max-width: 86%;
  padding: 10px 13px 11px;
  border-radius: 12px;
}

.message-author {
  display: block;
  margin-bottom: 4px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.message p {
  margin: 0;
  font-size: 11px;
  line-height: 1.66;
}

.message-player {
  align-self: flex-end;
  border: 1px solid rgba(112, 135, 255, 0.21);
  border-bottom-right-radius: 3px;
  background: linear-gradient(135deg, rgba(72, 78, 203, 0.35), rgba(93, 60, 183, 0.27));
}

.message-player .message-author {
  color: #9f9eff;
}

.message-player p {
  color: #d7daf2;
}

.message-npc {
  align-self: flex-start;
  border: 1px solid rgba(102, 173, 255, 0.17);
  border-bottom-left-radius: 3px;
  background: rgba(31, 63, 106, 0.24);
}

.message-npc .message-author {
  color: #70bfff;
}

.message-npc p {
  color: #b9c8dc;
}

.chat-input {
  gap: 10px;
  margin: 0 14px 14px;
  padding: 9px 10px 9px 13px;
  border: 1px solid rgba(128, 158, 235, 0.16);
  border-radius: 10px;
  color: #64728e;
  background: rgba(8, 11, 28, 0.54);
  font-size: 11px;
}

.chat-input > svg {
  width: 17px;
  fill: none;
  stroke: #6985b8;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.chat-input button {
  display: grid;
  width: 29px;
  height: 29px;
  margin-left: auto;
  border: 0;
  border-radius: 8px;
  color: white;
  background: linear-gradient(135deg, #3f9aff, #705cf3);
  cursor: pointer;
  place-items: center;
  transition: transform 0.2s ease;
}

.chat-input button:hover {
  transform: scale(1.08);
}

.chat-input button svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.advantages-section {
  padding-top: 132px;
  padding-bottom: 75px;
}

.advantages-layout {
  align-items: start;
  padding: 47px 53px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 11% 14%, rgba(59, 120, 246, 0.13), transparent 19rem),
    linear-gradient(145deg, rgba(19, 23, 52, 0.74), rgba(10, 12, 29, 0.58));
}

.advantage-list {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px 25px;
  list-style: none;
}

.advantage-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 52px;
  color: #bec8dc;
  font-size: 13px;
  font-weight: 700;
}

.check-icon {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border: 1px solid rgba(82, 211, 174, 0.25);
  border-radius: 50%;
  background: rgba(51, 171, 156, 0.1);
  place-items: center;
}

.check-icon svg {
  width: 16px;
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.games-section {
  padding-top: 102px;
}

.games-section .section-heading p {
  max-width: 540px;
  margin-inline: auto;
}

.games-grid {
  display: grid;
  margin-top: 48px;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.game-card {
  display: flex;
  min-height: 100px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(14, 17, 38, 0.52);
  align-items: center;
  gap: 13px;
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease;
}

.game-card:hover {
  border-color: rgba(110, 151, 255, 0.39);
  background: rgba(21, 28, 64, 0.67);
  transform: translateY(-4px);
}

.game-sigil {
  display: grid;
  width: 49px;
  height: 49px;
  flex: 0 0 auto;
  border: 1px solid rgba(115, 150, 235, 0.24);
  border-radius: 11px;
  color: #8daaf1;
  background: linear-gradient(135deg, rgba(59, 119, 234, 0.15), rgba(107, 59, 217, 0.11));
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 19px;
  font-weight: 700;
  place-items: center;
}

.game-card strong {
  display: block;
  color: #c8d2e7;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.35px;
}

.game-card small {
  display: block;
  margin-top: 3px;
  color: #697592;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.games-note {
  margin: 26px 0 0;
  color: #7c88a5;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-align: center;
  text-transform: uppercase;
}

.games-note::before,
.games-note::after {
  display: inline-block;
  width: 25px;
  height: 1px;
  margin: 0 12px 4px;
  background: rgba(115, 149, 234, 0.34);
  content: "";
}

.faq-section {
  padding-top: 144px;
  padding-bottom: 132px;
}

.faq-layout {
  align-items: start;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 21px 0;
  color: #d6def0;
  cursor: pointer;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.3px;
  list-style: none;
  transition: color 0.25s ease;
}

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

.faq-item summary:hover,
.faq-item[open] summary {
  color: #80c6ff;
}

.faq-item summary span {
  position: relative;
  width: 17px;
  height: 17px;
}

.faq-item summary span::before,
.faq-item summary span::after {
  position: absolute;
  top: 8px;
  right: 0;
  left: 0;
  height: 1px;
  background: #7ca9ed;
  content: "";
  transition: transform 0.25s ease;
}

.faq-item summary span::after {
  transform: rotate(90deg);
}

.faq-item[open] summary span::after {
  transform: rotate(0);
}

.faq-item p {
  max-width: 590px;
  margin-bottom: 22px;
  color: #8f99b2;
  font-size: 13px;
  line-height: 1.75;
}

.final-cta {
  overflow: hidden;
  padding: 128px 0 134px;
  border-top: 1px solid rgba(112, 144, 229, 0.12);
  border-bottom: 1px solid rgba(112, 144, 229, 0.12);
  background: #080a1a;
}

.cta-grid,
.cta-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-grid {
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(102, 132, 216, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 132, 216, 0.08) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(circle, black 10%, transparent 69%);
}

.cta-glow {
  background: radial-gradient(circle at center, rgba(79, 76, 244, 0.19), transparent 45%);
}

.final-inner {
  position: relative;
  text-align: center;
}

.final-inner h2 {
  margin-bottom: 20px;
  font-size: clamp(46px, 5.2vw, 72px);
}

.final-inner p {
  max-width: 540px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.cta-button {
  min-height: 61px;
  padding-inline: 26px;
}

.cta-note {
  display: block;
  margin-top: 16px;
  color: #79839c;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.site-footer {
  padding: 25px 0;
  background: var(--bg-deep);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner .brand {
  font-size: 16px;
}

.footer-inner .brand-mark {
  width: 35px;
  height: 31px;
}

.footer-inner p,
.footer-links {
  color: #65708a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.footer-inner p {
  margin: 0 auto 0 12px;
}

.footer-links {
  display: flex;
  gap: 19px;
}

.footer-links a {
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #a8baff;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s ease var(--delay, 0ms),
    transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1) var(--delay, 0ms);
}

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

@keyframes hero-drift {
  from {
    transform: scale(1.035) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.065) translate3d(-0.6%, -0.35%, 0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.84);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes wave {
  from {
    transform: scaleY(0.55);
  }

  to {
    transform: scaleY(1.15);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

@keyframes orbit {
  from {
    rotate: 0deg;
  }

  to {
    rotate: 360deg;
  }
}

@keyframes scroll-down {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  35% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}

@media (max-width: 1240px) {
  .hero-copy {
    max-width: 590px;
  }

  .hero-screenshots {
    width: 390px;
  }
}

@media (max-width: 1080px) {
  .hero {
    min-height: 790px;
  }

  .hero-inner {
    min-height: 790px;
  }

  .hero-art {
    background-image:
      linear-gradient(90deg, #070816 0%, rgba(7, 8, 22, 0.94) 26%, rgba(7, 8, 22, 0.57) 65%, rgba(7, 8, 22, 0.28) 100%),
      url("assets/talknpc-hero.png");
    background-position: center, 58% center;
  }

  .hero-copy {
    max-width: 630px;
  }

  .hero-screenshots {
    display: none;
  }

  .hero-status {
    right: 2%;
  }

  .hero-orb {
    right: 22%;
  }

  .demo-layout,
  .faq-layout {
    gap: 48px;
  }

  .advantages-layout {
    gap: 45px;
    padding-inline: 40px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-h: 68px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .desktop-nav,
  .header-download {
    display: none;
  }

  .menu-toggle {
    display: flex;
    width: 41px;
    height: 41px;
    padding: 0;
    border: 1px solid rgba(139, 163, 231, 0.19);
    border-radius: 10px;
    background: rgba(15, 20, 44, 0.53);
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }

  .menu-toggle span {
    width: 16px;
    height: 1px;
    background: #bdc9df;
    transition:
      transform 0.25s ease,
      opacity 0.25s ease;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .mobile-nav {
    position: absolute;
    top: calc(var(--header-h) + 8px);
    right: 16px;
    left: 16px;
    display: flex;
    padding: 11px;
    border: 1px solid rgba(141, 165, 232, 0.18);
    border-radius: 16px;
    background: rgba(8, 10, 27, 0.94);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.27);
    backdrop-filter: blur(24px);
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-9px);
    transition:
      opacity 0.25s ease,
      transform 0.25s ease;
  }

  .mobile-nav.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav a {
    padding: 12px 10px;
    border-radius: 8px;
    color: #c1cce0;
    font-size: 13px;
    font-weight: 700;
  }

  .mobile-nav a:hover {
    color: white;
    background: rgba(82, 111, 207, 0.13);
  }

  .hero,
  .hero-inner {
    min-height: 790px;
  }

  .hero-copy {
    max-width: 590px;
  }

  h1 {
    letter-spacing: -3.3px;
  }

  .hero-lead {
    max-width: 500px;
  }

  .hero-status {
    right: 4%;
    bottom: 7%;
    width: 245px;
    opacity: 0.78;
  }

  .hero-orb {
    right: 25%;
    bottom: 30%;
  }

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

  .steps-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 15px;
  }

  .steps-list::before {
    display: none;
  }

  .demo-layout,
  .faq-layout,
  .advantages-layout {
    grid-template-columns: 1fr;
  }

  .demo-layout {
    gap: 35px;
  }

  .stage-control {
    opacity: 1;
  }

  .stage-open {
    opacity: 1;
  }

  .advantages-layout {
    gap: 17px;
  }

  .faq-layout {
    gap: 35px;
  }

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

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .hero,
  .hero-inner {
    min-height: 790px;
  }

  .hero-inner {
    align-items: flex-start;
    padding-top: 124px;
  }

  .hero-copy {
    width: 100%;
    min-width: 0;
  }

  .hero-art {
    background-image:
      linear-gradient(180deg, rgba(7, 8, 22, 0.88) 0%, rgba(7, 8, 22, 0.64) 38%, rgba(7, 8, 22, 0.25) 64%, var(--bg) 100%),
      linear-gradient(90deg, rgba(7, 8, 22, 0.78), rgba(7, 8, 22, 0.18)),
      url("assets/talknpc-hero.png");
    background-position: center, center, 63% center;
    background-size: cover;
  }

  .eyebrow {
    font-size: 9px;
    letter-spacing: 1.45px;
  }

  h1 {
    max-width: 360px;
    margin-bottom: 18px;
    padding-top: 18px;
    font-size: clamp(42px, 13vw, 58px);
    letter-spacing: -3.1px;
  }

  .hero-lead {
    max-width: 100%;
    margin-bottom: 27px;
    font-size: 15px;
    line-height: 1.65;
  }

  .button {
    min-height: 53px;
    padding-inline: 18px;
    font-size: 12px;
  }

  .hero-actions {
    gap: 9px;
  }

  .hero-offer {
    gap: 11px;
    margin-top: 16px;
    padding: 9px 10px;
  }

  .hero-offer-old-price,
  .hero-offer-timer span {
    font-size: 9px;
    letter-spacing: 0.45px;
  }

  .hero-offer-price strong {
    font-size: 14px;
  }

  .hero-offer-timer {
    padding-left: 11px;
  }

  .hero-offer-timer time {
    font-size: 20px;
  }

  .hero-meta {
    gap: 13px;
    margin-top: 20px;
  }

  .hero-offer + .hero-meta {
    margin-top: 16px;
  }

  .hero-meta span {
    font-size: 9px;
  }

  .hero-status {
    display: none;
  }

  .hero-orb {
    right: 29%;
    bottom: 22%;
    width: 80px;
    height: 80px;
  }

  .scroll-hint {
    display: none;
  }

  .section {
    padding: 88px 0;
  }

  h2 {
    padding-top: 10px;
    font-size: clamp(37px, 11.5vw, 51px);
    letter-spacing: -2.8px;
  }

  .section-heading p,
  .demo-copy > p {
    font-size: 14px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 32px;
  }

  .feature-card {
    min-height: auto;
    padding: 19px 20px 19px 77px;
  }

  .icon-box {
    position: absolute;
    top: 21px;
    left: 18px;
    width: 43px;
    height: 43px;
    margin: 0;
  }

  .icon-box svg {
    width: 20px;
  }

  .card-index {
    top: 19px;
    right: 18px;
  }

  .feature-card h3 {
    margin-bottom: 5px;
    font-size: 16px;
  }

  .feature-card p {
    font-size: 12px;
    line-height: 1.65;
  }

  .how-section {
    padding-top: 88px;
  }

  .steps-list {
    margin-top: 45px;
    gap: 39px 5px;
  }

  .step {
    padding-inline: 8px;
  }

  .step-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 17px;
    box-shadow:
      0 0 0 6px rgba(9, 11, 29, 0.9),
      0 0 35px rgba(54, 109, 248, 0.11);
  }

  .step-icon svg {
    width: 20px;
  }

  .step-number {
    top: -15px;
    left: calc(50% + 21px);
    font-size: 9px;
  }

  .step h3 {
    margin-bottom: 5px;
    font-size: 14px;
  }

  .step p {
    font-size: 11px;
  }

  .demo-section {
    padding-top: 101px;
  }

  .demo-copy > p {
    margin-bottom: 22px;
  }

  .demo-stats {
    gap: 32px;
  }

  .demo-stats strong {
    font-size: 24px;
  }

  .chat-header {
    padding: 13px 14px;
  }

  .screenshot-stage {
    border-radius: 14px;
  }

  .stage-topline {
    top: 10px;
    right: 11px;
    left: 11px;
    font-size: 7px;
  }

  .stage-caption {
    right: 11px;
    bottom: 10px;
    left: 11px;
  }

  .stage-caption span {
    margin-bottom: 2px;
    font-size: 7px;
  }

  .stage-caption strong {
    max-width: 76%;
    font-size: 12px;
  }

  .stage-control {
    width: 27px;
    height: 27px;
  }

  .stage-control svg {
    width: 14px;
  }

  .stage-prev {
    left: 7px;
  }

  .stage-next {
    right: 7px;
  }

  .stage-open {
    top: 30px;
    right: 7px;
    width: 28px;
    height: 28px;
    border-radius: 8px;
  }

  .stage-open svg {
    width: 14px;
  }

  .screenshot-thumbs {
    margin-top: 8px;
    gap: 6px;
  }

  .screenshot-thumb {
    border-radius: 7px;
  }

  .screenshot-lightbox {
    padding: 8px;
  }

  .lightbox-shell {
    width: calc(100vw - 16px);
    max-height: calc(100vh - 16px);
    padding: 7px;
    border-radius: 14px;
  }

  .lightbox-topline {
    min-height: 31px;
    padding: 1px 39px 7px 4px;
    font-size: 8px;
  }

  .lightbox-close {
    top: 4px;
    right: 4px;
    width: 28px;
    height: 28px;
    border-radius: 8px;
  }

  .lightbox-stage {
    max-height: calc(100vh - 115px);
    border-radius: 9px;
  }

  .lightbox-image {
    max-height: calc(100vh - 115px);
  }

  .lightbox-control {
    width: 36px;
    height: 36px;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }

  .lightbox-thumb {
    width: 22vw;
    border-radius: 5px;
  }

  .chat-body {
    min-height: auto;
    padding: 14px;
    gap: 10px;
  }

  .message {
    max-width: 94%;
    padding: 8px 10px 9px;
  }

  .message p {
    font-size: 10px;
    line-height: 1.58;
  }

  .chat-input {
    margin: 0 10px 10px;
    font-size: 10px;
  }

  .advantages-section {
    padding-top: 72px;
    padding-bottom: 31px;
  }

  .advantages-layout {
    padding: 27px 19px;
    border-radius: 19px;
  }

  .advantage-list {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .advantage-list li {
    min-height: 42px;
    font-size: 12px;
  }

  .games-section {
    padding-top: 78px;
  }

  .games-grid {
    margin-top: 31px;
    gap: 8px;
  }

  .game-card {
    min-height: 86px;
    padding: 11px;
    gap: 9px;
  }

  .game-sigil {
    width: 37px;
    height: 37px;
    border-radius: 8px;
    font-size: 15px;
  }

  .game-card strong {
    font-size: 10px;
  }

  .game-card small {
    margin-top: 2px;
    font-size: 7px;
    letter-spacing: 0.4px;
  }

  .games-note {
    margin-top: 20px;
    font-size: 9px;
  }

  .games-note::before,
  .games-note::after {
    width: 12px;
    margin-inline: 7px;
  }

  .faq-section {
    padding-top: 100px;
    padding-bottom: 92px;
  }

  .faq-item summary {
    padding: 17px 0;
    font-size: 14px;
  }

  .faq-item p {
    margin-bottom: 18px;
    font-size: 12px;
  }

  .final-cta {
    padding: 96px 0 102px;
  }

  .final-inner h2 {
    font-size: clamp(40px, 12.3vw, 57px);
  }

  .final-inner p {
    font-size: 14px;
  }

  .footer-inner {
    flex-wrap: wrap;
  }

  .footer-inner p {
    width: 100%;
    margin: 0;
    order: 3;
  }

  .footer-links {
    margin-left: auto;
    font-size: 9px;
  }

  .footer-links a:first-child {
    display: none;
  }

  .cursor-glow {
    display: none;
  }
}

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