:root {
  --bg: #000000;
  --card: #0a0a0a;
  --card-soft: #0e0e0e;
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(124,58,237,0.65);
  --text: #f5f5f5;
  --muted: #b5b5b5;
  --purple: #7c3aed;
  --header-height: 74px;
  --radius: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  background: var(--bg);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  min-width: 320px;
}

body.modal-open {
  overflow: hidden;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
}

::selection {
  background: var(--purple);
  color: #fff;
}

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

.section-shell {
  padding: 88px 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  transform: translateY(-160%);
  background: #fff;
  color: #000;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0,0,0,0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--purple);
  font-size: 0.9rem;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav > a:not(.discord-button) {
  position: relative;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.94rem;
  padding: 8px 0;
  transition: color 180ms ease;
}

.main-nav > a:not(.discord-button)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--purple);
  transition: transform 180ms ease;
}

.main-nav > a:not(.discord-button):hover {
  color: var(--text);
}

.main-nav > a:not(.discord-button):hover::after {
  transform: scaleX(1);
}

.discord-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #111;
  color: #fff;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 650;
  transition: background 180ms ease, border-color 180ms ease, transform 100ms ease;
}

.discord-button svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.discord-button:hover {
  background: #171717;
  border-color: rgba(255,255,255,0.14);
}

.discord-button:active,
.product-tab:active,
.mobile-menu-button:active,
.carousel-item:active,
.back-to-top:active,
.feature-card:active,
.modal-close:active,
.accordion-trigger:active {
  transform: scale(0.98);
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #0b0b0b;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-menu-button span {
  width: 18px;
  height: 1px;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-menu-button.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.mobile-menu-button.is-open span:nth-child(2) { opacity: 0; }
.mobile-menu-button.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero {
  padding-top: 118px;
  overflow: hidden;
}

.hero-content {
  text-align: center;
  max-width: 920px;
}

.eyebrow,
.product-label {
  margin: 0 0 12px;
  color: #8e8e8e;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.hero h1,
.section-heading h2,
.product-intro h3,
.feature-modal-content h3 {
  margin: 0;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  font-weight: 760;
}

.hero h1 span {
  color: var(--purple);
}

.hero-subtitle {
  max-width: 690px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.17rem);
}

.carousel {
  width: 100%;
  overflow: hidden;
  margin-top: 58px;
  padding: 6px 0 18px;
}

.carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: carousel-scroll 92s linear infinite;
  will-change: transform;
}

.carousel:hover .carousel-track,
.carousel:focus-within .carousel-track {
  animation-play-state: paused;
}

.carousel-item {
  width: clamp(390px, 31vw, 420px);
  flex: 0 0 auto;
  padding: 0;
  background: #050505;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  cursor: zoom-in;
  transition: border-color 180ms ease, background 180ms ease, transform 100ms ease;
}

.carousel-item:hover {
  border-color: rgba(124,58,237,0.45);
  background: #080808;
}

.carousel-item img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  background: #000;
}

@keyframes carousel-scroll {
  to { transform: translateX(calc(-50% - 10px)); }
}

.banner-wrap {
  margin-top: 54px;
}

.main-banner {
  width: 100%;
  max-height: 650px;
  object-fit: contain;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #050505;
}

.about {
  border-top: 1px solid rgba(255,255,255,0.05);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.45fr);
  gap: clamp(50px, 9vw, 130px);
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 120px;
}

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

.about-copy {
  font-size: 1.03rem;
  color: #d0d0d0;
}

.about-copy p {
  margin: 0 0 28px;
}

.about-divider {
  width: 72px;
  height: 1px;
  background: var(--purple);
  margin: 34px 0;
  opacity: 0.8;
}

.products {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 110px;
}

.products-heading {
  max-width: 760px;
}

.products-heading > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  max-width: 700px;
}

.product-switcher {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 36px 0 18px;
  padding: 7px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: #070707;
  max-width: 760px;
}

.product-tab {
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 9px;
  background: transparent;
  color: var(--muted);
  font-weight: 650;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 100ms ease;
}

.product-tab:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.07);
}

.product-tab.is-active {
  color: #fff;
  background: var(--purple);
  border-color: var(--purple);
}

.product-stage {
  min-height: 590px;
}

.product-panel {
  border-top: 1px solid var(--border);
  padding-top: 38px;
  animation: product-in 260ms ease both;
}

.product-panel[hidden] {
  display: none;
}

