@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Syne:wght@700;800&display=swap');

:root {
  --bg: #06060f;
  --bg-deep: #04040b;
  --bg-elevated: rgba(124, 92, 246, 0.05);
  --bg-elevated-strong: rgba(124, 92, 246, 0.09);
  --bg-panel: rgba(10, 10, 24, 0.9);
  --bg-panel-soft: rgba(8, 8, 20, 0.92);
  --border-soft: rgba(125, 211, 252, 0.1);
  --border: rgba(148, 163, 253, 0.16);
  --border-strong: rgba(148, 163, 253, 0.28);
  --text: rgba(255, 255, 255, 0.98);
  --text-soft: rgba(226, 232, 255, 0.66);
  --text-muted: rgba(203, 213, 255, 0.46);
  --text-faint: rgba(203, 213, 255, 0.3);
  --accent: #7c5cff;
  --accent-2: #22d3ee;
  --accent-3: #f472b6;
  --accent-bright: #a5b4fc;
  --accent-deep: #140a2e;
  --accent-soft: rgba(124, 92, 246, 0.18);
  --accent-border: rgba(148, 163, 253, 0.3);
  --accent-glow: rgba(124, 92, 246, 0.5);
  --gradient-brand: linear-gradient(120deg, #a78bfa 0%, #818cf8 32%, #38bdf8 68%, #22d3ee 100%);
  --gradient-brand-soft: linear-gradient(120deg, rgba(167, 139, 250, 0.22), rgba(56, 189, 248, 0.22));
  --gradient-warm: linear-gradient(120deg, #c084fc 0%, #f472b6 55%, #fb7185 100%);
  --gradient-button: linear-gradient(135deg, #8b5cf6 0%, #6366f1 45%, #38bdf8 100%);
  --shadow-lg: 0 30px 80px rgba(5, 4, 20, 0.75);
  --shadow-md: 0 12px 40px rgba(8, 6, 28, 0.5);
  --shadow-soft: 0 6px 28px rgba(10, 8, 30, 0.4);
  --shadow-glow: 0 18px 48px rgba(124, 92, 246, 0.4);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1200px, calc(100% - 3rem));
  --font-sans: 'Inter', sans-serif;
  --font-display: 'Syne', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.stars-canvas {
  display: none;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background:
    radial-gradient(circle at 50% -8%, rgba(124, 92, 246, 0.22), transparent 36rem),
    radial-gradient(circle at 100% 0%, rgba(34, 211, 238, 0.12), transparent 34rem),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  background-attachment: fixed;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: fixed;
  inset: -20% -10% auto -10%;
  height: 70vh;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(42% 55% at 18% 22%, rgba(139, 92, 246, 0.28), transparent 70%),
    radial-gradient(38% 50% at 82% 12%, rgba(56, 189, 248, 0.22), transparent 72%),
    radial-gradient(46% 58% at 55% 38%, rgba(244, 114, 182, 0.16), transparent 74%);
  filter: blur(30px);
  opacity: 0.85;
  animation: aurora-drift 22s ease-in-out infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 72%);
  opacity: 0.5;
}

@keyframes aurora-drift {
  0% { transform: translate3d(-3%, -2%, 0) scale(1); }
  50% { transform: translate3d(4%, 3%, 0) scale(1.08); }
  100% { transform: translate3d(-2%, 4%, 0) scale(1.04); }
}

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

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.18);
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 8rem 0;
}

.section--compact {
  padding: 5rem 0;
}

.section-divider {
  border-block: 1px solid var(--border-soft);
}

.section__head {
  max-width: 42rem;
}

.section__head--center {
  max-width: 46rem;
  text-align: center;
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  color: #a5b4fc;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after {
  content: '';
  width: 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(148, 163, 253, 0.6));
}

.eyebrow--left::after {
  display: none;
}

.eyebrow--left::before {
  width: 2rem;
}

.eyebrow--left {
  gap: 0.75rem;
}

.text-glow-white {
  text-shadow: none;
}

