:root {
  --bg: #060507;
  --surface: #0b0a0c;
  --card: #0b0a0c;
  --surface-elevated: #100f12;
  --emerald: #a855f7;
  --primary: #a855f7;
  --emerald-dark: #7c3aed;
  --emerald-light: #c084fc;
  --text-primary: #f5f5f0;
  --foreground: #f5f5f0;
  --text-secondary: #a3a3a3;
  --text-muted: #6b6b6b;
  --muted-foreground: #6b6b6b;
  --accent-bg: rgba(168, 85, 247, 0.08);
  --muted: rgba(168, 85, 247, 0.08);
  --border: rgba(255, 255, 255, 0.06);
  --input-bg: rgba(255, 255, 255, 0.08);
  --destructive: #ef4444;
  --radius: 0.75rem;
  --primary-foreground: #060507;
}

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

html {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar, *::-webkit-scrollbar { display: none; width: 0; }

body {
  background: var(--bg);
  color: var(--text-secondary);
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }

html:not(.cursor-disabled),
html:not(.cursor-disabled) *,
html:not(.cursor-disabled) *::before,
html:not(.cursor-disabled) *::after { cursor: none !important; }

#target-cursor {
  position: fixed;
  top: 0; left: 0;
  z-index: 9999;
  pointer-events: none;
  will-change: transform;
}
.tc-ring {
  position: relative;
  width: 0; height: 0;
}
.tc-dot {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}
.tc-corner {
  position: absolute;
  width: 12px; height: 12px;
  will-change: transform;
}
.tc-tl { border-top: 3px solid #fff; border-left: 3px solid #fff; }
.tc-tr { border-top: 3px solid #fff; border-right: 3px solid #fff; }
.tc-br { border-bottom: 3px solid #fff; border-right: 3px solid #fff; }
.tc-bl { border-bottom: 3px solid #fff; border-left: 3px solid #fff; }

@media (pointer: coarse) {
  *, *::before, *::after,
  a, button, input, textarea, select,
  [href], [type], .cursor-target { cursor: auto !important; }
  #target-cursor { display: none; }
}

.noise-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.4;
}
[data-noise] { position: relative; }

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

.frame {
  position: relative;
  background: rgba(10, 12, 10, 0.5);
  border: 1px solid var(--border);
  border-top-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  overflow: hidden;
  padding: 1.5rem;
}

.frame::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 2px;
  width: 50%;
  background: linear-gradient(to left, #a855f7, rgba(168, 85, 247, 0.5), transparent);
  pointer-events: none;
  z-index: 1;
}
.frame::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 50%;
  background: linear-gradient(to bottom, #a855f7, rgba(168, 85, 247, 0.5), transparent);
  pointer-events: none;
  z-index: 1;
}

.frame .frame-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.frame .frame-line-tr-h,
.frame .frame-line-tr-v,
.frame .frame-line-bl-h,
.frame .frame-line-bl-v {
  position: absolute;
  pointer-events: none;
}
.frame .frame-line-tr-h {
  top: 0;
  right: 0;
  height: 2px;
  width: 50%;
  background: linear-gradient(to left, #a855f7, rgba(168, 85, 247, 0.5), transparent);
}
.frame .frame-line-tr-v {
  top: 0;
  right: 0;
  width: 2px;
  height: 50%;
  background: linear-gradient(to bottom, #a855f7, rgba(168, 85, 247, 0.5), transparent);
}
.frame .frame-line-bl-h {
  bottom: 0;
  left: 0;
  height: 2px;
  width: 50%;
  background: linear-gradient(to right, #a855f7, rgba(168, 85, 247, 0.5), transparent);
}
.frame .frame-line-bl-v {
  bottom: 0;
  left: 0;
  width: 2px;
  height: 50%;
  background: linear-gradient(to top, #a855f7, rgba(168, 85, 247, 0.5), transparent);
}
.frame .frame-body {
  position: relative;
  z-index: 2;
}

.frame:has(.frame-lines)::before,
.frame:has(.frame-lines)::after {
  display: none;
}

.frame-solid {
  background: var(--card);
}

.frame-nopad {
  padding: 0;
}

.card {
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background: rgba(168, 85, 247, 0.016);
  padding: 1rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.card-lg {
  padding: 1.5rem;
}
.card-interactive {
  cursor: pointer;
}
.card-interactive:hover {
  background: rgba(168, 85, 247, 0.024);
  border-color: rgba(168, 85, 247, 0.3);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 2.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.5rem;
  border: 1px solid transparent;
  background: transparent;
  color: inherit;
  font-family: inherit;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, opacity 0.15s ease;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}

.btn-sm {
  height: 2rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
}

.btn-lg {
  height: 3rem;
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
}

.btn-icon {
  height: 2.5rem;
  width: 2.5rem;
  padding: 0;
}

.btn-pill {
  border-radius: 9999px;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}
.btn-primary:hover {
  opacity: 0.9;
}

.btn-secondary {
  background: rgba(168, 85, 247, 0.024);
  color: var(--foreground);
  border-color: var(--border);
}
.btn-secondary:hover {
  border-color: rgba(168, 85, 247, 0.3);
  background: rgba(168, 85, 247, 0.032);
}

.btn-destructive {
  background: rgba(239, 68, 68, 0.1);
  color: var(--destructive);
  border-color: rgba(239, 68, 68, 0.3);
}
.btn-destructive:hover {
  background: rgba(239, 68, 68, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--foreground);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: rgba(168, 85, 247, 0.3);
  background: rgba(168, 85, 247, 0.04);
}

.btn-ghost {
  background: transparent;
  color: var(--foreground);
  border-color: transparent;
}
.btn-ghost:hover {
  background: rgba(168, 85, 247, 0.04);
}

.btn:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.input {
  display: block;
  width: 100%;
  height: 2.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--foreground);
  background: rgba(168, 85, 247, 0.024);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.input::placeholder {
  color: rgba(107, 107, 107, 0.5);
}
.input:focus {
  border-color: rgba(168, 85, 247, 0.5);
  box-shadow: 0 0 0 2px rgba(168, 85, 247, 0.2);
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-background-clip: text;
  -webkit-text-fill-color: #ffffff;
  transition: background-color 5000s ease-in-out 0s;
  box-shadow: inset 0 0 20px 20px #23232329;
}
.input-destructive {
  border-color: rgba(239, 68, 68, 0.3);
}
.input-destructive:focus {
  border-color: rgba(239, 68, 68, 0.5);
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}
select.input {

  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236b6b6b' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}

.eyebrow {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
}
.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}
.section-desc {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

.navbar {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: calc(100% - 2rem);
  max-width: 56rem;
}
.nav-pill {
  background: rgba(5, 7, 5, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 1rem;
  padding: 0.5rem 0.75rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.nav-logo {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  padding: 0.25rem 0.5rem;
  white-space: nowrap;
}
.nav-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  border-radius: 0.75rem;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-link:hover {
  background: rgba(168, 85, 247, 0.04);
  color: var(--foreground);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-account {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: var(--primary);
  background: rgba(168, 85, 247, 0.1);
  border-radius: 0.75rem;
  transition: background 0.15s ease;
}
.nav-account:hover {
  background: rgba(168, 85, 247, 0.2);
}
.nav-mobile-btn {
  display: none;
  align-items: center;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: var(--foreground);
  background: transparent;
  border: none;
  border-radius: 0.75rem;
  transition: background 0.15s ease;
}
.nav-mobile-btn:hover {
  background: rgba(168, 85, 247, 0.04);
}
.nav-mobile-dropdown {
  display: none;
  margin-top: 0.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.03);
  background: rgba(5, 7, 5, 0.9);
  padding: 0.75rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  flex-direction: column;
  gap: 0.25rem;
}
.nav-mobile-dropdown.open,
.nav-mobile-dropdown.active {
  display: flex;
}
.nav-mobile-dropdown a {
  display: block;
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  border-radius: 0.5rem;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-mobile-dropdown a:hover {
  background: rgba(168, 85, 247, 0.04);
  color: var(--foreground);
}
.nav-mobile-dropdown .nav-account-mobile {
  color: var(--primary);
  background: rgba(168, 85, 247, 0.1);
}
.nav-mobile-dropdown .nav-account-mobile:hover {
  background: rgba(168, 85, 247, 0.2);
}

@media (max-width: 639px) {
  .nav-center { display: none; }
  .nav-account { display: none; }
  .nav-mobile-btn { display: inline-flex; }
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-terminal-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(5, 7, 5, 0.6), rgba(5, 7, 5, 0.4), var(--bg));
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 80rem;
  margin: 0 auto;
  padding: 6rem 2rem 4rem;
  width: 100%;
}
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.hero-title {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  color: var(--foreground);
  text-transform: uppercase;
  line-height: 0.9;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  white-space: nowrap;
}
.hero-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: letterReveal 0.5s ease forwards;
}
.hero-letter:nth-child(1) { animation-delay: 0.1s; }
.hero-letter:nth-child(2) { animation-delay: 0.2s; }
.hero-letter:nth-child(4) { animation-delay: 0.7s; }
.hero-letter:nth-child(5) { animation-delay: 0.8s; }
.hero-letter:nth-child(6) { animation-delay: 0.9s; }
.hero-letter:nth-child(7) { animation-delay: 1.0s; }
.hero-letter:nth-child(8) { animation-delay: 1.1s; }
@keyframes letterReveal {
  to { opacity: 1; transform: translateY(0); }
}
.hero-logo-inline {
  display: inline-block;
  vertical-align: baseline;
  line-height: 0;
  margin: 0 0.01em;
  opacity: 0;
  animation: logoAppear 0.8s ease forwards 0.3s;
}
@keyframes logoAppear {
  0% { opacity: 0; transform: scale(0.5) rotate(-90deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}
.hero-logo-svg {
  display: block;
  height: 0.7em;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.25));
}
.hero-desc {
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  max-width: 32rem;
}
.hero-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.hero-carousel-wrap {
  position: relative;
  max-width: 36rem;
  margin: 0 auto;
}
.hero-carousel-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse at center, rgba(168, 85, 247, 0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 1023px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 8rem;
  }
  .hero-text { align-items: center; }
  .hero-title { justify-content: center; }
  .hero-desc { margin: 0 auto; }
  .hero-buttons { justify-content: center; }
}

.carousel {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  z-index: 1;
}
.carousel-slide {
  width: 100%;
  display: block;
  transition: opacity 0.5s ease;
}
.carousel-slide.slide-hidden {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  font-size: 1rem;

  transition: opacity 0.2s ease, background 0.2s ease;
}
.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.5);
}
.carousel-btn-prev { left: 0.75rem; }
.carousel-btn-next { right: 0.75rem; }

@media (hover: hover) {
  .carousel-btn { opacity: 0; }
  .carousel:hover .carousel-btn { opacity: 1; }
}

.carousel-dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.375rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
  padding: 0.5rem 0.75rem;
}
.carousel-dot {
  width: 0.5rem;
  height: 0.375rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  padding: 0;

  transition: width 0.3s ease, background 0.3s ease;
}
.carousel-dot.active {
  width: 2rem;
  background: white;
}

.features-section {
  padding: 6rem 2rem;
  max-width: 80rem;
  margin: 0 auto;
}
.features-explorer {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: start;
}
.features-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.features-sidebar h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}
.feature-cat-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.75rem 1rem;
  border: none;
  border-left: 2px solid transparent;
  background: transparent;
  border-radius: 0 0.5rem 0.5rem 0;

  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
.feature-cat-btn:hover {
  border-left-color: var(--border);
  background: rgba(168, 85, 247, 0.02);
}
.feature-cat-btn.active {
  border-left-color: var(--primary);
  background: rgba(168, 85, 247, 0.05);
}
.cat-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}
.cat-number {
  color: var(--primary);
  font-weight: 700;
}
.cat-desc {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
  line-height: 1.5;
}

.features-panel { position: relative; }

.features-panel-inner h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}
.features-panel-inner > p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}
.features-grid-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.feature-item-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 0.5rem;

  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
.feature-item-btn:hover {
  border-color: rgba(168, 85, 247, 0.5);
  background: rgba(168, 85, 247, 0.1);
}

@media (max-width: 1023px) {
  .features-explorer {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 639px) {
  .features-grid-items {
    grid-template-columns: 1fr;
  }
}

.glow-card {
  position: relative;
  background: var(--card);
  border-radius: 1rem;
  overflow: hidden;
  padding: 1.5rem;
}
.glow-card::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  background: rgba(168, 85, 247, 0.5);
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.5;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 0;
}
.glow-card::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: rgba(168, 85, 247, 0.3);
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.5;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 0;
}
.glow-card:hover::before {
  transform: translate(10px, 10px);
  opacity: 0.7;
}
.glow-card:hover::after {
  transform: translate(-10px, -10px);
  opacity: 0.7;
}
.glow-card > * {
  position: relative;
  z-index: 1;
}

.feature-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 100;
}
.feature-modal-overlay.open { display: block; }
.feature-modal-center {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 101;
  width: calc(100% - 2rem);
  max-width: 28rem;
}
.feature-modal-center.open { display: block; }
.feature-modal-body {
  max-height: 80vh;
  overflow-y: auto;
}
.feature-modal-body h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
}
.feature-modal-body p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.pricing-section {
  position: relative;
  padding: 6rem 2rem;
}
.pricing-inner {
  max-width: 72rem;
  margin: 0 auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 4rem;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card .frame-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pricing-card .glow-tr,
.pricing-card .glow-bl {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.3;
}
.pricing-card .glow-tr {
  top: -40px;
  right: -40px;
  background: rgba(168, 85, 247, 0.4);
}
.pricing-card .glow-bl {
  bottom: -40px;
  left: -40px;
  background: rgba(168, 85, 247, 0.2);
}
.pricing-card.recommended {
  border-color: rgba(168, 85, 247, 0.3);
}
.pricing-card-content {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}
.pricing-card-content > a:last-child {
  margin-top: auto;
}
.pricing-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--primary);
}
.pricing-duration {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.pricing-duration > span:first-child {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
}
.pricing-badge-recommended {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.5rem;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-foreground);
  background: var(--primary);
  border-radius: 9999px;
}
.pricing-tagline {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}
.pricing-price .amount {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--foreground);
}
.pricing-price .suffix {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
}
.pricing-detail {
  padding-top: 1rem;
  border-top: 1px solid transparent;
  background-image: linear-gradient(to right, transparent, var(--border), transparent);
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: top;
}
.pricing-detail p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 28rem;
  }
}

