/* ==========================================================================
   HARLEY CORE — Tactical Assistant & Platform Design System
   Exact visual identity from the AI Assistant Interface (Harley)
   Deep obsidian-bronze palette, crisp glassmorphism, refined atmospheric glow
   ========================================================================== */

:root {
  --bg-main: #0E0905;
  --bg-surface: #150D07;
  --bg-surface-elevated: #1D120A;
  --bg-card: rgba(22, 14, 8, 0.72);
  --bg-card-hover: rgba(32, 19, 11, 0.88);
  --bg-card-featured: linear-gradient(170deg, rgba(255, 120, 30, 0.14) 0%, rgba(95, 42, 12, 0.32) 12%, rgba(32, 15, 5, 0.65) 35%, rgba(10, 5, 2, 0.92) 100%);

  --accent-orange: #E85D04;
  --accent-orange-hover: #FF6B18;
  --accent-orange-glow: rgba(232, 93, 4, 0.38);
  --accent-orange-dim: rgba(232, 93, 4, 0.12);
  --accent-orange-border: rgba(232, 93, 4, 0.38);

  --accent-flame: #E85D04;
  --accent-flame-soft: #FF7E2D;
  --accent-flame-dim: rgba(232, 93, 4, 0.12);
  --accent-flame-border: rgba(232, 93, 4, 0.42);

  --text-bright: #F5EFEB;
  --text-primary: #F5EFEB;
  --text-main: #E2D9CE;
  --text-secondary: #B6ABA0;
  --text-muted: #99A1AF;
  --text-dim: #6B5C48;
  --text-dark-muted: #564939;

  --coin-gold: #F59E0B;
  --coin-gold-glow: rgba(245, 158, 11, 0.35);
  --coin-gold-dim: rgba(245, 158, 11, 0.14);

  --status-active: #2ED66F;
  --status-active-bg: rgba(46, 214, 111, 0.14);
  --status-error: #FF4757;
  --status-error-bg: rgba(255, 71, 87, 0.14);

  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-hover: rgba(255, 255, 255, 0.16);
  --border-orange: rgba(232, 93, 4, 0.5);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;

  --shadow-card: 0 12px 36px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 180, 90, 0.1);
  --shadow-elevated: 0 24px 70px rgba(0, 0, 0, 0.85);
  --trans-fast: 0.15s cubic-bezier(0.16, 1, 0.3, 1);
  --trans-smooth: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --container-width: 1200px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(232, 93, 4, 0.4) rgba(0, 0, 0, 0.25);
}

::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
}
::-webkit-scrollbar-thumb {
  background: rgba(232, 93, 4, 0.4);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-orange);
  box-shadow: 0 0 10px rgba(232, 93, 4, 0.5);
}

html {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-sans);
  scroll-behavior: smooth;
  color-scheme: dark;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  background-color: #0E0905;
  background-image: radial-gradient(1021px 1768px at 55% -10%, #331505 0%, #180C03 40%, #0A0502 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  line-height: 1.55;
  position: relative;
}

/* Atmospheric Ambient Glow: Clean, deep, not over-saturated */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(1100px 700px at 50% 0px, 
    rgba(255, 110, 20, 0.22) 0%, 
    rgba(232, 93, 4, 0.12) 30%, 
    rgba(140, 45, 5, 0.04) 55%, 
    transparent 75%
  );
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
  mix-blend-mode: screen;
}

::selection {
  background: rgba(232, 93, 4, 0.4);
  color: #FFF;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   PRELOADER (With Official Logo + Ambient Glow)
   ========================================================================== */
.intro-preloader {
  position: fixed;
  inset: 0;
  background-color: #0A0603;
  background-image: radial-gradient(800px 800px at 50% 50%, #2A1204 0%, #0A0502 100%);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s;
  pointer-events: auto;
}

.intro-preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-core-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.preloader-monogram {
  width: 80px;
  height: 80px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-monogram img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(232, 93, 4, 0.6));
  animation: preloaderPulse 1.8s ease-in-out infinite alternate;
}

@keyframes preloaderPulse {
  0% { transform: scale(0.96); filter: drop-shadow(0 0 18px rgba(232, 93, 4, 0.4)); }
  100% { transform: scale(1.04); filter: drop-shadow(0 0 32px rgba(232, 93, 4, 0.8)); }
}

.preloader-brand-title {
  display: inline-flex;
  align-items: center;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 6px;
  user-select: none;
}

.preloader-brand-title .brand-harley {
  color: #FFFFFF;
}

.preloader-brand-title .brand-core {
  color: #F97316;
  margin-left: 0.4rem;
}

.preloader-thin-line {
  width: 180px;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  margin-top: 0.5rem;
}

.preloader-thin-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #E85D04, #FFA24A);
  box-shadow: 0 0 10px rgba(232, 93, 4, 0.8);
  animation: lineLoad 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes lineLoad {
  0% { width: 0%; }
  60% { width: 75%; }
  100% { width: 100%; }
}

/* ==========================================================================
   TRIAL NOTIFICATION STRIP
   ========================================================================== */
.trial-strip {
  background: rgba(18, 11, 6, 0.85);
  border-bottom: 1px solid rgba(232, 93, 4, 0.2);
  padding: 0.55rem 0;
  font-size: 0.82rem;
  text-align: center;
  position: relative;
  z-index: 101;
  color: var(--text-secondary);
}

.trial-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.trial-badge {
  background: rgba(232, 93, 4, 0.14);
  color: #FFA466;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  border: 1px solid rgba(232, 93, 4, 0.35);
  letter-spacing: 0.8px;
}

.trial-link-btn {
  background: none;
  border: none;
  color: var(--text-bright);
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  padding: 0;
  transition: color 0.15s ease;
}

.trial-link-btn:hover {
  color: var(--accent-orange-hover);
}

/* ==========================================================================
   NAVBAR (Sleek Compact Glass Design)
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 64px;
  background: rgba(14, 9, 5, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(232, 93, 4, 0.16);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1.25rem;
}

/* Brand Group: Logo + AI HARLEY CORE badge */
.brand-group,
.brand-logo-group {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
  flex-shrink: 0;
}

.brand-logo-wrap {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 2px 8px rgba(232, 93, 4, 0.35));
  flex-shrink: 0;
}

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