.text-glow-subtle {
  text-shadow: none;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.glass-panel--strong {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.glass-panel--soft {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3.25rem;
  padding: 0.9rem 1.15rem;
  border: 0;
  border-radius: 0.95rem;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.25s ease,
    opacity 0.2s ease;
  cursor: pointer;
  user-select: none;
}

.btn:focus-visible,
.nav-link:focus-visible,
.lang-trigger:focus-visible,
.lang-option:focus-visible,
.mobile-toggle:focus-visible,
.join-trigger:focus-visible,
.discord-button:focus-visible,
.faq-question:focus-visible,
.icon-button:focus-visible,
.room-back:focus-visible,
.room-download:focus-visible {
  outline: 2px solid rgba(125, 211, 252, 0.78);
  outline-offset: 3px;
}

.btn--primary {
  position: relative;
  background: var(--gradient-button);
  background-size: 180% 180%;
  background-position: 0% 50%;
  color: #fff;
  box-shadow: 0 10px 28px rgba(124, 92, 246, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.25s ease,
    background-position 0.5s ease;
}

.btn--primary:hover {
  transform: translateY(-2px);
  background-position: 100% 50%;
  box-shadow: 0 16px 40px rgba(124, 92, 246, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn--secondary:hover {
  transform: translateY(-1px);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.36);
}

.btn--pill {
  min-height: 2.75rem;
  padding-inline: 1.4rem;
  border-radius: 0.9rem;
}

.btn--discord {
  background: #5865f2;
  color: #fff;
  font-weight: 800;
  border: 0;
  box-shadow: 0 10px 26px rgba(88, 101, 242, 0.24);
}

.btn--discord:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(88, 101, 242, 0.32);
}

.btn[data-mobile-join] {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(2, 2, 3, 0.96);
  color: #fff;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.icon {
  display: inline-flex;
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  color: currentColor;
}

.icon--xs {
  width: 0.85rem;
  height: 0.85rem;
}

.icon--sm {
  width: 1rem;
  height: 1rem;
}

.icon--md {
  width: 1.15rem;
  height: 1.15rem;
}

.icon--lg {
  width: 1.4rem;
  height: 1.4rem;
}

.icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

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

.brand-logo {
  width: 1.55rem;
  height: 1.55rem;
  object-fit: contain;
  flex: 0 0 auto;
  filter: hue-rotate(112deg) saturate(1.15) drop-shadow(0 0 10px rgba(124, 92, 246, 0.5));
}

.brand-wordmark {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  background: var(--gradient-brand);
  background-size: 180% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.site-header {
  position: fixed;
  top: 1rem;
  left: 50%;
  right: auto;
  z-index: 50;
  width: min(67.5rem, calc(100% - 1rem));
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(5, 5, 6, 0.92);
  backdrop-filter: blur(24px) saturate(1.1);
  -webkit-backdrop-filter: blur(24px) saturate(1.1);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    top 0.32s ease,
    width 0.32s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.32s ease;
}

.site-header.is-scrolled {
  top: 0.55rem;
  width: min(59.5rem, calc(100% - 1.5rem));
  background: rgba(5, 5, 6, 0.96);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 18px 58px rgba(0, 0, 0, 0.62),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.header-inner {
  width: 100%;
  height: 3.55rem;
  padding-inline: 1.25rem 0.55rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition:
    height 0.32s ease,
    padding 0.32s ease;
}

.site-header.is-scrolled .header-inner {
  height: 3rem;
  padding-inline: 1.05rem 0.45rem;
}

.site-header .container {
  width: 100%;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.55rem;
  margin-left: 1rem;
  margin-right: auto;
}

.nav-link {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #fff;
}

.lang-picker,
.join-shell {
  position: relative;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.lang-trigger,
.join-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 0.95rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
}

.lang-trigger {
  padding: 0.45rem 0.7rem;
  gap: 0.35rem;
  border: none;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.lang-trigger:hover {
  color: #fff;
}

.lang-trigger__flag {
  flex: 0 0 auto;
}

.lang-flag {
  display: block;
  width: 1.35rem;
  height: 0.9rem;
  border-radius: 0.18rem;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.lang-trigger__chevron {
  transition: transform 0.2s ease;
}

.lang-picker.is-open .lang-trigger__chevron {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 0;
  min-width: 10rem;
  padding: 0.4rem;
  border-radius: 1rem;
  background: rgba(12, 12, 12, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateY(0.45rem) scale(0.96);
  pointer-events: none;
  transition:
    opacity 0.16s ease,
    transform 0.16s ease;
}

.lang-picker.is-open .lang-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.7rem 0.85rem;
  border-radius: 0.75rem;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.52);
  text-align: left;
  font-size: 0.8125rem;
  cursor: pointer;
  transition:
    color 0.15s ease,
    background-color 0.15s ease;
}

.lang-option:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.lang-option.is-selected {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.lang-option__flag {
  width: 1.45rem;
  height: 0.96rem;
}

.join-trigger {
  color: #fff;
  border: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(2, 2, 3, 0.96);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-weight: 800;
}

.join-trigger:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05)),
    rgba(8, 8, 10, 0.98);
}

.discord-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.65rem;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: #5865f2;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.discord-button:hover {
  transform: translateY(-1px);
  background: #4752c4;
  border-color: rgba(255, 255, 255, 0.18);
}

.join-panel {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  width: 20rem;
  padding: 1.15rem;
  border-radius: 1.25rem;
  background: var(--bg-panel);
  backdrop-filter: blur(36px);
  -webkit-backdrop-filter: blur(36px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateY(0.5rem) scale(0.96);
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.join-shell.is-open .join-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.join-panel__title {
  margin: 0 0 0.85rem;
  font-size: 0.8125rem;
  font-weight: 700;
}

.join-state {
  display: none;
}

.join-state.is-active {
  display: block;
}

.join-form {
  display: flex;
  gap: 0.5rem;
}

.join-input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.7rem 0.85rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  letter-spacing: 0.08em;
  font-size: 0.8125rem;
  font-family: monospace;
  text-transform: uppercase;
}

.join-input::placeholder {
  color: rgba(255, 255, 255, 0.22);
}

.join-input:disabled {
  opacity: 0.6;
  cursor: progress;
}

.join-submit {
  border: 0;
  border-radius: 0.85rem;
  background: var(--gradient-button);
  background-size: 160% 160%;
  color: #fff;
  padding: 0.7rem 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(124, 92, 246, 0.4);
  transition: transform 0.15s ease, box-shadow 0.2s ease, background-position 0.4s ease;
}

.join-submit:hover {
  transform: translateY(-1px);
  background-position: 100% 50%;
  box-shadow: 0 12px 30px rgba(124, 92, 246, 0.55);
}

.join-invalid {
  margin: 0.55rem 0 0;
  font-size: 0.6875rem;
  color: #fb7185;
}

.join-checking {
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  padding: 1.2rem 0 0.5rem;
  text-align: center;
}

.join-checking__spinner {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.join-checking__spinner span {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgba(125, 211, 252, 0.72);
  animation: dot-bounce 1.2s ease-in-out infinite;
}

.join-checking__spinner span:nth-child(1) { animation-delay: 0s; }
.join-checking__spinner span:nth-child(2) { animation-delay: 0.2s; }
.join-checking__spinner span:nth-child(3) { animation-delay: 0.4s; }

@keyframes dot-bounce {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.35; }
  40%            { transform: scale(1);   opacity: 1; }
}

.join-checking__label {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.join-found {
  place-items: center;
  gap: 0.75rem;
  padding: 0.2rem 0 0.1rem;
  text-align: center;
}

.join-found__icon {
  width: 2rem;
  height: 2rem;
  color: var(--accent-bright);
  filter: drop-shadow(0 0 8px var(--accent-glow));
}

.join-found__title {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent-bright);
}

.join-found__download {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.25rem;
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.4);
}

.join-linkbox {
  width: 100%;
  margin-top: 0.2rem;
  padding: 0.8rem;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.join-linkbox__label {
  margin: 0 0 0.45rem;
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.join-linkbox__row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.join-state.is-active.join-checking {
  display: flex;
}

.join-state.is-active.join-found {
  display: grid;
}

.join-state.is-active.join-form-state {
  display: block;
}

.join-linkbox__text {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.55);
  font-family: monospace;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.icon-button {
  width: 1.4rem;
  height: 1.4rem;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 0.45rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.icon-button:hover {
  background: rgba(255, 255, 255, 0.08);
}

.icon-button.is-copied {
  color: var(--accent-bright);
}

.mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  border-radius: 0.75rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
}

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(2, 10, 6, 0.92);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-0.4rem);
  transition:
    max-height 0.25s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}

.mobile-menu.is-open {
  max-height: 28rem;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu__inner {
  padding: 1rem 0 1.25rem;
}

.mobile-menu__links {
  display: grid;
  gap: 0.85rem;
  padding-bottom: 1rem;
}

.mobile-menu__langs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-lang {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.75rem;
  border-radius: 0.7rem;
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.75rem;
  cursor: pointer;
}

.mobile-lang.is-selected {
  background: rgba(124, 92, 246, 0.14);
  color: #e0e7ff;
}

.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6.25rem 0 2rem;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  display: none;
  position: absolute;
  top: 62%;
  width: min(22vw, 22rem);
  height: 3.6rem;
  border-radius: 0;
  filter: blur(7px);
  opacity: 0.68;
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  left: 0;
  background: linear-gradient(
    90deg,
    rgba(125, 211, 252, 0.18) 0%,
    rgba(124, 92, 246, 0.09) 34%,
    rgba(124, 92, 246, 0.025) 68%,
    transparent 100%
  );
}

.hero::after {
  right: 0;
  background: linear-gradient(
    270deg,
    rgba(125, 211, 252, 0.18) 0%,
    rgba(124, 92, 246, 0.09) 34%,
    rgba(124, 92, 246, 0.025) 68%,
    transparent 100%
  );
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__bg::before,
.hero__bg::after {
  content: "";
  position: absolute;
  top: -16rem;
  width: 12rem;
  height: 54rem;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(125, 211, 252, 0.28) 0%,
    rgba(124, 92, 246, 0.13) 34%,
    rgba(124, 92, 246, 0.035) 64%,
    transparent 90%
  );
  filter: blur(18px);
  opacity: 0.9;
}

.hero__bg::before {
  left: 0;
  transform: rotate(-32deg);
  transform-origin: top center;
}

.hero__bg::after {
  right: 0;
  transform: rotate(32deg);
  transform-origin: top center;
}

.hero__orb {
  display: none;
}

.hero__orb--1 {
  top: 8%;
  left: 5%;
  width: 31rem;
  height: 31rem;
  background: rgba(255, 255, 255, 0.035);
}

.hero__orb--2 {
  top: 18%;
  right: 5%;
  width: 26rem;
  height: 26rem;
  background: rgba(255, 255, 255, 0.03);
  animation: pulseGlow 3s ease-in-out infinite;
  animation-delay: 1s;
}

.hero__orb--3 {
  bottom: 9%;
  left: 28%;
  width: 24rem;
  height: 18rem;
  background: rgba(255, 255, 255, 0.022);
}

.hero__orb--4 {
  top: 50%;
  left: 50%;
  width: 48rem;
  height: 30rem;
  transform: translate(-50%, -60%);
  background: rgba(255, 255, 255, 0.028);
  filter: blur(120px);
}

.hero__fade {
  display: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 48rem;
  margin-inline: auto;
  text-align: center;
}

.hero__title {
  margin: 1.5rem 0 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6.5vw, 4.75rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.hero__title-subtle {
  background: var(--gradient-brand);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: gradient-pan 6s linear infinite;
}

@keyframes gradient-pan {
  to { background-position: 220% center; }
}

.hero__subtitle {
  max-width: 40rem;
  margin: 0 auto 2.1rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: clamp(0.875rem, 1.8vw, 1.125rem);
  line-height: 1.65;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem 1.8rem;
}

.hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
}

.hero__trust-item .icon {
  width: 0.85rem;
  height: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
}

.hero__preview {
  position: relative;
  z-index: 1;
  margin-top: 5rem;
  max-width: 56rem;
  width: 100%;
  margin-inline: auto;
  animation: float 5s ease-in-out infinite;
}

.video-features {
  padding-top: 0;
  background: transparent;
}

.video-features__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-auto-rows: minmax(0, auto);
  gap: 1rem 1.1rem;
  max-width: 56rem;
  margin-inline: auto;
}

.video-feature {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  min-height: 100%;
}

.video-feature:nth-child(3) {
  grid-column: 1 / -1;
  grid-row: auto;
  width: min(100%, calc(50% - 0.55rem));
  justify-self: center;
}

.video-feature--reverse .video-feature__media,
.video-feature--reverse .video-feature__copy {
  order: initial;
}

.video-feature__media {
  overflow: hidden;
  border-radius: 0.45rem;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.22);
}

.video-feature__video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-feature__copy {
  max-width: 24rem;
}

.video-feature__title {
  margin: 0 0 0.55rem;
  font-size: clamp(0.95rem, 1.55vw, 1.18rem);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: 0;
  color: #fff;
}

.video-feature__desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  line-height: 1.58;
}