.faq-section {
  margin-top: 5rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.faq-item {
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  margin-bottom: 0.5rem;
  transition: background 0.2s ease;
}
.faq-item:hover {
  background: rgba(10, 12, 10, 0.3);
}
.faq-item.open {
  background: rgba(10, 12, 10, 0.5);
}
.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.5rem;
  background: transparent;
  border: none;

  text-align: left;
}
.faq-toggle h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}
.faq-chevron {
  font-size: 0.625rem;
  color: var(--muted-foreground);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}
.faq-body {
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem;
  animation: faqSlideDown 0.3s ease;
}
.faq-body p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

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

.top-glow {
  height: 1px;
  width: 33.333%;
  margin: 0 auto;
  background: linear-gradient(to right, transparent, rgba(168, 85, 247, 0.2), transparent);
}

.footer {
  border-top: 1px solid var(--border);
  padding: 0;
}
.footer-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 3rem 2rem 0;
}
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2rem;
}
.footer-brand .name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
}
.footer-brand .name span {
  color: var(--primary);
}
.footer-brand .sub {
  display: block;
  margin-top: 0.25rem;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
}
.footer-links {
  display: flex;
  gap: 0.5rem;
}
.footer-links a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  transition: background 0.15s ease, color 0.15s ease;
}
.footer-links a:hover {
  background: rgba(168, 85, 247, 0.04);
  color: var(--foreground);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 10px;
  color: var(--muted-foreground);
}