.brand-title {
  display: inline-flex;
  align-items: center;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.14rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  user-select: none;
  white-space: nowrap;
}

.brand-title .brand-harley {
  color: #FFFFFF;
}

.brand-title .brand-core {
  color: #F97316;
  margin-left: 0.35rem;
}

/* Fallback for legacy brand-badge */
.brand-badge {
  display: inline-flex;
  align-items: center;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.14rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  user-select: none;
  white-space: nowrap;
  border: none;
  background: none;
  box-shadow: none;
  padding: 0;
}

.brand-badge .brand-harley {
  color: #FFFFFF;
}

.brand-badge .brand-core {
  color: #F97316;
  margin-left: 0.35rem;
}

/* Nav Menu Capsule */
.nav-capsule {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 3px 5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 18px;
  border: 1px solid transparent;
  transition: all var(--trans-fast);
}

.nav-link:hover {
  color: var(--text-bright);
  background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
  color: var(--accent-orange-hover);
  background: rgba(232, 93, 4, 0.12);
  border-color: rgba(232, 93, 4, 0.35);
  box-shadow: 0 0 10px rgba(232, 93, 4, 0.18);
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-discord-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.42rem 0.85rem;
  border-radius: var(--radius-sm);
  background: rgba(88, 101, 242, 0.12);
  border: 1px solid rgba(88, 101, 242, 0.32);
  color: #A4AEFF;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--trans-fast);
}

.nav-discord-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.nav-discord-link:hover {
  background: rgba(88, 101, 242, 0.24);
  border-color: rgba(88, 101, 242, 0.6);
  color: #FFF;
  box-shadow: 0 0 14px rgba(88, 101, 242, 0.35);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  padding: 0.45rem 0.65rem;
  cursor: pointer;
}

/* ==========================================================================
   BUTTON SYSTEM
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--trans-smooth);
  user-select: none;
  white-space: nowrap;
}

/* Primary Flame Button */
.btn-flame,
.btn-primary {
  background: linear-gradient(135deg, #FF6B18 0%, #E85D04 100%);
  color: #FFF;
  border: none;
  box-shadow: 0 4px 16px rgba(232, 93, 4, 0.38);
}

.btn-flame:hover,
.btn-primary:hover {
  background: linear-gradient(135deg, #FF7E2D 0%, #FF6B18 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(232, 93, 4, 0.55);
  color: #FFF;
}

.btn-flame:active,
.btn-primary:active {
  transform: translateY(0);
}

/* Secondary Button */
.btn-secondary {
  background: rgba(232, 93, 4, 0.06);
  color: var(--text-bright);
  border: 1px solid rgba(232, 93, 4, 0.32);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(232, 93, 4, 0.15);
  border-color: var(--accent-orange);
  box-shadow: 0 0 14px rgba(232, 93, 4, 0.22);
  color: #FFF;
  transform: translateY(-1px);
}

/* Discord Button: Sleek & Balanced */
.btn-discord {
  background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
  color: #FFF;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 14px rgba(88, 101, 242, 0.35);
}

.btn-discord:hover {
  background: linear-gradient(135deg, #6774FF 0%, #5865F2 100%);
  color: #FFF;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(88, 101, 242, 0.55);
}

/* Coins Gold Button */
.btn-gold {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #0E0905;
  border: none;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.35);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
  color: #0E0905;
}

/* Danger Button */
.btn-danger {
  background: var(--status-error-bg);
  color: var(--status-error);
  border: 1px solid rgba(255, 71, 87, 0.35);
}

.btn-danger:hover {
  background: var(--status-error);
  color: #FFF;
}

/* Telegram Button */
.btn-tg {
  background: linear-gradient(135deg, #0088CC 0%, #006699 100%);
  color: #FFF;
  box-shadow: 0 4px 16px rgba(0, 136, 204, 0.35);
}

.btn-tg:hover {
  background: linear-gradient(135deg, #179CDE 0%, #0088CC 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 136, 204, 0.5);
  color: #FFF;
}

/* Subtle Footer Referral Link Button (Clean, NO blinding glow) */
.footer-ref-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 0.65rem;
  padding: 0.42rem 0.95rem;
  background: rgba(232, 93, 4, 0.08);
  border: 1px solid rgba(232, 93, 4, 0.28);
  border-radius: 8px;
  color: var(--accent-orange-hover);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--trans-fast);
  box-shadow: none !important;
}

.footer-ref-btn:hover {
  background: rgba(232, 93, 4, 0.16);
  border-color: var(--accent-orange);
  color: #FFF;
}

.btn-block { width: 100%; }
.btn-lg { padding: 0.85rem 2rem; font-size: 0.96rem; }
.btn-sm { padding: 0.4rem 0.85rem; font-size: 0.82rem; }

.svg-icon {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
}

.svg-icon-fill {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  padding: 4.5rem 0 3.5rem;
  text-align: center;
  position: relative;
}

.hero-heading {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 1.15rem;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-bright);
}

.hero-heading span {
  background: linear-gradient(135deg, #FFA466 0%, #E85D04 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-main);
  max-width: 720px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}

.hero-btn-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.75rem;
}

/* Hero Trial Card */
.hero-trial-card {
  max-width: 840px;
  margin: 0 auto;
  background: linear-gradient(170deg, 
    rgba(255, 120, 30, 0.12) 0%, 
    rgba(95, 42, 12, 0.28) 15%, 
    rgba(30, 15, 5, 0.65) 40%, 
    rgba(10, 5, 2, 0.92) 100%
  );
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--accent-orange-border);
  border-radius: var(--radius-lg);
  padding: 1.6rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  text-align: left;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.65), 0 0 24px rgba(232, 93, 4, 0.18), inset 0 1px 0 rgba(255, 180, 90, 0.18);
}