.preview-window {
  overflow: hidden;
  border-radius: 1.4rem;
  background: rgba(3, 3, 4, 0.76);
  border: 1px solid rgba(125, 211, 252, 0.18);
  backdrop-filter: blur(26px) saturate(1.02);
  -webkit-backdrop-filter: blur(26px) saturate(1.02);
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.86),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 1px rgba(0, 0, 0, 0.9);
}

.preview-window__bar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.75rem 1rem;
  background: rgba(3, 13, 8, 0.96);
  border-bottom: 1px solid rgba(125, 211, 252, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.preview-window__dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.18);
}

.preview-window__dot:nth-child(1) {
  background: #ff5f57;
}

.preview-window__dot:nth-child(2) {
  background: #ffbd2e;
}

.preview-window__dot:nth-child(3) {
  background: #28c840;
}

.preview-stage {
  position: relative;
  aspect-ratio: 1619 / 972;
  overflow: hidden;
  background: rgba(3, 3, 4, 0.78);
}

.preview-stage__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.05) brightness(0.92);
}

.preview-stage__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(125, 211, 252, 0.1), transparent 24%),
    linear-gradient(to top, rgba(0, 0, 0, 0.34), transparent 48%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.32), transparent 18%, transparent 82%, rgba(0, 0, 0, 0.28));
  pointer-events: none;
}