@keyframes product-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.product-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
  gap: 60px;
  align-items: end;
}

.product-intro h3 {
  font-size: clamp(1.9rem, 3.5vw, 3.2rem);
  max-width: 650px;
}

.product-summary {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.product-body {
  margin-top: 42px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: clamp(36px, 7vw, 86px);
}

.product-description {
  color: #d0d0d0;
}

.product-description p {
  margin: 0 0 20px;
}

.narrow-copy {
  max-width: 860px;
  margin-top: 36px;
}

.accordion {
  border-top: 1px solid var(--border);
}

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

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 4px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  font-weight: 650;
  transition: color 160ms ease, transform 100ms ease;
}

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

.accordion-icon {
  color: var(--purple);
  font-size: 1.3rem;
  line-height: 1;
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.accordion-panel > p {
  overflow: hidden;
  margin: 0;
  color: var(--muted);
}

.accordion-panel.open {
  grid-template-rows: 1fr;
}

.accordion-panel.open > p {
  padding: 0 4px 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 38px;
}

.feature-card {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
  color: var(--text);
  cursor: pointer;
  transition: border-color 170ms ease, transform 170ms ease, background 170ms ease;
}

.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  background: #0d0d0d;
}

.feature-card strong {
  font-size: 0.98rem;
}

.feature-card span {
  color: var(--muted);
  font-size: 0.88rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.tag-row span {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 10px;
  color: #c9c9c9;
  background: #070707;
  font-size: 0.78rem;
}

.product-note {
  margin-top: 28px;
  padding: 18px 20px;
  border-left: 2px solid var(--purple);
  background: #070707;
  color: #c7c7c7;
}

.product-note strong {
  display: block;
  color: #fff;
  margin-bottom: 7px;
}

.product-note p {
  margin: 0;
}

.ai-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.75fr);
  gap: clamp(40px, 7vw, 90px);
  align-items: start;
}

.ai-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 26px;
  margin-top: 30px;
  border-top: 1px solid var(--border);
}

.ai-features > div {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.ai-features strong,
.ai-features span {
  display: block;
}

.ai-features strong {
  margin-bottom: 6px;
  font-size: 0.92rem;
}

.ai-features span {
  color: var(--muted);
  font-size: 0.86rem;
}

.discord-demo {
  border: 1px solid var(--border);
  border-radius: 13px;
  background: #090909;
  overflow: hidden;
}

.demo-header {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 15px 16px;
  border-bottom: 1px solid var(--border);
}

.demo-header div {
  display: flex;
  flex-direction: column;
}

.demo-header small {
  color: #828282;
  font-size: 0.72rem;
}

.demo-status {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--purple);
}

.demo-message {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 11px;
  padding: 18px 16px;
}

.demo-message + .demo-message {
  border-top: 1px solid rgba(255,255,255,0.05);
}

.demo-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 750;
  font-size: 0.8rem;
}

.user-avatar {
  background: #1b1b1b;
  color: #ddd;
}

.proton-avatar {
  background: var(--purple);
  color: #fff;
}

.demo-message strong {
  font-size: 0.86rem;
}

.demo-message p {
  margin: 5px 0 0;
  color: #d0d0d0;
  font-size: 0.9rem;
}

.proton-message {
  background: #0b0b0b;
}

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

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: #8d8d8d;
  font-size: 0.88rem;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: #c6c6c6;
  text-decoration: none;
}

.footer-inner a:hover {
  color: #fff;
}

.back-to-top {
  position: fixed;
  inset: auto max(16px, env(safe-area-inset-right)) max(16px, env(safe-area-inset-bottom)) auto;
  left: auto !important;
  z-index: 60;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #0c0c0c;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.back-to-top:hover {
  background: #151515;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.image-modal,
.feature-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
}

.image-modal[hidden],
.feature-modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
  animation: modal-fade 180ms ease both;
}

.modal-content,
.feature-modal-content {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  background: #070707;
  animation: modal-in 190ms ease both;
}

.modal-content {
  width: min(1180px, 92vw);
  max-height: 90vh;
  display: grid;
  place-items: center;
  padding: 44px 18px 18px;
}

.modal-content img {
  max-width: 100%;
  max-height: calc(90vh - 70px);
  object-fit: contain;
}

.feature-modal-content {
  width: min(560px, 92vw);
  padding: 30px;
}

.feature-modal-content h3 {
  font-size: 1.55rem;
  margin-bottom: 13px;
}