.hero-trial-info h3 {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
  color: var(--text-bright);
}

.hero-trial-info p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==========================================================================
   LIVE ASSISTANT UI PREVIEW
   ========================================================================== */
.assistant-preview-wrapper {
  max-width: 880px;
  margin: 3rem auto 1rem;
  text-align: left;
}

.app-preview-window {
  background: linear-gradient(180deg, #180D06 0%, #0E0905 100%);
  border: 1px solid var(--accent-orange-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.9), 0 0 28px rgba(232, 93, 4, 0.2);
  overflow: hidden;
}

.app-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  padding: 0 1.25rem;
  background: linear-gradient(180deg, rgba(255, 140, 60, 0.07) 0%, rgba(22, 12, 4, 0.8) 100%);
  border-bottom: 1px solid var(--border-glass);
}

.preview-window-dots {
  display: flex;
  gap: 6px;
}

.preview-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.preview-dot.red { background: #FF5F56; }
.preview-dot.yellow { background: #FFBD2E; }
.preview-dot.green { background: #27C93F; }

.app-preview-search {
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(232, 93, 4, 0.32);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  color: var(--text-main);
  max-width: 480px;
  width: 100%;
}

.app-preview-search svg {
  width: 14px;
  height: 14px;
  color: var(--accent-orange);
}

.app-preview-search kbd {
  font-family: var(--font-mono);
  font-size: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: auto;
  color: var(--text-muted);
}

.app-preview-body {
  padding: 1.6rem 1.85rem;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  background-image: radial-gradient(circle at 50% 0%, rgba(232, 93, 4, 0.08) 0%, transparent 70%);
}

.preview-user-msg {
  align-self: flex-end;
  background: linear-gradient(180deg, rgba(220, 90, 10, 0.42) 0%, rgba(188, 74, 8, 0.35) 100%);
  border: 1px solid rgba(232, 93, 4, 0.35);
  border-radius: 14px;
  padding: 9px 15px;
  color: var(--text-bright);
  font-size: 13.5px;
  font-weight: 500;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.preview-ai-card {
  background: linear-gradient(170deg, 
    rgba(255, 150, 60, 0.07) 0%, 
    rgba(77, 45, 17, 0.22) 10%, 
    rgba(26, 15, 5, 0.6) 30%, 
    rgba(8, 4, 1, 0.85) 100%
  );
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 1.25rem 1.45rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 180, 90, 0.12);
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.preview-ai-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.preview-law-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #FFA466;
  background: rgba(232, 93, 4, 0.15);
  border: 1px solid rgba(232, 93, 4, 0.4);
  padding: 3px 9px;
  border-radius: 6px;
}

.preview-time-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--status-active);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.preview-ai-title {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text-bright);
}

.preview-ai-sanction {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.sanction-pill {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
}
.sanction-pill.stars {
  background: rgba(232, 93, 4, 0.18);
  border: 1px solid rgba(232, 93, 4, 0.45);
  color: #FFA466;
}
.sanction-pill.fine {
  background: rgba(245, 158, 11, 0.16);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #FBBF24;
}
.sanction-pill.bail {
  background: rgba(46, 214, 111, 0.14);
  border: 1px solid rgba(46, 214, 111, 0.4);
  color: #2ED66F;
}

.preview-checklist {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 12px;
  color: var(--text-main);
}

.preview-check-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.preview-check-item svg {
  width: 14px;
  height: 14px;
  color: var(--status-active);
  flex-shrink: 0;
}

/* ==========================================================================
   SECTIONS & TITLES
   ========================================================================== */
.section {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}

.section-title-wrap {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.25rem;
}

.section-label {
  font-size: 0.74rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  color: var(--accent-orange);
  letter-spacing: 2px;
  margin-bottom: 0.55rem;
  font-weight: 700;
}

.section-heading {
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 0.8rem;
  color: var(--text-bright);
}

.section-sub {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* ==========================================================================
   FEATURES GRID
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
}

.feature-panel {
  background: linear-gradient(170deg, 
    rgba(255, 150, 60, 0.07) 0%, 
    rgba(77, 45, 17, 0.2) 10%, 
    rgba(26, 15, 5, 0.55) 35%, 
    rgba(8, 4, 1, 0.85) 100%
  );
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 1.85rem 1.65rem;
  box-shadow: var(--shadow-card);
  transition: all var(--trans-smooth);
  position: relative;
  overflow: hidden;
}

.feature-panel:hover {
  border-color: var(--accent-orange-border);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.65), 0 0 20px rgba(232, 93, 4, 0.18), inset 0 1px 0 rgba(255, 180, 90, 0.2);
  transform: translateY(-3px);
}

.anim-badge-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(232, 93, 4, 0.08);
  border: 1px solid var(--accent-orange-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 14px rgba(232, 93, 4, 0.15);
}

.emoji-icon {
  font-size: 24px;
  line-height: 1;
  display: block;
  filter: drop-shadow(0 0 8px rgba(232, 93, 4, 0.4));
}

.anim-emoji-float { animation: emojiFloat 3.2s ease-in-out infinite; }
.anim-emoji-float-d { animation: emojiFloat 3.2s 0.6s ease-in-out infinite; }
.anim-emoji-pulse { animation: emojiPulse 2.1s ease-in-out infinite; }
.anim-emoji-zap { animation: emojiPulse 1.15s ease-in-out infinite; }
.anim-emoji-swing { animation: emojiSwing 2.6s ease-in-out infinite; transform-origin: 50% 0; }
.anim-emoji-tilt { animation: emojiTilt 3.4s ease-in-out infinite; }

@keyframes emojiFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
@keyframes emojiPulse { 0%, 100% { transform: scale(1); opacity: 0.88; } 50% { transform: scale(1.12); opacity: 1; } }
@keyframes emojiSwing { 0%, 100% { transform: rotate(9deg); } 50% { transform: rotate(-9deg); } }
@keyframes emojiTilt { 0%, 100% { transform: rotate(-7deg); } 50% { transform: rotate(7deg); } }

.feature-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
  color: var(--text-bright);
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   PLATFORMS (Featured active project + dev tags)
   ========================================================================== */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.platform-box {
  background: linear-gradient(170deg, rgba(255, 150, 60, 0.05) 0%, rgba(20, 12, 6, 0.75) 100%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.65rem;
  text-align: left;
  transition: all var(--trans-smooth);
}

.platform-box:hover {
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.platform-box.featured-project {
  border-color: var(--accent-orange-border);
  background: linear-gradient(170deg, rgba(232, 93, 4, 0.12) 0%, rgba(20, 12, 6, 0.85) 100%);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6), 0 0 20px rgba(232, 93, 4, 0.18);
}

.platform-box.featured-project:hover {
  border-color: var(--accent-orange);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.7), 0 0 26px rgba(232, 93, 4, 0.25);
}

.platform-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.platform-header-row .platform-title {
  margin-bottom: 0;
}

.platform-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.45rem;
  color: var(--text-bright);
}

