/* ==========================================================================
   MARSHUB - BESPOKE ROBLOX SCRIPTS & TOOLS HUB STYLESHEET
   Deep Space Cyberpunk Theme with Mars Red & Solar Orange Accents
   ========================================================================== */

:root {
  --bg-deep: #06070b;
  --bg-surface: #0c0f17;
  --bg-card: #111522;
  --bg-card-hover: #151a2b;
  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-glow: rgba(255, 69, 0, 0.4);
  
  --mars-primary: #ff4d00;
  --mars-primary-hover: #ff6a26;
  --mars-secondary: #ff8533;
  --mars-ruby: #dc2626;
  
  --accent-cyan: #38bdf8;
  --accent-purple: #5865f2; /* Discord brand */
  --accent-green: #22c55e;
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-subtle: #64748b;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --transition: 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Kanit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-deep);
  color: var(--text-main);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Ambient Radial Cosmic Lights */
body::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 550px;
  background: radial-gradient(ellipse at center, rgba(255, 77, 0, 0.12) 0%, rgba(255, 77, 0, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

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

button, input, select {
  font-family: inherit;
}

.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   SITE HEADER / NAVBAR
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 7, 11, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.brand-logo img {
  width: 38px;
  height: 38px;
  transition: transform var(--transition);
}

.brand-logo:hover img {
  transform: scale(1.1) rotate(-5deg);
}

.brand-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 1px;
}

.brand-name span {
  color: var(--mars-primary);
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}

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

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

.btn-discord {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(88, 101, 242, 0.12);
  border: 1px solid rgba(88, 101, 242, 0.35);
  color: #a5b4fc;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition);
}

.btn-discord:hover {
  background: var(--accent-purple);
  color: #ffffff;
  box-shadow: 0 0 16px rgba(88, 101, 242, 0.4);
}

.btn-login {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 14px;
  transition: color var(--transition);
}

.btn-login:hover {
  color: var(--mars-primary);
}

.btn-primary-glow {
  background: linear-gradient(135deg, var(--mars-primary), var(--mars-secondary));
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 0 18px rgba(255, 77, 0, 0.35);
}

.btn-primary-glow:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 24px rgba(255, 77, 0, 0.55);
}

/* User profile widget */
.user-profile-widget {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 5px 14px;
  border-radius: var(--radius-full);
}

.user-balance {
  font-size: 0.88rem;
  color: var(--mars-primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.btn-my-keys {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #f1f5f9;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-my-keys:hover {
  background: var(--mars-primary);
  border-color: var(--mars-primary);
}

.user-avatar-btn {
  background: var(--mars-primary);
  color: #fff;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 0.85rem;
  cursor: pointer;
}

.btn-logout {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
}

.btn-logout:hover {
  color: #ef4444;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 70px 0 60px;
  text-align: center;
}

.hero-content-center {
  max-width: 900px;
  margin: 0 auto;
}

.badge-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 77, 0, 0.08);
  border: 1px solid rgba(255, 77, 0, 0.25);
  color: #ff8533;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
}

.hero-headline {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 20%, #ff8533 80%, #ff4d00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.12rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 34px;
}

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

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--mars-primary), var(--mars-secondary));
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 14px 34px;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 30px rgba(255, 77, 0, 0.4);
  transition: all var(--transition);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 38px rgba(255, 77, 0, 0.6);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

/* Stats Bar */
.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.stat-card {
  text-align: center;
  border-right: 1px solid var(--border-subtle);
}

.stat-card:last-child {
  border-right: none;
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff, #ff8533);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ==========================================================================
   BENTO GRID FEATURES
   ========================================================================== */
.features-section {
  padding: 60px 0;
}

.section-title-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 77, 0, 0.12);
}

.bento-wide {
  grid-column: span 2;
}

.bento-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.bento-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.bento-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.bento-badge {
  display: inline-block;
  background: rgba(255, 77, 0, 0.12);
  color: #ff8533;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-top: 18px;
}

/* ==========================================================================
   REVIEWS MARQUEE (Xenon Style Infinite Carousel)
   ========================================================================== */
.reviews-section {
  padding: 60px 0;
  overflow: hidden;
}

.marquee-wrapper {
  display: flex;
  overflow: hidden;
  user-select: none;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 16px;
  animation: marqueeScroll 35s linear infinite;
  flex-shrink: 0;
}

.marquee-track.reverse {
  animation: marqueeScrollReverse 40s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

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

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

.review-card {
  width: 360px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  flex-shrink: 0;
  transition: all var(--transition);
}

.review-card:hover {
  border-color: rgba(255, 77, 0, 0.4);
  transform: translateY(-2px);
}

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

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviewer-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff4d00, #ff8533);
  color: #fff;
  display: grid;
  place-content: center;
  font-weight: bold;
  font-size: 0.9rem;
}

.reviewer-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
}

.reviewer-role {
  font-size: 0.75rem;
  color: #ff8533;
}

.review-stars {
  color: #f59e0b;
  font-size: 0.85rem;
}

.review-text {
  font-size: 0.88rem;
  color: #cbd5e1;
  line-height: 1.55;
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */
.pricing-section {
  padding: 70px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition);
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 77, 0, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

.pricing-card.featured {
  border-color: var(--mars-primary);
  background: linear-gradient(180deg, rgba(255, 77, 0, 0.08) 0%, var(--bg-card) 60%);
  box-shadow: 0 0 35px rgba(255, 77, 0, 0.2);
}

.popular-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--mars-primary), var(--mars-secondary));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(255, 77, 0, 0.4);
  white-space: nowrap;
}

.pricing-tier-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.pricing-tier-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  min-height: 2.6em;
  margin-bottom: 16px;
}

.pricing-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--mars-primary);
  margin-bottom: 24px;
}