.preview-stage__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.play-button {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(124, 92, 246, 0.18);
  border: 1px solid rgba(125, 211, 252, 0.34);
  box-shadow: 0 12px 34px rgba(124, 92, 246, 0.24);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.play-button__triangle {
  width: 0;
  height: 0;
  border-top: 0.5rem solid transparent;
  border-bottom: 0.5rem solid transparent;
  border-left: 0.9rem solid rgba(245, 243, 255, 0.95);
  margin-left: 0.15rem;
}

.preview-glow {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: -2rem;
  height: 4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  filter: blur(18px);
  z-index: -1;
}

.preview-glow--soft {
  bottom: -1rem;
  left: 50%;
  width: 50%;
  height: 2rem;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.052);
}

.platform-strip {
  position: relative;
  padding: 4rem 0;
  border-block: 1px solid var(--border-soft);
  overflow: hidden;
}

.platform-strip__label {
  margin-bottom: 1.75rem;
  text-align: center;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.22);
}

.platform-strip__edge {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8rem;
  z-index: 1;
  pointer-events: none;
}

.platform-strip__edge--left {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.platform-strip__edge--right {
  right: 0;
  background: linear-gradient(270deg, var(--bg), transparent);
}

.marquee {
  overflow: hidden;
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.marquee__item {
  display: inline-flex;
  align-items: center;
  opacity: 0.35;
  transition: opacity 0.3s ease;
  user-select: none;
}

.marquee__item:hover {
  opacity: 0.65;
}

.platform-logo {
  height: 1.6rem;
  width: auto;
}

.platform-logo--youtube {
  height: 1.75rem;
}

.features {
  position: relative;
  overflow: hidden;
}

.section__halo {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 56rem;
  height: 44rem;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.015);
  filter: blur(200px);
  pointer-events: none;
}

.hero__halo {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 60rem;
  height: 42rem;
  transform: translate(-50%, -60%);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  filter: blur(140px);
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.feature-card {
  position: relative;
  padding: 1.25rem;
  overflow: hidden;
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(40px) saturate(160%);
  -webkit-backdrop-filter: blur(40px) saturate(160%);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 0 0 0.5px rgba(255,255,255,0.05);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(148, 163, 253, 0.4);
  box-shadow: var(--shadow-md), 0 0 32px rgba(124, 92, 246, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.02);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

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

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(167, 139, 250, 0.9), rgba(56, 189, 248, 0.9), transparent);
  opacity: 0;
  transition: opacity 0.45s ease;
}

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

.feature-card__icon {
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 0.8rem;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.28), rgba(56, 189, 248, 0.22));
  border: 1px solid rgba(148, 163, 253, 0.28);
  color: #c7d2fe;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.2s ease;
}