.platform-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 1.15rem;
}

.platform-box.dev-project {
  opacity: 0.75;
  background: rgba(18, 11, 6, 0.45);
  border: 1px dashed rgba(255, 255, 255, 0.12);
}

.platform-box.dev-project:hover {
  opacity: 0.95;
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(22, 13, 7, 0.65);
}

.platform-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.5px;
}

.platform-tag.active {
  color: #4ADE80;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.35);
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.15);
}

.platform-tag.dev {
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 8px #4ADE80;
  flex-shrink: 0;
}

.dev-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  flex-shrink: 0;
}

.platform-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-orange-hover);
  background: rgba(232, 93, 4, 0.08);
  border: 1px solid rgba(232, 93, 4, 0.28);
  border-radius: 4px;
  padding: 3px 8px;
}

/* ==========================================================================
   PRICING PLANS
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: stretch;
}

@media (max-width: 960px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }
}

.pricing-tier {
  background: linear-gradient(170deg, 
    rgba(255, 150, 60, 0.07) 0%, 
    rgba(77, 45, 17, 0.2) 10%, 
    rgba(26, 15, 5, 0.55) 35%, 
    rgba(8, 4, 1, 0.85) 100%
  );
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.75rem;
  position: relative;
  transition: all var(--trans-smooth);
}

.pricing-tier:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.pricing-tier.featured {
  border-color: var(--accent-orange-border);
  background: linear-gradient(170deg, 
    rgba(255, 120, 30, 0.14) 0%, 
    rgba(95, 42, 12, 0.32) 12%, 
    rgba(32, 15, 5, 0.65) 35%, 
    rgba(10, 5, 2, 0.92) 100%
  );
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.7), 0 0 26px rgba(232, 93, 4, 0.22), inset 0 1px 0 rgba(255, 180, 90, 0.22);
}

.featured-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #FF6B18 0%, #E85D04 100%);
  color: #FFF;
  font-size: 0.72rem;
  font-family: var(--font-mono);
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 4px;
  letter-spacing: 1px;
  box-shadow: 0 0 14px rgba(232, 93, 4, 0.55);
}

.tier-name {
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 0.25rem;
  color: var(--text-bright);
}

.tier-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 1.25rem 0 0.35rem;
}

.tier-price {
  font-family: var(--font-mono);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-bright);
}

.tier-coins-sub {
  font-size: 0.82rem;
  color: #FBBF24;
  font-family: var(--font-mono);
  margin-bottom: 0.5rem;
}

.tier-period {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.75rem 0 0;
  border-top: 1px solid var(--border-glass);
  padding-top: 1.5rem;
}

.tier-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-main);
}

.tier-feature-item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-orange);
  box-shadow: 0 0 6px var(--accent-orange);
  flex-shrink: 0;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-box-wrap {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-row {
  background: linear-gradient(170deg, rgba(255, 150, 60, 0.05) 0%, rgba(20, 12, 6, 0.75) 100%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--trans-fast);
}

.faq-row:hover {
  border-color: rgba(232, 93, 4, 0.35);
}

.faq-q {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 600;
  user-select: none;
  color: var(--text-bright);
}

.faq-row.open .faq-q {
  color: var(--accent-orange);
}

.faq-icon-chevron {
  transition: transform var(--trans-fast);
  color: var(--accent-orange);
}

.faq-row.open .faq-icon-chevron {
  transform: rotate(180deg);
}

.faq-a {
  padding: 0 1.5rem 1.35rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  display: none;
}

.faq-row.open .faq-a {
  display: block;
}

/* ==========================================================================
   VOLUMETRIC CHECKOUT & AUTH MODALS
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 4, 2, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--trans-smooth), visibility var(--trans-smooth);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.auth-modal {
  width: 100%;
  max-width: 500px;
  background: linear-gradient(170deg, 
    rgba(35, 20, 10, 0.96) 0%, 
    rgba(18, 10, 4, 0.98) 50%, 
    rgba(10, 5, 2, 0.99) 100%
  );
  border: 1px solid rgba(232, 93, 4, 0.45);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.25rem;
  position: relative;
  box-shadow: var(--shadow-elevated), 0 0 50px rgba(232, 93, 4, 0.25), inset 0 1px 0 rgba(255, 180, 90, 0.15);
  max-height: 92vh;
  overflow-y: auto;
}

.auth-modal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
  border-radius: 2px;
  pointer-events: none;
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  padding: 4px;
  z-index: 2;
  transition: color 0.15s ease;
}

.modal-close:hover {
  color: var(--accent-orange);
}

.modal-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
  color: var(--text-bright);
}

.modal-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.35rem;
}

.field-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  font-family: var(--font-mono);
  letter-spacing: 1px;
}

.field-input {
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-bright);
  outline: none;
  width: 100%;
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
}

.field-input:focus {
  border-color: var(--accent-orange);
  box-shadow: 0 0 14px var(--accent-orange-glow);
}

.amount-input-wrap {
  position: relative;
}

.amount-input {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 800;
  padding: 1rem 3.2rem 1rem 1.2rem;
  -moz-appearance: textfield;
}

.amount-input::-webkit-outer-spin-button,
.amount-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.amount-suffix {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: var(--text-muted);
  pointer-events: none;
}

.amount-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.amount-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--trans-fast);
}

.amount-chip:hover,
.amount-chip.active {
  background: var(--coin-gold-dim);
  border-color: rgba(245, 158, 11, 0.55);
  color: #FBBF24;
}

.pm-summary {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  margin: 0.35rem 0 1.25rem;
}

.pm-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 0.3rem 0;
}

.pm-row b {
  font-family: var(--font-mono);
  color: var(--text-bright);
}

.pm-row-total {
  border-top: 1px dashed var(--border-glass);
  margin-top: 0.5rem;
  padding-top: 0.75rem;
}

.pm-row-total b {
  color: #FBBF24;
  font-size: 1.05rem;
}

.pm-shortage {
  font-size: 0.85rem;
  color: #FBBF24;
  background: var(--coin-gold-dim);
  border: 1px solid rgba(245, 158, 11, 0.35);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}

.pm-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0 0 1rem;
  cursor: pointer;
}

.pm-consent input {
  accent-color: var(--accent-orange);
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.pm-consent a {
  color: var(--accent-orange);
  text-decoration: underline;
}

/* ==========================================================================
   NAVBAR USER CONTROLS & PROFILE PILL
   ========================================================================== */