.feature-modal-content > p:last-child {
  margin: 0;
  color: var(--muted);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: #111;
  color: #fff;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  transition: background 150ms ease, border-color 150ms ease, transform 100ms ease;
}

.modal-close:hover {
  background: #181818;
  border-color: rgba(255,255,255,0.16);
}

@keyframes modal-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(8px) scale(0.995); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.reveal-once {
  opacity: 0;
  transform: translateY(15px);
}

.reveal-once.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
}

@media (max-width: 900px) {
  .section-shell {
    padding: 72px 0;
  }

  .product-switcher {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    touch-action: pan-x;
    max-width: 100%;
    width: 100%;
    white-space: nowrap;
  }

  .product-switcher::-webkit-scrollbar {
    display: none;
  }

  .product-tab {
    flex: 0 0 auto;
    min-width: max-content;
    padding: 0 16px;
    scroll-snap-align: start;
  }

  .mobile-menu-button {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 4px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #080808;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav > a:not(.discord-button) {
    padding: 11px 12px;
    border-radius: 8px;
  }

  .main-nav > a:not(.discord-button)::after {
    display: none;
  }

  .main-nav > a:not(.discord-button):hover {
    background: #0d0d0d;
  }

  .discord-button {
    justify-content: center;
    margin-top: 4px;
  }

  .about-grid,
  .product-intro,
  .two-column,
  .ai-layout {
    grid-template-columns: 1fr;
  }

  .about-grid {
    gap: 36px;
  }

  .sticky-heading {
    position: static;
  }

  .product-intro {
    gap: 22px;
  }

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

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .hero {
    padding-top: 84px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

  .hero-subtitle {
    margin-top: 18px;
    font-size: 0.98rem;
  }

  .carousel {
    margin-top: 42px;
  }

  .carousel-track {
    gap: 14px;
  }

  .carousel-item {
    width: clamp(290px, 82vw, 320px);
  }

  .carousel-item img {
    height: 205px;
  }

  .banner-wrap {
    margin-top: 38px;
  }

  .section-shell {
    padding: 62px 0;
  }

  .product-switcher {
    display: flex;
    overflow-x: auto;
    padding: 6px;
    margin-right: -14px;
    padding-right: 14px;
    scrollbar-width: none;
  }

  .product-switcher::-webkit-scrollbar {
    display: none;
  }

  .product-tab {
    min-width: 176px;
    padding-inline: 15px;
  }

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

  .product-demo-mobile {
    display: block;
  }

  .feature-card {
    min-height: 108px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .modal-content {
    width: 90vw;
    max-height: 88vh;
    padding: 42px 10px 12px;
  }

  .modal-content img {
    max-height: calc(88vh - 64px);
  }

  .feature-modal-content {
    width: 90vw;
    padding: 28px 22px 24px;
  }
}

/* Typing title */
.typing-title {
  min-height: 1.2em;
}

.typing-purple {
  color: var(--purple);
}

.typing-dynamic {
  display: inline-block;
  min-width: 2ch;
}

.typing-caret {
  display: inline-block;
  width: 1px;
  height: 0.95em;
  margin-left: 4px;
  background: currentColor;
  vertical-align: -0.08em;
  animation: caret-blink 1s steps(1, end) infinite;
}

@keyframes caret-blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.typing-white {
  color: #f5f5f5 !important;
}


.product-demo-mobile {
  display: none;
  margin-top: 28px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #080808;
}

.product-demo-mobile-header h4 {
  margin: 4px 0 8px;
  font-size: 1.05rem;
}

.product-demo-mobile-header p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.product-demo-label {
  margin: 0;
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.product-demo-mobile img {
  display: block;
  width: min(100%, 340px);
  margin: 16px auto 0;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: #050505;
}


.noraid-demo-mobile {
  margin-bottom: 26px;
}


.ai-demo-mobile {
  margin-bottom: 26px;
}


@media (max-width: 900px) {
  .product-demo-mobile {
    display: block !important;
  }
}


body.js-ready .hero-content {
  animation: hero-content-in 520ms ease both;
}

@keyframes hero-content-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

body.desktop-animated .products-layout .product-panel.is-active {
  animation: product-panel-in 280ms ease both;
}

@keyframes product-panel-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}


/* PC animations - intentionally kept active */
@media (min-width: 901px) {
  .hero-content {
    animation: pcHeroIn 700ms cubic-bezier(.2,.8,.2,1) both;
  }

  .hero-subtitle {
    animation: pcSubtitleIn 700ms 180ms cubic-bezier(.2,.8,.2,1) both;
  }

  .carousel {
    animation: pcCarouselIn 750ms 300ms ease both;
  }

  .banner-wrap {
    animation: pcBannerIn 700ms ease both;
  }

  .about-grid,
  .products-heading {
    animation: pcSectionIn 650ms ease both;
  }

  .product-panel.is-active {
    animation: pcProductIn 320ms ease both;
  }
}

@keyframes pcHeroIn {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pcSubtitleIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pcCarouselIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pcBannerIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pcSectionIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pcProductIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }


.product-demo-desktop {
  display: none;
  margin-top: 28px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #080808;
}

.product-demo-desktop img {
  display: block;
  width: 100%;
  margin: 16px auto 0;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: #050505;
}

@media (min-width: 901px) {
  .product-demo-desktop {
    display: block;
  }
}


.ai-demo-desktop {
  margin-bottom: 24px;
}


.noraid-demo-desktop {
  margin-bottom: 24px;
}


/* Moderate Liquid Glass enhancement */
:root {
  --glass-bg: rgba(16,16,18,0.72);
  --glass-bg-strong: rgba(18,18,22,0.82);
  --glass-stroke: rgba(255,255,255,0.10);
  --glass-stroke-soft: rgba(255,255,255,0.06);
  --glass-highlight: rgba(255,255,255,0.075);
  --glass-shadow: 0 12px 28px rgba(0,0,0,0.26);
  --glass-shadow-soft: 0 8px 20px rgba(0,0,0,0.18);
}

.site-header {
  background: rgba(7,7,9,0.72);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  box-shadow: 0 8px 26px rgba(0,0,0,0.18);
}

.main-nav,
.product-switcher,
.discord-demo,
.product-note,
.feature-card,
.modal-content,
.feature-modal-content,
.product-demo-mobile,
.product-demo-desktop,
.back-to-top,
.mobile-menu-button,
.discord-button,
.main-banner,
.carousel-item,
.tag-row span {
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
}

.discord-button,
.mobile-menu-button,
.back-to-top,
.tag-row span {
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01)), var(--glass-bg);
  border-color: var(--glass-stroke-soft);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), var(--glass-shadow-soft);
}