.feature-card:hover .feature-card__icon {
  transform: scale(1.1) rotate(-3deg);
  color: #fff;
  box-shadow: 0 8px 22px rgba(124, 92, 246, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.feature-card__title {
  margin: 0 0 0.4rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.feature-card__desc {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.32);
}

.section__intro {
  margin-bottom: 2.5rem;
}

.section__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.section__title-muted {
  background: var(--gradient-brand);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: gradient-pan 7s linear infinite;
}

.section__desc {
  margin: 0;
  max-width: 31rem;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.875rem;
  line-height: 1.7;
}

.section__desc--center {
  margin-inline: auto;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.how-card {
  position: relative;
  padding: 1.4rem;
  overflow: hidden;
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(40px) saturate(160%);
  -webkit-backdrop-filter: blur(40px) saturate(160%);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 0 0 0.5px rgba(255,255,255,0.05);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.how-card:hover {
  transform: translateY(-4px);
  border-color: rgba(148, 163, 253, 0.4);
  box-shadow: var(--shadow-md), 0 0 32px rgba(56, 189, 248, 0.18);
}

.how-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.015);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.how-card:hover::before {
  opacity: 1;
}

.how-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.how-card__icon {
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  border-radius: 0.8rem;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.26), rgba(56, 189, 248, 0.2));
  border: 1px solid rgba(148, 163, 253, 0.26);
  color: #c7d2fe;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.how-card:hover .how-card__icon {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(124, 92, 246, 0.4);
}

.how-card__number {
  font-family: var(--font-display);
  font-size: 1.9rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  opacity: 0.28;
  transition: opacity 0.3s ease;
  user-select: none;
}

.how-card:hover .how-card__number {
  opacity: 0.85;
}

.how-card__title {
  margin: 0 0 0.45rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.how-card__desc {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.32);
}

.setup-card {
  overflow: hidden;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(40px) saturate(160%);
  -webkit-backdrop-filter: blur(40px) saturate(160%);
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 0 0 0.5px rgba(255,255,255,0.06);
}

.setup-card__topbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.setup-card__topbar-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.setup-card__topbar-label {
  margin-left: 0.2rem;
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.setup-list {
  display: grid;
  gap: 0;
}

.setup-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  transition: background-color 0.2s ease;
}

.setup-item:first-child {
  border-top: 0;
}

.setup-item:hover {
  background: rgba(255, 255, 255, 0.02);
}

.setup-item__number {
  width: 1.75rem;
  flex: 0 0 auto;
  padding-top: 0.05rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.setup-item__icon {
  width: 2.15rem;
  height: 2.15rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  margin-top: 0.05rem;
  border-radius: 0.8rem;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.24), rgba(56, 189, 248, 0.18));
  border: 1px solid rgba(148, 163, 253, 0.24);
  color: #c7d2fe;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.setup-item__content {
  min-width: 0;
}