.nav-user {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.coins-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--coin-gold-dim);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: #FBBF24;
  padding: 0.32rem 0.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--trans-fast);
  white-space: nowrap;
  flex-shrink: 0;
}

.coins-chip:hover {
  background: rgba(245, 158, 11, 0.28);
  border-color: rgba(245, 158, 11, 0.65);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.2);
}

.coins-symbol {
  width: 16px;
  height: 16px;
}

.coins-plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #FBBF24;
  color: #0E0905;
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1;
}

.user-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.user-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  padding: 0.22rem 0.7rem 0.22rem 0.25rem;
  color: var(--text-bright);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--trans-fast);
  white-space: nowrap;
  flex-shrink: 0;
}

.user-pill:hover,
.user-menu.open .user-pill {
  border-color: var(--accent-orange-border);
  background: rgba(232, 93, 4, 0.12);
}

.user-pill-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--accent-orange);
}

.user-pill-name {
  max-width: 130px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-pill .svg-icon {
  width: 13px;
  height: 13px;
  color: var(--text-muted);
  transition: transform var(--trans-fast);
}

.user-menu.open .user-pill .svg-icon {
  transform: rotate(180deg);
}

.user-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 230px;
  background: linear-gradient(170deg, rgba(32, 18, 8, 0.98) 0%, rgba(14, 8, 3, 0.99) 100%);
  border: 1px solid var(--accent-orange-border);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  box-shadow: var(--shadow-elevated), 0 0 24px rgba(232, 93, 4, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--trans-fast);
  z-index: 200;
}

.user-menu.open .user-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-dropdown-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.65rem;
  border-bottom: 1px solid var(--border-glass);
  margin-bottom: 0.35rem;
}

.user-dropdown-head img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-orange);
}

.udh-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-bright);
}

.udh-sub {
  font-size: 0.74rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.user-dropdown-item {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.55rem 0.7rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--trans-fast);
}

.user-dropdown-item:hover {
  background: rgba(232, 93, 4, 0.16);
  color: var(--accent-orange-hover);
}

.user-dropdown-item.danger:hover {
  background: var(--status-error-bg);
  color: var(--status-error);
}