@media (max-width: 639px) {
  .footer-top {
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.shell-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 5rem;
  align-items: start;
}
.shell-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  overflow-y: auto;
  scrollbar-width: none;
}
.shell-sidebar::-webkit-scrollbar { display: none; }

.shell-nav-item {
  display: block;
  padding: 0.75rem 1rem;
  border-left: 2px solid transparent;
  border-radius: 0 0.5rem 0.5rem 0;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
.shell-nav-item:hover {
  border-left-color: var(--border);
  color: var(--foreground);
  transform: translateX(4px);
}
.shell-nav-item.active {
  border-left-color: var(--primary);
  background: rgba(168, 85, 247, 0.05);
  color: var(--foreground);
}

.profile-card {
  border-radius: 0.75rem;
  border: none;
  background: rgba(168, 85, 247, 0.04);
  box-shadow: none;
}
.profile-avatar {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(168, 85, 247, 0.3);
  background: rgba(168, 85, 247, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
}

.mobile-menu[hidden] { display: none; }

.shell-mobile-btn {
  display: none;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--surface);
}
.shell-mobile-header { display: none; }

@media (max-width: 1023px) {
  .shell-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  .shell-sidebar {
    display: none !important;
  }
  .shell-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    margin-bottom: 0.5rem;
  }
  .shell-mobile-btn { display: inline-flex; }
  .frame[style*="height:580"], .frame[style*="height:680"], .frame[style*="height:700"] {
    height: auto !important;
    min-height: 60vh;
  }
}