.setup-item__title {
  margin: 0 0 0.35rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.setup-item__desc {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.35);
}

.cta {
  position: relative;
  overflow: visible;
}

.cta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta__bg::before,
.cta__bg::after {
  content: "";
  position: absolute;
  bottom: -12rem;
  width: 5.4rem;
  height: 46rem;
  border-radius: 0;
  background: linear-gradient(
    0deg,
    transparent 0%,
    rgba(125, 211, 252, 0.18) 16%,
    rgba(124, 92, 246, 0.09) 42%,
    rgba(124, 92, 246, 0.025) 68%,
    transparent 90%
  );
  filter: blur(7px);
  opacity: 0.68;
}

.cta__bg::before {
  left: -4.4rem;
  transform: rotate(32deg);
  transform-origin: bottom center;
}

.cta__bg::after {
  right: -4.4rem;
  transform: rotate(-32deg);
  transform-origin: bottom center;
}

.cta__orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(36px);
}

.cta__orb--1 {
  top: 50%;
  left: 50%;
  width: 16rem;
  height: 10rem;
  transform: translate(-50%, -50%);
  background: rgba(124, 92, 246, 0.055);
}

.cta__orb--2 {
  top: 50%;
  right: auto;
  left: 50%;
  width: 10rem;
  height: 6rem;
  transform: translate(-50%, -50%);
  background: rgba(125, 211, 252, 0.08);
}

.cta__orb--3 {
  top: 50%;
  left: 50%;
  width: 20rem;
  height: 12rem;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(125, 211, 252, 0.11) 0%, rgba(124, 92, 246, 0.035) 38%, transparent 68%);
}

.cta__content {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}

.cta__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.95rem;
  margin-bottom: 2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.cta__pill-text {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.cta__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 3.25rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.cta__subtitle {
  max-width: 34rem;
  margin: 0 auto 2rem;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.38);
}

.cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta__note {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.22);
  letter-spacing: 0.03em;
}

#faq {
  overflow: hidden;
}

#faq::before,
#faq::after {
  content: "";
  display: none;
  position: absolute;
  top: -20rem;
  width: 5.4rem;
  height: 32rem;
  border-radius: 0;
  background: linear-gradient(
    180deg,
    rgba(125, 211, 252, 0.11) 0%,
    rgba(124, 92, 246, 0.06) 32%,
    rgba(124, 92, 246, 0.018) 62%,
    transparent 92%
  );
  filter: blur(7px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

#faq::before {
  left: -4.4rem;
  transform: rotate(32deg);
  transform-origin: top center;
}

#faq::after {
  right: -4.4rem;
  transform: rotate(-32deg);
  transform-origin: top center;
}