.product-switcher {
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012)), rgba(10,10,12,0.74);
  border-color: var(--glass-stroke);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.055), var(--glass-shadow-soft);
}

.product-tab {
  position: relative;
  background: rgba(255,255,255,0.015);
}

.product-tab:hover {
  background: rgba(255,255,255,0.03);
}

.product-tab.is-active {
  background: linear-gradient(180deg, rgba(154,101,255,0.96), rgba(124,58,237,0.96));
  border-color: rgba(210,180,255,0.32);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), 0 6px 20px rgba(124,58,237,0.16);
}

.carousel-item,
.main-banner,
.discord-demo,
.product-note,
.feature-card,
.product-demo-mobile,
.product-demo-desktop,
.modal-content,
.feature-modal-content {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)), var(--glass-bg-strong);
  border-color: var(--glass-stroke);
  box-shadow: inset 0 1px 0 var(--glass-highlight), var(--glass-shadow);
}

.carousel-item:hover,
.feature-card:hover,
.discord-button:hover,
.mobile-menu-button:hover,
.back-to-top:hover {
  border-color: rgba(124,58,237,0.32);
}

.product-note {
  border-left: 2px solid rgba(124,58,237,0.88);
}

.discord-demo .demo-header,
.proton-message,
.modal-close {
  background: rgba(255,255,255,0.02);
}

.modal-close {
  border-color: var(--glass-stroke-soft);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.accordion {
  border-top-color: rgba(255,255,255,0.09);
}

.accordion-item,
.ai-features,
.ai-features > div,
.product-panel,
.site-footer,
.about,
.products {
  border-color: rgba(255,255,255,0.06);
}

@media (max-width: 900px) {
  .main-nav.is-open {
    background: linear-gradient(180deg, rgba(18,18,22,0.92), rgba(10,10,12,0.92));
    backdrop-filter: blur(18px) saturate(135%);
    -webkit-backdrop-filter: blur(18px) saturate(135%);
    border: 1px solid var(--glass-stroke);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 18px 36px rgba(0,0,0,0.34);
  }

  .product-switcher {
    background: linear-gradient(180deg, rgba(18,18,20,0.88), rgba(10,10,12,0.88));
  }
}