.shell-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 200;
}
.shell-mobile-overlay.open {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.shell-mobile-modal {
  width: 100%;
  display: flex;
  justify-content: center;
  opacity: 0;
  animation: mobileMenuIn 0.2s ease forwards;
}
@keyframes mobileMenuIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.sub-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 0.5rem;
  background: rgba(168, 85, 247, 0.008);
}
.sub-thumb {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.5rem;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid var(--border);
  overflow: hidden;
  flex-shrink: 0;
  isolation: isolate;
}
.sub-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stat-card {
  border-top: 4px solid rgba(168, 85, 247, 0.3);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.5rem;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 9999px;
  white-space: nowrap;
}
.badge-active {
  color: var(--primary);
  background: rgba(168, 85, 247, 0.1);
}
.badge-expired {
  color: var(--muted-foreground);
  background: rgba(107, 107, 107, 0.1);
}
.badge-warn {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.1);
}
.badge-banned {
  color: var(--destructive);
  background: rgba(239, 68, 68, 0.1);
}
.badge-info {
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.1);
}
.badge-alpha {
  color: #f97316;
  background: rgba(249, 115, 22, 0.1);
}

.alert {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.alert-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: var(--destructive);
}
.alert-success {
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  color: var(--primary);
}

.admin-label {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
}
.data-table th {
  text-align: left;
  padding: 0.625rem 0.75rem;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-foreground);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.data-table td {
  padding: 0.625rem 0.75rem;
  color: var(--foreground);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  white-space: nowrap;
}
.data-table td.muted {
  color: var(--muted-foreground);
}
.data-table tbody tr {
  transition: background 0.15s ease;
}
.data-table tbody tr:hover {
  background: rgba(168, 85, 247, 0.02);
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}
.pagination .pages {
  display: flex;
  gap: 0.25rem;
}
.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  font-size: 0.75rem;
  border-radius: 0.375rem;
  color: var(--muted-foreground);
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.page-btn:hover {
  background: rgba(168, 85, 247, 0.04);
  color: var(--foreground);
}
.page-btn.active {
  background: var(--primary);
  color: var(--primary-foreground);
}