.faq-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0.4rem 1.4rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(40px) saturate(160%);
  -webkit-backdrop-filter: blur(40px) saturate(160%);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 0 0 0.5px rgba(255,255,255,0.05);
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-question {
  width: 100%;
  padding: 1.1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.faq-question__text {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.45;
  transition: color 0.2s ease;
}

.faq-question:hover .faq-question__text,
.faq-item.is-open .faq-question__text {
  color: #fff;
}

.faq-question__toggle {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.35);
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.faq-item.is-open .faq-question__toggle {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 0.28s ease,
    opacity 0.28s ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-answer__inner {
  overflow: hidden;
}

.faq-answer__text {
  margin: 0;
  padding-bottom: 1.1rem;
  font-size: 0.8125rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.32);
}

.site-footer {
  border-top: 1px solid var(--border-soft);
  padding: 3rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-brand__copy {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.12);
}

.footer-brand__separator {
  width: 1px;
  height: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
}

.reveal {
  opacity: 0;
  transform: translateY(1.1rem);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

.reveal--x {
  transform: translateX(-0.85rem);
}

.reveal--x.is-visible {
  transform: translateX(0);
}

.reveal--scale {
  transform: translateY(0.8rem) scale(0.98);
}

.reveal--scale.is-visible {
  transform: translateY(0) scale(1);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.room-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5.5rem 1.5rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.room-shell::before,
.room-shell::after {
  content: "";
  position: absolute;
  top: 50%;
  width: min(22vw, 22rem);
  height: 3.6rem;
  border-radius: 0;
  filter: blur(7px);
  opacity: 0.24;
  pointer-events: none;
  z-index: 0;
}

.room-shell::before {
  left: 0;
  background: linear-gradient(
    90deg,
    rgba(125, 211, 252, 0.065) 0%,
    rgba(124, 92, 246, 0.028) 34%,
    rgba(124, 92, 246, 0.009) 68%,
    transparent 100%
  );
}

.room-shell::after {
  right: 0;
  background: linear-gradient(
    270deg,
    rgba(125, 211, 252, 0.065) 0%,
    rgba(124, 92, 246, 0.028) 34%,
    rgba(124, 92, 246, 0.009) 68%,
    transparent 100%
  );
}

.room-shell__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.room-shell__bg::before,
.room-shell__bg::after {
  content: "";
  position: absolute;
  top: -16rem;
  width: 12rem;
  height: 48rem;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(125, 211, 252, 0.07) 0%,
    rgba(124, 92, 246, 0.028) 34%,
    rgba(124, 92, 246, 0.009) 64%,
    transparent 90%
  );
  filter: blur(18px);
  opacity: 0.28;
}

.room-shell__bg::before {
  left: 0;
  transform: rotate(-32deg);
  transform-origin: top center;
}

.room-shell__bg::after {
  right: 0;
  transform: rotate(32deg);
  transform-origin: top center;
}

.room-shell__orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(72px);
}

.room-shell__orb--1 {
  top: 50%;
  left: 50%;
  width: 34rem;
  height: 24rem;
  transform: translate(-50%, -50%);
  background: rgba(124, 92, 246, 0.02);
}

.room-shell__orb--2 {
  top: 20%;
  right: 15%;
  width: 18rem;
  height: 18rem;
  background: rgba(125, 211, 252, 0.014);
}

.room-shell__orb--3 {
  bottom: 20%;
  left: 15%;
  width: 16rem;
  height: 16rem;
  background: rgba(124, 92, 246, 0.012);
}

.room-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1.5rem;
  background: rgba(2, 8, 5, 0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.room-nav .brand-wordmark {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.room-nav__discord {
  min-height: 2.35rem;
  padding: 0.55rem 0.85rem;
  font-size: 0.75rem;
}

.room-header {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  transform: none;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.room-header__inner {
  width: 100%;
  height: 4rem;
  justify-content: space-between;
  padding-inline: 1.5rem;
}

.room-header__actions {
  display: flex;
  margin-left: auto;
}

.room-card__logo {
  width: 3.65rem;
  height: 3.65rem;
  object-fit: contain;
  filter: hue-rotate(112deg) saturate(1.15) drop-shadow(0 0 14px rgba(124, 92, 246, 0.5));
}

.room-card {
  position: relative;
  z-index: 1;
  width: min(100%, 30rem);
  text-align: center;
}

.room-card__icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.75rem;
  display: grid;
  place-items: center;
  border-radius: 1.25rem;
  background: rgba(124, 92, 246, 0.08);
  border: 1px solid rgba(125, 211, 252, 0.18);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.room-card__icon .icon {
  width: 2.2rem;
  height: 2.2rem;
  color: rgba(224, 231, 255, 0.82);
}

.room-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.room-badge__dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.34);
}

.room-badge__text {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.room-title {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.room-title__muted {
  background: var(--gradient-brand);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: gradient-pan 7s linear infinite;
}

.room-copy {
  max-width: 25rem;
  margin: 0 auto 1.6rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.38);
}

.room-warning {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  margin-bottom: 1.6rem;
  text-align: left;
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.room-warning .icon {
  width: 0.95rem;
  height: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
  flex: 0 0 auto;
  margin-top: 0.2rem;
}

.room-warning__text {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.58);
}

.room-actions {
  display: grid;
  gap: 0.8rem;
}

.room-download,
.room-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.1rem;
  padding: 0.85rem 1.1rem;
  border-radius: 0.9rem;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.room-download {
  background: #fff;
  color: #050505;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  font-size: 0.875rem;
  font-weight: 700;
}

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

.room-back {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8125rem;
}

.room-back:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.room-note {
  margin-top: 1.75rem;
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.18);
}

.fade-top {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6rem;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.75), transparent);
  z-index: 2;
}