.user-dropdown-sep {
  height: 1px;
  background: var(--border-glass);
  margin: 0.35rem 0;
}

/* ==========================================================================
   DASHBOARD
   ========================================================================== */
.dash-wrapper {
  padding: 2.5rem 0 5rem;
}

.dash-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 6rem 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-glass);
  border-top-color: var(--accent-orange);
  border-radius: 50%;
  animation: orbitSpin 0.8s linear infinite;
}

/* Guest Discord Auth Card */
.dash-guest-big {
  max-width: 520px;
  margin: 3rem auto;
  padding: 3.25rem 2.25rem;
  text-align: center;
  background: linear-gradient(170deg, 
    rgba(35, 20, 10, 0.95) 0%, 
    rgba(18, 10, 4, 0.98) 50%, 
    rgba(10, 5, 2, 0.99) 100%
  );
  border: 1px solid var(--accent-orange-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.85), 0 0 35px rgba(232, 93, 4, 0.25);
  position: relative;
}

.guest-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.35rem;
  border-radius: 18px;
  background: rgba(88, 101, 242, 0.16);
  border: 1px solid rgba(88, 101, 242, 0.45);
  color: #8B96FF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 24px rgba(88, 101, 242, 0.3);
}

.guest-icon .svg-icon-fill {
  width: 34px;
  height: 34px;
}

.dash-guest-big h3 {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  color: var(--text-bright);
}

.dash-guest-big p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.6rem;
}

/* User Dashboard Hero Banner */
.dash-hero {
  position: relative;
  border: 1px solid var(--accent-orange-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.75rem;
  background: linear-gradient(170deg, rgba(35, 20, 10, 0.9) 0%, rgba(14, 8, 4, 0.98) 100%);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.65);
}

.dash-hero-banner {
  height: 120px;
  background:
    radial-gradient(circle at 15% 120%, rgba(232, 93, 4, 0.6) 0%, transparent 55%),
    radial-gradient(circle at 85% -20%, rgba(255, 110, 20, 0.4) 0%, transparent 50%),
    linear-gradient(120deg, #2A1408 0%, #3D1C08 50%, #150903 100%);
  position: relative;
}

.dash-hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 100%);
}

.dash-hero-body {
  display: flex;
  align-items: flex-end;
  gap: 1.75rem;
  flex-wrap: wrap;
  padding: 0 2.25rem 1.85rem;
  margin-top: -54px;
  position: relative;
}

.dash-avatar-ring {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  padding: 3px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #FF6B18, #E85D04, #F59E0B);
  box-shadow: 0 0 35px rgba(232, 93, 4, 0.4), 0 10px 30px rgba(0, 0, 0, 0.6);
  position: relative;
}

.dash-avatar-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  background: #100C08;
  border: 4px solid #0E0905;
}

.dash-hero-meta {
  flex: 1;
  min-width: 240px;
  padding-bottom: 0.25rem;
}

.dash-hero-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.55rem;
}

.dash-badge {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  display: inline-block;
}

.dash-badge.discord {
  color: #A5ADFF;
  background: rgba(88, 101, 242, 0.18);
  border: 1px solid rgba(88, 101, 242, 0.45);
}

.dash-badge.muted {
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
}

.dash-badge.warn {
  color: #FBBF24;
  background: var(--coin-gold-dim);
  border: 1px solid rgba(245, 158, 11, 0.4);
}

.dash-badge.ok {
  color: var(--status-active);
  background: var(--status-active-bg);
  border: 1px solid rgba(46, 214, 111, 0.4);
}

.dash-hero .dash-username {
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.15;
  color: var(--text-bright);
}

.dash-handle {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.84rem;
  color: var(--text-secondary);
  margin-top: 0.35rem;
}

.id-copy {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  cursor: pointer;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  transition: all var(--trans-fast);
}

.id-copy:hover {
  background: var(--accent-orange-dim);
  color: var(--accent-orange-hover);
  border-color: var(--accent-orange-border);
}

.id-copy .svg-icon {
  width: 13px;
  height: 13px;
}

.dash-since {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

.dash-since b {
  color: var(--text-secondary);
}

.dash-hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Dashboard Grid Layout */
.dash-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.span-4 { grid-column: span 4; }
.span-5 { grid-column: span 5; }
.span-7 { grid-column: span 7; }
.span-12 { grid-column: 1 / -1; }

.widget-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.widget-label {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  text-transform: uppercase;
  color: var(--accent-orange);
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.widget-label-row .widget-label {
  margin-bottom: 0;
}

.dash-widget {
  background: linear-gradient(170deg, 
    rgba(255, 150, 60, 0.07) 0%, 
    rgba(77, 45, 17, 0.2) 10%, 
    rgba(26, 15, 5, 0.55) 35%, 
    rgba(8, 4, 1, 0.88) 100%
  );
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: all var(--trans-smooth);
}

.dash-widget:hover {
  border-color: var(--accent-orange-border);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.65), 0 0 20px rgba(232, 93, 4, 0.18);
  transform: translateY(-2px);
}

/* Balance Widget */
.balance-widget {
  background: linear-gradient(170deg, rgba(245, 158, 11, 0.12) 0%, rgba(35, 22, 6, 0.85) 100%);
  border-color: rgba(245, 158, 11, 0.35);
}

.balance-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--coin-gold-dim);
  border: 1px solid rgba(245, 158, 11, 0.45);
  color: #FBBF24;
  font-family: var(--font-mono);
  font-size: 2.3rem;
  font-weight: 900;
  padding: 0.55rem 1.15rem 0.55rem 0.95rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--trans-fast);
  margin-bottom: 0.65rem;
}