.search-group {
  display: flex;
  gap: 0.5rem;
}
.search-group .input {
  flex: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.product-card-link {
  display: block;
  transition: transform 0.2s ease;
}
.product-card-link:hover {
  transform: translateY(-2px);
}
.product-img-wrap {
  aspect-ratio: 16 / 10;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(168, 85, 247, 0.016);
  overflow: hidden;
  margin-bottom: 1rem;
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.product-card-link:hover .product-img {
  transform: scale(1.03);
}
.product-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.view-link {
  font-size: 0.75rem;
  color: var(--primary);
  transition: transform 0.2s ease;
  display: inline-block;
}
.product-card-link:hover .view-link {
  transform: translateX(4px);
}

.product-detail-plans {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.plan-card-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
}
.plan-card-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.plan-card-duration {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.plan-card-duration > span:first-child {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}
.plan-badge-popular {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.5rem;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-foreground);
  background: var(--primary);
  border-radius: 9999px;
}
.plan-card-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}
.plan-card-price .amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  font-variant-numeric: tabular-nums;
}
.plan-card-price .suffix {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary);
}

.overview-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.highlight {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.highlight .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  margin-top: 0.375rem;
}
.highlight p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.fade-in {
  animation: fadeIn 0.5s ease forwards;
}
.fade-in-delay {
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
  animation-delay: 0.15s;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.text-emerald { color: var(--primary); }
.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.cursor-toggle-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9998;
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  animation: cursorModalIn 0.4s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
@keyframes cursorModalIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.cursor-toggle-btn button {
  display: inline-flex;
  align-items: center;
  gap: 0;
  height: 2.5rem;
  padding: 0 0.625rem;
  background: rgba(10, 12, 10, 0.8);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.75rem;
  font-weight: 600;

  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transition: border-color 0.2s ease, color 0.2s ease;
  overflow: hidden;
}
.cursor-toggle-btn button:hover {
  border-color: rgba(168, 85, 247, 0.5);
  color: var(--foreground);
}
.cursor-toggle-btn .cursor-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.cursor-toggle-btn .cursor-label {
  display: none;
  margin-left: 0.5rem;
  white-space: nowrap;
}
.cursor-toggle-btn button:hover .cursor-label {
  display: inline;
}

.cursor-intro-modal {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9998;
  width: 18rem;
  opacity: 0;
  transform: translateY(16px) scale(0.95);
  animation: cursorModalIn 0.25s ease forwards;
}
.cursor-intro-inner {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  background: rgba(10, 12, 10, 0.9);
  border: 1px solid var(--border);
  padding: 1.25rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.cursor-intro-inner .frame-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.sub-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 100;
}
.sub-modal-overlay.open {
  display: block;
  opacity: 1;
}
.sub-modal-center {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 101;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.sub-modal-center.open {
  display: flex;
}
.sub-modal-body {
  width: 100%;
  max-width: 28rem;
  opacity: 0;
  transform: scale(0.95) translateY(10px);
  animation: modalPopIn 0.2s ease forwards;
}
@keyframes modalPopIn {
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.sub-modal-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.sub-modal-stat {
  background: rgba(168, 85, 247, 0.024);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
}
.sub-modal-stat .stat-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}
.sub-modal-stat .stat-value {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}
.sub-modal-key {
  background: rgba(168, 85, 247, 0.024);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  margin-bottom: 1.5rem;
}
.sub-modal-key .stat-value {
  font-family: monospace;
}
.sub-modal-actions {
  display: flex;
  gap: 0.5rem;
}
.sub-modal-actions .btn {
  flex: 1;
}

.dl-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 100;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.dl-modal-overlay.open {
  display: block;
  opacity: 1;
}
.dl-modal-center {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 101;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.dl-modal-center.open {
  display: flex;
}
.dl-modal-body {
  width: 100%;
  max-width: 24rem;
  opacity: 0;
  transform: scale(0.95) translateY(10px);
  animation: modalPopIn 0.2s ease forwards;
}
.dl-platform-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  text-align: left;
  padding: 1rem;
  background: rgba(168, 85, 247, 0.016);
  border: 1px solid var(--border);
  border-radius: 0.5rem;

  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
.dl-platform-card:hover {
  border-color: rgba(168, 85, 247, 0.3);
  background: rgba(168, 85, 247, 0.05);
}
.dl-platform-icon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  color: var(--primary);
}
.dl-platform-info {
  flex: 1;
}
.dl-platform-info .name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}
.dl-platform-info .version {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.125rem;
}

.shoutbox-wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}
.shoutbox-messages {
  flex: 1;
  min-height: 0;
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: rgba(168, 85, 247, 0.2) transparent;
  padding-right: 0.75rem;
}
.shoutbox-messages::-webkit-scrollbar { width: 4px; display: block; }
.shoutbox-messages::-webkit-scrollbar-track { background: transparent; }
.shoutbox-messages::-webkit-scrollbar-thumb { background: rgba(168, 85, 247, 0.25); border-radius: 4px; }
.shoutbox-entry {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  padding: 0.25rem 0;
}
.shoutbox-entry .msg-content {
  flex: 1;
  min-width: 0;
  color: var(--foreground);
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  line-height: 1.5;
}
.shoutbox-entry .msg-time {
  flex-shrink: 0;
  font-size: 0.6875rem;
  color: var(--muted-foreground);
  opacity: 0.4;
  margin-top: 0.125rem;
}
.shoutbox-entry:hover .msg-time {
  opacity: 1;
}
.shoutbox-input {
  flex-shrink: 0;
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  margin-top: 0.75rem;
  display: flex;
  gap: 0.5rem;
}