.fade-bottom {
  position: absolute;
  inset: auto 0 0 0;
  width: 100%;
  height: 5rem;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(5, 5, 5, 0.75), transparent);
  z-index: 2;
}

.is-hidden {
  display: none !important;
}

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

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.65;
  }
  50% {
    opacity: 1;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 1100px) {
  :root {
    --container: min(100%, calc(100% - 2rem));
  }

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

  .room-header__actions {
    display: flex;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    display: block;
  }

  .hero__preview {
    max-width: 48rem;
  }

  .video-feature,
  .video-feature--reverse {
    gap: 0.75rem;
  }

  .video-feature__copy {
    max-width: 42rem;
  }

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

@media (max-width: 767px) {
  :root {
    --container: min(100%, calc(100% - 1.5rem));
  }

  .section,
  .section--compact {
    padding: 4.5rem 0;
  }

  .hero {
    padding-top: 5rem;
    padding-bottom: 2.5rem;
    min-height: 82vh;
  }

  .hero__content {
    padding-inline: 0.25rem;
  }

  .hero__title {
    margin-top: 1.1rem;
    font-size: clamp(2.6rem, 11vw, 4rem);
  }

  .hero__sub {
    font-size: 0.9375rem;
    max-width: 30rem;
  }

  .hero__actions,
  .cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    min-height: 2.85rem;
    justify-content: center;
  }

  .btn,
  .room-download,
  .room-back {
    width: 100%;
  }

  .section__eyebrow {
    font-size: 0.575rem;
  }

  .section__title {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }

  .section__sub {
    font-size: 0.875rem;
  }

  .preview-window__title {
    font-size: 0.62rem;
  }

  .video-features__grid {
    grid-template-columns: 1fr;
    gap: 3.25rem;
  }

  .video-feature:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
  }

  .video-feature__title {
    font-size: clamp(1.25rem, 7vw, 1.75rem);
  }

  .video-feature__desc {
    font-size: 0.875rem;
  }

  .features-grid,
  .how-grid {
    grid-template-columns: 1fr;
  }

  .setup-item {
    padding: 1rem 1.1rem;
  }

  .faq-card {
    padding-inline: 1rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
    padding: 2rem 0;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-links {
    justify-content: center;
  }

  .site-header {
    top: 0.65rem;
    width: min(100% - 1rem, 46rem);
  }

  .room-header {
    top: 0;
    width: 100%;
  }

  .header-inner {
    gap: 0.75rem;
  }

  .room-header__inner {
    padding-inline: 1rem;
  }

  .cta__title {
    font-size: clamp(1.5rem, 7vw, 2.4rem);
  }
}

@media (max-width: 640px) {
  .hero__trust {
    gap: 0.75rem 0.9rem;
    justify-content: center;
  }

  .hero__preview {
    margin-top: 3rem;
  }

  .preview-window__bar {
    padding-inline: 0.75rem;
  }

  .platform-strip__edge {
    width: 5rem;
  }

  .lang-menu {
    min-width: 12rem;
  }

  .features-grid,
  .how-grid {
    gap: 0.6rem;
  }

  .mobile-menu__inner {
    padding: 0.85rem 0 1rem;
  }

  .mobile-menu__links {
    gap: 0.65rem;
  }
}

@media (max-width: 480px) {
  :root {
    --container: min(100%, calc(100% - 1.25rem));
  }

  .section,
  .section--compact {
    padding: 3.5rem 0;
  }

  .hero {
    padding-top: 4.5rem;
    padding-bottom: 2rem;
  }

  .hero__title {
    font-size: clamp(2.2rem, 13vw, 3.2rem);
  }

  .hero__sub {
    font-size: 0.875rem;
  }

  .hero__trust {
    gap: 0.6rem 0.75rem;
  }

  .hero__trust-item {
    font-size: 0.625rem;
  }

  .section__title {
    font-size: clamp(1.4rem, 9vw, 2rem);
  }

  .feature-card,
  .how-card {
    padding: 1.1rem;
  }

  .setup-item {
    padding: 0.9rem 1rem;
    gap: 0.75rem;
  }

  .faq-card {
    padding-inline: 0.85rem;
    padding-block: 1rem;
  }

  .faq-card__question {
    font-size: 0.8125rem;
  }

  .header-inner {
    height: 3.5rem;
  }

  .brand-wordmark {
    font-size: 0.9rem;
  }

  .mobile-menu.is-open {
    max-height: 32rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