.balance-btn:hover {
  background: rgba(245, 158, 11, 0.28);
  border-color: #FBBF24;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.25);
}

.balance-coin {
  width: 34px;
  height: 34px;
}

.balance-plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #FBBF24;
  color: #0E0905;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
  margin-left: 0.25rem;
}

.balance-sub {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-top: 0.35rem;
}

.balance-sub b {
  color: #FBBF24;
}

.quick-topup {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

/* Subscription Details */
.dash-plan-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-bright);
  margin-bottom: 1rem;
}

.sub-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}

.sub-stats > div {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 0.75rem 0.95rem;
}

.sub-stats span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.sub-stats b {
  font-size: 0.98rem;
  color: var(--text-bright);
}

.sub-progress {
  height: 8px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin-bottom: 1rem;
}

.sub-progress span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, #E85D04, #FFA24A);
  box-shadow: 0 0 10px rgba(232, 93, 4, 0.6);
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.dash-note {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.dash-note b {
  color: var(--text-secondary);
}

/* Transactions List */
.tx-list {
  display: flex;
  flex-direction: column;
}

.tx-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--border-glass);
}

.tx-row:last-child {
  border-bottom: none;
}

.tx-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
}

.tx-icon.topup {
  background: var(--status-active-bg);
  color: var(--status-active);
}

.tx-icon.purchase {
  background: var(--accent-orange-dim);
  color: var(--accent-orange);
}

.tx-icon.trial {
  background: rgba(88, 101, 242, 0.18);
  color: #A5ADFF;
}

.tx-main {
  flex: 1;
  min-width: 0;
}

.tx-title {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text-bright);
}

.tx-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.tx-amount {
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 0.98rem;
  white-space: nowrap;
}

.tx-amount.plus { color: var(--status-active); }
.tx-amount.minus { color: var(--status-error); }
.tx-amount.zero { color: var(--text-muted); }

.tx-empty {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 1rem 0;
}

@media (max-width: 980px) {
  .span-4, .span-5, .span-7 { grid-column: 1 / -1; }
}

/* ==========================================================================
   REFERRAL / PARTNER PROGRAM
   ========================================================================== */
.ref-cta-card {
  max-width: 860px;
  margin: 2.5rem auto 0;
  background: linear-gradient(170deg, rgba(232, 93, 4, 0.12) 0%, rgba(20, 10, 4, 0.9) 100%);
  border: 1px solid var(--accent-orange-border);
  border-radius: var(--radius-md);
  padding: 1.85rem 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  text-align: left;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6), 0 0 24px rgba(232, 93, 4, 0.2);
}

.ref-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.ref-step {
  background: linear-gradient(170deg, rgba(255, 150, 60, 0.05) 0%, rgba(20, 12, 6, 0.75) 100%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: all var(--trans-smooth);
}

.ref-step:hover {
  border-color: var(--accent-orange-border);
  transform: translateY(-2px);
}

.ref-step-num {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--accent-orange);
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
  display: block;
  font-weight: 800;
}

.ref-step h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  color: var(--text-bright);
}

.ref-step p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.ref-highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.25rem;
}

.ref-highlight {
  background: linear-gradient(170deg, rgba(255, 150, 60, 0.06) 0%, rgba(22, 14, 8, 0.8) 100%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

.ref-highlight .big {
  font-family: var(--font-mono);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--accent-orange);
}

.ref-highlight .big.amber {
  color: #FBBF24;
}

.ref-highlight p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-top: 0.4rem;
}

.ref-tiers-wrap {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 0.5rem 1.5rem;
  overflow-x: auto;
}

.ref-tiers {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.ref-tiers th,
.ref-tiers td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--border-glass);
  text-align: left;
  color: var(--text-main);
}

.ref-tiers tr:last-child td {
  border-bottom: none;
}

.ref-tiers th {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}

.ref-tiers td:last-child {
  font-family: var(--font-mono);
  color: var(--accent-orange);
  font-weight: 700;
}

.ref-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}

.ref-col-card {
  background: linear-gradient(170deg, rgba(255, 150, 60, 0.06) 0%, rgba(20, 12, 6, 0.75) 100%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.85rem;
}

.ref-col-card h4 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-bright);
}

.ref-rules {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.ref-rules li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.ref-rules li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-orange);
  box-shadow: 0 0 6px var(--accent-orange);
}

.ref-final-cta {
  margin-top: 3.5rem;
  text-align: center;
  background: linear-gradient(170deg, rgba(232, 93, 4, 0.12) 0%, rgba(20, 10, 4, 0.9) 100%);
  border: 1px solid var(--accent-orange-border);
  border-radius: var(--radius-md);
  padding: 2.75rem 2rem;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6);
}

.ref-final-cta h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--text-bright);
}

.ref-final-cta p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  border-top: 1px solid var(--border-glass);
  padding: 3.5rem 0 2.25rem;
  color: var(--text-muted);
  font-size: 0.86rem;
  background: #0A0604;
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1.4fr;
  gap: 2.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.footer-about {
  font-size: 0.84rem;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 340px;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-bright);
  margin-bottom: 0.9rem;
}

.footer-col a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 0.5rem;
  font-size: 0.86rem;
  transition: color var(--trans-fast);
}

.footer-col a:hover {
  color: var(--accent-orange-hover);
}

.footer-ref-col p {
  font-size: 0.84rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 0.85rem;
}