.username-trigger {
  display: inline;
  padding: 0;
  background: none;
  border: none;
  font: inherit;
  font-weight: 500;
  transition: opacity 0.15s ease;
}
.username-trigger:hover {
  opacity: 0.8;
}
.username-trigger.role-admin { color: var(--destructive); }
.username-trigger.role-alpha { color: #f97316; }
.username-trigger.role-moderator { color: #3b82f6; }
.username-trigger.role-member { color: var(--muted-foreground); }

.user-preview {
  position: fixed;
  z-index: 200;
  width: 14rem;
  pointer-events: auto;
  opacity: 0;
  transform: scale(0.97) translateY(10px);
  animation: previewIn 0.14s ease forwards;
}
@keyframes previewIn {
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.user-preview-card {
  background: rgba(10, 12, 10, 0.95);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.user-preview-inner {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.user-preview-avatar {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: rgba(168, 85, 247, 0.016);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--foreground);
  flex-shrink: 0;
}
.user-preview-status-dot {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(33%);
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 9999px;
  border: 2px solid var(--card);
}
.user-preview-status-dot.online { background: var(--primary); }
.user-preview-status-dot.offline { background: rgba(107, 107, 107, 0.4); }
.user-preview-info {
  flex: 1;
  min-width: 0;
}
.user-preview-name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.user-preview-name .name {
  font-size: 0.875rem;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.user-preview-name .role-badge {
  display: inline-flex;
  padding: 0.125rem 0.375rem;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: lowercase;
  letter-spacing: 0.05em;
  border: 1px solid var(--border);
  background: rgba(168, 85, 247, 0.016);
  border-radius: 9999px;
  color: var(--foreground);
  white-space: nowrap;
}
.user-preview-sub {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

html.smooth-scroll {
  scroll-behavior: auto; }

@media (max-width: 767px) {
  .features-section { padding: 3rem 1rem; }
  .pricing-section { padding: 3rem 1rem; }
  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); justify-content: center; }
  .hero-logo-svg { height: 0.7em; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { text-align: center; }
  .footer-top { flex-direction: column; gap: 1.5rem; text-align: center; }
  .footer-links { justify-content: center; }
  .footer-bottom { text-align: center; }
}
@media (max-width: 639px) {
  .data-table { font-size: 0.75rem; }
  .data-table th, .data-table td { padding: 0.5rem 0.375rem; }
  .pricing-card-content { padding: 1rem; }
  .product-detail-plans { gap: 0.75rem; }
}
