/* ==============================================================================
   VOIDONYX & VOIDPANEL — ULTRA-PREMIUM LUXURY DESIGN SYSTEM (DARK EDITION)
   ============================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

:root {
  /* Color Palette */
  --bg-deep: #030206;
  --bg-darker: #07040e;
  --bg-dark: #0d081a;
  --bg-card: rgba(18, 12, 34, 0.7);
  --bg-card-hover: rgba(28, 18, 52, 0.85);
  --bg-glass: rgba(255, 255, 255, 0.03);
  --bg-glass-heavy: rgba(13, 8, 26, 0.95);
  --bg-input: rgba(10, 6, 20, 0.85);

  /* Primary Brand Neon Colors */
  --primary-orange: #ff7a00;
  --primary-orange-glow: rgba(255, 122, 0, 0.4);
  --primary-orange-light: #ffa142;
  --accent-indigo: #6366f1;
  --accent-indigo-glow: rgba(99, 102, 241, 0.35);
  --accent-emerald: #10b981;
  --accent-emerald-glow: rgba(16, 185, 129, 0.35);
  --accent-cyan: #06b6d4;
  --accent-purple: #a855f7;
  --accent-ruby: #f43f5e;

  /* Typography */
  --text-white: #ffffff;
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dark: #64748b;

  /* Borders & Glows */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glass: rgba(255, 255, 255, 0.12);
  --border-glow: rgba(255, 122, 0, 0.4);
  --border-indigo: rgba(99, 102, 241, 0.3);
  --shadow-main: 0 20px 40px -15px rgba(0, 0, 0, 0.9);
  --shadow-glow: 0 0 40px -5px rgba(255, 122, 0, 0.25);
  --shadow-indigo: 0 0 40px -5px rgba(99, 102, 241, 0.25);

  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-spring: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-deep);
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(255, 122, 0, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 85% 30%, rgba(99, 102, 241, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 15% 70%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
    linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 48px 48px, 48px 48px;
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-orange);
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.code-font {
  font-family: 'JetBrains Mono', monospace;
}

.gradient-text-orange {
  background: linear-gradient(135deg, #ff7a00 0%, #ffb800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-indigo {
  background: linear-gradient(135deg, #818cf8 0%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==============================================================================
   NAVBAR
   ============================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 74px;
  background: rgba(7, 4, 14, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 1000;
  transition: var(--transition-fast);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
}

.nav-logo-badge {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #ff7a00, #ff4500);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: white;
  box-shadow: 0 4px 20px var(--primary-orange-glow);
  position: relative;
}

.nav-logo-badge::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-md);
  padding: 1px;
  background: linear-gradient(to bottom right, rgba(255,255,255,0.4), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.nav-brand-title {
  display: flex;
  flex-direction: column;
}

.nav-brand-title span:first-child {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: 1.5px;
}

.nav-brand-title span:last-child {
  font-size: 10px;
  font-weight: 700;
  color: var(--primary-orange);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

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

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition-fast);
  cursor: pointer;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-white);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-orange);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* ==============================================================================
   BUTTONS & BADGES
   ============================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: linear-gradient(135deg, #ff7a00, #e65100);
  color: white;
  box-shadow: 0 4px 20px var(--primary-orange-glow);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(255, 122, 0, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.badge-orange {
  background: rgba(255, 122, 0, 0.12);
  color: var(--primary-orange);
  border: 1px solid rgba(255, 122, 0, 0.3);
}

.badge-emerald {
  background: rgba(16, 185, 129, 0.12);
  color: var(--accent-emerald);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-indigo {
  background: rgba(99, 102, 241, 0.12);
  color: #818cf8;
  border: 1px solid rgba(99, 102, 241, 0.3);
}

/* ==============================================================================
   MAIN WRAPPER & SECTIONS
   ============================================================================== */
.main-wrapper {
  padding-top: 74px;
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
}

/* Hero Section */
.hero-section {
  text-align: center;
  padding: 90px 24px 60px;
  position: relative;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 122, 0, 0.08);
  border: 1px solid rgba(255, 122, 0, 0.3);
  border-radius: var(--radius-full);
  margin-bottom: 28px;
  box-shadow: 0 0 20px rgba(255, 122, 0, 0.15);
  animation: floatSlow 3s ease-in-out infinite alternate;
}

@keyframes floatSlow {
  from { transform: translateY(0); }
  to { transform: translateY(-4px); }
}

.hero-pill span {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-orange);
}

.hero-title {
  font-size: 68px;
  font-weight: 900;
  letter-spacing: -0.03em;
  max-width: 1000px;
  margin: 0 auto 24px;
}

.hero-subtitle {
  font-size: 19px;
  color: var(--text-muted);
  max-width: 740px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1050px;
  margin: 0 auto 40px;
}

.stat-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition-fast);
  box-shadow: 0 10px 25px -10px rgba(0,0,0,0.5);
}

.stat-card:hover {
  border-color: rgba(255, 122, 0, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 34px;
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

/* ==============================================================================
   HERO APP WINDOW PREVIEW (LUXURY MACOS CHROME)
   ============================================================================== */
.hero-app-mockup {
  max-width: 1100px;
  margin: 30px auto 0;
  background: #0d081c;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.9), 0 0 50px -10px rgba(255, 122, 0, 0.2);
  text-align: left;
}

.mockup-header {
  height: 48px;
  background: #090514;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.mockup-dots {
  display: flex;
  gap: 8px;
}

.mockup-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.mockup-dot.red { background: #ff5f56; }
.mockup-dot.yellow { background: #ffbd2e; }
.mockup-dot.green { background: #27c93f; }

.mockup-title {
  font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.mockup-body {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 380px;
}

.mockup-sidebar {
  background: #0a0618;
  border-right: 1px solid var(--border-subtle);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mockup-nav-item {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.mockup-nav-item.active {
  background: rgba(255, 122, 0, 0.12);
  color: var(--primary-orange);
  border: 1px solid rgba(255, 122, 0, 0.3);
}

.mockup-main {
  padding: 24px;
  background: #0d081c;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ==============================================================================
   INTERACTIVE LIVE SANDBOX TABS
   ============================================================================== */
.sandbox-card {
  background: var(--bg-card);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-main);
  margin-top: 40px;
}

.sandbox-nav {
  display: flex;
  background: rgba(8, 4, 18, 0.95);
  border-bottom: 1px solid var(--border-subtle);
  overflow-x: auto;
}

.sandbox-tab-btn {
  flex: 1;
  min-width: 200px;
  padding: 18px 24px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: var(--transition-fast);
}

.sandbox-tab-btn.active {
  color: var(--primary-orange);
  background: rgba(255, 122, 0, 0.06);
  border-bottom-color: var(--primary-orange);
}

.sandbox-body {
  padding: 36px;
}

.sandbox-pane {
  display: none;
}

.sandbox-pane.active {
  display: block;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  transition: var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-orange);
  box-shadow: 0 0 20px var(--primary-orange-glow);
}

.code-box {
  background: #040208;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: #38bdf8;
  overflow-x: auto;
  position: relative;
}

.code-copy-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: white;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
}

.code-copy-btn:hover {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
}

/* ==============================================================================
   CUSTOM LUXURY MODALS (NO MORE UGLY JS PROMPT!)
   ============================================================================== */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(3, 2, 6, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-backdrop.active {
  display: flex;
}

.modal-card {
  background: #0f0920;
  border: 1px solid rgba(255, 122, 0, 0.35);
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 70px -15px rgba(0, 0, 0, 0.9), 0 0 50px rgba(255, 122, 0, 0.2);
  width: 100%;
  max-width: 520px;
  overflow: hidden;
  animation: modalScaleIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalScaleIn {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
  padding: 24px 28px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h3 {
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-close-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  color: white;
  transform: rotate(90deg);
}

.modal-body {
  padding: 28px;
}

.modal-footer {
  padding: 20px 28px;
  border-top: 1px solid var(--border-subtle);
  background: rgba(8, 4, 18, 0.6);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

/* ==============================================================================
   SUPER ADMIN PORTAL SPA VIEW
   ============================================================================== */
.portal-wrapper {
  display: none;
  min-height: calc(100vh - 74px);
  background: #05030a;
}

.portal-wrapper.active {
  display: flex;
}

.portal-sidebar {
  width: 280px;
  background: #090514;
  border-right: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.portal-user-card {
  padding: 24px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 12px;
}

.portal-user-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #ff7a00, #ff4500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: white;
}

.portal-user-info h4 {
  font-size: 15px;
  font-weight: 800;
}

.portal-user-info span {
  font-size: 11px;
  color: var(--accent-emerald);
  font-weight: 600;
}

.portal-nav {
  list-style: none;
  padding: 16px 12px;
  flex: 1;
}

.portal-nav-item {
  margin-bottom: 4px;
}

.portal-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
  cursor: pointer;
}

.portal-nav-link:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-white);
}

.portal-nav-link.active {
  background: rgba(255, 122, 0, 0.12);
  color: var(--primary-orange);
  border: 1px solid rgba(255, 122, 0, 0.3);
}

.portal-content {
  flex: 1;
  padding: 36px 40px;
  overflow-y: auto;
  max-height: calc(100vh - 74px);
}

.portal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.portal-tab-content {
  display: none;
}

.portal-tab-content.active {
  display: block;
}

.data-table-container {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.data-table th {
  background: rgba(8, 4, 18, 0.9);
  padding: 16px 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-subtle);
}

.data-table td {
  padding: 16px 20px;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.data-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

/* Feature & Pricing Grids */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  transition: var(--transition-smooth);
}

.feature-box:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 122, 0, 0.4);
  box-shadow: var(--shadow-glow);
}

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-lg);
  background: rgba(255, 122, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 122, 0, 0.25);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1150px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  position: relative;
  transition: var(--transition-smooth);
}

.pricing-card.featured {
  border-color: var(--primary-orange);
  box-shadow: var(--shadow-glow);
  background: linear-gradient(180deg, rgba(255, 122, 0, 0.08) 0%, rgba(18, 12, 38, 0.9) 100%);
}

.pricing-card:hover {
  transform: translateY(-6px);
}

.price-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 44px;
  font-weight: 900;
  color: var(--text-white);
  margin: 20px 0;
}

.price-tag span {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  margin: 28px 0;
}

.pricing-features li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: #140b2a;
  border: 1px solid rgba(255, 122, 0, 0.4);
  border-radius: var(--radius-md);
  padding: 14px 22px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 122, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: slideToast 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideToast {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@media (max-width: 1024px) {
  .hero-title { font-size: 46px; }
  .feature-grid, .pricing-grid { grid-template-columns: 1fr; }
  .hero-stats-row { grid-template-columns: repeat(2, 1fr); }
  .mockup-body { grid-template-columns: 1fr; }
  .mockup-sidebar { display: none; }
  .portal-sidebar { width: 80px; }
  .portal-sidebar .portal-user-info, .portal-sidebar .portal-nav-link span { display: none; }
}

@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .hero-title { font-size: 36px; }
  .hero-stats-row { grid-template-columns: 1fr; }
}