.footer-ref-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0.52rem 1.15rem;
  background: rgba(232, 93, 4, 0.08);
  border: 1px solid rgba(232, 93, 4, 0.32);
  border-radius: var(--radius-sm);
  color: #FFA466;
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--trans-fast);
  cursor: pointer;
}

.footer-ref-btn:hover {
  background: rgba(232, 93, 4, 0.18);
  border-color: var(--accent-orange);
  color: #FFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.footer-bottom {
  margin-top: 2.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
}

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

.social-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  transition: all var(--trans-fast);
}

.social-icon:hover {
  background: var(--accent-orange-dim);
  border-color: var(--accent-orange-border);
  color: var(--accent-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 12px rgba(232, 93, 4, 0.3);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-legal {
  margin-top: 1.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--border-glass);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.8rem;
}

.footer-legal-links a {
  color: var(--text-secondary);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--trans-fast);
}

.footer-legal-links a:hover {
  color: var(--accent-orange);
}

.footer-requisites,
.footer-pay-note {
  font-size: 0.76rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 960px;
}

.footer-requisites a {
  color: var(--text-secondary);
  text-decoration: underline;
}

.footer-requisites a:hover {
  color: var(--accent-orange);
}

/* ==========================================================================
   LEGAL PAGES
   ========================================================================== */
.legal-wrapper {
  padding: 3.5rem 0 5.5rem;
}

.legal-doc {
  max-width: 880px;
  margin: 0 auto;
}

.legal-doc h1 {
  font-size: clamp(1.8rem, 3.6vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin: 0.4rem 0 0.8rem;
  color: var(--text-bright);
}

.legal-doc h1 span {
  color: var(--accent-orange);
  font-size: 0.65em;
  font-weight: 700;
}

.legal-meta {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.legal-toc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.5rem 1.5rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
}

.legal-toc a {
  color: var(--text-secondary);
  font-size: 0.88rem;
  text-decoration: none;
  padding: 0.2rem 0;
  transition: color var(--trans-fast);
}

.legal-toc a:hover {
  color: var(--accent-orange);
}

.legal-doc section {
  margin-bottom: 2.5rem;
  scroll-margin-top: 90px;
}

.legal-doc h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-bright);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-glass);
}

.legal-doc p,
.legal-doc li {
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--text-main);
  margin-bottom: 0.85rem;
}

.legal-doc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 0 0 0.85rem;
}

.legal-doc li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.5rem;
}

.legal-doc li::before {
  content: "";
  position: absolute;
  left: 0.15rem;
  top: 0.72rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-orange);
  box-shadow: 0 0 6px var(--accent-orange);
}

.legal-doc b {
  color: var(--text-bright);
  font-weight: 700;
}

.legal-doc a {
  color: var(--accent-orange);
  text-decoration: underline;
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 0.5rem 0 1.25rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.legal-table th,
.legal-table td {
  padding: 0.85rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-glass);
  color: var(--text-main);
}

.legal-table tr:last-child td {
  border-bottom: none;
}

.legal-table th {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}

.legal-table td:last-child {
  font-family: var(--font-mono);
  color: #FBBF24;
  font-weight: 700;
  white-space: nowrap;
}

.legal-requisites {
  background: linear-gradient(170deg, rgba(232, 93, 4, 0.1) 0%, rgba(20, 10, 4, 0.85) 100%);
  border: 1px solid var(--accent-orange-border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.25rem;
}

.legal-requisites p {
  margin-bottom: 0.45rem;
}

/* ==========================================================================
   TOAST NOTICES
   ========================================================================== */
.toast-notice {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #140D07;
  border: 1px solid var(--accent-orange-border);
  box-shadow: var(--shadow-elevated), 0 0 20px rgba(232, 93, 4, 0.25);
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-bright);
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: slideToast 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.toast-notice.toast-error {
  border-color: var(--status-error);
}

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

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .navbar-inner { gap: 0.75rem; }
  .nav-capsule { display: none; }
}

@media (max-width: 768px) {
  .mobile-toggle { display: block; }
  .nav-discord-link { display: none; }
  .nav-menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: #0E0905;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    border-bottom: 1px solid var(--accent-orange-border);
    display: none;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.9);
  }
  .nav-menu.open { display: flex; }
  .hero { padding: 3.5rem 0 2.5rem; }
  .app-preview-header { padding: 0 0.85rem; }
  .app-preview-search { max-width: 220px; }
  .app-preview-body { padding: 1.25rem 1rem; }
  .auth-modal { padding: 2rem 1.5rem; }
  .dash-hero-body {
    padding: 0 1.25rem 1.5rem;
    justify-content: center;
    text-align: center;
  }
  .dash-hero-meta { text-align: center; }
  .dash-hero-badges, .dash-handle { justify-content: center; }
  .dash-hero-actions { justify-content: center; width: 100%; }
  .sub-stats { grid-template-columns: 1fr; }
  .balance-btn { font-size: 1.85rem; }
  .nav-controls .btn-hide-mobile { display: none; }
}

@media (max-width: 560px) {
  .lbl-long { display: none; }
  .brand-title, .brand-badge { font-size: 1rem; letter-spacing: 0.04em; }
  .coins-chip { padding: 0.25rem 0.55rem; font-size: 0.74rem; gap: 0.35rem; }
  .user-pill-name { display: none; }
  .user-pill { padding: 0.22rem 0.5rem 0.22rem 0.22rem; }
  .hero-trial-card { padding: 1.4rem 1.2rem; }
}