.pricing-period {
  font-family: 'Kanit', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex: 1;
}

.pricing-features li {
  font-size: 0.86rem;
  color: #cbd5e1;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pricing-features li::before {
  content: '✓';
  color: #22c55e;
  font-weight: bold;
}

.btn-tier-action {
  width: 100%;
  padding: 12px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-tier-action:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-tier-featured {
  background: linear-gradient(135deg, var(--mars-primary), var(--mars-secondary));
  border: none;
  box-shadow: 0 4px 20px rgba(255, 77, 0, 0.4);
}

.btn-tier-featured:hover {
  box-shadow: 0 6px 26px rgba(255, 77, 0, 0.6);
  transform: translateY(-1px);
}

/* ==========================================================================
   PRODUCTS CATALOG GRID
   ========================================================================== */
.products-section {
  padding: 60px 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.script-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}

.script-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
}

.script-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.script-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.script-status-badge.online {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.script-stock-count {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.script-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.script-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 18px;
  flex: 1;
}

.script-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.script-price {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--mars-primary);
}

.btn-buy-script {
  background: linear-gradient(135deg, var(--mars-primary), var(--mars-secondary));
  border: none;
  color: #fff;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-buy-script:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 15px rgba(255, 77, 0, 0.5);
}

/* ==========================================================================
   MODAL WINDOWS & TOPUP TABS
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(4, 5, 8, 0.85);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  padding: 20px;
}

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

.modal-dialog {
  background: #0d101a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 480px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 77, 0, 0.15);
  transform: scale(0.95);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-dialog {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.3rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.modal-content {
  padding: 36px 32px;
}

.modal-header-center {
  text-align: center;
  margin-bottom: 24px;
}

.modal-shield-logo {
  width: 65px;
  height: 65px;
  margin: 0 auto 12px;
  display: block;
}

.modal-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
}

.modal-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Topup Navigation Tabs */
.topup-nav-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  background: #141824;
  padding: 4px;
  border-radius: var(--radius-md);
}

.topup-tab-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
}

.topup-tab-btn.active {
  background: var(--mars-primary);
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(255, 77, 0, 0.35);
}

.form-group {
  margin-bottom: 16px;
  text-align: left;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  color: #cbd5e1;
  margin-bottom: 6px;
  font-weight: 500;
}

.form-input {
  width: 100%;
  height: 48px;
  background: #151a26;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 0 16px;
  font-size: 0.95rem;
  color: #ffffff;
  transition: all var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--mars-primary);
  box-shadow: 0 0 0 3px rgba(255, 77, 0, 0.25);
}

.info-guide-box {
  background: rgba(255, 77, 0, 0.06);
  border: 1px solid rgba(255, 77, 0, 0.2);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 20px;
  text-align: left;
}

.amount-presets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.amount-preset-btn {
  background: #141824;
  border: 1px solid var(--border-subtle);
  color: #ffffff;
  padding: 8px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
}

.amount-preset-btn.active, .amount-preset-btn:hover {
  border-color: var(--mars-primary);
  background: var(--mars-primary);
}

.btn-submit-mars {
  width: 100%;
  height: 48px;
  background: linear-gradient(135deg, var(--mars-primary), var(--mars-secondary));
  border: none;
  border-radius: var(--radius-md);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(255, 77, 0, 0.4);
  transition: all var(--transition);
}

.btn-submit-mars:hover {
  box-shadow: 0 6px 24px rgba(255, 77, 0, 0.6);
  transform: translateY(-1px);
}

/* Dynamic QR Code Card */
.qr-container-card {
  background: #141824;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
}

.qr-box {
  width: 190px;
  height: 190px;
  margin: 0 auto 12px;
  background: #ffffff;
  padding: 8px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-box img {
  width: 100%;
  height: 100%;
  display: block;
}

.qr-amount-badge {
  display: inline-block;
  background: rgba(255, 77, 0, 0.15);
  border: 1px solid rgba(255, 77, 0, 0.35);
  color: var(--mars-primary);
  font-weight: 800;
  font-size: 1.1rem;
  padding: 4px 18px;
  border-radius: var(--radius-full);
}

/* Key History Cards */
.key-history-card {
  background: #141824;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.key-title-tag {
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 4px;
}

.key-code-string {
  font-family: monospace;
  font-size: 0.9rem;
  color: var(--mars-primary);
  background: rgba(0, 0, 0, 0.3);
  padding: 2px 8px;
  border-radius: 4px;
}

.btn-copy-key {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-copy-key:hover {
  background: var(--mars-primary);
}

/* ==========================================================================
   TOAST NOTIFICATIONS
   ========================================================================== */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  background: #121626;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 4px solid var(--mars-primary);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  color: #ffffff;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  animation: slideInToast 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  pointer-events: auto;
}

.toast.toast-success { border-left-color: #22c55e; }
.toast.toast-error { border-left-color: #ef4444; }

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

/* ==========================================================================
   SUPPORTED EXECUTORS
   ========================================================================== */
.executors-section {
  padding: 30px 0 50px;
}

.executors-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 22px 28px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.executors-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 16px;
  letter-spacing: 0.2px;
}

.executors-pills-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.exec-pill {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  color: #f1f5f9;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}

.exec-pill:hover {
  border-color: var(--primary);
  background: rgba(255, 87, 34, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 87, 34, 0.2);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #040508;
  border-top: 1px solid var(--border-subtle);
  padding: 50px 0 35px;
  color: var(--text-muted);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

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

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-subtle);
}

/* ==========================================================================
   RESPONSIVE QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-wide { grid-column: span 1; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .hero-headline { font-size: 2.2rem; }
  .stats-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .stat-card { border-right: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .hidden-mobile { display: none; }
}
